diff --git a/Source/Bind/GL2/Generator.cs b/Source/Bind/GL2/Generator.cs index a7caa3bb..a124ce58 100644 --- a/Source/Bind/GL2/Generator.cs +++ b/Source/Bind/GL2/Generator.cs @@ -10,6 +10,7 @@ using System.Text; using System.IO; using Bind.Structures; using System.Diagnostics; +using System.Text.RegularExpressions; namespace Bind.GL2 { @@ -56,6 +57,10 @@ namespace Bind.GL2 public virtual void Process() { + Function.endingsAddV = + new Regex(@"(Coord1|Attrib(I?)1(u?)|Stream1|Uniform2(u?)|Parameter|Fog(Coord)?.*|VertexWeight|(Fragment)?Light(Model)?|Material|ReplacementCodeu?b?|Tex(Gen|Env)|Indexu?b?)", RegexOptions.Compiled); + + Bind.Structures.Type.Initialize(glTypemap, csTypemap); Bind.Structures.Enum.Initialize(enumSpec, enumSpecExt); Bind.Structures.Function.Initialize(); @@ -173,7 +178,7 @@ namespace Bind.GL2 // Get function name: d.Name = line.Split(Utilities.Separators, StringSplitOptions.RemoveEmptyEntries)[0]; - if (d.Name.Contains("UseFontOutlinesA")) + if (d.Name.Contains("QueryHyperpipeBestAttribSGIX")) { } @@ -201,7 +206,7 @@ namespace Bind.GL2 p.Name = Utilities.Keywords.Contains(words[1]) ? "@" + words[1] : words[1]; p.CurrentType = words[2]; - p.Pointer = words[4] == "array" ? true : words[4] == "reference" ? true : false; + p.Pointer = words[4].Contains("array") ? true : words[4].Contains("reference") ? true : false; p.Flow = words[3] == "in" ? Parameter.FlowDirection.In : Parameter.FlowDirection.Out; d.Parameters.Add(p); diff --git a/Source/Bind/Main.cs b/Source/Bind/Main.cs index 6e8c097c..c26c5438 100644 --- a/Source/Bind/Main.cs +++ b/Source/Bind/Main.cs @@ -72,7 +72,9 @@ namespace Bind mode = arg == "gl2" ? GeneratorMode.GL2 : arg == "gl3" ? GeneratorMode.GL3 : - arg == "wgl" ? GeneratorMode.Wgl : GeneratorMode.GL2; + arg == "wgl" ? GeneratorMode.Wgl : + arg == "glu" ? GeneratorMode.Glu : + arg == "glx" ? GeneratorMode.Glx : GeneratorMode.GL2; break; case "namespace": case "ns": @@ -120,17 +122,18 @@ namespace Bind break; case GeneratorMode.Wgl: - if (Settings.OutputPath == Settings.DefaultOutputPath) - { - Settings.OutputPath = Settings.DefaultWglOutputPath; - } - if (Settings.OutputNamespace == Settings.DefaultOutputNamespace) - { - Settings.OutputNamespace = "OpenTK.Platform.Windows"; - } Generator = new Bind.Wgl.Generator(); break; + case GeneratorMode.Glu: + Generator = new Bind.Glu.Generator(); + break; + + case GeneratorMode.Glx: + Generator = new Bind.Glx.Generator(); + break; + + case GeneratorMode.GL3: default: throw new NotImplementedException(String.Format("Mode {0} not implemented.", mode)); } diff --git a/Source/Bind/Properties/AssemblyInfo.cs b/Source/Bind/Properties/AssemblyInfo.cs index bafd5597..07b8cd62 100644 --- a/Source/Bind/Properties/AssemblyInfo.cs +++ b/Source/Bind/Properties/AssemblyInfo.cs @@ -29,5 +29,5 @@ using System.Runtime.InteropServices; // Build Number // Revision // -[assembly: AssemblyVersion("0.9.7.4")] -[assembly: AssemblyFileVersion("0.9.7.4")] +[assembly: AssemblyVersion("0.9.7.5")] +[assembly: AssemblyFileVersion("0.9.7.5")] diff --git a/Source/Bind/Settings.cs b/Source/Bind/Settings.cs index ae5bde25..6dee4175 100644 --- a/Source/Bind/Settings.cs +++ b/Source/Bind/Settings.cs @@ -16,9 +16,9 @@ namespace Bind public static string OutputPath = "..\\..\\..\\Source\\OpenTK\\OpenGL\\Bindings"; public static string OutputNamespace = "OpenTK.OpenGL"; - public readonly static string DefaultInputPath = "..\\..\\..\\Source\\Bind\\Specifications"; - public readonly static string DefaultOutputPath = "..\\..\\..\\Source\\OpenTK\\OpenGL\\Bindings"; - public readonly static string DefaultOutputNamespace = "OpenTK.OpenGL"; + public const string DefaultInputPath = "..\\..\\..\\Source\\Bind\\Specifications"; + public const string DefaultOutputPath = "..\\..\\..\\Source\\OpenTK\\OpenGL\\Bindings"; + public const string DefaultOutputNamespace = "OpenTK.OpenGL"; public static string OutputClass = "GL"; public static string FunctionPrefix = "gl"; @@ -36,8 +36,6 @@ namespace Bind public static Legacy Compatibility = Legacy.None; - public readonly static string DefaultWglOutputPath = "..\\..\\..\\Source\\OpenTK\\Platform\\Windows\\Bindings"; - /// /// The name of the C# enum which holds every single OpenGL enum (for compatibility purposes). /// diff --git a/Source/Bind/Specifications/Glu/glu.tm b/Source/Bind/Specifications/Glu/glu.tm new file mode 100644 index 00000000..f4e44646 --- /dev/null +++ b/Source/Bind/Specifications/Glu/glu.tm @@ -0,0 +1,23 @@ +GLUnurbs Glu.GLUnurbs +GLUTesselator Glu.GLUTesselator +GLUquadric Glu.GLUquadric + +# Unknown types (try to infer!) +NurbsObj int +QuadricObj int +TesselatorObj int +FunctionPointer IntPtr + +VoidPointer VoidPointer +Float64 Float64 +Float64Pointer Float64Pointer +Float32 Float32 +Float32Pointer Float32Pointer +SizeI GLsizei +UInt8 GLubyte + +# Enum types (find Tao-compatible solution!) +TextureTarget TextureTarget +PixelFormat PixelFormat +PixelType PixelType +MapTarget MapTarget diff --git a/Source/Bind/Specifications/Glx/glx.tm b/Source/Bind/Specifications/Glx/glx.tm index ca2b4506..1ba596e0 100644 --- a/Source/Bind/Specifications/Glx/glx.tm +++ b/Source/Bind/Specifications/Glx/glx.tm @@ -4,9 +4,10 @@ DMbuffer,*,*, DMbuffer,*,* DMparams,*,*, DMparams,*,* Display,*,*, Display,*,* DisplayPointer,*,*, Display *,*,* -FunctionPointer,*,*, __GLXextFuncPtr,*,* +FunctionPointer,*,*, __GLXextFuncPtr,*,* GLXContext,*,*, GLXContext,*,* -constGLXContext,*,*, const GLXContext,*,* +#constGLXContext,*,*, const GLXContext,*,* +constGLXContext,*,*, GLXContext,*,* GLXContextID,*,*, GLXContextID,*,* GLXDrawable,*,*, GLXDrawable,*,* GLXFBConfig,*,*, GLXFBConfig,*,* @@ -26,7 +27,8 @@ GLfunction,*,*, GLfunction,*,* GLubyte,*,*, GLubyte,*,* Pixmap,*,*, Pixmap,*,* Status,*,*, Status,*,* -Uint,*,*, unsigned int,*,* +#Uint,*,*, unsigned int,*,* +Uint uint VLNode,*,*, VLNode,*,* VLPath,*,*, VLPath,*,* VLServer,*,*, VLServer,*,* @@ -35,9 +37,12 @@ XVisualInfo,*,*, XVisualInfo,*,* XVisualInfoPointer,*,*, XVisualInfo *,*,* float,*,*, float,*,* int,*,*, int,*,* -uint,*,*, unsigned int,*,* -int32_t,*,*, int32_t,*,* -int64_t,*,*, int64_t,*,* +#uint,*,*, unsigned int,*,* +uint uint +int32_t,*,*, int32_t,*,* +int64_t,*,*, int64_t,*,* long,*,*, long,*,* -ulong,*,*, unsigned long,*,* +#ulong,*,*, unsigned long,*,* +ulong ulong void,*,*, void,*,* +Void Void \ No newline at end of file diff --git a/Source/Bind/Specifications/csharp.tm b/Source/Bind/Specifications/csharp.tm index ce737b84..7166899f 100644 --- a/Source/Bind/Specifications/csharp.tm +++ b/Source/Bind/Specifications/csharp.tm @@ -52,8 +52,25 @@ LPVOID, void* #String, const char * UINT, UInt32 USHORT, UInt16 -VOID, Void +VOID, void VoidPointer, void* float, float int, int #void, * + +# Glu types. +Float64 double +Float64Pointer double* +Float32 float +Float32Pointer float* + +# Glx types. +Void void +Bool bool +int64_t long +int32_t int + +Display IntPtr +Window IntPtr +Pixmap IntPtr +__GLXextFuncPtr IntPtr \ No newline at end of file diff --git a/Source/Bind/Structures/Constant.cs b/Source/Bind/Structures/Constant.cs index 3616537e..06736dfc 100644 --- a/Source/Bind/Structures/Constant.cs +++ b/Source/Bind/Structures/Constant.cs @@ -76,7 +76,7 @@ namespace Bind.Structures #region public bool Unchecked - private bool @unchecked = false; + private bool @unchecked; public bool Unchecked { diff --git a/Source/Bind/Structures/Delegate.cs b/Source/Bind/Structures/Delegate.cs index a7a283f8..bfd3d666 100644 --- a/Source/Bind/Structures/Delegate.cs +++ b/Source/Bind/Structures/Delegate.cs @@ -59,14 +59,12 @@ namespace Bind.Structures public Delegate(Delegate d) { - this.Category = !String.IsNullOrEmpty(d.Category) ? new string(d.Category.ToCharArray()) : ""; - //this.Extension = !String.IsNullOrEmpty(d.Extension) ? new string(d.Extension.ToCharArray()) : ""; - this.Name = new string(d.Name.ToCharArray()); - //this.NeedsWrapper = d.NeedsWrapper; + this.Category = d.Category; + this.Name = d.Name; this.Parameters = new ParameterCollection(d.Parameters); this.ReturnType = new Type(d.ReturnType); - this.Version = !String.IsNullOrEmpty(d.Version) ? new string(d.Version.ToCharArray()) : ""; - //this.Unsafe = d.Unsafe; + this.Version = d.Version; + //this.Version = !String.IsNullOrEmpty(d.Version) ? new string(d.Version.ToCharArray()) : ""; } #endregion @@ -451,7 +449,7 @@ namespace Bind.Structures #region protected void WrapParameters(Function function, List wrappers) - protected static int index = 0; + protected static int index; /// /// This function needs some heavy refactoring. I'm ashamed I ever wrote it, but it works... @@ -522,7 +520,7 @@ namespace Bind.Structures WrapParameters(function, wrappers); --index; - if (function.Name == "UseFontOutlinesA") + //if (function.Name == "UseFontOutlinesA") { } @@ -631,7 +629,6 @@ namespace Bind.Structures static List handle_statements = new List(); static List fixed_statements = new List(); static List assign_statements = new List(); - static string function_call_statement; protected FunctionBody CreateBody(Function fun, bool wantCLSCompliance) { @@ -642,7 +639,7 @@ namespace Bind.Structures fixed_statements.Clear(); assign_statements.Clear(); - if (f.Name == "LoadDisplayColorTableEXT") + //if (f.Name == "LoadDisplayColorTableEXT") { } @@ -652,10 +649,10 @@ namespace Bind.Structures { if (p.NeedsPin) { - // Use GCHandle to obtain pointer to generic parameters and 'fixed' for arrays. - // This is because fixed can only take the address of fields, not managed objects. if (p.WrapperType == WrapperTypes.GenericParameter) { + // Use GCHandle to obtain pointer to generic parameters and 'fixed' for arrays. + // This is because fixed can only take the address of fields, not managed objects. handle_statements.Add(String.Format( "{0} {1} = {0}.Alloc({2}, System.Runtime.InteropServices.GCHandleType.Pinned);", "System.Runtime.InteropServices.GCHandle", p.Name + "_ptr", p.Name)); @@ -674,6 +671,7 @@ namespace Bind.Structures p.WrapperType == WrapperTypes.ArrayParameter || p.WrapperType == WrapperTypes.ReferenceParameter) { + // A fixed statement is issued for all non-generic pointers, arrays and references. fixed_statements.Add(String.Format( "fixed ({0}* {1} = {2})", wantCLSCompliance && !p.CLSCompliant ? p.GetCLSCompliantType() : p.CurrentType, diff --git a/Source/Bind/Structures/Enum.cs b/Source/Bind/Structures/Enum.cs index f7db633f..3f921614 100644 --- a/Source/Bind/Structures/Enum.cs +++ b/Source/Bind/Structures/Enum.cs @@ -16,27 +16,43 @@ namespace Bind.Structures public class Enum { internal static EnumCollection GLEnums; + internal static EnumCollection AuxEnums; private static bool enumsLoaded; + internal static void Initialize(string enumFile, string enumextFile, string auxFile) + { + Initialize(enumFile, enumextFile); + + using (System.IO.StreamReader sr = new System.IO.StreamReader(Path.Combine(Settings.InputPath, "GL2\\enum.spec"))) + { + AuxEnums = Bind.MainClass.Generator.ReadEnums(sr); + } + } + internal static void Initialize(string enumFile, string enumextFile) { if (!enumsLoaded) { - using (StreamReader sr = Utilities.OpenSpecFile(Settings.InputPath, enumFile)) + if (!String.IsNullOrEmpty(enumFile)) { - GLEnums = Bind.MainClass.Generator.ReadEnums(sr); - } - - using (StreamReader sr = Utilities.OpenSpecFile(Settings.InputPath, enumextFile)) - { - foreach (Bind.Structures.Enum e in Bind.MainClass.Generator.ReadEnums(sr).Values) + using (StreamReader sr = Utilities.OpenSpecFile(Settings.InputPath, enumFile)) { - //enums.Add(e.Name, e); - Utilities.Merge(GLEnums, e); + GLEnums = Bind.MainClass.Generator.ReadEnums(sr); } } + if (!String.IsNullOrEmpty(enumextFile)) + { + using (StreamReader sr = Utilities.OpenSpecFile(Settings.InputPath, enumextFile)) + { + foreach (Bind.Structures.Enum e in Bind.MainClass.Generator.ReadEnums(sr).Values) + { + //enums.Add(e.Name, e); + Utilities.Merge(GLEnums, e); + } + } + } enumsLoaded = true; } } diff --git a/Source/Bind/Structures/Function.cs b/Source/Bind/Structures/Function.cs index 01c2bbd3..f2ca252d 100644 --- a/Source/Bind/Structures/Function.cs +++ b/Source/Bind/Structures/Function.cs @@ -31,23 +31,18 @@ namespace Bind.Structures #endregion - Regex functionsNotToTrim = new Regex(@"(Coord1|Attrib(I?)1(u?)|Stream1|Uniform2(u?))[dfis]v"); - - //Regex endings = new Regex(@"(.)+[df(u?[isb])]v?"); - - private static List endings = new List( - new string[] - { - "fv", "f", - "dv", "d", - "i", "iv", - "s", "sv", - "b", "bv", - "ui", "uiv", - "us", "usv", - "ub", "ubv" - }); + static Regex endings = new Regex(@"([df]|u?[isb])v?", RegexOptions.Compiled | RegexOptions.RightToLeft); + static Regex endingsNotToTrim = new Regex("(ib|[tdr]s|nd)", RegexOptions.Compiled | RegexOptions.RightToLeft); + /// + /// Add a trailing v to functions matching this regex. Used to differntiate between overloads taking both + /// a 'type' and a 'ref type' (such overloads are not CLS Compliant). + /// + /// + /// The default Regex matches no functions. Create a new Regex in Bind.Generator classes to override the default behavior. + /// + internal static Regex endingsAddV = new Regex("^0", RegexOptions.Compiled); + #region --- Constructors --- public Function() @@ -55,14 +50,7 @@ namespace Bind.Structures { Body = new FunctionBody(); } - /* - public Function(Function f) - : base(f) - { - this.Body = new FunctionBody(f.Body); - this.Name = f.Name; - } - */ + public Function(Delegate d) : base(d) { @@ -103,7 +91,7 @@ namespace Bind.Structures #endregion #region public string TrimmedName - + /* string trimmedName; /// /// Gets or sets the name of the opengl function, trimming the excess 234dfubsiv endings. @@ -117,7 +105,8 @@ namespace Bind.Structures trimmedName = value.Trim(); } } - + */ + public string TrimmedName; #endregion #region public override string Name @@ -134,25 +123,25 @@ namespace Bind.Structures { base.Name = value; - // If we don't need compatibility with Tao, - // remove the Extension and the overload information from the name - // (Extension == "ARB", "EXT", etc, overload == [u][bsidf][v]) - // TODO: Use some regex's here, to reduce clutter. - TrimmedName = value; - if (Settings.Compatibility == Settings.Legacy.Tao) { + // If we don't need compatibility with Tao, + // remove the Extension and the overload information from the name + // (Extension == "ARB", "EXT", etc, overload == [u][bsidf][v]) + // TODO: Use some regex's here, to reduce clutter. + TrimmedName = value; } else { TrimmedName = Utilities.StripGL2Extension(value); //if (TrimmedName.Contains("Uniform2iv")) - { - //Console.Write("niar"); - } + //{ + // Console.Write("niar"); + //} // Remove overload + /* for (int i = 3; i >= 1; i--) { if (endings.Contains(TrimmedName.Substring(TrimmedName.Length - i))) @@ -165,7 +154,7 @@ namespace Bind.Structures // TODO: Add better handling for CLS-Compliance on ref ('v') functions. if (Char.IsDigit(TrimmedName[TrimmedName.Length - (i + 1)])) { - if (!functionsNotToTrim.IsMatch(Name)) + if (!endingsAddV.IsMatch(Name)) { TrimmedName = TrimmedName.Substring(0, TrimmedName.Length - i); } @@ -181,6 +170,27 @@ namespace Bind.Structures return; } } + */ + + if (!endingsNotToTrim.IsMatch(Name)) + { + // Some endings should not be trimmed, for example: 'b' from Attrib + + Match m = endings.Match(TrimmedName); + + if (m.Index + m.Length == TrimmedName.Length) + { // Only trim endings, not internal matches. + if (m.Value[m.Length - 1] == 'v' && endingsAddV.IsMatch(Name)) + { // Only trim ending 'v' when there is a number + TrimmedName = TrimmedName.Substring(0, m.Index) + "v"; + } + else + { + + TrimmedName = TrimmedName.Substring(0, m.Index); + } + } + } } } } @@ -217,7 +227,8 @@ namespace Bind.Structures public bool Equals(Function other) { - return !String.IsNullOrEmpty(this.TrimmedName) && !String.IsNullOrEmpty(other.TrimmedName) && + return + !String.IsNullOrEmpty(this.TrimmedName) && !String.IsNullOrEmpty(other.TrimmedName) && this.TrimmedName == other.TrimmedName && this.Parameters.ToString(true) == other.Parameters.ToString(true); } diff --git a/Source/Bind/Structures/Parameter.cs b/Source/Bind/Structures/Parameter.cs index 43d37954..6549de75 100644 --- a/Source/Bind/Structures/Parameter.cs +++ b/Source/Bind/Structures/Parameter.cs @@ -11,13 +11,14 @@ using System.Runtime.InteropServices; namespace Bind.Structures { - #region Parameter class - /// /// Represents a single parameter of an opengl function. /// public class Parameter : Type { + string cache; + bool rebuild; + #region Constructors /// @@ -38,24 +39,33 @@ namespace Bind.Structures if (p == null) return; - this.Name = !String.IsNullOrEmpty(p.Name) ? new string(p.Name.ToCharArray()) : ""; + this.Name = p.Name; this.Unchecked = p.Unchecked; this.UnmanagedType = p.UnmanagedType; this.Flow = p.Flow; + this.cache = p.cache; + //this.rebuild = false; } #endregion #region public string Name - string _name; + string _name = String.Empty; /// /// Gets or sets the name of the parameter. /// public string Name { get { return _name; } - set { _name = value; } + set + { + if (_name != value) + { + _name = value; + rebuild = true; + } + } } #endregion @@ -69,7 +79,14 @@ namespace Bind.Structures private UnmanagedType UnmanagedType { get { return _unmanaged_type; } - set { _unmanaged_type = value; } + set + { + if (_unmanaged_type != value) + { + _unmanaged_type = value; + rebuild = true; + } + } } #endregion @@ -95,7 +112,14 @@ namespace Bind.Structures public FlowDirection Flow { get { return _flow; } - set { _flow = value; } + set + { + if (_flow != value) + { + _flow = value; + rebuild = true; + } + } } #endregion @@ -120,7 +144,31 @@ namespace Bind.Structures public bool Unchecked { get { return _unchecked; } - set { _unchecked = value; } + set + { + if (_unchecked != value) + { + _unchecked = value; + rebuild = true; + } + } + } + + #endregion + + #region public override string CurrentType + + public override string CurrentType + { + get + { + return base.CurrentType; + } + set + { + base.CurrentType = value; + rebuild = true; + } } #endregion @@ -138,58 +186,59 @@ namespace Bind.Structures public string ToString(bool taoCompatible) { - StringBuilder sb = new StringBuilder(); - - //if (UnmanagedType == UnmanagedType.AsAny && Flow == FlowDirection.In) - // sb.Append("[MarshalAs(UnmanagedType.AsAny)] "); - - //if (UnmanagedType == UnmanagedType.LPArray) - // sb.Append("[MarshalAs(UnmanagedType.LPArray)] "); - - //if (Flow == FlowDirection.Out && !Array && !(Type == "IntPtr")) - // sb.Append("out "); - - if (Flow == FlowDirection.Out) - sb.Append("[Out] "); - else if (Flow == FlowDirection.Undefined) - sb.Append("[In, Out] "); - - if (Reference) + if (!String.IsNullOrEmpty(cache) && !rebuild) { - if (Flow == FlowDirection.Out) - sb.Append("out "); - else - sb.Append("ref "); + return cache; } - - if (taoCompatible && Settings.Compatibility == Settings.Legacy.Tao) + else { - if (Pointer) + StringBuilder sb = new StringBuilder(); + + if (Flow == FlowDirection.Out) + sb.Append("[Out] "); + else if (Flow == FlowDirection.Undefined) + sb.Append("[In, Out] "); + + if (Reference) { - sb.Append("IntPtr"); + if (Flow == FlowDirection.Out) + sb.Append("out "); + else + sb.Append("ref "); + } + + if (taoCompatible && Settings.Compatibility == Settings.Legacy.Tao) + { + if (Pointer) + { + sb.Append("IntPtr"); + } + else + { + sb.Append(CurrentType); + if (Array > 0) + sb.Append("[]"); + } } else { sb.Append(CurrentType); + if (Pointer) + sb.Append("*"); if (Array > 0) sb.Append("[]"); } - } - else - { - sb.Append(CurrentType); - if (Pointer) - sb.Append("*"); - if (Array > 0) - sb.Append("[]"); - } - if (!String.IsNullOrEmpty(Name)) - { - sb.Append(" "); - sb.Append(Utilities.Keywords.Contains(Name) ? "@" + Name : Name); + if (!String.IsNullOrEmpty(Name)) + { + sb.Append(" "); + sb.Append(Utilities.Keywords.Contains(Name) ? "@" + Name : Name); + } + + rebuild = false; + cache = sb.ToString(); + return cache; } - return sb.ToString(); } #endregion @@ -203,7 +252,9 @@ namespace Bind.Structures Parameter p = new Parameter(par); // Translate enum types - if (Enum.GLEnums.TryGetValue(p.CurrentType, out @enum) && @enum.Name != "GLenum") + if ((Enum.GLEnums.TryGetValue(p.CurrentType, out @enum) || + (Enum.AuxEnums != null && Enum.AuxEnums.TryGetValue(p.CurrentType, out @enum))) && + @enum.Name != "GLenum") { if (Settings.Compatibility == Settings.Legacy.Tao) p.CurrentType = "int"; @@ -305,8 +356,6 @@ namespace Bind.Structures #endregion } - #endregion - #region ParameterCollection class /// @@ -314,6 +363,10 @@ namespace Bind.Structures /// public class ParameterCollection : List { + string cache = String.Empty; + string callStringCache = String.Empty; + bool rebuild = true; + #region Constructors public ParameterCollection() @@ -330,6 +383,12 @@ namespace Bind.Structures #endregion + new public void Add(Parameter p) + { + rebuild = true; + base.Add(p); + } + #region override public string ToString() /// @@ -353,28 +412,36 @@ namespace Bind.Structures /// The parameter list of an opengl function in the form ( [parameters] ) public string ToString(bool taoCompatible) { - StringBuilder sb = new StringBuilder(); - sb.Append("("); - if (this.Count > 0) + if (!rebuild) { - foreach (Parameter p in this) - { - if (taoCompatible) - { - sb.Append(p.ToString(true)); - } - else - { - sb.Append(p.ToString()); - } - sb.Append(", "); - } - sb.Replace(", ", ")", sb.Length - 2, 2); + return cache; } else - sb.Append(")"); + { + StringBuilder sb = new StringBuilder(); + sb.Append("("); + if (this.Count > 0) + { + foreach (Parameter p in this) + { + if (taoCompatible) + { + sb.Append(p.ToString(true)); + } + else + { + sb.Append(p.ToString()); + } + sb.Append(", "); + } + sb.Replace(", ", ")", sb.Length - 2, 2); + } + else + sb.Append(")"); - return sb.ToString(); + cache = sb.ToString(); + return cache; + } } #endregion @@ -386,58 +453,66 @@ namespace Bind.Structures public string CallString(bool taoCompatible) { - StringBuilder sb = new StringBuilder(); - - sb.Append("("); - - if (this.Count > 0) + if (!rebuild) { - foreach (Parameter p in this) - { - if (p.Unchecked) - sb.Append("unchecked((" + p.CurrentType + ")"); - - if (p.CurrentType != "object") - { - if (p.CurrentType.ToLower().Contains("string")) - { - sb.Append(String.Format("({0}{1})", - p.CurrentType, (p.Array > 0) ? "[]" : "")); - - } - else if (p.Pointer || p.Array > 0 || p.Reference) - { - sb.Append(String.Format("({0}*)", - p.CurrentType /*, (p.Pointer || p.Array > 0) ? "*" : ""*/)); - } - //else if (p.Reference) - //{ - // sb.Append(String.Format("{0} ({1})", - // p.Flow == Parameter.FlowDirection.Out ? "out" : "ref", p.CurrentType)); - //} - else - { - sb.Append(String.Format("({0})", p.CurrentType)); - } - } - - sb.Append( - Utilities.Keywords.Contains(p.Name) ? "@" + p.Name : p.Name - ); - - if (p.Unchecked) - sb.Append(")"); - - sb.Append(", "); - } - sb.Replace(", ", ")", sb.Length - 2, 2); + return callStringCache; } else { - sb.Append(")"); - } + StringBuilder sb = new StringBuilder(); - return sb.ToString(); + sb.Append("("); + + if (this.Count > 0) + { + foreach (Parameter p in this) + { + if (p.Unchecked) + sb.Append("unchecked((" + p.CurrentType + ")"); + + if (p.CurrentType != "object") + { + if (p.CurrentType.ToLower().Contains("string")) + { + sb.Append(String.Format("({0}{1})", + p.CurrentType, (p.Array > 0) ? "[]" : "")); + + } + else if (p.Pointer || p.Array > 0 || p.Reference) + { + sb.Append(String.Format("({0}*)", + p.CurrentType /*, (p.Pointer || p.Array > 0) ? "*" : ""*/)); + } + //else if (p.Reference) + //{ + // sb.Append(String.Format("{0} ({1})", + // p.Flow == Parameter.FlowDirection.Out ? "out" : "ref", p.CurrentType)); + //} + else + { + sb.Append(String.Format("({0})", p.CurrentType)); + } + } + + sb.Append( + Utilities.Keywords.Contains(p.Name) ? "@" + p.Name : p.Name + ); + + if (p.Unchecked) + sb.Append(")"); + + sb.Append(", "); + } + sb.Replace(", ", ")", sb.Length - 2, 2); + } + else + { + sb.Append(")"); + } + + callStringCache = sb.ToString(); + return callStringCache; + } } public bool ContainsType(string type) diff --git a/Source/Bind/Structures/Type.cs b/Source/Bind/Structures/Type.cs index 806e994d..2f4b48cf 100644 --- a/Source/Bind/Structures/Type.cs +++ b/Source/Bind/Structures/Type.cs @@ -52,12 +52,15 @@ namespace Bind.Structures public Type(Type t) { - this.CurrentType = new string(t.CurrentType.ToCharArray()); - this.PreviousType = !String.IsNullOrEmpty(t.PreviousType) ? new string(t.PreviousType.ToCharArray()) : ""; - this.WrapperType = t.WrapperType; - this.Array = t.Array; - this.Pointer = t.Pointer; - this.Reference = t.Reference; + if (t != null) + { + this.CurrentType = t.CurrentType; + this.PreviousType = t.PreviousType; + this.WrapperType = t.WrapperType; + this.Array = t.Array; + this.Pointer = t.Pointer; + this.Reference = t.Reference; + } } #endregion @@ -136,7 +139,7 @@ namespace Bind.Structures #region public bool Pointer - bool pointer = false; + bool pointer; public bool Pointer { diff --git a/Source/Bind/Utilities.cs b/Source/Bind/Utilities.cs index 2c462bd5..cd3d1c22 100644 --- a/Source/Bind/Utilities.cs +++ b/Source/Bind/Utilities.cs @@ -66,7 +66,7 @@ namespace Bind public static class Utilities { - public static char[] Separators = { ' ', '\n', ',', '(', ')', ';', '#' }; + public static readonly char[] Separators = { ' ', '\n', ',', '(', ')', ';', '#' }; #region internal StreamReader OpenSpecFile(string file) diff --git a/Source/Bind/Wgl/Generator.cs b/Source/Bind/Wgl/Generator.cs index 1f87ea39..9881f519 100644 --- a/Source/Bind/Wgl/Generator.cs +++ b/Source/Bind/Wgl/Generator.cs @@ -8,6 +8,8 @@ using System; using System.Collections.Generic; using System.Text; using System.Diagnostics; +using System.Text.RegularExpressions; +using Bind.Structures; namespace Bind.Wgl { diff --git a/Source/Examples/OpenGL/Basic/NoFramework/QueryModesForm.cs b/Source/Examples/OpenGL/Basic/NoFramework/QueryModesForm.cs index 70192c8d..daebde58 100644 --- a/Source/Examples/OpenGL/Basic/NoFramework/QueryModesForm.cs +++ b/Source/Examples/OpenGL/Basic/NoFramework/QueryModesForm.cs @@ -119,7 +119,7 @@ namespace Examples.Windowing 0.0, 0.0, 0.0, 0.0, 1.0, 0.0 ); - GL.Rotatef(angle + angle_add, 0.0f, 1.0f, 0.0f); + GL.Rotate(angle + angle_add, 0.0f, 1.0f, 0.0f); angle += 0.5f; GL.Clear(Enums.ClearBufferMask.COLOR_BUFFER_BIT | Enums.ClearBufferMask.DEPTH_BUFFER_BIT); diff --git a/Source/Examples/Tutorial/T10_GLSL_Cube.cs b/Source/Examples/Tutorial/T10_GLSL_Cube.cs index 1b54dd32..2909363f 100644 --- a/Source/Examples/Tutorial/T10_GLSL_Cube.cs +++ b/Source/Examples/Tutorial/T10_GLSL_Cube.cs @@ -87,11 +87,11 @@ namespace Examples.Tutorial GL.ShaderSource(vertex_shader_object, vertex_shader_source.Length, vertex_shader_source, (int[])null); GL.CompileShader(vertex_shader_object); - GL.GetShaderv(vertex_shader_object, GL.Enums.VERSION_2_0.COMPILE_STATUS, out status); + GL.GetShader(vertex_shader_object, GL.Enums.VERSION_2_0.COMPILE_STATUS, out status); if (status != (int)GL.Enums.Boolean.TRUE) { int length = 0; - GL.GetShaderv(vertex_shader_object, GL.Enums.VERSION_2_0.INFO_LOG_LENGTH, out length); + GL.GetShader(vertex_shader_object, GL.Enums.VERSION_2_0.INFO_LOG_LENGTH, out length); StringBuilder info = new StringBuilder(length); GL.GetShaderInfoLog(vertex_shader_object, info.Capacity, out length, info); @@ -100,11 +100,11 @@ namespace Examples.Tutorial GL.ShaderSource(fragment_shader_object, fragment_shader_source.Length, fragment_shader_source, (int[])null); GL.CompileShader(fragment_shader_object); - GL.GetShaderv(fragment_shader_object, GL.Enums.VERSION_2_0.COMPILE_STATUS, out status); + GL.GetShader(fragment_shader_object, GL.Enums.VERSION_2_0.COMPILE_STATUS, out status); if (status != (int)GL.Enums.Boolean.TRUE) { int length; - GL.GetShaderv(vertex_shader_object, GL.Enums.VERSION_2_0.INFO_LOG_LENGTH, out length); + GL.GetShader(vertex_shader_object, GL.Enums.VERSION_2_0.INFO_LOG_LENGTH, out length); StringBuilder info = new StringBuilder(length); GL.GetShaderInfoLog(fragment_shader_object, info.Capacity, out length, info); @@ -163,7 +163,7 @@ namespace Examples.Tutorial 0.0, 0.0, 0.0, 0.0, 1.0, 0.0 ); - GL.Rotatef(angle, 0.0f, 1.0f, 0.0f); + GL.Rotate(angle, 0.0f, 1.0f, 0.0f); angle += 0.05f; } diff --git a/Source/OpenTK/OpenGL/Bindings/GL.cs b/Source/OpenTK/OpenGL/Bindings/GL.cs index 11c80bca..fa06be39 100644 --- a/Source/OpenTK/OpenGL/Bindings/GL.cs +++ b/Source/OpenTK/OpenGL/Bindings/GL.cs @@ -779,13 +779,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Indexv(Double* c) + unsafe void Indexdv(Double* c) { unsafe { Delegates.glIndexdv((Double*)c); } } public static - void Indexv(Double[] c) + void Indexdv(Double[] c) { unsafe { @@ -797,7 +797,7 @@ namespace OpenTK.OpenGL } public static - void Indexv(ref Double c) + void Indexdv(ref Double c) { unsafe { @@ -816,13 +816,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Indexv(Single* c) + unsafe void Indexfv(Single* c) { unsafe { Delegates.glIndexfv((Single*)c); } } public static - void Indexv(Single[] c) + void Indexfv(Single[] c) { unsafe { @@ -834,7 +834,7 @@ namespace OpenTK.OpenGL } public static - void Indexv(ref Single c) + void Indexfv(ref Single c) { unsafe { @@ -853,13 +853,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Indexv(Int32* c) + unsafe void Indexiv(Int32* c) { unsafe { Delegates.glIndexiv((Int32*)c); } } public static - void Indexv(Int32[] c) + void Indexiv(Int32[] c) { unsafe { @@ -871,7 +871,7 @@ namespace OpenTK.OpenGL } public static - void Indexv(ref Int32 c) + void Indexiv(ref Int32 c) { unsafe { @@ -890,13 +890,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Indexv(Int16* c) + unsafe void Indexsv(Int16* c) { unsafe { Delegates.glIndexsv((Int16*)c); } } public static - void Indexv(Int16[] c) + void Indexsv(Int16[] c) { unsafe { @@ -908,7 +908,7 @@ namespace OpenTK.OpenGL } public static - void Indexv(ref Int16 c) + void Indexsv(ref Int16 c) { unsafe { @@ -1592,21 +1592,21 @@ namespace OpenTK.OpenGL } public static - void Rectd(Double x1, Double y1, Double x2, Double y2) + void Rect(Double x1, Double y1, Double x2, Double y2) { Delegates.glRectd((Double)x1, (Double)y1, (Double)x2, (Double)y2); } [System.CLSCompliant(false)] public static - unsafe void Rectv(Double* v1, Double* v2) + unsafe void Rect(Double* v1, Double* v2) { unsafe { Delegates.glRectdv((Double*)v1, (Double*)v2); } } [System.CLSCompliant(false)] public static - unsafe void Rectv(Double* v1, Double[] v2) + unsafe void Rect(Double* v1, Double[] v2) { unsafe { @@ -1619,7 +1619,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Rectv(Double* v1, ref Double v2) + unsafe void Rect(Double* v1, ref Double v2) { unsafe { @@ -1632,7 +1632,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Rectv(Double[] v1, Double* v2) + unsafe void Rect(Double[] v1, Double* v2) { unsafe { @@ -1644,7 +1644,7 @@ namespace OpenTK.OpenGL } public static - void Rectv(Double[] v1, Double[] v2) + void Rect(Double[] v1, Double[] v2) { unsafe { @@ -1657,7 +1657,7 @@ namespace OpenTK.OpenGL } public static - void Rectv(Double[] v1, ref Double v2) + void Rect(Double[] v1, ref Double v2) { unsafe { @@ -1671,7 +1671,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Rectv(ref Double v1, Double* v2) + unsafe void Rect(ref Double v1, Double* v2) { unsafe { @@ -1683,7 +1683,7 @@ namespace OpenTK.OpenGL } public static - void Rectv(ref Double v1, Double[] v2) + void Rect(ref Double v1, Double[] v2) { unsafe { @@ -1696,7 +1696,7 @@ namespace OpenTK.OpenGL } public static - void Rectv(ref Double v1, ref Double v2) + void Rect(ref Double v1, ref Double v2) { unsafe { @@ -1709,21 +1709,21 @@ namespace OpenTK.OpenGL } public static - void Rectf(Single x1, Single y1, Single x2, Single y2) + void Rect(Single x1, Single y1, Single x2, Single y2) { Delegates.glRectf((Single)x1, (Single)y1, (Single)x2, (Single)y2); } [System.CLSCompliant(false)] public static - unsafe void Rectv(Single* v1, Single* v2) + unsafe void Rect(Single* v1, Single* v2) { unsafe { Delegates.glRectfv((Single*)v1, (Single*)v2); } } [System.CLSCompliant(false)] public static - unsafe void Rectv(Single* v1, Single[] v2) + unsafe void Rect(Single* v1, Single[] v2) { unsafe { @@ -1736,7 +1736,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Rectv(Single* v1, ref Single v2) + unsafe void Rect(Single* v1, ref Single v2) { unsafe { @@ -1749,7 +1749,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Rectv(Single[] v1, Single* v2) + unsafe void Rect(Single[] v1, Single* v2) { unsafe { @@ -1761,7 +1761,7 @@ namespace OpenTK.OpenGL } public static - void Rectv(Single[] v1, Single[] v2) + void Rect(Single[] v1, Single[] v2) { unsafe { @@ -1774,7 +1774,7 @@ namespace OpenTK.OpenGL } public static - void Rectv(Single[] v1, ref Single v2) + void Rect(Single[] v1, ref Single v2) { unsafe { @@ -1788,7 +1788,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Rectv(ref Single v1, Single* v2) + unsafe void Rect(ref Single v1, Single* v2) { unsafe { @@ -1800,7 +1800,7 @@ namespace OpenTK.OpenGL } public static - void Rectv(ref Single v1, Single[] v2) + void Rect(ref Single v1, Single[] v2) { unsafe { @@ -1813,7 +1813,7 @@ namespace OpenTK.OpenGL } public static - void Rectv(ref Single v1, ref Single v2) + void Rect(ref Single v1, ref Single v2) { unsafe { @@ -1826,21 +1826,21 @@ namespace OpenTK.OpenGL } public static - void Recti(Int32 x1, Int32 y1, Int32 x2, Int32 y2) + void Rect(Int32 x1, Int32 y1, Int32 x2, Int32 y2) { Delegates.glRecti((Int32)x1, (Int32)y1, (Int32)x2, (Int32)y2); } [System.CLSCompliant(false)] public static - unsafe void Rectv(Int32* v1, Int32* v2) + unsafe void Rect(Int32* v1, Int32* v2) { unsafe { Delegates.glRectiv((Int32*)v1, (Int32*)v2); } } [System.CLSCompliant(false)] public static - unsafe void Rectv(Int32* v1, Int32[] v2) + unsafe void Rect(Int32* v1, Int32[] v2) { unsafe { @@ -1853,7 +1853,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Rectv(Int32* v1, ref Int32 v2) + unsafe void Rect(Int32* v1, ref Int32 v2) { unsafe { @@ -1866,7 +1866,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Rectv(Int32[] v1, Int32* v2) + unsafe void Rect(Int32[] v1, Int32* v2) { unsafe { @@ -1878,7 +1878,7 @@ namespace OpenTK.OpenGL } public static - void Rectv(Int32[] v1, Int32[] v2) + void Rect(Int32[] v1, Int32[] v2) { unsafe { @@ -1891,7 +1891,7 @@ namespace OpenTK.OpenGL } public static - void Rectv(Int32[] v1, ref Int32 v2) + void Rect(Int32[] v1, ref Int32 v2) { unsafe { @@ -1905,7 +1905,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Rectv(ref Int32 v1, Int32* v2) + unsafe void Rect(ref Int32 v1, Int32* v2) { unsafe { @@ -1917,7 +1917,7 @@ namespace OpenTK.OpenGL } public static - void Rectv(ref Int32 v1, Int32[] v2) + void Rect(ref Int32 v1, Int32[] v2) { unsafe { @@ -1930,7 +1930,7 @@ namespace OpenTK.OpenGL } public static - void Rectv(ref Int32 v1, ref Int32 v2) + void Rect(ref Int32 v1, ref Int32 v2) { unsafe { @@ -1950,14 +1950,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Rectv(Int16* v1, Int16* v2) + unsafe void Rectsv(Int16* v1, Int16* v2) { unsafe { Delegates.glRectsv((Int16*)v1, (Int16*)v2); } } [System.CLSCompliant(false)] public static - unsafe void Rectv(Int16* v1, Int16[] v2) + unsafe void Rectsv(Int16* v1, Int16[] v2) { unsafe { @@ -1970,7 +1970,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Rectv(Int16* v1, ref Int16 v2) + unsafe void Rectsv(Int16* v1, ref Int16 v2) { unsafe { @@ -1983,7 +1983,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Rectv(Int16[] v1, Int16* v2) + unsafe void Rectsv(Int16[] v1, Int16* v2) { unsafe { @@ -1995,7 +1995,7 @@ namespace OpenTK.OpenGL } public static - void Rectv(Int16[] v1, Int16[] v2) + void Rectsv(Int16[] v1, Int16[] v2) { unsafe { @@ -2008,7 +2008,7 @@ namespace OpenTK.OpenGL } public static - void Rectv(Int16[] v1, ref Int16 v2) + void Rectsv(Int16[] v1, ref Int16 v2) { unsafe { @@ -2022,7 +2022,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Rectv(ref Int16 v1, Int16* v2) + unsafe void Rectsv(ref Int16 v1, Int16* v2) { unsafe { @@ -2034,7 +2034,7 @@ namespace OpenTK.OpenGL } public static - void Rectv(ref Int16 v1, Int16[] v2) + void Rectsv(ref Int16 v1, Int16[] v2) { unsafe { @@ -2047,7 +2047,7 @@ namespace OpenTK.OpenGL } public static - void Rectv(ref Int16 v1, ref Int16 v2) + void Rectsv(ref Int16 v1, ref Int16 v2) { unsafe { @@ -2067,13 +2067,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord1dv(Double* v) + unsafe void TexCoord1v(Double* v) { unsafe { Delegates.glTexCoord1dv((Double*)v); } } public static - void TexCoord1dv(Double[] v) + void TexCoord1v(Double[] v) { unsafe { @@ -2085,7 +2085,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord1dv(ref Double v) + void TexCoord1v(ref Double v) { unsafe { @@ -2104,13 +2104,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord1fv(Single* v) + unsafe void TexCoord1v(Single* v) { unsafe { Delegates.glTexCoord1fv((Single*)v); } } public static - void TexCoord1fv(Single[] v) + void TexCoord1v(Single[] v) { unsafe { @@ -2122,7 +2122,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord1fv(ref Single v) + void TexCoord1v(ref Single v) { unsafe { @@ -2141,13 +2141,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord1iv(Int32* v) + unsafe void TexCoord1v(Int32* v) { unsafe { Delegates.glTexCoord1iv((Int32*)v); } } public static - void TexCoord1iv(Int32[] v) + void TexCoord1v(Int32[] v) { unsafe { @@ -2159,7 +2159,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord1iv(ref Int32 v) + void TexCoord1v(ref Int32 v) { unsafe { @@ -2178,13 +2178,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord1sv(Int16* v) + unsafe void TexCoord1v(Int16* v) { unsafe { Delegates.glTexCoord1sv((Int16*)v); } } public static - void TexCoord1sv(Int16[] v) + void TexCoord1v(Int16[] v) { unsafe { @@ -2196,7 +2196,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord1sv(ref Int16 v) + void TexCoord1v(ref Int16 v) { unsafe { @@ -3139,7 +3139,7 @@ namespace OpenTK.OpenGL } public static - void Fogf(GL.Enums.FogParameter pname, Single param) + void Fog(GL.Enums.FogParameter pname, Single param) { Delegates.glFogf((GL.Enums.FogParameter)pname, (Single)param); } @@ -3176,7 +3176,7 @@ namespace OpenTK.OpenGL } public static - void Fogi(GL.Enums.FogParameter pname, Int32 param) + void Fog(GL.Enums.FogParameter pname, Int32 param) { Delegates.glFogi((GL.Enums.FogParameter)pname, (Int32)param); } @@ -3225,7 +3225,7 @@ namespace OpenTK.OpenGL } public static - void Lightf(GL.Enums.LightName light, GL.Enums.LightParameter pname, Single param) + void Light(GL.Enums.LightName light, GL.Enums.LightParameter pname, Single param) { Delegates.glLightf((GL.Enums.LightName)light, (GL.Enums.LightParameter)pname, (Single)param); } @@ -3262,7 +3262,7 @@ namespace OpenTK.OpenGL } public static - void Lighti(GL.Enums.LightName light, GL.Enums.LightParameter pname, Int32 param) + void Light(GL.Enums.LightName light, GL.Enums.LightParameter pname, Int32 param) { Delegates.glLighti((GL.Enums.LightName)light, (GL.Enums.LightParameter)pname, (Int32)param); } @@ -3299,7 +3299,7 @@ namespace OpenTK.OpenGL } public static - void LightModelf(GL.Enums.LightModelParameter pname, Single param) + void LightModel(GL.Enums.LightModelParameter pname, Single param) { Delegates.glLightModelf((GL.Enums.LightModelParameter)pname, (Single)param); } @@ -3336,7 +3336,7 @@ namespace OpenTK.OpenGL } public static - void LightModeli(GL.Enums.LightModelParameter pname, Int32 param) + void LightModel(GL.Enums.LightModelParameter pname, Int32 param) { Delegates.glLightModeli((GL.Enums.LightModelParameter)pname, (Int32)param); } @@ -3395,7 +3395,7 @@ namespace OpenTK.OpenGL } public static - void Materialf(GL.Enums.MaterialFace face, GL.Enums.MaterialParameter pname, Single param) + void Material(GL.Enums.MaterialFace face, GL.Enums.MaterialParameter pname, Single param) { Delegates.glMaterialf((GL.Enums.MaterialFace)face, (GL.Enums.MaterialParameter)pname, (Single)param); } @@ -3432,7 +3432,7 @@ namespace OpenTK.OpenGL } public static - void Materiali(GL.Enums.MaterialFace face, GL.Enums.MaterialParameter pname, Int32 param) + void Material(GL.Enums.MaterialFace face, GL.Enums.MaterialParameter pname, Int32 param) { Delegates.glMateriali((GL.Enums.MaterialFace)face, (GL.Enums.MaterialParameter)pname, (Int32)param); } @@ -3524,7 +3524,7 @@ namespace OpenTK.OpenGL } public static - void TexParameterf(GL.Enums.TextureTarget target, GL.Enums.TextureParameterName pname, Single param) + void TexParameter(GL.Enums.TextureTarget target, GL.Enums.TextureParameterName pname, Single param) { Delegates.glTexParameterf((GL.Enums.TextureTarget)target, (GL.Enums.TextureParameterName)pname, (Single)param); } @@ -3561,7 +3561,7 @@ namespace OpenTK.OpenGL } public static - void TexParameteri(GL.Enums.TextureTarget target, GL.Enums.TextureParameterName pname, Int32 param) + void TexParameter(GL.Enums.TextureTarget target, GL.Enums.TextureParameterName pname, Int32 param) { Delegates.glTexParameteri((GL.Enums.TextureTarget)target, (GL.Enums.TextureParameterName)pname, (Int32)param); } @@ -3644,7 +3644,7 @@ namespace OpenTK.OpenGL } public static - void TexEnvf(GL.Enums.TextureEnvTarget target, GL.Enums.TextureEnvParameter pname, Single param) + void TexEnv(GL.Enums.TextureEnvTarget target, GL.Enums.TextureEnvParameter pname, Single param) { Delegates.glTexEnvf((GL.Enums.TextureEnvTarget)target, (GL.Enums.TextureEnvParameter)pname, (Single)param); } @@ -3681,7 +3681,7 @@ namespace OpenTK.OpenGL } public static - void TexEnvi(GL.Enums.TextureEnvTarget target, GL.Enums.TextureEnvParameter pname, Int32 param) + void TexEnv(GL.Enums.TextureEnvTarget target, GL.Enums.TextureEnvParameter pname, Int32 param) { Delegates.glTexEnvi((GL.Enums.TextureEnvTarget)target, (GL.Enums.TextureEnvParameter)pname, (Int32)param); } @@ -3725,13 +3725,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexGenv(GL.Enums.TextureCoordName coord, GL.Enums.TextureGenParameter pname, Double* @params) + unsafe void TexGendv(GL.Enums.TextureCoordName coord, GL.Enums.TextureGenParameter pname, Double* @params) { unsafe { Delegates.glTexGendv((GL.Enums.TextureCoordName)coord, (GL.Enums.TextureGenParameter)pname, (Double*)@params); } } public static - void TexGenv(GL.Enums.TextureCoordName coord, GL.Enums.TextureGenParameter pname, Double[] @params) + void TexGendv(GL.Enums.TextureCoordName coord, GL.Enums.TextureGenParameter pname, Double[] @params) { unsafe { @@ -3743,7 +3743,7 @@ namespace OpenTK.OpenGL } public static - void TexGenv(GL.Enums.TextureCoordName coord, GL.Enums.TextureGenParameter pname, ref Double @params) + void TexGendv(GL.Enums.TextureCoordName coord, GL.Enums.TextureGenParameter pname, ref Double @params) { unsafe { @@ -3755,7 +3755,7 @@ namespace OpenTK.OpenGL } public static - void TexGenf(GL.Enums.TextureCoordName coord, GL.Enums.TextureGenParameter pname, Single param) + void TexGen(GL.Enums.TextureCoordName coord, GL.Enums.TextureGenParameter pname, Single param) { Delegates.glTexGenf((GL.Enums.TextureCoordName)coord, (GL.Enums.TextureGenParameter)pname, (Single)param); } @@ -3792,7 +3792,7 @@ namespace OpenTK.OpenGL } public static - void TexGeni(GL.Enums.TextureCoordName coord, GL.Enums.TextureGenParameter pname, Int32 param) + void TexGen(GL.Enums.TextureCoordName coord, GL.Enums.TextureGenParameter pname, Int32 param) { Delegates.glTexGeni((GL.Enums.TextureCoordName)coord, (GL.Enums.TextureGenParameter)pname, (Int32)param); } @@ -3936,7 +3936,7 @@ namespace OpenTK.OpenGL } public static - void InitNames() + void InitName() { Delegates.glInitNames(); } @@ -4257,13 +4257,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void EvalCoord1dv(Double* u) + unsafe void EvalCoord1v(Double* u) { unsafe { Delegates.glEvalCoord1dv((Double*)u); } } public static - void EvalCoord1dv(Double[] u) + void EvalCoord1v(Double[] u) { unsafe { @@ -4275,7 +4275,7 @@ namespace OpenTK.OpenGL } public static - void EvalCoord1dv(ref Double u) + void EvalCoord1v(ref Double u) { unsafe { @@ -4294,13 +4294,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void EvalCoord1fv(Single* u) + unsafe void EvalCoord1v(Single* u) { unsafe { Delegates.glEvalCoord1fv((Single*)u); } } public static - void EvalCoord1fv(Single[] u) + void EvalCoord1v(Single[] u) { unsafe { @@ -4312,7 +4312,7 @@ namespace OpenTK.OpenGL } public static - void EvalCoord1fv(ref Single u) + void EvalCoord1v(ref Single u) { unsafe { @@ -4471,38 +4471,38 @@ namespace OpenTK.OpenGL } public static - void PixelTransferf(GL.Enums.PixelTransferParameter pname, Single param) + void PixelTransfer(GL.Enums.PixelTransferParameter pname, Single param) { Delegates.glPixelTransferf((GL.Enums.PixelTransferParameter)pname, (Single)param); } public static - void PixelTransferi(GL.Enums.PixelTransferParameter pname, Int32 param) + void PixelTransfer(GL.Enums.PixelTransferParameter pname, Int32 param) { Delegates.glPixelTransferi((GL.Enums.PixelTransferParameter)pname, (Int32)param); } public static - void PixelStoref(GL.Enums.PixelStoreParameter pname, Single param) + void PixelStore(GL.Enums.PixelStoreParameter pname, Single param) { Delegates.glPixelStoref((GL.Enums.PixelStoreParameter)pname, (Single)param); } public static - void PixelStorei(GL.Enums.PixelStoreParameter pname, Int32 param) + void PixelStore(GL.Enums.PixelStoreParameter pname, Int32 param) { Delegates.glPixelStorei((GL.Enums.PixelStoreParameter)pname, (Int32)param); } [System.CLSCompliant(false)] public static - unsafe void PixelMapv(GL.Enums.PixelMap map, Int32 mapsize, Single* values) + unsafe void PixelMap(GL.Enums.PixelMap map, Int32 mapsize, Single* values) { unsafe { Delegates.glPixelMapfv((GL.Enums.PixelMap)map, (Int32)mapsize, (Single*)values); } } public static - void PixelMapv(GL.Enums.PixelMap map, Int32 mapsize, Single[] values) + void PixelMap(GL.Enums.PixelMap map, Int32 mapsize, Single[] values) { unsafe { @@ -4514,7 +4514,7 @@ namespace OpenTK.OpenGL } public static - void PixelMapv(GL.Enums.PixelMap map, Int32 mapsize, ref Single values) + void PixelMap(GL.Enums.PixelMap map, Int32 mapsize, ref Single values) { unsafe { @@ -4527,14 +4527,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void PixelMapv(GL.Enums.PixelMap map, Int32 mapsize, UInt32* values) + unsafe void PixelMap(GL.Enums.PixelMap map, Int32 mapsize, UInt32* values) { unsafe { Delegates.glPixelMapuiv((GL.Enums.PixelMap)map, (Int32)mapsize, (UInt32*)values); } } [System.CLSCompliant(false)] public static - unsafe void PixelMapv(GL.Enums.PixelMap map, Int32 mapsize, Int32* values) + unsafe void PixelMap(GL.Enums.PixelMap map, Int32 mapsize, Int32* values) { unsafe { @@ -4544,7 +4544,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void PixelMapv(GL.Enums.PixelMap map, Int32 mapsize, UInt32[] values) + void PixelMap(GL.Enums.PixelMap map, Int32 mapsize, UInt32[] values) { unsafe { @@ -4556,7 +4556,7 @@ namespace OpenTK.OpenGL } public static - void PixelMapv(GL.Enums.PixelMap map, Int32 mapsize, Int32[] values) + void PixelMap(GL.Enums.PixelMap map, Int32 mapsize, Int32[] values) { unsafe { @@ -4569,7 +4569,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void PixelMapv(GL.Enums.PixelMap map, Int32 mapsize, ref UInt32 values) + void PixelMap(GL.Enums.PixelMap map, Int32 mapsize, ref UInt32 values) { unsafe { @@ -4581,7 +4581,7 @@ namespace OpenTK.OpenGL } public static - void PixelMapv(GL.Enums.PixelMap map, Int32 mapsize, ref Int32 values) + void PixelMap(GL.Enums.PixelMap map, Int32 mapsize, ref Int32 values) { unsafe { @@ -4594,14 +4594,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void PixelMapv(GL.Enums.PixelMap map, Int32 mapsize, UInt16* values) + unsafe void PixelMap(GL.Enums.PixelMap map, Int32 mapsize, UInt16* values) { unsafe { Delegates.glPixelMapusv((GL.Enums.PixelMap)map, (Int32)mapsize, (UInt16*)values); } } [System.CLSCompliant(false)] public static - unsafe void PixelMapv(GL.Enums.PixelMap map, Int32 mapsize, Int16* values) + unsafe void PixelMap(GL.Enums.PixelMap map, Int32 mapsize, Int16* values) { unsafe { @@ -4611,7 +4611,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void PixelMapv(GL.Enums.PixelMap map, Int32 mapsize, UInt16[] values) + void PixelMap(GL.Enums.PixelMap map, Int32 mapsize, UInt16[] values) { unsafe { @@ -4623,7 +4623,7 @@ namespace OpenTK.OpenGL } public static - void PixelMapv(GL.Enums.PixelMap map, Int32 mapsize, Int16[] values) + void PixelMap(GL.Enums.PixelMap map, Int32 mapsize, Int16[] values) { unsafe { @@ -4636,7 +4636,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void PixelMapv(GL.Enums.PixelMap map, Int32 mapsize, ref UInt16 values) + void PixelMap(GL.Enums.PixelMap map, Int32 mapsize, ref UInt16 values) { unsafe { @@ -4648,7 +4648,7 @@ namespace OpenTK.OpenGL } public static - void PixelMapv(GL.Enums.PixelMap map, Int32 mapsize, ref Int16 values) + void PixelMap(GL.Enums.PixelMap map, Int32 mapsize, ref Int16 values) { unsafe { @@ -4666,20 +4666,20 @@ namespace OpenTK.OpenGL } public static - void CopyPixels(Int32 x, Int32 y, Int32 width, Int32 height, GL.Enums.PixelCopyType type) + void CopyPixel(Int32 x, Int32 y, Int32 width, Int32 height, GL.Enums.PixelCopyType type) { Delegates.glCopyPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (GL.Enums.PixelCopyType)type); } [System.CLSCompliant(false)] public static - unsafe void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [Out] void* pixels) + unsafe void ReadPixel(Int32 x, Int32 y, Int32 width, Int32 height, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [Out] void* pixels) { unsafe { Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (GL.Enums.PixelFormat)format, (GL.Enums.PixelType)type, (void*)pixels); } } public static - void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object pixels) + void ReadPixel(Int32 x, Int32 y, Int32 width, Int32 height, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object pixels) { unsafe { @@ -4696,13 +4696,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void DrawPixels(Int32 width, Int32 height, GL.Enums.PixelFormat format, GL.Enums.PixelType type, void* pixels) + unsafe void DrawPixel(Int32 width, Int32 height, GL.Enums.PixelFormat format, GL.Enums.PixelType type, void* pixels) { unsafe { Delegates.glDrawPixels((Int32)width, (Int32)height, (GL.Enums.PixelFormat)format, (GL.Enums.PixelType)type, (void*)pixels); } } public static - void DrawPixels(Int32 width, Int32 height, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object pixels) + void DrawPixel(Int32 width, Int32 height, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object pixels) { unsafe { @@ -4924,13 +4924,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetMapv(GL.Enums.MapTarget target, GL.Enums.GetMapQuery query, [Out] Double* v) + unsafe void GetMap(GL.Enums.MapTarget target, GL.Enums.GetMapQuery query, [Out] Double* v) { unsafe { Delegates.glGetMapdv((GL.Enums.MapTarget)target, (GL.Enums.GetMapQuery)query, (Double*)v); } } public static - void GetMapv(GL.Enums.MapTarget target, GL.Enums.GetMapQuery query, [Out] Double[] v) + void GetMap(GL.Enums.MapTarget target, GL.Enums.GetMapQuery query, [Out] Double[] v) { unsafe { @@ -4942,7 +4942,7 @@ namespace OpenTK.OpenGL } public static - void GetMapv(GL.Enums.MapTarget target, GL.Enums.GetMapQuery query, [Out] out Double v) + void GetMap(GL.Enums.MapTarget target, GL.Enums.GetMapQuery query, [Out] out Double v) { unsafe { @@ -4956,13 +4956,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetMapv(GL.Enums.MapTarget target, GL.Enums.GetMapQuery query, [Out] Single* v) + unsafe void GetMap(GL.Enums.MapTarget target, GL.Enums.GetMapQuery query, [Out] Single* v) { unsafe { Delegates.glGetMapfv((GL.Enums.MapTarget)target, (GL.Enums.GetMapQuery)query, (Single*)v); } } public static - void GetMapv(GL.Enums.MapTarget target, GL.Enums.GetMapQuery query, [Out] Single[] v) + void GetMap(GL.Enums.MapTarget target, GL.Enums.GetMapQuery query, [Out] Single[] v) { unsafe { @@ -4974,7 +4974,7 @@ namespace OpenTK.OpenGL } public static - void GetMapv(GL.Enums.MapTarget target, GL.Enums.GetMapQuery query, [Out] out Single v) + void GetMap(GL.Enums.MapTarget target, GL.Enums.GetMapQuery query, [Out] out Single v) { unsafe { @@ -4988,13 +4988,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetMapv(GL.Enums.MapTarget target, GL.Enums.GetMapQuery query, [Out] Int32* v) + unsafe void GetMap(GL.Enums.MapTarget target, GL.Enums.GetMapQuery query, [Out] Int32* v) { unsafe { Delegates.glGetMapiv((GL.Enums.MapTarget)target, (GL.Enums.GetMapQuery)query, (Int32*)v); } } public static - void GetMapv(GL.Enums.MapTarget target, GL.Enums.GetMapQuery query, [Out] Int32[] v) + void GetMap(GL.Enums.MapTarget target, GL.Enums.GetMapQuery query, [Out] Int32[] v) { unsafe { @@ -5006,7 +5006,7 @@ namespace OpenTK.OpenGL } public static - void GetMapv(GL.Enums.MapTarget target, GL.Enums.GetMapQuery query, [Out] out Int32 v) + void GetMap(GL.Enums.MapTarget target, GL.Enums.GetMapQuery query, [Out] out Int32 v) { unsafe { @@ -5084,13 +5084,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetPixelMapv(GL.Enums.PixelMap map, [Out] Single* values) + unsafe void GetPixelMap(GL.Enums.PixelMap map, [Out] Single* values) { unsafe { Delegates.glGetPixelMapfv((GL.Enums.PixelMap)map, (Single*)values); } } public static - void GetPixelMapv(GL.Enums.PixelMap map, [Out] Single[] values) + void GetPixelMap(GL.Enums.PixelMap map, [Out] Single[] values) { unsafe { @@ -5102,7 +5102,7 @@ namespace OpenTK.OpenGL } public static - void GetPixelMapv(GL.Enums.PixelMap map, [Out] out Single values) + void GetPixelMap(GL.Enums.PixelMap map, [Out] out Single values) { unsafe { @@ -5116,14 +5116,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetPixelMapv(GL.Enums.PixelMap map, [Out] UInt32* values) + unsafe void GetPixelMap(GL.Enums.PixelMap map, [Out] UInt32* values) { unsafe { Delegates.glGetPixelMapuiv((GL.Enums.PixelMap)map, (UInt32*)values); } } [System.CLSCompliant(false)] public static - unsafe void GetPixelMapv(GL.Enums.PixelMap map, [Out] Int32* values) + unsafe void GetPixelMap(GL.Enums.PixelMap map, [Out] Int32* values) { unsafe { @@ -5133,7 +5133,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetPixelMapv(GL.Enums.PixelMap map, [Out] UInt32[] values) + void GetPixelMap(GL.Enums.PixelMap map, [Out] UInt32[] values) { unsafe { @@ -5145,7 +5145,7 @@ namespace OpenTK.OpenGL } public static - void GetPixelMapv(GL.Enums.PixelMap map, [Out] Int32[] values) + void GetPixelMap(GL.Enums.PixelMap map, [Out] Int32[] values) { unsafe { @@ -5158,7 +5158,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetPixelMapv(GL.Enums.PixelMap map, [Out] out UInt32 values) + void GetPixelMap(GL.Enums.PixelMap map, [Out] out UInt32 values) { unsafe { @@ -5171,7 +5171,7 @@ namespace OpenTK.OpenGL } public static - void GetPixelMapv(GL.Enums.PixelMap map, [Out] out Int32 values) + void GetPixelMap(GL.Enums.PixelMap map, [Out] out Int32 values) { unsafe { @@ -5185,14 +5185,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetPixelMapv(GL.Enums.PixelMap map, [Out] UInt16* values) + unsafe void GetPixelMap(GL.Enums.PixelMap map, [Out] UInt16* values) { unsafe { Delegates.glGetPixelMapusv((GL.Enums.PixelMap)map, (UInt16*)values); } } [System.CLSCompliant(false)] public static - unsafe void GetPixelMapv(GL.Enums.PixelMap map, [Out] Int16* values) + unsafe void GetPixelMap(GL.Enums.PixelMap map, [Out] Int16* values) { unsafe { @@ -5202,7 +5202,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetPixelMapv(GL.Enums.PixelMap map, [Out] UInt16[] values) + void GetPixelMap(GL.Enums.PixelMap map, [Out] UInt16[] values) { unsafe { @@ -5214,7 +5214,7 @@ namespace OpenTK.OpenGL } public static - void GetPixelMapv(GL.Enums.PixelMap map, [Out] Int16[] values) + void GetPixelMap(GL.Enums.PixelMap map, [Out] Int16[] values) { unsafe { @@ -5227,7 +5227,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetPixelMapv(GL.Enums.PixelMap map, [Out] out UInt16 values) + void GetPixelMap(GL.Enums.PixelMap map, [Out] out UInt16 values) { unsafe { @@ -5240,7 +5240,7 @@ namespace OpenTK.OpenGL } public static - void GetPixelMapv(GL.Enums.PixelMap map, [Out] out Int16 values) + void GetPixelMap(GL.Enums.PixelMap map, [Out] out Int16 values) { unsafe { @@ -5356,13 +5356,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetTexGenv(GL.Enums.TextureCoordName coord, GL.Enums.TextureGenParameter pname, [Out] Double* @params) + unsafe void GetTexGendv(GL.Enums.TextureCoordName coord, GL.Enums.TextureGenParameter pname, [Out] Double* @params) { unsafe { Delegates.glGetTexGendv((GL.Enums.TextureCoordName)coord, (GL.Enums.TextureGenParameter)pname, (Double*)@params); } } public static - void GetTexGenv(GL.Enums.TextureCoordName coord, GL.Enums.TextureGenParameter pname, [Out] Double[] @params) + void GetTexGendv(GL.Enums.TextureCoordName coord, GL.Enums.TextureGenParameter pname, [Out] Double[] @params) { unsafe { @@ -5374,7 +5374,7 @@ namespace OpenTK.OpenGL } public static - void GetTexGenv(GL.Enums.TextureCoordName coord, GL.Enums.TextureGenParameter pname, [Out] out Double @params) + void GetTexGendv(GL.Enums.TextureCoordName coord, GL.Enums.TextureGenParameter pname, [Out] out Double @params) { unsafe { @@ -5602,7 +5602,7 @@ namespace OpenTK.OpenGL } public static - Boolean IsEnabled(GL.Enums.EnableCap cap) + Boolean IsEnable(GL.Enums.EnableCap cap) { return Delegates.glIsEnabled((GL.Enums.EnableCap)cap); } @@ -5640,13 +5640,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void LoadMatrixf(Single* m) + unsafe void LoadMatrix(Single* m) { unsafe { Delegates.glLoadMatrixf((Single*)m); } } public static - void LoadMatrixf(Single[] m) + void LoadMatrix(Single[] m) { unsafe { @@ -5658,7 +5658,7 @@ namespace OpenTK.OpenGL } public static - void LoadMatrixf(ref Single m) + void LoadMatrix(ref Single m) { unsafe { @@ -5671,13 +5671,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void LoadMatrixd(Double* m) + unsafe void LoadMatrix(Double* m) { unsafe { Delegates.glLoadMatrixd((Double*)m); } } public static - void LoadMatrixd(Double[] m) + void LoadMatrix(Double[] m) { unsafe { @@ -5689,7 +5689,7 @@ namespace OpenTK.OpenGL } public static - void LoadMatrixd(ref Double m) + void LoadMatrix(ref Double m) { unsafe { @@ -5708,13 +5708,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultMatrixf(Single* m) + unsafe void MultMatrix(Single* m) { unsafe { Delegates.glMultMatrixf((Single*)m); } } public static - void MultMatrixf(Single[] m) + void MultMatrix(Single[] m) { unsafe { @@ -5726,7 +5726,7 @@ namespace OpenTK.OpenGL } public static - void MultMatrixf(ref Single m) + void MultMatrix(ref Single m) { unsafe { @@ -5739,13 +5739,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultMatrixd(Double* m) + unsafe void MultMatrix(Double* m) { unsafe { Delegates.glMultMatrixd((Double*)m); } } public static - void MultMatrixd(Double[] m) + void MultMatrix(Double[] m) { unsafe { @@ -5757,7 +5757,7 @@ namespace OpenTK.OpenGL } public static - void MultMatrixd(ref Double m) + void MultMatrix(ref Double m) { unsafe { @@ -5787,37 +5787,37 @@ namespace OpenTK.OpenGL } public static - void Rotated(Double angle, Double x, Double y, Double z) + void Rotate(Double angle, Double x, Double y, Double z) { Delegates.glRotated((Double)angle, (Double)x, (Double)y, (Double)z); } public static - void Rotatef(Single angle, Single x, Single y, Single z) + void Rotate(Single angle, Single x, Single y, Single z) { Delegates.glRotatef((Single)angle, (Single)x, (Single)y, (Single)z); } public static - void Scaled(Double x, Double y, Double z) + void Scale(Double x, Double y, Double z) { Delegates.glScaled((Double)x, (Double)y, (Double)z); } public static - void Scalef(Single x, Single y, Single z) + void Scale(Single x, Single y, Single z) { Delegates.glScalef((Single)x, (Single)y, (Single)z); } public static - void Translated(Double x, Double y, Double z) + void Translate(Double x, Double y, Double z) { Delegates.glTranslated((Double)x, (Double)y, (Double)z); } public static - void Translatef(Single x, Single y, Single z) + void Translate(Single x, Single y, Single z) { Delegates.glTranslatef((Single)x, (Single)y, (Single)z); } @@ -5864,7 +5864,7 @@ namespace OpenTK.OpenGL } public static - void DrawArrays(GL.Enums.BeginMode mode, Int32 first, Int32 count) + void DrawArray(GL.Enums.BeginMode mode, Int32 first, Int32 count) { Delegates.glDrawArrays((GL.Enums.BeginMode)mode, (Int32)first, (Int32)count); } @@ -5969,13 +5969,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void InterleavedArrays(GL.Enums.InterleavedArrayFormat format, Int32 stride, void* pointer) + unsafe void InterleavedArray(GL.Enums.InterleavedArrayFormat format, Int32 stride, void* pointer) { unsafe { Delegates.glInterleavedArrays((GL.Enums.InterleavedArrayFormat)format, (Int32)stride, (void*)pointer); } } public static - void InterleavedArrays(GL.Enums.InterleavedArrayFormat format, Int32 stride, [In, Out] object pointer) + void InterleavedArray(GL.Enums.InterleavedArrayFormat format, Int32 stride, [In, Out] object pointer) { unsafe { @@ -6224,14 +6224,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void DeleteTextures(Int32 n, UInt32* textures) + unsafe void DeleteTexture(Int32 n, UInt32* textures) { unsafe { Delegates.glDeleteTextures((Int32)n, (UInt32*)textures); } } [System.CLSCompliant(false)] public static - unsafe void DeleteTextures(Int32 n, Int32* textures) + unsafe void DeleteTexture(Int32 n, Int32* textures) { unsafe { @@ -6241,7 +6241,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeleteTextures(Int32 n, UInt32[] textures) + void DeleteTexture(Int32 n, UInt32[] textures) { unsafe { @@ -6253,7 +6253,7 @@ namespace OpenTK.OpenGL } public static - void DeleteTextures(Int32 n, Int32[] textures) + void DeleteTexture(Int32 n, Int32[] textures) { unsafe { @@ -6266,7 +6266,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeleteTextures(Int32 n, ref UInt32 textures) + void DeleteTexture(Int32 n, ref UInt32 textures) { unsafe { @@ -6278,7 +6278,7 @@ namespace OpenTK.OpenGL } public static - void DeleteTextures(Int32 n, ref Int32 textures) + void DeleteTexture(Int32 n, ref Int32 textures) { unsafe { @@ -6291,14 +6291,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GenTextures(Int32 n, [Out] UInt32* textures) + unsafe void GenTexture(Int32 n, [Out] UInt32* textures) { unsafe { Delegates.glGenTextures((Int32)n, (UInt32*)textures); } } [System.CLSCompliant(false)] public static - unsafe void GenTextures(Int32 n, [Out] Int32* textures) + unsafe void GenTexture(Int32 n, [Out] Int32* textures) { unsafe { @@ -6308,7 +6308,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenTextures(Int32 n, [Out] UInt32[] textures) + void GenTexture(Int32 n, [Out] UInt32[] textures) { unsafe { @@ -6320,7 +6320,7 @@ namespace OpenTK.OpenGL } public static - void GenTextures(Int32 n, [Out] Int32[] textures) + void GenTexture(Int32 n, [Out] Int32[] textures) { unsafe { @@ -6333,7 +6333,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenTextures(Int32 n, [Out] out UInt32 textures) + void GenTexture(Int32 n, [Out] out UInt32 textures) { unsafe { @@ -6346,7 +6346,7 @@ namespace OpenTK.OpenGL } public static - void GenTextures(Int32 n, [Out] out Int32 textures) + void GenTexture(Int32 n, [Out] out Int32 textures) { unsafe { @@ -6373,14 +6373,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void PrioritizeTextures(Int32 n, UInt32* textures, Single* priorities) + unsafe void PrioritizeTexture(Int32 n, UInt32* textures, Single* priorities) { unsafe { Delegates.glPrioritizeTextures((Int32)n, (UInt32*)textures, (Single*)priorities); } } [System.CLSCompliant(false)] public static - unsafe void PrioritizeTextures(Int32 n, Int32* textures, Single* priorities) + unsafe void PrioritizeTexture(Int32 n, Int32* textures, Single* priorities) { unsafe { @@ -6390,7 +6390,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void PrioritizeTextures(Int32 n, UInt32* textures, Single[] priorities) + unsafe void PrioritizeTexture(Int32 n, UInt32* textures, Single[] priorities) { unsafe { @@ -6403,7 +6403,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void PrioritizeTextures(Int32 n, Int32* textures, Single[] priorities) + unsafe void PrioritizeTexture(Int32 n, Int32* textures, Single[] priorities) { unsafe { @@ -6416,7 +6416,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void PrioritizeTextures(Int32 n, UInt32* textures, ref Single priorities) + unsafe void PrioritizeTexture(Int32 n, UInt32* textures, ref Single priorities) { unsafe { @@ -6429,7 +6429,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void PrioritizeTextures(Int32 n, Int32* textures, ref Single priorities) + unsafe void PrioritizeTexture(Int32 n, Int32* textures, ref Single priorities) { unsafe { @@ -6442,7 +6442,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void PrioritizeTextures(Int32 n, UInt32[] textures, Single* priorities) + unsafe void PrioritizeTexture(Int32 n, UInt32[] textures, Single* priorities) { unsafe { @@ -6455,7 +6455,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void PrioritizeTextures(Int32 n, Int32[] textures, Single* priorities) + unsafe void PrioritizeTexture(Int32 n, Int32[] textures, Single* priorities) { unsafe { @@ -6468,7 +6468,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void PrioritizeTextures(Int32 n, UInt32[] textures, Single[] priorities) + void PrioritizeTexture(Int32 n, UInt32[] textures, Single[] priorities) { unsafe { @@ -6481,7 +6481,7 @@ namespace OpenTK.OpenGL } public static - void PrioritizeTextures(Int32 n, Int32[] textures, Single[] priorities) + void PrioritizeTexture(Int32 n, Int32[] textures, Single[] priorities) { unsafe { @@ -6495,7 +6495,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void PrioritizeTextures(Int32 n, UInt32[] textures, ref Single priorities) + void PrioritizeTexture(Int32 n, UInt32[] textures, ref Single priorities) { unsafe { @@ -6508,7 +6508,7 @@ namespace OpenTK.OpenGL } public static - void PrioritizeTextures(Int32 n, Int32[] textures, ref Single priorities) + void PrioritizeTexture(Int32 n, Int32[] textures, ref Single priorities) { unsafe { @@ -6522,7 +6522,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void PrioritizeTextures(Int32 n, ref UInt32 textures, Single* priorities) + unsafe void PrioritizeTexture(Int32 n, ref UInt32 textures, Single* priorities) { unsafe { @@ -6535,7 +6535,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void PrioritizeTextures(Int32 n, ref Int32 textures, Single* priorities) + unsafe void PrioritizeTexture(Int32 n, ref Int32 textures, Single* priorities) { unsafe { @@ -6548,7 +6548,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void PrioritizeTextures(Int32 n, ref UInt32 textures, Single[] priorities) + void PrioritizeTexture(Int32 n, ref UInt32 textures, Single[] priorities) { unsafe { @@ -6561,7 +6561,7 @@ namespace OpenTK.OpenGL } public static - void PrioritizeTextures(Int32 n, ref Int32 textures, Single[] priorities) + void PrioritizeTexture(Int32 n, ref Int32 textures, Single[] priorities) { unsafe { @@ -6575,7 +6575,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void PrioritizeTextures(Int32 n, ref UInt32 textures, ref Single priorities) + void PrioritizeTexture(Int32 n, ref UInt32 textures, ref Single priorities) { unsafe { @@ -6588,7 +6588,7 @@ namespace OpenTK.OpenGL } public static - void PrioritizeTextures(Int32 n, ref Int32 textures, ref Single priorities) + void PrioritizeTexture(Int32 n, ref Int32 textures, ref Single priorities) { unsafe { @@ -6608,13 +6608,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Indexv(Byte* c) + unsafe void Indexubv(Byte* c) { unsafe { Delegates.glIndexubv((Byte*)c); } } public static - void Indexv(Byte[] c) + void Indexubv(Byte[] c) { unsafe { @@ -6626,7 +6626,7 @@ namespace OpenTK.OpenGL } public static - void Indexv(ref Byte c) + void Indexubv(ref Byte c) { unsafe { @@ -6965,7 +6965,7 @@ namespace OpenTK.OpenGL } public static - void ConvolutionParameterf(GL.Enums.VERSION_1_2 target, GL.Enums.VERSION_1_2 pname, Single @params) + void ConvolutionParameter(GL.Enums.VERSION_1_2 target, GL.Enums.VERSION_1_2 pname, Single @params) { Delegates.glConvolutionParameterf((GL.Enums.VERSION_1_2)target, (GL.Enums.VERSION_1_2)pname, (Single)@params); } @@ -7002,7 +7002,7 @@ namespace OpenTK.OpenGL } public static - void ConvolutionParameteri(GL.Enums.VERSION_1_2 target, GL.Enums.VERSION_1_2 pname, Int32 @params) + void ConvolutionParameter(GL.Enums.VERSION_1_2 target, GL.Enums.VERSION_1_2 pname, Int32 @params) { Delegates.glConvolutionParameteri((GL.Enums.VERSION_1_2)target, (GL.Enums.VERSION_1_2)pname, (Int32)@params); } @@ -7563,13 +7563,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord1dv(GL.Enums.VERSION_1_3 target, Double* v) + unsafe void MultiTexCoord1v(GL.Enums.VERSION_1_3 target, Double* v) { unsafe { Delegates.glMultiTexCoord1dv((GL.Enums.VERSION_1_3)target, (Double*)v); } } public static - void MultiTexCoord1dv(GL.Enums.VERSION_1_3 target, Double[] v) + void MultiTexCoord1v(GL.Enums.VERSION_1_3 target, Double[] v) { unsafe { @@ -7581,7 +7581,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord1dv(GL.Enums.VERSION_1_3 target, ref Double v) + void MultiTexCoord1v(GL.Enums.VERSION_1_3 target, ref Double v) { unsafe { @@ -7600,13 +7600,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord1fv(GL.Enums.VERSION_1_3 target, Single* v) + unsafe void MultiTexCoord1v(GL.Enums.VERSION_1_3 target, Single* v) { unsafe { Delegates.glMultiTexCoord1fv((GL.Enums.VERSION_1_3)target, (Single*)v); } } public static - void MultiTexCoord1fv(GL.Enums.VERSION_1_3 target, Single[] v) + void MultiTexCoord1v(GL.Enums.VERSION_1_3 target, Single[] v) { unsafe { @@ -7618,7 +7618,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord1fv(GL.Enums.VERSION_1_3 target, ref Single v) + void MultiTexCoord1v(GL.Enums.VERSION_1_3 target, ref Single v) { unsafe { @@ -7637,13 +7637,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord1iv(GL.Enums.VERSION_1_3 target, Int32* v) + unsafe void MultiTexCoord1v(GL.Enums.VERSION_1_3 target, Int32* v) { unsafe { Delegates.glMultiTexCoord1iv((GL.Enums.VERSION_1_3)target, (Int32*)v); } } public static - void MultiTexCoord1iv(GL.Enums.VERSION_1_3 target, Int32[] v) + void MultiTexCoord1v(GL.Enums.VERSION_1_3 target, Int32[] v) { unsafe { @@ -7655,7 +7655,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord1iv(GL.Enums.VERSION_1_3 target, ref Int32 v) + void MultiTexCoord1v(GL.Enums.VERSION_1_3 target, ref Int32 v) { unsafe { @@ -7674,13 +7674,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord1sv(GL.Enums.VERSION_1_3 target, Int16* v) + unsafe void MultiTexCoord1v(GL.Enums.VERSION_1_3 target, Int16* v) { unsafe { Delegates.glMultiTexCoord1sv((GL.Enums.VERSION_1_3)target, (Int16*)v); } } public static - void MultiTexCoord1sv(GL.Enums.VERSION_1_3 target, Int16[] v) + void MultiTexCoord1v(GL.Enums.VERSION_1_3 target, Int16[] v) { unsafe { @@ -7692,7 +7692,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord1sv(GL.Enums.VERSION_1_3 target, ref Int16 v) + void MultiTexCoord1v(GL.Enums.VERSION_1_3 target, ref Int16 v) { unsafe { @@ -8149,13 +8149,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void LoadTransposeMatrixf(Single* m) + unsafe void LoadTransposeMatrix(Single* m) { unsafe { Delegates.glLoadTransposeMatrixf((Single*)m); } } public static - void LoadTransposeMatrixf(Single[] m) + void LoadTransposeMatrix(Single[] m) { unsafe { @@ -8167,7 +8167,7 @@ namespace OpenTK.OpenGL } public static - void LoadTransposeMatrixf(ref Single m) + void LoadTransposeMatrix(ref Single m) { unsafe { @@ -8180,13 +8180,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void LoadTransposeMatrixd(Double* m) + unsafe void LoadTransposeMatrix(Double* m) { unsafe { Delegates.glLoadTransposeMatrixd((Double*)m); } } public static - void LoadTransposeMatrixd(Double[] m) + void LoadTransposeMatrix(Double[] m) { unsafe { @@ -8198,7 +8198,7 @@ namespace OpenTK.OpenGL } public static - void LoadTransposeMatrixd(ref Double m) + void LoadTransposeMatrix(ref Double m) { unsafe { @@ -8211,13 +8211,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultTransposeMatrixf(Single* m) + unsafe void MultTransposeMatrix(Single* m) { unsafe { Delegates.glMultTransposeMatrixf((Single*)m); } } public static - void MultTransposeMatrixf(Single[] m) + void MultTransposeMatrix(Single[] m) { unsafe { @@ -8229,7 +8229,7 @@ namespace OpenTK.OpenGL } public static - void MultTransposeMatrixf(ref Single m) + void MultTransposeMatrix(ref Single m) { unsafe { @@ -8242,13 +8242,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultTransposeMatrixd(Double* m) + unsafe void MultTransposeMatrix(Double* m) { unsafe { Delegates.glMultTransposeMatrixd((Double*)m); } } public static - void MultTransposeMatrixd(Double[] m) + void MultTransposeMatrix(Double[] m) { unsafe { @@ -8260,7 +8260,7 @@ namespace OpenTK.OpenGL } public static - void MultTransposeMatrixd(ref Double m) + void MultTransposeMatrix(ref Double m) { unsafe { @@ -8445,7 +8445,7 @@ namespace OpenTK.OpenGL } public static - void FogCoordf(Single coord) + void FogCoord(Single coord) { Delegates.glFogCoordf((Single)coord); } @@ -8482,7 +8482,7 @@ namespace OpenTK.OpenGL } public static - void FogCoordd(Double coord) + void FogCoord(Double coord) { Delegates.glFogCoordd((Double)coord); } @@ -8543,14 +8543,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiDrawArrays(GL.Enums.BeginMode mode, [Out] Int32* first, [Out] Int32* count, Int32 primcount) + unsafe void MultiDrawArray(GL.Enums.BeginMode mode, [Out] Int32* first, [Out] Int32* count, Int32 primcount) { unsafe { Delegates.glMultiDrawArrays((GL.Enums.BeginMode)mode, (Int32*)first, (Int32*)count, (Int32)primcount); } } [System.CLSCompliant(false)] public static - unsafe void MultiDrawArrays(GL.Enums.BeginMode mode, [Out] Int32* first, [Out] Int32[] count, Int32 primcount) + unsafe void MultiDrawArray(GL.Enums.BeginMode mode, [Out] Int32* first, [Out] Int32[] count, Int32 primcount) { unsafe { @@ -8563,7 +8563,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiDrawArrays(GL.Enums.BeginMode mode, [Out] Int32* first, [Out] out Int32 count, Int32 primcount) + unsafe void MultiDrawArray(GL.Enums.BeginMode mode, [Out] Int32* first, [Out] out Int32 count, Int32 primcount) { unsafe { @@ -8577,7 +8577,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiDrawArrays(GL.Enums.BeginMode mode, [Out] Int32[] first, [Out] Int32* count, Int32 primcount) + unsafe void MultiDrawArray(GL.Enums.BeginMode mode, [Out] Int32[] first, [Out] Int32* count, Int32 primcount) { unsafe { @@ -8589,7 +8589,7 @@ namespace OpenTK.OpenGL } public static - void MultiDrawArrays(GL.Enums.BeginMode mode, [Out] Int32[] first, [Out] Int32[] count, Int32 primcount) + void MultiDrawArray(GL.Enums.BeginMode mode, [Out] Int32[] first, [Out] Int32[] count, Int32 primcount) { unsafe { @@ -8602,7 +8602,7 @@ namespace OpenTK.OpenGL } public static - void MultiDrawArrays(GL.Enums.BeginMode mode, [Out] Int32[] first, [Out] out Int32 count, Int32 primcount) + void MultiDrawArray(GL.Enums.BeginMode mode, [Out] Int32[] first, [Out] out Int32 count, Int32 primcount) { unsafe { @@ -8617,7 +8617,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiDrawArrays(GL.Enums.BeginMode mode, [Out] out Int32 first, [Out] Int32* count, Int32 primcount) + unsafe void MultiDrawArray(GL.Enums.BeginMode mode, [Out] out Int32 first, [Out] Int32* count, Int32 primcount) { unsafe { @@ -8630,7 +8630,7 @@ namespace OpenTK.OpenGL } public static - void MultiDrawArrays(GL.Enums.BeginMode mode, [Out] out Int32 first, [Out] Int32[] count, Int32 primcount) + void MultiDrawArray(GL.Enums.BeginMode mode, [Out] out Int32 first, [Out] Int32[] count, Int32 primcount) { unsafe { @@ -8644,7 +8644,7 @@ namespace OpenTK.OpenGL } public static - void MultiDrawArrays(GL.Enums.BeginMode mode, [Out] out Int32 first, [Out] out Int32 count, Int32 primcount) + void MultiDrawArray(GL.Enums.BeginMode mode, [Out] out Int32 first, [Out] out Int32 count, Int32 primcount) { unsafe { @@ -8747,7 +8747,7 @@ namespace OpenTK.OpenGL } public static - void PointParameterf(GL.Enums.VERSION_1_4 pname, Single param) + void PointParameter(GL.Enums.VERSION_1_4 pname, Single param) { Delegates.glPointParameterf((GL.Enums.VERSION_1_4)pname, (Single)param); } @@ -8784,7 +8784,7 @@ namespace OpenTK.OpenGL } public static - void PointParameteri(GL.Enums.VERSION_1_4 pname, Int32 param) + void PointParameter(GL.Enums.VERSION_1_4 pname, Int32 param) { Delegates.glPointParameteri((GL.Enums.VERSION_1_4)pname, (Int32)param); } @@ -8822,21 +8822,37 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void SecondaryColor3(SByte red, SByte green, SByte blue) + void SecondaryColor3b(SByte red, SByte green, SByte blue) + { + Delegates.glSecondaryColor3b((SByte)red, (SByte)green, (SByte)blue); + } + + public static + void SecondaryColor3b(Byte red, Byte green, Byte blue) { Delegates.glSecondaryColor3b((SByte)red, (SByte)green, (SByte)blue); } [System.CLSCompliant(false)] public static - unsafe void SecondaryColor3(SByte* v) + unsafe void SecondaryColor3bv(SByte* v) { unsafe { Delegates.glSecondaryColor3bv((SByte*)v); } } [System.CLSCompliant(false)] public static - void SecondaryColor3(SByte[] v) + unsafe void SecondaryColor3bv(Byte* v) + { + unsafe + { + Delegates.glSecondaryColor3bv((SByte*)v); + } + } + + [System.CLSCompliant(false)] + public static + void SecondaryColor3bv(SByte[] v) { unsafe { @@ -8847,9 +8863,21 @@ namespace OpenTK.OpenGL } } + public static + void SecondaryColor3bv(Byte[] v) + { + unsafe + { + fixed (Byte* v_ptr = v) + { + Delegates.glSecondaryColor3bv((SByte*)v_ptr); + } + } + } + [System.CLSCompliant(false)] public static - void SecondaryColor3(ref SByte v) + void SecondaryColor3bv(ref SByte v) { unsafe { @@ -8861,20 +8889,32 @@ namespace OpenTK.OpenGL } public static - void SecondaryColor3(Double red, Double green, Double blue) + void SecondaryColor3bv(ref Byte v) + { + unsafe + { + fixed (Byte* v_ptr = &v) + { + Delegates.glSecondaryColor3bv((SByte*)v_ptr); + } + } + } + + public static + void SecondaryColor3d(Double red, Double green, Double blue) { Delegates.glSecondaryColor3d((Double)red, (Double)green, (Double)blue); } [System.CLSCompliant(false)] public static - unsafe void SecondaryColor3(Double* v) + unsafe void SecondaryColor3dv(Double* v) { unsafe { Delegates.glSecondaryColor3dv((Double*)v); } } public static - void SecondaryColor3(Double[] v) + void SecondaryColor3dv(Double[] v) { unsafe { @@ -8886,7 +8926,7 @@ namespace OpenTK.OpenGL } public static - void SecondaryColor3(ref Double v) + void SecondaryColor3dv(ref Double v) { unsafe { @@ -8898,20 +8938,20 @@ namespace OpenTK.OpenGL } public static - void SecondaryColor3(Single red, Single green, Single blue) + void SecondaryColor3f(Single red, Single green, Single blue) { Delegates.glSecondaryColor3f((Single)red, (Single)green, (Single)blue); } [System.CLSCompliant(false)] public static - unsafe void SecondaryColor3(Single* v) + unsafe void SecondaryColor3fv(Single* v) { unsafe { Delegates.glSecondaryColor3fv((Single*)v); } } public static - void SecondaryColor3(Single[] v) + void SecondaryColor3fv(Single[] v) { unsafe { @@ -8923,7 +8963,7 @@ namespace OpenTK.OpenGL } public static - void SecondaryColor3(ref Single v) + void SecondaryColor3fv(ref Single v) { unsafe { @@ -8935,20 +8975,94 @@ namespace OpenTK.OpenGL } public static - void SecondaryColor3(Byte red, Byte green, Byte blue) + void SecondaryColor3i(Int32 red, Int32 green, Int32 blue) + { + Delegates.glSecondaryColor3i((Int32)red, (Int32)green, (Int32)blue); + } + + [System.CLSCompliant(false)] + public static + unsafe void SecondaryColor3iv(Int32* v) + { + unsafe { Delegates.glSecondaryColor3iv((Int32*)v); } + } + + public static + void SecondaryColor3iv(Int32[] v) + { + unsafe + { + fixed (Int32* v_ptr = v) + { + Delegates.glSecondaryColor3iv((Int32*)v_ptr); + } + } + } + + public static + void SecondaryColor3iv(ref Int32 v) + { + unsafe + { + fixed (Int32* v_ptr = &v) + { + Delegates.glSecondaryColor3iv((Int32*)v_ptr); + } + } + } + + public static + void SecondaryColor3s(Int16 red, Int16 green, Int16 blue) + { + Delegates.glSecondaryColor3s((Int16)red, (Int16)green, (Int16)blue); + } + + [System.CLSCompliant(false)] + public static + unsafe void SecondaryColor3sv(Int16* v) + { + unsafe { Delegates.glSecondaryColor3sv((Int16*)v); } + } + + public static + void SecondaryColor3sv(Int16[] v) + { + unsafe + { + fixed (Int16* v_ptr = v) + { + Delegates.glSecondaryColor3sv((Int16*)v_ptr); + } + } + } + + public static + void SecondaryColor3sv(ref Int16 v) + { + unsafe + { + fixed (Int16* v_ptr = &v) + { + Delegates.glSecondaryColor3sv((Int16*)v_ptr); + } + } + } + + public static + void SecondaryColor3ub(Byte red, Byte green, Byte blue) { Delegates.glSecondaryColor3ub((Byte)red, (Byte)green, (Byte)blue); } [System.CLSCompliant(false)] public static - unsafe void SecondaryColor3(Byte* v) + unsafe void SecondaryColor3ubv(Byte* v) { unsafe { Delegates.glSecondaryColor3ubv((Byte*)v); } } public static - void SecondaryColor3(Byte[] v) + void SecondaryColor3ubv(Byte[] v) { unsafe { @@ -8960,7 +9074,7 @@ namespace OpenTK.OpenGL } public static - void SecondaryColor3(ref Byte v) + void SecondaryColor3ubv(ref Byte v) { unsafe { @@ -8973,27 +9087,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void SecondaryColor3(UInt32 red, UInt32 green, UInt32 blue) + void SecondaryColor3ui(UInt32 red, UInt32 green, UInt32 blue) { Delegates.glSecondaryColor3ui((UInt32)red, (UInt32)green, (UInt32)blue); } public static - void SecondaryColor3(Int32 red, Int32 green, Int32 blue) + void SecondaryColor3ui(Int32 red, Int32 green, Int32 blue) { Delegates.glSecondaryColor3ui((UInt32)red, (UInt32)green, (UInt32)blue); } [System.CLSCompliant(false)] public static - unsafe void SecondaryColor3(UInt32* v) + unsafe void SecondaryColor3uiv(UInt32* v) { unsafe { Delegates.glSecondaryColor3uiv((UInt32*)v); } } [System.CLSCompliant(false)] public static - unsafe void SecondaryColor3(Int32* v) + unsafe void SecondaryColor3uiv(Int32* v) { unsafe { @@ -9003,7 +9117,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void SecondaryColor3(UInt32[] v) + void SecondaryColor3uiv(UInt32[] v) { unsafe { @@ -9015,7 +9129,7 @@ namespace OpenTK.OpenGL } public static - void SecondaryColor3(Int32[] v) + void SecondaryColor3uiv(Int32[] v) { unsafe { @@ -9028,7 +9142,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void SecondaryColor3(ref UInt32 v) + void SecondaryColor3uiv(ref UInt32 v) { unsafe { @@ -9040,7 +9154,7 @@ namespace OpenTK.OpenGL } public static - void SecondaryColor3(ref Int32 v) + void SecondaryColor3uiv(ref Int32 v) { unsafe { @@ -9053,27 +9167,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void SecondaryColor3(UInt16 red, UInt16 green, UInt16 blue) + void SecondaryColor3us(UInt16 red, UInt16 green, UInt16 blue) { Delegates.glSecondaryColor3us((UInt16)red, (UInt16)green, (UInt16)blue); } public static - void SecondaryColor3(Int16 red, Int16 green, Int16 blue) + void SecondaryColor3us(Int16 red, Int16 green, Int16 blue) { Delegates.glSecondaryColor3us((UInt16)red, (UInt16)green, (UInt16)blue); } [System.CLSCompliant(false)] public static - unsafe void SecondaryColor3(UInt16* v) + unsafe void SecondaryColor3usv(UInt16* v) { unsafe { Delegates.glSecondaryColor3usv((UInt16*)v); } } [System.CLSCompliant(false)] public static - unsafe void SecondaryColor3(Int16* v) + unsafe void SecondaryColor3usv(Int16* v) { unsafe { @@ -9083,7 +9197,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void SecondaryColor3(UInt16[] v) + void SecondaryColor3usv(UInt16[] v) { unsafe { @@ -9095,7 +9209,7 @@ namespace OpenTK.OpenGL } public static - void SecondaryColor3(Int16[] v) + void SecondaryColor3usv(Int16[] v) { unsafe { @@ -9108,7 +9222,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void SecondaryColor3(ref UInt16 v) + void SecondaryColor3usv(ref UInt16 v) { unsafe { @@ -9120,7 +9234,7 @@ namespace OpenTK.OpenGL } public static - void SecondaryColor3(ref Int16 v) + void SecondaryColor3usv(ref Int16 v) { unsafe { @@ -9155,20 +9269,20 @@ namespace OpenTK.OpenGL } public static - void WindowPos2(Double x, Double y) + void WindowPos2d(Double x, Double y) { Delegates.glWindowPos2d((Double)x, (Double)y); } [System.CLSCompliant(false)] public static - unsafe void WindowPos2(Double* v) + unsafe void WindowPos2dv(Double* v) { unsafe { Delegates.glWindowPos2dv((Double*)v); } } public static - void WindowPos2(Double[] v) + void WindowPos2dv(Double[] v) { unsafe { @@ -9180,7 +9294,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos2(ref Double v) + void WindowPos2dv(ref Double v) { unsafe { @@ -9192,20 +9306,20 @@ namespace OpenTK.OpenGL } public static - void WindowPos2(Single x, Single y) + void WindowPos2f(Single x, Single y) { Delegates.glWindowPos2f((Single)x, (Single)y); } [System.CLSCompliant(false)] public static - unsafe void WindowPos2(Single* v) + unsafe void WindowPos2fv(Single* v) { unsafe { Delegates.glWindowPos2fv((Single*)v); } } public static - void WindowPos2(Single[] v) + void WindowPos2fv(Single[] v) { unsafe { @@ -9217,7 +9331,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos2(ref Single v) + void WindowPos2fv(ref Single v) { unsafe { @@ -9229,20 +9343,20 @@ namespace OpenTK.OpenGL } public static - void WindowPos2(Int32 x, Int32 y) + void WindowPos2i(Int32 x, Int32 y) { Delegates.glWindowPos2i((Int32)x, (Int32)y); } [System.CLSCompliant(false)] public static - unsafe void WindowPos2(Int32* v) + unsafe void WindowPos2iv(Int32* v) { unsafe { Delegates.glWindowPos2iv((Int32*)v); } } public static - void WindowPos2(Int32[] v) + void WindowPos2iv(Int32[] v) { unsafe { @@ -9254,7 +9368,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos2(ref Int32 v) + void WindowPos2iv(ref Int32 v) { unsafe { @@ -9266,20 +9380,20 @@ namespace OpenTK.OpenGL } public static - void WindowPos2(Int16 x, Int16 y) + void WindowPos2s(Int16 x, Int16 y) { Delegates.glWindowPos2s((Int16)x, (Int16)y); } [System.CLSCompliant(false)] public static - unsafe void WindowPos2(Int16* v) + unsafe void WindowPos2sv(Int16* v) { unsafe { Delegates.glWindowPos2sv((Int16*)v); } } public static - void WindowPos2(Int16[] v) + void WindowPos2sv(Int16[] v) { unsafe { @@ -9291,7 +9405,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos2(ref Int16 v) + void WindowPos2sv(ref Int16 v) { unsafe { @@ -9303,20 +9417,20 @@ namespace OpenTK.OpenGL } public static - void WindowPos3(Double x, Double y, Double z) + void WindowPos3d(Double x, Double y, Double z) { Delegates.glWindowPos3d((Double)x, (Double)y, (Double)z); } [System.CLSCompliant(false)] public static - unsafe void WindowPos3(Double* v) + unsafe void WindowPos3dv(Double* v) { unsafe { Delegates.glWindowPos3dv((Double*)v); } } public static - void WindowPos3(Double[] v) + void WindowPos3dv(Double[] v) { unsafe { @@ -9328,7 +9442,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos3(ref Double v) + void WindowPos3dv(ref Double v) { unsafe { @@ -9340,20 +9454,20 @@ namespace OpenTK.OpenGL } public static - void WindowPos3(Single x, Single y, Single z) + void WindowPos3f(Single x, Single y, Single z) { Delegates.glWindowPos3f((Single)x, (Single)y, (Single)z); } [System.CLSCompliant(false)] public static - unsafe void WindowPos3(Single* v) + unsafe void WindowPos3fv(Single* v) { unsafe { Delegates.glWindowPos3fv((Single*)v); } } public static - void WindowPos3(Single[] v) + void WindowPos3fv(Single[] v) { unsafe { @@ -9365,7 +9479,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos3(ref Single v) + void WindowPos3fv(ref Single v) { unsafe { @@ -9377,20 +9491,20 @@ namespace OpenTK.OpenGL } public static - void WindowPos3(Int32 x, Int32 y, Int32 z) + void WindowPos3i(Int32 x, Int32 y, Int32 z) { Delegates.glWindowPos3i((Int32)x, (Int32)y, (Int32)z); } [System.CLSCompliant(false)] public static - unsafe void WindowPos3(Int32* v) + unsafe void WindowPos3iv(Int32* v) { unsafe { Delegates.glWindowPos3iv((Int32*)v); } } public static - void WindowPos3(Int32[] v) + void WindowPos3iv(Int32[] v) { unsafe { @@ -9402,7 +9516,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos3(ref Int32 v) + void WindowPos3iv(ref Int32 v) { unsafe { @@ -9414,20 +9528,20 @@ namespace OpenTK.OpenGL } public static - void WindowPos3(Int16 x, Int16 y, Int16 z) + void WindowPos3s(Int16 x, Int16 y, Int16 z) { Delegates.glWindowPos3s((Int16)x, (Int16)y, (Int16)z); } [System.CLSCompliant(false)] public static - unsafe void WindowPos3(Int16* v) + unsafe void WindowPos3sv(Int16* v) { unsafe { Delegates.glWindowPos3sv((Int16*)v); } } public static - void WindowPos3(Int16[] v) + void WindowPos3sv(Int16[] v) { unsafe { @@ -9439,7 +9553,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos3(ref Int16 v) + void WindowPos3sv(ref Int16 v) { unsafe { @@ -9452,14 +9566,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GenQueries(Int32 n, [Out] UInt32* ids) + unsafe void GenQuerie(Int32 n, [Out] UInt32* ids) { unsafe { Delegates.glGenQueries((Int32)n, (UInt32*)ids); } } [System.CLSCompliant(false)] public static - unsafe void GenQueries(Int32 n, [Out] Int32* ids) + unsafe void GenQuerie(Int32 n, [Out] Int32* ids) { unsafe { @@ -9469,7 +9583,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenQueries(Int32 n, [Out] UInt32[] ids) + void GenQuerie(Int32 n, [Out] UInt32[] ids) { unsafe { @@ -9481,7 +9595,7 @@ namespace OpenTK.OpenGL } public static - void GenQueries(Int32 n, [Out] Int32[] ids) + void GenQuerie(Int32 n, [Out] Int32[] ids) { unsafe { @@ -9494,7 +9608,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenQueries(Int32 n, [Out] out UInt32 ids) + void GenQuerie(Int32 n, [Out] out UInt32 ids) { unsafe { @@ -9507,7 +9621,7 @@ namespace OpenTK.OpenGL } public static - void GenQueries(Int32 n, [Out] out Int32 ids) + void GenQuerie(Int32 n, [Out] out Int32 ids) { unsafe { @@ -9521,14 +9635,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void DeleteQueries(Int32 n, UInt32* ids) + unsafe void DeleteQuerie(Int32 n, UInt32* ids) { unsafe { Delegates.glDeleteQueries((Int32)n, (UInt32*)ids); } } [System.CLSCompliant(false)] public static - unsafe void DeleteQueries(Int32 n, Int32* ids) + unsafe void DeleteQuerie(Int32 n, Int32* ids) { unsafe { @@ -9538,7 +9652,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeleteQueries(Int32 n, UInt32[] ids) + void DeleteQuerie(Int32 n, UInt32[] ids) { unsafe { @@ -9550,7 +9664,7 @@ namespace OpenTK.OpenGL } public static - void DeleteQueries(Int32 n, Int32[] ids) + void DeleteQuerie(Int32 n, Int32[] ids) { unsafe { @@ -9563,7 +9677,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeleteQueries(Int32 n, ref UInt32 ids) + void DeleteQuerie(Int32 n, ref UInt32 ids) { unsafe { @@ -9575,7 +9689,7 @@ namespace OpenTK.OpenGL } public static - void DeleteQueries(Int32 n, ref Int32 ids) + void DeleteQuerie(Int32 n, ref Int32 ids) { unsafe { @@ -9620,13 +9734,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetQueryv(GL.Enums.VERSION_1_5 target, GL.Enums.VERSION_1_5 pname, [Out] Int32* @params) + unsafe void GetQuery(GL.Enums.VERSION_1_5 target, GL.Enums.VERSION_1_5 pname, [Out] Int32* @params) { unsafe { Delegates.glGetQueryiv((GL.Enums.VERSION_1_5)target, (GL.Enums.VERSION_1_5)pname, (Int32*)@params); } } public static - void GetQueryv(GL.Enums.VERSION_1_5 target, GL.Enums.VERSION_1_5 pname, [Out] Int32[] @params) + void GetQuery(GL.Enums.VERSION_1_5 target, GL.Enums.VERSION_1_5 pname, [Out] Int32[] @params) { unsafe { @@ -9638,7 +9752,7 @@ namespace OpenTK.OpenGL } public static - void GetQueryv(GL.Enums.VERSION_1_5 target, GL.Enums.VERSION_1_5 pname, [Out] out Int32 @params) + void GetQuery(GL.Enums.VERSION_1_5 target, GL.Enums.VERSION_1_5 pname, [Out] out Int32 @params) { unsafe { @@ -9652,14 +9766,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetQueryObjectv(UInt32 id, GL.Enums.VERSION_1_5 pname, [Out] Int32* @params) + unsafe void GetQueryObject(UInt32 id, GL.Enums.VERSION_1_5 pname, [Out] Int32* @params) { unsafe { Delegates.glGetQueryObjectiv((UInt32)id, (GL.Enums.VERSION_1_5)pname, (Int32*)@params); } } [System.CLSCompliant(false)] public static - void GetQueryObjectv(UInt32 id, GL.Enums.VERSION_1_5 pname, [Out] Int32[] @params) + void GetQueryObject(UInt32 id, GL.Enums.VERSION_1_5 pname, [Out] Int32[] @params) { unsafe { @@ -9672,7 +9786,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetQueryObjectv(UInt32 id, GL.Enums.VERSION_1_5 pname, [Out] out Int32 @params) + void GetQueryObject(UInt32 id, GL.Enums.VERSION_1_5 pname, [Out] out Int32 @params) { unsafe { @@ -9686,14 +9800,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetQueryObjectv(UInt32 id, GL.Enums.VERSION_1_5 pname, [Out] UInt32* @params) + unsafe void GetQueryObject(UInt32 id, GL.Enums.VERSION_1_5 pname, [Out] UInt32* @params) { unsafe { Delegates.glGetQueryObjectuiv((UInt32)id, (GL.Enums.VERSION_1_5)pname, (UInt32*)@params); } } [System.CLSCompliant(false)] public static - unsafe void GetQueryObjectv(Int32 id, GL.Enums.VERSION_1_5 pname, [Out] Int32* @params) + unsafe void GetQueryObject(Int32 id, GL.Enums.VERSION_1_5 pname, [Out] Int32* @params) { unsafe { @@ -9703,7 +9817,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetQueryObjectv(UInt32 id, GL.Enums.VERSION_1_5 pname, [Out] UInt32[] @params) + void GetQueryObject(UInt32 id, GL.Enums.VERSION_1_5 pname, [Out] UInt32[] @params) { unsafe { @@ -9715,7 +9829,7 @@ namespace OpenTK.OpenGL } public static - void GetQueryObjectv(Int32 id, GL.Enums.VERSION_1_5 pname, [Out] Int32[] @params) + void GetQueryObject(Int32 id, GL.Enums.VERSION_1_5 pname, [Out] Int32[] @params) { unsafe { @@ -9728,7 +9842,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetQueryObjectv(UInt32 id, GL.Enums.VERSION_1_5 pname, [Out] out UInt32 @params) + void GetQueryObject(UInt32 id, GL.Enums.VERSION_1_5 pname, [Out] out UInt32 @params) { unsafe { @@ -9741,7 +9855,7 @@ namespace OpenTK.OpenGL } public static - void GetQueryObjectv(Int32 id, GL.Enums.VERSION_1_5 pname, [Out] out Int32 @params) + void GetQueryObject(Int32 id, GL.Enums.VERSION_1_5 pname, [Out] out Int32 @params) { unsafe { @@ -12082,14 +12196,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetProgramv(UInt32 program, GL.Enums.VERSION_2_0 pname, [Out] Int32* @params) + unsafe void GetProgram(UInt32 program, GL.Enums.VERSION_2_0 pname, [Out] Int32* @params) { unsafe { Delegates.glGetProgramiv((UInt32)program, (GL.Enums.VERSION_2_0)pname, (Int32*)@params); } } [System.CLSCompliant(false)] public static - unsafe void GetProgramv(Int32 program, GL.Enums.VERSION_2_0 pname, [Out] Int32* @params) + unsafe void GetProgram(Int32 program, GL.Enums.VERSION_2_0 pname, [Out] Int32* @params) { unsafe { @@ -12099,7 +12213,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetProgramv(UInt32 program, GL.Enums.VERSION_2_0 pname, [Out] Int32[] @params) + void GetProgram(UInt32 program, GL.Enums.VERSION_2_0 pname, [Out] Int32[] @params) { unsafe { @@ -12111,7 +12225,7 @@ namespace OpenTK.OpenGL } public static - void GetProgramv(Int32 program, GL.Enums.VERSION_2_0 pname, [Out] Int32[] @params) + void GetProgram(Int32 program, GL.Enums.VERSION_2_0 pname, [Out] Int32[] @params) { unsafe { @@ -12124,7 +12238,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetProgramv(UInt32 program, GL.Enums.VERSION_2_0 pname, [Out] out Int32 @params) + void GetProgram(UInt32 program, GL.Enums.VERSION_2_0 pname, [Out] out Int32 @params) { unsafe { @@ -12137,7 +12251,7 @@ namespace OpenTK.OpenGL } public static - void GetProgramv(Int32 program, GL.Enums.VERSION_2_0 pname, [Out] out Int32 @params) + void GetProgram(Int32 program, GL.Enums.VERSION_2_0 pname, [Out] out Int32 @params) { unsafe { @@ -12220,14 +12334,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetShaderv(UInt32 shader, GL.Enums.VERSION_2_0 pname, [Out] Int32* @params) + unsafe void GetShader(UInt32 shader, GL.Enums.VERSION_2_0 pname, [Out] Int32* @params) { unsafe { Delegates.glGetShaderiv((UInt32)shader, (GL.Enums.VERSION_2_0)pname, (Int32*)@params); } } [System.CLSCompliant(false)] public static - unsafe void GetShaderv(Int32 shader, GL.Enums.VERSION_2_0 pname, [Out] Int32* @params) + unsafe void GetShader(Int32 shader, GL.Enums.VERSION_2_0 pname, [Out] Int32* @params) { unsafe { @@ -12237,7 +12351,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetShaderv(UInt32 shader, GL.Enums.VERSION_2_0 pname, [Out] Int32[] @params) + void GetShader(UInt32 shader, GL.Enums.VERSION_2_0 pname, [Out] Int32[] @params) { unsafe { @@ -12249,7 +12363,7 @@ namespace OpenTK.OpenGL } public static - void GetShaderv(Int32 shader, GL.Enums.VERSION_2_0 pname, [Out] Int32[] @params) + void GetShader(Int32 shader, GL.Enums.VERSION_2_0 pname, [Out] Int32[] @params) { unsafe { @@ -12262,7 +12376,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetShaderv(UInt32 shader, GL.Enums.VERSION_2_0 pname, [Out] out Int32 @params) + void GetShader(UInt32 shader, GL.Enums.VERSION_2_0 pname, [Out] out Int32 @params) { unsafe { @@ -12275,7 +12389,7 @@ namespace OpenTK.OpenGL } public static - void GetShaderv(Int32 shader, GL.Enums.VERSION_2_0 pname, [Out] out Int32 @params) + void GetShader(Int32 shader, GL.Enums.VERSION_2_0 pname, [Out] out Int32 @params) { unsafe { @@ -12440,14 +12554,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetUniformv(UInt32 program, Int32 location, [Out] Single* @params) + unsafe void GetUniform(UInt32 program, Int32 location, [Out] Single* @params) { unsafe { Delegates.glGetUniformfv((UInt32)program, (Int32)location, (Single*)@params); } } [System.CLSCompliant(false)] public static - unsafe void GetUniformv(Int32 program, Int32 location, [Out] Single* @params) + unsafe void GetUniform(Int32 program, Int32 location, [Out] Single* @params) { unsafe { @@ -12457,7 +12571,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetUniformv(UInt32 program, Int32 location, [Out] Single[] @params) + void GetUniform(UInt32 program, Int32 location, [Out] Single[] @params) { unsafe { @@ -12469,7 +12583,7 @@ namespace OpenTK.OpenGL } public static - void GetUniformv(Int32 program, Int32 location, [Out] Single[] @params) + void GetUniform(Int32 program, Int32 location, [Out] Single[] @params) { unsafe { @@ -12482,7 +12596,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetUniformv(UInt32 program, Int32 location, [Out] out Single @params) + void GetUniform(UInt32 program, Int32 location, [Out] out Single @params) { unsafe { @@ -12495,7 +12609,7 @@ namespace OpenTK.OpenGL } public static - void GetUniformv(Int32 program, Int32 location, [Out] out Single @params) + void GetUniform(Int32 program, Int32 location, [Out] out Single @params) { unsafe { @@ -12509,14 +12623,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetUniformv(UInt32 program, Int32 location, [Out] Int32* @params) + unsafe void GetUniform(UInt32 program, Int32 location, [Out] Int32* @params) { unsafe { Delegates.glGetUniformiv((UInt32)program, (Int32)location, (Int32*)@params); } } [System.CLSCompliant(false)] public static - unsafe void GetUniformv(Int32 program, Int32 location, [Out] Int32* @params) + unsafe void GetUniform(Int32 program, Int32 location, [Out] Int32* @params) { unsafe { @@ -12526,7 +12640,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetUniformv(UInt32 program, Int32 location, [Out] Int32[] @params) + void GetUniform(UInt32 program, Int32 location, [Out] Int32[] @params) { unsafe { @@ -12538,7 +12652,7 @@ namespace OpenTK.OpenGL } public static - void GetUniformv(Int32 program, Int32 location, [Out] Int32[] @params) + void GetUniform(Int32 program, Int32 location, [Out] Int32[] @params) { unsafe { @@ -12551,7 +12665,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetUniformv(UInt32 program, Int32 location, [Out] out Int32 @params) + void GetUniform(UInt32 program, Int32 location, [Out] out Int32 @params) { unsafe { @@ -12564,7 +12678,7 @@ namespace OpenTK.OpenGL } public static - void GetUniformv(Int32 program, Int32 location, [Out] out Int32 @params) + void GetUniform(Int32 program, Int32 location, [Out] out Int32 @params) { unsafe { @@ -12578,14 +12692,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribv(UInt32 index, GL.Enums.VERSION_2_0 pname, [Out] Double* @params) + unsafe void GetVertexAttribdv(UInt32 index, GL.Enums.VERSION_2_0 pname, [Out] Double* @params) { unsafe { Delegates.glGetVertexAttribdv((UInt32)index, (GL.Enums.VERSION_2_0)pname, (Double*)@params); } } [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribv(Int32 index, GL.Enums.VERSION_2_0 pname, [Out] Double* @params) + unsafe void GetVertexAttribdv(Int32 index, GL.Enums.VERSION_2_0 pname, [Out] Double* @params) { unsafe { @@ -12595,7 +12709,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetVertexAttribv(UInt32 index, GL.Enums.VERSION_2_0 pname, [Out] Double[] @params) + void GetVertexAttribdv(UInt32 index, GL.Enums.VERSION_2_0 pname, [Out] Double[] @params) { unsafe { @@ -12607,7 +12721,7 @@ namespace OpenTK.OpenGL } public static - void GetVertexAttribv(Int32 index, GL.Enums.VERSION_2_0 pname, [Out] Double[] @params) + void GetVertexAttribdv(Int32 index, GL.Enums.VERSION_2_0 pname, [Out] Double[] @params) { unsafe { @@ -12620,7 +12734,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetVertexAttribv(UInt32 index, GL.Enums.VERSION_2_0 pname, [Out] out Double @params) + void GetVertexAttribdv(UInt32 index, GL.Enums.VERSION_2_0 pname, [Out] out Double @params) { unsafe { @@ -12633,7 +12747,7 @@ namespace OpenTK.OpenGL } public static - void GetVertexAttribv(Int32 index, GL.Enums.VERSION_2_0 pname, [Out] out Double @params) + void GetVertexAttribdv(Int32 index, GL.Enums.VERSION_2_0 pname, [Out] out Double @params) { unsafe { @@ -12647,14 +12761,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribv(UInt32 index, GL.Enums.VERSION_2_0 pname, [Out] Single* @params) + unsafe void GetVertexAttribfv(UInt32 index, GL.Enums.VERSION_2_0 pname, [Out] Single* @params) { unsafe { Delegates.glGetVertexAttribfv((UInt32)index, (GL.Enums.VERSION_2_0)pname, (Single*)@params); } } [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribv(Int32 index, GL.Enums.VERSION_2_0 pname, [Out] Single* @params) + unsafe void GetVertexAttribfv(Int32 index, GL.Enums.VERSION_2_0 pname, [Out] Single* @params) { unsafe { @@ -12664,7 +12778,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetVertexAttribv(UInt32 index, GL.Enums.VERSION_2_0 pname, [Out] Single[] @params) + void GetVertexAttribfv(UInt32 index, GL.Enums.VERSION_2_0 pname, [Out] Single[] @params) { unsafe { @@ -12676,7 +12790,7 @@ namespace OpenTK.OpenGL } public static - void GetVertexAttribv(Int32 index, GL.Enums.VERSION_2_0 pname, [Out] Single[] @params) + void GetVertexAttribfv(Int32 index, GL.Enums.VERSION_2_0 pname, [Out] Single[] @params) { unsafe { @@ -12689,7 +12803,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetVertexAttribv(UInt32 index, GL.Enums.VERSION_2_0 pname, [Out] out Single @params) + void GetVertexAttribfv(UInt32 index, GL.Enums.VERSION_2_0 pname, [Out] out Single @params) { unsafe { @@ -12702,7 +12816,7 @@ namespace OpenTK.OpenGL } public static - void GetVertexAttribv(Int32 index, GL.Enums.VERSION_2_0 pname, [Out] out Single @params) + void GetVertexAttribfv(Int32 index, GL.Enums.VERSION_2_0 pname, [Out] out Single @params) { unsafe { @@ -12716,14 +12830,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribv(UInt32 index, GL.Enums.VERSION_2_0 pname, [Out] Int32* @params) + unsafe void GetVertexAttribiv(UInt32 index, GL.Enums.VERSION_2_0 pname, [Out] Int32* @params) { unsafe { Delegates.glGetVertexAttribiv((UInt32)index, (GL.Enums.VERSION_2_0)pname, (Int32*)@params); } } [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribv(Int32 index, GL.Enums.VERSION_2_0 pname, [Out] Int32* @params) + unsafe void GetVertexAttribiv(Int32 index, GL.Enums.VERSION_2_0 pname, [Out] Int32* @params) { unsafe { @@ -12733,7 +12847,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetVertexAttribv(UInt32 index, GL.Enums.VERSION_2_0 pname, [Out] Int32[] @params) + void GetVertexAttribiv(UInt32 index, GL.Enums.VERSION_2_0 pname, [Out] Int32[] @params) { unsafe { @@ -12745,7 +12859,7 @@ namespace OpenTK.OpenGL } public static - void GetVertexAttribv(Int32 index, GL.Enums.VERSION_2_0 pname, [Out] Int32[] @params) + void GetVertexAttribiv(Int32 index, GL.Enums.VERSION_2_0 pname, [Out] Int32[] @params) { unsafe { @@ -12758,7 +12872,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetVertexAttribv(UInt32 index, GL.Enums.VERSION_2_0 pname, [Out] out Int32 @params) + void GetVertexAttribiv(UInt32 index, GL.Enums.VERSION_2_0 pname, [Out] out Int32 @params) { unsafe { @@ -12771,7 +12885,7 @@ namespace OpenTK.OpenGL } public static - void GetVertexAttribv(Int32 index, GL.Enums.VERSION_2_0 pname, [Out] out Int32 @params) + void GetVertexAttribiv(Int32 index, GL.Enums.VERSION_2_0 pname, [Out] out Int32 @params) { unsafe { @@ -13033,13 +13147,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Uniform2fv(Int32 location, Int32 count, Single* value) + unsafe void Uniform2v(Int32 location, Int32 count, Single* value) { unsafe { Delegates.glUniform2fv((Int32)location, (Int32)count, (Single*)value); } } public static - void Uniform2fv(Int32 location, Int32 count, Single[] value) + void Uniform2v(Int32 location, Int32 count, Single[] value) { unsafe { @@ -13051,7 +13165,7 @@ namespace OpenTK.OpenGL } public static - void Uniform2fv(Int32 location, Int32 count, ref Single value) + void Uniform2v(Int32 location, Int32 count, ref Single value) { unsafe { @@ -13157,13 +13271,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Uniform2iv(Int32 location, Int32 count, Int32* value) + unsafe void Uniform2v(Int32 location, Int32 count, Int32* value) { unsafe { Delegates.glUniform2iv((Int32)location, (Int32)count, (Int32*)value); } } public static - void Uniform2iv(Int32 location, Int32 count, Int32[] value) + void Uniform2v(Int32 location, Int32 count, Int32[] value) { unsafe { @@ -13175,7 +13289,7 @@ namespace OpenTK.OpenGL } public static - void Uniform2iv(Int32 location, Int32 count, ref Int32 value) + void Uniform2v(Int32 location, Int32 count, ref Int32 value) { unsafe { @@ -13284,13 +13398,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib1(UInt32 index, Double x) + void VertexAttrib1d(UInt32 index, Double x) { Delegates.glVertexAttrib1d((UInt32)index, (Double)x); } public static - void VertexAttrib1(Int32 index, Double x) + void VertexAttrib1d(Int32 index, Double x) { Delegates.glVertexAttrib1d((UInt32)index, (Double)x); } @@ -13364,13 +13478,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib1(UInt32 index, Single x) + void VertexAttrib1f(UInt32 index, Single x) { Delegates.glVertexAttrib1f((UInt32)index, (Single)x); } public static - void VertexAttrib1(Int32 index, Single x) + void VertexAttrib1f(Int32 index, Single x) { Delegates.glVertexAttrib1f((UInt32)index, (Single)x); } @@ -13444,13 +13558,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib1(UInt32 index, Int16 x) + void VertexAttrib1s(UInt32 index, Int16 x) { Delegates.glVertexAttrib1s((UInt32)index, (Int16)x); } public static - void VertexAttrib1(Int32 index, Int16 x) + void VertexAttrib1s(Int32 index, Int16 x) { Delegates.glVertexAttrib1s((UInt32)index, (Int16)x); } @@ -13524,27 +13638,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2(UInt32 index, Double x, Double y) + void VertexAttrib2d(UInt32 index, Double x, Double y) { Delegates.glVertexAttrib2d((UInt32)index, (Double)x, (Double)y); } public static - void VertexAttrib2(Int32 index, Double x, Double y) + void VertexAttrib2d(Int32 index, Double x, Double y) { Delegates.glVertexAttrib2d((UInt32)index, (Double)x, (Double)y); } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib2(UInt32 index, Double* v) + unsafe void VertexAttrib2dv(UInt32 index, Double* v) { unsafe { Delegates.glVertexAttrib2dv((UInt32)index, (Double*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib2(Int32 index, Double* v) + unsafe void VertexAttrib2dv(Int32 index, Double* v) { unsafe { @@ -13554,7 +13668,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2(UInt32 index, Double[] v) + void VertexAttrib2dv(UInt32 index, Double[] v) { unsafe { @@ -13566,7 +13680,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib2(Int32 index, Double[] v) + void VertexAttrib2dv(Int32 index, Double[] v) { unsafe { @@ -13579,7 +13693,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2(UInt32 index, ref Double v) + void VertexAttrib2dv(UInt32 index, ref Double v) { unsafe { @@ -13591,7 +13705,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib2(Int32 index, ref Double v) + void VertexAttrib2dv(Int32 index, ref Double v) { unsafe { @@ -13604,27 +13718,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2(UInt32 index, Single x, Single y) + void VertexAttrib2f(UInt32 index, Single x, Single y) { Delegates.glVertexAttrib2f((UInt32)index, (Single)x, (Single)y); } public static - void VertexAttrib2(Int32 index, Single x, Single y) + void VertexAttrib2f(Int32 index, Single x, Single y) { Delegates.glVertexAttrib2f((UInt32)index, (Single)x, (Single)y); } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib2(UInt32 index, Single* v) + unsafe void VertexAttrib2fv(UInt32 index, Single* v) { unsafe { Delegates.glVertexAttrib2fv((UInt32)index, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib2(Int32 index, Single* v) + unsafe void VertexAttrib2fv(Int32 index, Single* v) { unsafe { @@ -13634,7 +13748,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2(UInt32 index, Single[] v) + void VertexAttrib2fv(UInt32 index, Single[] v) { unsafe { @@ -13646,7 +13760,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib2(Int32 index, Single[] v) + void VertexAttrib2fv(Int32 index, Single[] v) { unsafe { @@ -13659,7 +13773,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2(UInt32 index, ref Single v) + void VertexAttrib2fv(UInt32 index, ref Single v) { unsafe { @@ -13671,7 +13785,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib2(Int32 index, ref Single v) + void VertexAttrib2fv(Int32 index, ref Single v) { unsafe { @@ -13684,27 +13798,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2(UInt32 index, Int16 x, Int16 y) + void VertexAttrib2s(UInt32 index, Int16 x, Int16 y) { Delegates.glVertexAttrib2s((UInt32)index, (Int16)x, (Int16)y); } public static - void VertexAttrib2(Int32 index, Int16 x, Int16 y) + void VertexAttrib2s(Int32 index, Int16 x, Int16 y) { Delegates.glVertexAttrib2s((UInt32)index, (Int16)x, (Int16)y); } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib2(UInt32 index, Int16* v) + unsafe void VertexAttrib2sv(UInt32 index, Int16* v) { unsafe { Delegates.glVertexAttrib2sv((UInt32)index, (Int16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib2(Int32 index, Int16* v) + unsafe void VertexAttrib2sv(Int32 index, Int16* v) { unsafe { @@ -13714,7 +13828,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2(UInt32 index, Int16[] v) + void VertexAttrib2sv(UInt32 index, Int16[] v) { unsafe { @@ -13726,7 +13840,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib2(Int32 index, Int16[] v) + void VertexAttrib2sv(Int32 index, Int16[] v) { unsafe { @@ -13739,7 +13853,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2(UInt32 index, ref Int16 v) + void VertexAttrib2sv(UInt32 index, ref Int16 v) { unsafe { @@ -13751,7 +13865,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib2(Int32 index, ref Int16 v) + void VertexAttrib2sv(Int32 index, ref Int16 v) { unsafe { @@ -13764,27 +13878,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3(UInt32 index, Double x, Double y, Double z) + void VertexAttrib3d(UInt32 index, Double x, Double y, Double z) { Delegates.glVertexAttrib3d((UInt32)index, (Double)x, (Double)y, (Double)z); } public static - void VertexAttrib3(Int32 index, Double x, Double y, Double z) + void VertexAttrib3d(Int32 index, Double x, Double y, Double z) { Delegates.glVertexAttrib3d((UInt32)index, (Double)x, (Double)y, (Double)z); } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib3(UInt32 index, Double* v) + unsafe void VertexAttrib3dv(UInt32 index, Double* v) { unsafe { Delegates.glVertexAttrib3dv((UInt32)index, (Double*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib3(Int32 index, Double* v) + unsafe void VertexAttrib3dv(Int32 index, Double* v) { unsafe { @@ -13794,7 +13908,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3(UInt32 index, Double[] v) + void VertexAttrib3dv(UInt32 index, Double[] v) { unsafe { @@ -13806,7 +13920,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib3(Int32 index, Double[] v) + void VertexAttrib3dv(Int32 index, Double[] v) { unsafe { @@ -13819,7 +13933,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3(UInt32 index, ref Double v) + void VertexAttrib3dv(UInt32 index, ref Double v) { unsafe { @@ -13831,7 +13945,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib3(Int32 index, ref Double v) + void VertexAttrib3dv(Int32 index, ref Double v) { unsafe { @@ -13844,27 +13958,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3(UInt32 index, Single x, Single y, Single z) + void VertexAttrib3f(UInt32 index, Single x, Single y, Single z) { Delegates.glVertexAttrib3f((UInt32)index, (Single)x, (Single)y, (Single)z); } public static - void VertexAttrib3(Int32 index, Single x, Single y, Single z) + void VertexAttrib3f(Int32 index, Single x, Single y, Single z) { Delegates.glVertexAttrib3f((UInt32)index, (Single)x, (Single)y, (Single)z); } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib3(UInt32 index, Single* v) + unsafe void VertexAttrib3fv(UInt32 index, Single* v) { unsafe { Delegates.glVertexAttrib3fv((UInt32)index, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib3(Int32 index, Single* v) + unsafe void VertexAttrib3fv(Int32 index, Single* v) { unsafe { @@ -13874,7 +13988,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3(UInt32 index, Single[] v) + void VertexAttrib3fv(UInt32 index, Single[] v) { unsafe { @@ -13886,7 +14000,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib3(Int32 index, Single[] v) + void VertexAttrib3fv(Int32 index, Single[] v) { unsafe { @@ -13899,7 +14013,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3(UInt32 index, ref Single v) + void VertexAttrib3fv(UInt32 index, ref Single v) { unsafe { @@ -13911,7 +14025,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib3(Int32 index, ref Single v) + void VertexAttrib3fv(Int32 index, ref Single v) { unsafe { @@ -13924,27 +14038,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3(UInt32 index, Int16 x, Int16 y, Int16 z) + void VertexAttrib3s(UInt32 index, Int16 x, Int16 y, Int16 z) { Delegates.glVertexAttrib3s((UInt32)index, (Int16)x, (Int16)y, (Int16)z); } public static - void VertexAttrib3(Int32 index, Int16 x, Int16 y, Int16 z) + void VertexAttrib3s(Int32 index, Int16 x, Int16 y, Int16 z) { Delegates.glVertexAttrib3s((UInt32)index, (Int16)x, (Int16)y, (Int16)z); } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib3(UInt32 index, Int16* v) + unsafe void VertexAttrib3sv(UInt32 index, Int16* v) { unsafe { Delegates.glVertexAttrib3sv((UInt32)index, (Int16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib3(Int32 index, Int16* v) + unsafe void VertexAttrib3sv(Int32 index, Int16* v) { unsafe { @@ -13954,7 +14068,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3(UInt32 index, Int16[] v) + void VertexAttrib3sv(UInt32 index, Int16[] v) { unsafe { @@ -13966,7 +14080,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib3(Int32 index, Int16[] v) + void VertexAttrib3sv(Int32 index, Int16[] v) { unsafe { @@ -13979,7 +14093,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3(UInt32 index, ref Int16 v) + void VertexAttrib3sv(UInt32 index, ref Int16 v) { unsafe { @@ -13991,7 +14105,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib3(Int32 index, ref Int16 v) + void VertexAttrib3sv(Int32 index, ref Int16 v) { unsafe { @@ -14004,14 +14118,24 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4Nv(UInt32 index, SByte* v) + unsafe void VertexAttrib4Nbv(UInt32 index, SByte* v) { unsafe { Delegates.glVertexAttrib4Nbv((UInt32)index, (SByte*)v); } } [System.CLSCompliant(false)] public static - void VertexAttrib4Nv(UInt32 index, SByte[] v) + unsafe void VertexAttrib4Nbv(Int32 index, Byte* v) + { + unsafe + { + Delegates.glVertexAttrib4Nbv((UInt32)index, (SByte*)v); + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4Nbv(UInt32 index, SByte[] v) { unsafe { @@ -14022,9 +14146,21 @@ namespace OpenTK.OpenGL } } + public static + void VertexAttrib4Nbv(Int32 index, Byte[] v) + { + unsafe + { + fixed (Byte* v_ptr = v) + { + Delegates.glVertexAttrib4Nbv((UInt32)index, (SByte*)v_ptr); + } + } + } + [System.CLSCompliant(false)] public static - void VertexAttrib4Nv(UInt32 index, ref SByte v) + void VertexAttrib4Nbv(UInt32 index, ref SByte v) { unsafe { @@ -14035,16 +14171,50 @@ namespace OpenTK.OpenGL } } + public static + void VertexAttrib4Nbv(Int32 index, ref Byte v) + { + unsafe + { + fixed (Byte* v_ptr = &v) + { + Delegates.glVertexAttrib4Nbv((UInt32)index, (SByte*)v_ptr); + } + } + } + [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4Nv(UInt32 index, Int32* v) + unsafe void VertexAttrib4Niv(UInt32 index, Int32* v) { unsafe { Delegates.glVertexAttrib4Niv((UInt32)index, (Int32*)v); } } [System.CLSCompliant(false)] public static - void VertexAttrib4Nv(UInt32 index, Int32[] v) + unsafe void VertexAttrib4Niv(Int32 index, Int32* v) + { + unsafe + { + Delegates.glVertexAttrib4Niv((UInt32)index, (Int32*)v); + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4Niv(UInt32 index, Int32[] v) + { + unsafe + { + fixed (Int32* v_ptr = v) + { + Delegates.glVertexAttrib4Niv((UInt32)index, (Int32*)v_ptr); + } + } + } + + public static + void VertexAttrib4Niv(Int32 index, Int32[] v) { unsafe { @@ -14057,7 +14227,19 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4Nv(UInt32 index, ref Int32 v) + void VertexAttrib4Niv(UInt32 index, ref Int32 v) + { + unsafe + { + fixed (Int32* v_ptr = &v) + { + Delegates.glVertexAttrib4Niv((UInt32)index, (Int32*)v_ptr); + } + } + } + + public static + void VertexAttrib4Niv(Int32 index, ref Int32 v) { unsafe { @@ -14070,14 +14252,36 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4Nv(UInt32 index, Int16* v) + unsafe void VertexAttrib4Nsv(UInt32 index, Int16* v) { unsafe { Delegates.glVertexAttrib4Nsv((UInt32)index, (Int16*)v); } } [System.CLSCompliant(false)] public static - void VertexAttrib4Nv(UInt32 index, Int16[] v) + unsafe void VertexAttrib4Nsv(Int32 index, Int16* v) + { + unsafe + { + Delegates.glVertexAttrib4Nsv((UInt32)index, (Int16*)v); + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4Nsv(UInt32 index, Int16[] v) + { + unsafe + { + fixed (Int16* v_ptr = v) + { + Delegates.glVertexAttrib4Nsv((UInt32)index, (Int16*)v_ptr); + } + } + } + + public static + void VertexAttrib4Nsv(Int32 index, Int16[] v) { unsafe { @@ -14090,7 +14294,19 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4Nv(UInt32 index, ref Int16 v) + void VertexAttrib4Nsv(UInt32 index, ref Int16 v) + { + unsafe + { + fixed (Int16* v_ptr = &v) + { + Delegates.glVertexAttrib4Nsv((UInt32)index, (Int16*)v_ptr); + } + } + } + + public static + void VertexAttrib4Nsv(Int32 index, ref Int16 v) { unsafe { @@ -14116,14 +14332,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4Nv(UInt32 index, Byte* v) + unsafe void VertexAttrib4Nubv(UInt32 index, Byte* v) { unsafe { Delegates.glVertexAttrib4Nubv((UInt32)index, (Byte*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4Nv(Int32 index, Byte* v) + unsafe void VertexAttrib4Nubv(Int32 index, Byte* v) { unsafe { @@ -14133,7 +14349,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4Nv(UInt32 index, Byte[] v) + void VertexAttrib4Nubv(UInt32 index, Byte[] v) { unsafe { @@ -14145,7 +14361,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4Nv(Int32 index, Byte[] v) + void VertexAttrib4Nubv(Int32 index, Byte[] v) { unsafe { @@ -14158,7 +14374,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4Nv(UInt32 index, ref Byte v) + void VertexAttrib4Nubv(UInt32 index, ref Byte v) { unsafe { @@ -14170,7 +14386,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4Nv(Int32 index, ref Byte v) + void VertexAttrib4Nubv(Int32 index, ref Byte v) { unsafe { @@ -14183,14 +14399,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4Nv(UInt32 index, UInt32* v) + unsafe void VertexAttrib4Nuiv(UInt32 index, UInt32* v) { unsafe { Delegates.glVertexAttrib4Nuiv((UInt32)index, (UInt32*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4Nv(Int32 index, Int32* v) + unsafe void VertexAttrib4Nuiv(Int32 index, Int32* v) { unsafe { @@ -14200,7 +14416,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4Nv(UInt32 index, UInt32[] v) + void VertexAttrib4Nuiv(UInt32 index, UInt32[] v) { unsafe { @@ -14212,7 +14428,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4Nv(Int32 index, Int32[] v) + void VertexAttrib4Nuiv(Int32 index, Int32[] v) { unsafe { @@ -14225,7 +14441,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4Nv(UInt32 index, ref UInt32 v) + void VertexAttrib4Nuiv(UInt32 index, ref UInt32 v) { unsafe { @@ -14237,7 +14453,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4Nv(Int32 index, ref Int32 v) + void VertexAttrib4Nuiv(Int32 index, ref Int32 v) { unsafe { @@ -14250,14 +14466,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4Nv(UInt32 index, UInt16* v) + unsafe void VertexAttrib4Nusv(UInt32 index, UInt16* v) { unsafe { Delegates.glVertexAttrib4Nusv((UInt32)index, (UInt16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4Nv(Int32 index, Int16* v) + unsafe void VertexAttrib4Nusv(Int32 index, Int16* v) { unsafe { @@ -14267,7 +14483,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4Nv(UInt32 index, UInt16[] v) + void VertexAttrib4Nusv(UInt32 index, UInt16[] v) { unsafe { @@ -14279,7 +14495,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4Nv(Int32 index, Int16[] v) + void VertexAttrib4Nusv(Int32 index, Int16[] v) { unsafe { @@ -14292,7 +14508,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4Nv(UInt32 index, ref UInt16 v) + void VertexAttrib4Nusv(UInt32 index, ref UInt16 v) { unsafe { @@ -14304,7 +14520,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4Nv(Int32 index, ref Int16 v) + void VertexAttrib4Nusv(Int32 index, ref Int16 v) { unsafe { @@ -14317,14 +14533,24 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4(UInt32 index, SByte* v) + unsafe void VertexAttrib4bv(UInt32 index, SByte* v) { unsafe { Delegates.glVertexAttrib4bv((UInt32)index, (SByte*)v); } } [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, SByte[] v) + unsafe void VertexAttrib4bv(Int32 index, Byte* v) + { + unsafe + { + Delegates.glVertexAttrib4bv((UInt32)index, (SByte*)v); + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4bv(UInt32 index, SByte[] v) { unsafe { @@ -14335,9 +14561,21 @@ namespace OpenTK.OpenGL } } + public static + void VertexAttrib4bv(Int32 index, Byte[] v) + { + unsafe + { + fixed (Byte* v_ptr = v) + { + Delegates.glVertexAttrib4bv((UInt32)index, (SByte*)v_ptr); + } + } + } + [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, ref SByte v) + void VertexAttrib4bv(UInt32 index, ref SByte v) { unsafe { @@ -14348,29 +14586,41 @@ namespace OpenTK.OpenGL } } + public static + void VertexAttrib4bv(Int32 index, ref Byte v) + { + unsafe + { + fixed (Byte* v_ptr = &v) + { + Delegates.glVertexAttrib4bv((UInt32)index, (SByte*)v_ptr); + } + } + } + [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, Double x, Double y, Double z, Double w) + void VertexAttrib4d(UInt32 index, Double x, Double y, Double z, Double w) { Delegates.glVertexAttrib4d((UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); } public static - void VertexAttrib4(Int32 index, Double x, Double y, Double z, Double w) + void VertexAttrib4d(Int32 index, Double x, Double y, Double z, Double w) { Delegates.glVertexAttrib4d((UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4(UInt32 index, Double* v) + unsafe void VertexAttrib4dv(UInt32 index, Double* v) { unsafe { Delegates.glVertexAttrib4dv((UInt32)index, (Double*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4(Int32 index, Double* v) + unsafe void VertexAttrib4dv(Int32 index, Double* v) { unsafe { @@ -14380,7 +14630,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, Double[] v) + void VertexAttrib4dv(UInt32 index, Double[] v) { unsafe { @@ -14392,7 +14642,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4(Int32 index, Double[] v) + void VertexAttrib4dv(Int32 index, Double[] v) { unsafe { @@ -14405,7 +14655,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, ref Double v) + void VertexAttrib4dv(UInt32 index, ref Double v) { unsafe { @@ -14417,7 +14667,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4(Int32 index, ref Double v) + void VertexAttrib4dv(Int32 index, ref Double v) { unsafe { @@ -14430,27 +14680,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, Single x, Single y, Single z, Single w) + void VertexAttrib4f(UInt32 index, Single x, Single y, Single z, Single w) { Delegates.glVertexAttrib4f((UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); } public static - void VertexAttrib4(Int32 index, Single x, Single y, Single z, Single w) + void VertexAttrib4f(Int32 index, Single x, Single y, Single z, Single w) { Delegates.glVertexAttrib4f((UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4(UInt32 index, Single* v) + unsafe void VertexAttrib4fv(UInt32 index, Single* v) { unsafe { Delegates.glVertexAttrib4fv((UInt32)index, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4(Int32 index, Single* v) + unsafe void VertexAttrib4fv(Int32 index, Single* v) { unsafe { @@ -14460,7 +14710,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, Single[] v) + void VertexAttrib4fv(UInt32 index, Single[] v) { unsafe { @@ -14472,7 +14722,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4(Int32 index, Single[] v) + void VertexAttrib4fv(Int32 index, Single[] v) { unsafe { @@ -14485,7 +14735,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, ref Single v) + void VertexAttrib4fv(UInt32 index, ref Single v) { unsafe { @@ -14497,7 +14747,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4(Int32 index, ref Single v) + void VertexAttrib4fv(Int32 index, ref Single v) { unsafe { @@ -14510,14 +14760,36 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4(UInt32 index, Int32* v) + unsafe void VertexAttrib4iv(UInt32 index, Int32* v) { unsafe { Delegates.glVertexAttrib4iv((UInt32)index, (Int32*)v); } } [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, Int32[] v) + unsafe void VertexAttrib4iv(Int32 index, Int32* v) + { + unsafe + { + Delegates.glVertexAttrib4iv((UInt32)index, (Int32*)v); + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4iv(UInt32 index, Int32[] v) + { + unsafe + { + fixed (Int32* v_ptr = v) + { + Delegates.glVertexAttrib4iv((UInt32)index, (Int32*)v_ptr); + } + } + } + + public static + void VertexAttrib4iv(Int32 index, Int32[] v) { unsafe { @@ -14530,7 +14802,19 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, ref Int32 v) + void VertexAttrib4iv(UInt32 index, ref Int32 v) + { + unsafe + { + fixed (Int32* v_ptr = &v) + { + Delegates.glVertexAttrib4iv((UInt32)index, (Int32*)v_ptr); + } + } + } + + public static + void VertexAttrib4iv(Int32 index, ref Int32 v) { unsafe { @@ -14543,27 +14827,49 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, Int16 x, Int16 y, Int16 z, Int16 w) + void VertexAttrib4s(UInt32 index, Int16 x, Int16 y, Int16 z, Int16 w) { Delegates.glVertexAttrib4s((UInt32)index, (Int16)x, (Int16)y, (Int16)z, (Int16)w); } public static - void VertexAttrib4(Int32 index, Int16 x, Int16 y, Int16 z, Int16 w) + void VertexAttrib4s(Int32 index, Int16 x, Int16 y, Int16 z, Int16 w) { Delegates.glVertexAttrib4s((UInt32)index, (Int16)x, (Int16)y, (Int16)z, (Int16)w); } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4(UInt32 index, Int16* v) + unsafe void VertexAttrib4sv(UInt32 index, Int16* v) { unsafe { Delegates.glVertexAttrib4sv((UInt32)index, (Int16*)v); } } [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, Int16[] v) + unsafe void VertexAttrib4sv(Int32 index, Int16* v) + { + unsafe + { + Delegates.glVertexAttrib4sv((UInt32)index, (Int16*)v); + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4sv(UInt32 index, Int16[] v) + { + unsafe + { + fixed (Int16* v_ptr = v) + { + Delegates.glVertexAttrib4sv((UInt32)index, (Int16*)v_ptr); + } + } + } + + public static + void VertexAttrib4sv(Int32 index, Int16[] v) { unsafe { @@ -14576,7 +14882,19 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, ref Int16 v) + void VertexAttrib4sv(UInt32 index, ref Int16 v) + { + unsafe + { + fixed (Int16* v_ptr = &v) + { + Delegates.glVertexAttrib4sv((UInt32)index, (Int16*)v_ptr); + } + } + } + + public static + void VertexAttrib4sv(Int32 index, ref Int16 v) { unsafe { @@ -14589,14 +14907,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4(UInt32 index, Byte* v) + unsafe void VertexAttrib4ubv(UInt32 index, Byte* v) { unsafe { Delegates.glVertexAttrib4ubv((UInt32)index, (Byte*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4(Int32 index, Byte* v) + unsafe void VertexAttrib4ubv(Int32 index, Byte* v) { unsafe { @@ -14606,7 +14924,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, Byte[] v) + void VertexAttrib4ubv(UInt32 index, Byte[] v) { unsafe { @@ -14618,7 +14936,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4(Int32 index, Byte[] v) + void VertexAttrib4ubv(Int32 index, Byte[] v) { unsafe { @@ -14631,7 +14949,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, ref Byte v) + void VertexAttrib4ubv(UInt32 index, ref Byte v) { unsafe { @@ -14643,7 +14961,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4(Int32 index, ref Byte v) + void VertexAttrib4ubv(Int32 index, ref Byte v) { unsafe { @@ -14656,14 +14974,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4(UInt32 index, UInt32* v) + unsafe void VertexAttrib4uiv(UInt32 index, UInt32* v) { unsafe { Delegates.glVertexAttrib4uiv((UInt32)index, (UInt32*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4(Int32 index, Int32* v) + unsafe void VertexAttrib4uiv(Int32 index, Int32* v) { unsafe { @@ -14673,7 +14991,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, UInt32[] v) + void VertexAttrib4uiv(UInt32 index, UInt32[] v) { unsafe { @@ -14685,7 +15003,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4(Int32 index, Int32[] v) + void VertexAttrib4uiv(Int32 index, Int32[] v) { unsafe { @@ -14698,7 +15016,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, ref UInt32 v) + void VertexAttrib4uiv(UInt32 index, ref UInt32 v) { unsafe { @@ -14710,7 +15028,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4(Int32 index, ref Int32 v) + void VertexAttrib4uiv(Int32 index, ref Int32 v) { unsafe { @@ -14723,14 +15041,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4(UInt32 index, UInt16* v) + unsafe void VertexAttrib4usv(UInt32 index, UInt16* v) { unsafe { Delegates.glVertexAttrib4usv((UInt32)index, (UInt16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4(Int32 index, Int16* v) + unsafe void VertexAttrib4usv(Int32 index, Int16* v) { unsafe { @@ -14740,7 +15058,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, UInt16[] v) + void VertexAttrib4usv(UInt32 index, UInt16[] v) { unsafe { @@ -14752,7 +15070,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4(Int32 index, Int16[] v) + void VertexAttrib4usv(Int32 index, Int16[] v) { unsafe { @@ -14765,7 +15083,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, ref UInt16 v) + void VertexAttrib4usv(UInt32 index, ref UInt16 v) { unsafe { @@ -14777,7 +15095,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4(Int32 index, ref Int16 v) + void VertexAttrib4usv(Int32 index, ref Int16 v) { unsafe { @@ -14869,13 +15187,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord1dv(GL.Enums.ARB_multitexture target, Double* v) + unsafe void MultiTexCoord1v(GL.Enums.ARB_multitexture target, Double* v) { unsafe { Delegates.glMultiTexCoord1dvARB((GL.Enums.ARB_multitexture)target, (Double*)v); } } public static - void MultiTexCoord1dv(GL.Enums.ARB_multitexture target, Double[] v) + void MultiTexCoord1v(GL.Enums.ARB_multitexture target, Double[] v) { unsafe { @@ -14887,7 +15205,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord1dv(GL.Enums.ARB_multitexture target, ref Double v) + void MultiTexCoord1v(GL.Enums.ARB_multitexture target, ref Double v) { unsafe { @@ -14906,13 +15224,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord1fv(GL.Enums.ARB_multitexture target, Single* v) + unsafe void MultiTexCoord1v(GL.Enums.ARB_multitexture target, Single* v) { unsafe { Delegates.glMultiTexCoord1fvARB((GL.Enums.ARB_multitexture)target, (Single*)v); } } public static - void MultiTexCoord1fv(GL.Enums.ARB_multitexture target, Single[] v) + void MultiTexCoord1v(GL.Enums.ARB_multitexture target, Single[] v) { unsafe { @@ -14924,7 +15242,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord1fv(GL.Enums.ARB_multitexture target, ref Single v) + void MultiTexCoord1v(GL.Enums.ARB_multitexture target, ref Single v) { unsafe { @@ -14943,13 +15261,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord1iv(GL.Enums.ARB_multitexture target, Int32* v) + unsafe void MultiTexCoord1v(GL.Enums.ARB_multitexture target, Int32* v) { unsafe { Delegates.glMultiTexCoord1ivARB((GL.Enums.ARB_multitexture)target, (Int32*)v); } } public static - void MultiTexCoord1iv(GL.Enums.ARB_multitexture target, Int32[] v) + void MultiTexCoord1v(GL.Enums.ARB_multitexture target, Int32[] v) { unsafe { @@ -14961,7 +15279,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord1iv(GL.Enums.ARB_multitexture target, ref Int32 v) + void MultiTexCoord1v(GL.Enums.ARB_multitexture target, ref Int32 v) { unsafe { @@ -14980,13 +15298,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord1sv(GL.Enums.ARB_multitexture target, Int16* v) + unsafe void MultiTexCoord1v(GL.Enums.ARB_multitexture target, Int16* v) { unsafe { Delegates.glMultiTexCoord1svARB((GL.Enums.ARB_multitexture)target, (Int16*)v); } } public static - void MultiTexCoord1sv(GL.Enums.ARB_multitexture target, Int16[] v) + void MultiTexCoord1v(GL.Enums.ARB_multitexture target, Int16[] v) { unsafe { @@ -14998,7 +15316,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord1sv(GL.Enums.ARB_multitexture target, ref Int16 v) + void MultiTexCoord1v(GL.Enums.ARB_multitexture target, ref Int16 v) { unsafe { @@ -15455,13 +15773,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void LoadTransposeMatrixf(Single* m) + unsafe void LoadTransposeMatrix(Single* m) { unsafe { Delegates.glLoadTransposeMatrixfARB((Single*)m); } } public static - void LoadTransposeMatrixf(Single[] m) + void LoadTransposeMatrix(Single[] m) { unsafe { @@ -15473,7 +15791,7 @@ namespace OpenTK.OpenGL } public static - void LoadTransposeMatrixf(ref Single m) + void LoadTransposeMatrix(ref Single m) { unsafe { @@ -15486,13 +15804,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void LoadTransposeMatrixd(Double* m) + unsafe void LoadTransposeMatrix(Double* m) { unsafe { Delegates.glLoadTransposeMatrixdARB((Double*)m); } } public static - void LoadTransposeMatrixd(Double[] m) + void LoadTransposeMatrix(Double[] m) { unsafe { @@ -15504,7 +15822,7 @@ namespace OpenTK.OpenGL } public static - void LoadTransposeMatrixd(ref Double m) + void LoadTransposeMatrix(ref Double m) { unsafe { @@ -15517,13 +15835,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultTransposeMatrixf(Single* m) + unsafe void MultTransposeMatrix(Single* m) { unsafe { Delegates.glMultTransposeMatrixfARB((Single*)m); } } public static - void MultTransposeMatrixf(Single[] m) + void MultTransposeMatrix(Single[] m) { unsafe { @@ -15535,7 +15853,7 @@ namespace OpenTK.OpenGL } public static - void MultTransposeMatrixf(ref Single m) + void MultTransposeMatrix(ref Single m) { unsafe { @@ -15548,13 +15866,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultTransposeMatrixd(Double* m) + unsafe void MultTransposeMatrix(Double* m) { unsafe { Delegates.glMultTransposeMatrixdARB((Double*)m); } } public static - void MultTransposeMatrixd(Double[] m) + void MultTransposeMatrix(Double[] m) { unsafe { @@ -15566,7 +15884,7 @@ namespace OpenTK.OpenGL } public static - void MultTransposeMatrixd(ref Double m) + void MultTransposeMatrix(ref Double m) { unsafe { @@ -15745,7 +16063,7 @@ namespace OpenTK.OpenGL } public static - void PointParameterf(GL.Enums.ARB_point_parameters pname, Single param) + void PointParameter(GL.Enums.ARB_point_parameters pname, Single param) { Delegates.glPointParameterfARB((GL.Enums.ARB_point_parameters)pname, (Single)param); } @@ -15783,14 +16101,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Weightv(Int32 size, SByte* weights) + unsafe void Weight(Int32 size, SByte* weights) { unsafe { Delegates.glWeightbvARB((Int32)size, (SByte*)weights); } } [System.CLSCompliant(false)] public static - void Weightv(Int32 size, SByte[] weights) + void Weight(Int32 size, SByte[] weights) { unsafe { @@ -15803,7 +16121,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Weightv(Int32 size, ref SByte weights) + void Weight(Int32 size, ref SByte weights) { unsafe { @@ -15816,13 +16134,44 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Weightv(Int32 size, Single* weights) + unsafe void Weightsv(Int32 size, Int16* weights) + { + unsafe { Delegates.glWeightsvARB((Int32)size, (Int16*)weights); } + } + + public static + void Weightsv(Int32 size, Int16[] weights) + { + unsafe + { + fixed (Int16* weights_ptr = weights) + { + Delegates.glWeightsvARB((Int32)size, (Int16*)weights_ptr); + } + } + } + + public static + void Weightsv(Int32 size, ref Int16 weights) + { + unsafe + { + fixed (Int16* weights_ptr = &weights) + { + Delegates.glWeightsvARB((Int32)size, (Int16*)weights_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Weight(Int32 size, Single* weights) { unsafe { Delegates.glWeightfvARB((Int32)size, (Single*)weights); } } public static - void Weightv(Int32 size, Single[] weights) + void Weight(Int32 size, Single[] weights) { unsafe { @@ -15834,7 +16183,7 @@ namespace OpenTK.OpenGL } public static - void Weightv(Int32 size, ref Single weights) + void Weight(Int32 size, ref Single weights) { unsafe { @@ -15847,13 +16196,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Weightv(Int32 size, Double* weights) + unsafe void Weight(Int32 size, Double* weights) { unsafe { Delegates.glWeightdvARB((Int32)size, (Double*)weights); } } public static - void Weightv(Int32 size, Double[] weights) + void Weight(Int32 size, Double[] weights) { unsafe { @@ -15865,7 +16214,7 @@ namespace OpenTK.OpenGL } public static - void Weightv(Int32 size, ref Double weights) + void Weight(Int32 size, ref Double weights) { unsafe { @@ -15878,13 +16227,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Weightv(Int32 size, Byte* weights) + unsafe void Weight(Int32 size, Byte* weights) { unsafe { Delegates.glWeightubvARB((Int32)size, (Byte*)weights); } } public static - void Weightv(Int32 size, Byte[] weights) + void Weight(Int32 size, Byte[] weights) { unsafe { @@ -15896,7 +16245,7 @@ namespace OpenTK.OpenGL } public static - void Weightv(Int32 size, ref Byte weights) + void Weight(Int32 size, ref Byte weights) { unsafe { @@ -15909,14 +16258,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Weightv(Int32 size, UInt16* weights) + unsafe void Weight(Int32 size, UInt16* weights) { unsafe { Delegates.glWeightusvARB((Int32)size, (UInt16*)weights); } } [System.CLSCompliant(false)] public static - unsafe void Weightv(Int32 size, Int16* weights) + unsafe void Weight(Int32 size, Int16* weights) { unsafe { @@ -15926,7 +16275,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Weightv(Int32 size, UInt16[] weights) + void Weight(Int32 size, UInt16[] weights) { unsafe { @@ -15938,7 +16287,7 @@ namespace OpenTK.OpenGL } public static - void Weightv(Int32 size, Int16[] weights) + void Weight(Int32 size, Int16[] weights) { unsafe { @@ -15951,7 +16300,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Weightv(Int32 size, ref UInt16 weights) + void Weight(Int32 size, ref UInt16 weights) { unsafe { @@ -15963,7 +16312,7 @@ namespace OpenTK.OpenGL } public static - void Weightv(Int32 size, ref Int16 weights) + void Weight(Int32 size, ref Int16 weights) { unsafe { @@ -15976,14 +16325,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Weightv(Int32 size, UInt32* weights) + unsafe void Weight(Int32 size, UInt32* weights) { unsafe { Delegates.glWeightuivARB((Int32)size, (UInt32*)weights); } } [System.CLSCompliant(false)] public static - unsafe void Weightv(Int32 size, Int32* weights) + unsafe void Weight(Int32 size, Int32* weights) { unsafe { @@ -15993,7 +16342,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Weightv(Int32 size, UInt32[] weights) + void Weight(Int32 size, UInt32[] weights) { unsafe { @@ -16005,7 +16354,7 @@ namespace OpenTK.OpenGL } public static - void Weightv(Int32 size, Int32[] weights) + void Weight(Int32 size, Int32[] weights) { unsafe { @@ -16018,7 +16367,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Weightv(Int32 size, ref UInt32 weights) + void Weight(Int32 size, ref UInt32 weights) { unsafe { @@ -16030,7 +16379,7 @@ namespace OpenTK.OpenGL } public static - void Weightv(Int32 size, ref Int32 weights) + void Weight(Int32 size, ref Int32 weights) { unsafe { @@ -16078,13 +16427,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MatrixIndexv(Int32 size, Byte* indices) + unsafe void MatrixIndexubv(Int32 size, Byte* indices) { unsafe { Delegates.glMatrixIndexubvARB((Int32)size, (Byte*)indices); } } public static - void MatrixIndexv(Int32 size, Byte[] indices) + void MatrixIndexubv(Int32 size, Byte[] indices) { unsafe { @@ -16096,7 +16445,7 @@ namespace OpenTK.OpenGL } public static - void MatrixIndexv(Int32 size, ref Byte indices) + void MatrixIndexubv(Int32 size, ref Byte indices) { unsafe { @@ -16109,14 +16458,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MatrixIndexv(Int32 size, UInt16* indices) + unsafe void MatrixIndexusv(Int32 size, UInt16* indices) { unsafe { Delegates.glMatrixIndexusvARB((Int32)size, (UInt16*)indices); } } [System.CLSCompliant(false)] public static - unsafe void MatrixIndexv(Int32 size, Int16* indices) + unsafe void MatrixIndexusv(Int32 size, Int16* indices) { unsafe { @@ -16126,7 +16475,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void MatrixIndexv(Int32 size, UInt16[] indices) + void MatrixIndexusv(Int32 size, UInt16[] indices) { unsafe { @@ -16138,7 +16487,7 @@ namespace OpenTK.OpenGL } public static - void MatrixIndexv(Int32 size, Int16[] indices) + void MatrixIndexusv(Int32 size, Int16[] indices) { unsafe { @@ -16151,7 +16500,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void MatrixIndexv(Int32 size, ref UInt16 indices) + void MatrixIndexusv(Int32 size, ref UInt16 indices) { unsafe { @@ -16163,7 +16512,7 @@ namespace OpenTK.OpenGL } public static - void MatrixIndexv(Int32 size, ref Int16 indices) + void MatrixIndexusv(Int32 size, ref Int16 indices) { unsafe { @@ -16176,14 +16525,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MatrixIndexv(Int32 size, UInt32* indices) + unsafe void MatrixIndexuiv(Int32 size, UInt32* indices) { unsafe { Delegates.glMatrixIndexuivARB((Int32)size, (UInt32*)indices); } } [System.CLSCompliant(false)] public static - unsafe void MatrixIndexv(Int32 size, Int32* indices) + unsafe void MatrixIndexuiv(Int32 size, Int32* indices) { unsafe { @@ -16193,7 +16542,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void MatrixIndexv(Int32 size, UInt32[] indices) + void MatrixIndexuiv(Int32 size, UInt32[] indices) { unsafe { @@ -16205,7 +16554,7 @@ namespace OpenTK.OpenGL } public static - void MatrixIndexv(Int32 size, Int32[] indices) + void MatrixIndexuiv(Int32 size, Int32[] indices) { unsafe { @@ -16218,7 +16567,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void MatrixIndexv(Int32 size, ref UInt32 indices) + void MatrixIndexuiv(Int32 size, ref UInt32 indices) { unsafe { @@ -16230,7 +16579,7 @@ namespace OpenTK.OpenGL } public static - void MatrixIndexv(Int32 size, ref Int32 indices) + void MatrixIndexuiv(Int32 size, ref Int32 indices) { unsafe { @@ -16265,20 +16614,20 @@ namespace OpenTK.OpenGL } public static - void WindowPos2(Double x, Double y) + void WindowPos2d(Double x, Double y) { Delegates.glWindowPos2dARB((Double)x, (Double)y); } [System.CLSCompliant(false)] public static - unsafe void WindowPos2(Double* v) + unsafe void WindowPos2dv(Double* v) { unsafe { Delegates.glWindowPos2dvARB((Double*)v); } } public static - void WindowPos2(Double[] v) + void WindowPos2dv(Double[] v) { unsafe { @@ -16290,7 +16639,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos2(ref Double v) + void WindowPos2dv(ref Double v) { unsafe { @@ -16302,20 +16651,20 @@ namespace OpenTK.OpenGL } public static - void WindowPos2(Single x, Single y) + void WindowPos2f(Single x, Single y) { Delegates.glWindowPos2fARB((Single)x, (Single)y); } [System.CLSCompliant(false)] public static - unsafe void WindowPos2(Single* v) + unsafe void WindowPos2fv(Single* v) { unsafe { Delegates.glWindowPos2fvARB((Single*)v); } } public static - void WindowPos2(Single[] v) + void WindowPos2fv(Single[] v) { unsafe { @@ -16327,7 +16676,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos2(ref Single v) + void WindowPos2fv(ref Single v) { unsafe { @@ -16339,20 +16688,20 @@ namespace OpenTK.OpenGL } public static - void WindowPos2(Int32 x, Int32 y) + void WindowPos2i(Int32 x, Int32 y) { Delegates.glWindowPos2iARB((Int32)x, (Int32)y); } [System.CLSCompliant(false)] public static - unsafe void WindowPos2(Int32* v) + unsafe void WindowPos2iv(Int32* v) { unsafe { Delegates.glWindowPos2ivARB((Int32*)v); } } public static - void WindowPos2(Int32[] v) + void WindowPos2iv(Int32[] v) { unsafe { @@ -16364,7 +16713,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos2(ref Int32 v) + void WindowPos2iv(ref Int32 v) { unsafe { @@ -16376,20 +16725,20 @@ namespace OpenTK.OpenGL } public static - void WindowPos2(Int16 x, Int16 y) + void WindowPos2s(Int16 x, Int16 y) { Delegates.glWindowPos2sARB((Int16)x, (Int16)y); } [System.CLSCompliant(false)] public static - unsafe void WindowPos2(Int16* v) + unsafe void WindowPos2sv(Int16* v) { unsafe { Delegates.glWindowPos2svARB((Int16*)v); } } public static - void WindowPos2(Int16[] v) + void WindowPos2sv(Int16[] v) { unsafe { @@ -16401,7 +16750,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos2(ref Int16 v) + void WindowPos2sv(ref Int16 v) { unsafe { @@ -16413,20 +16762,20 @@ namespace OpenTK.OpenGL } public static - void WindowPos3(Double x, Double y, Double z) + void WindowPos3d(Double x, Double y, Double z) { Delegates.glWindowPos3dARB((Double)x, (Double)y, (Double)z); } [System.CLSCompliant(false)] public static - unsafe void WindowPos3(Double* v) + unsafe void WindowPos3dv(Double* v) { unsafe { Delegates.glWindowPos3dvARB((Double*)v); } } public static - void WindowPos3(Double[] v) + void WindowPos3dv(Double[] v) { unsafe { @@ -16438,7 +16787,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos3(ref Double v) + void WindowPos3dv(ref Double v) { unsafe { @@ -16450,20 +16799,20 @@ namespace OpenTK.OpenGL } public static - void WindowPos3(Single x, Single y, Single z) + void WindowPos3f(Single x, Single y, Single z) { Delegates.glWindowPos3fARB((Single)x, (Single)y, (Single)z); } [System.CLSCompliant(false)] public static - unsafe void WindowPos3(Single* v) + unsafe void WindowPos3fv(Single* v) { unsafe { Delegates.glWindowPos3fvARB((Single*)v); } } public static - void WindowPos3(Single[] v) + void WindowPos3fv(Single[] v) { unsafe { @@ -16475,7 +16824,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos3(ref Single v) + void WindowPos3fv(ref Single v) { unsafe { @@ -16487,20 +16836,20 @@ namespace OpenTK.OpenGL } public static - void WindowPos3(Int32 x, Int32 y, Int32 z) + void WindowPos3i(Int32 x, Int32 y, Int32 z) { Delegates.glWindowPos3iARB((Int32)x, (Int32)y, (Int32)z); } [System.CLSCompliant(false)] public static - unsafe void WindowPos3(Int32* v) + unsafe void WindowPos3iv(Int32* v) { unsafe { Delegates.glWindowPos3ivARB((Int32*)v); } } public static - void WindowPos3(Int32[] v) + void WindowPos3iv(Int32[] v) { unsafe { @@ -16512,7 +16861,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos3(ref Int32 v) + void WindowPos3iv(ref Int32 v) { unsafe { @@ -16524,20 +16873,20 @@ namespace OpenTK.OpenGL } public static - void WindowPos3(Int16 x, Int16 y, Int16 z) + void WindowPos3s(Int16 x, Int16 y, Int16 z) { Delegates.glWindowPos3sARB((Int16)x, (Int16)y, (Int16)z); } [System.CLSCompliant(false)] public static - unsafe void WindowPos3(Int16* v) + unsafe void WindowPos3sv(Int16* v) { unsafe { Delegates.glWindowPos3svARB((Int16*)v); } } public static - void WindowPos3(Int16[] v) + void WindowPos3sv(Int16[] v) { unsafe { @@ -16549,7 +16898,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos3(ref Int16 v) + void WindowPos3sv(ref Int16 v) { unsafe { @@ -16562,13 +16911,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib1(UInt32 index, Double x) + void VertexAttrib1d(UInt32 index, Double x) { Delegates.glVertexAttrib1dARB((UInt32)index, (Double)x); } public static - void VertexAttrib1(Int32 index, Double x) + void VertexAttrib1d(Int32 index, Double x) { Delegates.glVertexAttrib1dARB((UInt32)index, (Double)x); } @@ -16642,13 +16991,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib1(UInt32 index, Single x) + void VertexAttrib1f(UInt32 index, Single x) { Delegates.glVertexAttrib1fARB((UInt32)index, (Single)x); } public static - void VertexAttrib1(Int32 index, Single x) + void VertexAttrib1f(Int32 index, Single x) { Delegates.glVertexAttrib1fARB((UInt32)index, (Single)x); } @@ -16722,13 +17071,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib1(UInt32 index, Int16 x) + void VertexAttrib1s(UInt32 index, Int16 x) { Delegates.glVertexAttrib1sARB((UInt32)index, (Int16)x); } public static - void VertexAttrib1(Int32 index, Int16 x) + void VertexAttrib1s(Int32 index, Int16 x) { Delegates.glVertexAttrib1sARB((UInt32)index, (Int16)x); } @@ -16802,27 +17151,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2(UInt32 index, Double x, Double y) + void VertexAttrib2d(UInt32 index, Double x, Double y) { Delegates.glVertexAttrib2dARB((UInt32)index, (Double)x, (Double)y); } public static - void VertexAttrib2(Int32 index, Double x, Double y) + void VertexAttrib2d(Int32 index, Double x, Double y) { Delegates.glVertexAttrib2dARB((UInt32)index, (Double)x, (Double)y); } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib2(UInt32 index, Double* v) + unsafe void VertexAttrib2dv(UInt32 index, Double* v) { unsafe { Delegates.glVertexAttrib2dvARB((UInt32)index, (Double*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib2(Int32 index, Double* v) + unsafe void VertexAttrib2dv(Int32 index, Double* v) { unsafe { @@ -16832,7 +17181,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2(UInt32 index, Double[] v) + void VertexAttrib2dv(UInt32 index, Double[] v) { unsafe { @@ -16844,7 +17193,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib2(Int32 index, Double[] v) + void VertexAttrib2dv(Int32 index, Double[] v) { unsafe { @@ -16857,7 +17206,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2(UInt32 index, ref Double v) + void VertexAttrib2dv(UInt32 index, ref Double v) { unsafe { @@ -16869,7 +17218,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib2(Int32 index, ref Double v) + void VertexAttrib2dv(Int32 index, ref Double v) { unsafe { @@ -16882,27 +17231,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2(UInt32 index, Single x, Single y) + void VertexAttrib2f(UInt32 index, Single x, Single y) { Delegates.glVertexAttrib2fARB((UInt32)index, (Single)x, (Single)y); } public static - void VertexAttrib2(Int32 index, Single x, Single y) + void VertexAttrib2f(Int32 index, Single x, Single y) { Delegates.glVertexAttrib2fARB((UInt32)index, (Single)x, (Single)y); } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib2(UInt32 index, Single* v) + unsafe void VertexAttrib2fv(UInt32 index, Single* v) { unsafe { Delegates.glVertexAttrib2fvARB((UInt32)index, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib2(Int32 index, Single* v) + unsafe void VertexAttrib2fv(Int32 index, Single* v) { unsafe { @@ -16912,7 +17261,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2(UInt32 index, Single[] v) + void VertexAttrib2fv(UInt32 index, Single[] v) { unsafe { @@ -16924,7 +17273,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib2(Int32 index, Single[] v) + void VertexAttrib2fv(Int32 index, Single[] v) { unsafe { @@ -16937,7 +17286,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2(UInt32 index, ref Single v) + void VertexAttrib2fv(UInt32 index, ref Single v) { unsafe { @@ -16949,7 +17298,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib2(Int32 index, ref Single v) + void VertexAttrib2fv(Int32 index, ref Single v) { unsafe { @@ -16962,27 +17311,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2(UInt32 index, Int16 x, Int16 y) + void VertexAttrib2s(UInt32 index, Int16 x, Int16 y) { Delegates.glVertexAttrib2sARB((UInt32)index, (Int16)x, (Int16)y); } public static - void VertexAttrib2(Int32 index, Int16 x, Int16 y) + void VertexAttrib2s(Int32 index, Int16 x, Int16 y) { Delegates.glVertexAttrib2sARB((UInt32)index, (Int16)x, (Int16)y); } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib2(UInt32 index, Int16* v) + unsafe void VertexAttrib2sv(UInt32 index, Int16* v) { unsafe { Delegates.glVertexAttrib2svARB((UInt32)index, (Int16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib2(Int32 index, Int16* v) + unsafe void VertexAttrib2sv(Int32 index, Int16* v) { unsafe { @@ -16992,7 +17341,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2(UInt32 index, Int16[] v) + void VertexAttrib2sv(UInt32 index, Int16[] v) { unsafe { @@ -17004,7 +17353,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib2(Int32 index, Int16[] v) + void VertexAttrib2sv(Int32 index, Int16[] v) { unsafe { @@ -17017,7 +17366,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2(UInt32 index, ref Int16 v) + void VertexAttrib2sv(UInt32 index, ref Int16 v) { unsafe { @@ -17029,7 +17378,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib2(Int32 index, ref Int16 v) + void VertexAttrib2sv(Int32 index, ref Int16 v) { unsafe { @@ -17042,27 +17391,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3(UInt32 index, Double x, Double y, Double z) + void VertexAttrib3d(UInt32 index, Double x, Double y, Double z) { Delegates.glVertexAttrib3dARB((UInt32)index, (Double)x, (Double)y, (Double)z); } public static - void VertexAttrib3(Int32 index, Double x, Double y, Double z) + void VertexAttrib3d(Int32 index, Double x, Double y, Double z) { Delegates.glVertexAttrib3dARB((UInt32)index, (Double)x, (Double)y, (Double)z); } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib3(UInt32 index, Double* v) + unsafe void VertexAttrib3dv(UInt32 index, Double* v) { unsafe { Delegates.glVertexAttrib3dvARB((UInt32)index, (Double*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib3(Int32 index, Double* v) + unsafe void VertexAttrib3dv(Int32 index, Double* v) { unsafe { @@ -17072,7 +17421,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3(UInt32 index, Double[] v) + void VertexAttrib3dv(UInt32 index, Double[] v) { unsafe { @@ -17084,7 +17433,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib3(Int32 index, Double[] v) + void VertexAttrib3dv(Int32 index, Double[] v) { unsafe { @@ -17097,7 +17446,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3(UInt32 index, ref Double v) + void VertexAttrib3dv(UInt32 index, ref Double v) { unsafe { @@ -17109,7 +17458,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib3(Int32 index, ref Double v) + void VertexAttrib3dv(Int32 index, ref Double v) { unsafe { @@ -17122,27 +17471,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3(UInt32 index, Single x, Single y, Single z) + void VertexAttrib3f(UInt32 index, Single x, Single y, Single z) { Delegates.glVertexAttrib3fARB((UInt32)index, (Single)x, (Single)y, (Single)z); } public static - void VertexAttrib3(Int32 index, Single x, Single y, Single z) + void VertexAttrib3f(Int32 index, Single x, Single y, Single z) { Delegates.glVertexAttrib3fARB((UInt32)index, (Single)x, (Single)y, (Single)z); } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib3(UInt32 index, Single* v) + unsafe void VertexAttrib3fv(UInt32 index, Single* v) { unsafe { Delegates.glVertexAttrib3fvARB((UInt32)index, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib3(Int32 index, Single* v) + unsafe void VertexAttrib3fv(Int32 index, Single* v) { unsafe { @@ -17152,7 +17501,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3(UInt32 index, Single[] v) + void VertexAttrib3fv(UInt32 index, Single[] v) { unsafe { @@ -17164,7 +17513,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib3(Int32 index, Single[] v) + void VertexAttrib3fv(Int32 index, Single[] v) { unsafe { @@ -17177,7 +17526,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3(UInt32 index, ref Single v) + void VertexAttrib3fv(UInt32 index, ref Single v) { unsafe { @@ -17189,7 +17538,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib3(Int32 index, ref Single v) + void VertexAttrib3fv(Int32 index, ref Single v) { unsafe { @@ -17202,27 +17551,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3(UInt32 index, Int16 x, Int16 y, Int16 z) + void VertexAttrib3s(UInt32 index, Int16 x, Int16 y, Int16 z) { Delegates.glVertexAttrib3sARB((UInt32)index, (Int16)x, (Int16)y, (Int16)z); } public static - void VertexAttrib3(Int32 index, Int16 x, Int16 y, Int16 z) + void VertexAttrib3s(Int32 index, Int16 x, Int16 y, Int16 z) { Delegates.glVertexAttrib3sARB((UInt32)index, (Int16)x, (Int16)y, (Int16)z); } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib3(UInt32 index, Int16* v) + unsafe void VertexAttrib3sv(UInt32 index, Int16* v) { unsafe { Delegates.glVertexAttrib3svARB((UInt32)index, (Int16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib3(Int32 index, Int16* v) + unsafe void VertexAttrib3sv(Int32 index, Int16* v) { unsafe { @@ -17232,7 +17581,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3(UInt32 index, Int16[] v) + void VertexAttrib3sv(UInt32 index, Int16[] v) { unsafe { @@ -17244,7 +17593,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib3(Int32 index, Int16[] v) + void VertexAttrib3sv(Int32 index, Int16[] v) { unsafe { @@ -17257,7 +17606,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3(UInt32 index, ref Int16 v) + void VertexAttrib3sv(UInt32 index, ref Int16 v) { unsafe { @@ -17269,7 +17618,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib3(Int32 index, ref Int16 v) + void VertexAttrib3sv(Int32 index, ref Int16 v) { unsafe { @@ -17282,14 +17631,24 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4Nv(UInt32 index, SByte* v) + unsafe void VertexAttrib4Nbv(UInt32 index, SByte* v) { unsafe { Delegates.glVertexAttrib4NbvARB((UInt32)index, (SByte*)v); } } [System.CLSCompliant(false)] public static - void VertexAttrib4Nv(UInt32 index, SByte[] v) + unsafe void VertexAttrib4Nbv(Int32 index, Byte* v) + { + unsafe + { + Delegates.glVertexAttrib4NbvARB((UInt32)index, (SByte*)v); + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4Nbv(UInt32 index, SByte[] v) { unsafe { @@ -17300,9 +17659,21 @@ namespace OpenTK.OpenGL } } + public static + void VertexAttrib4Nbv(Int32 index, Byte[] v) + { + unsafe + { + fixed (Byte* v_ptr = v) + { + Delegates.glVertexAttrib4NbvARB((UInt32)index, (SByte*)v_ptr); + } + } + } + [System.CLSCompliant(false)] public static - void VertexAttrib4Nv(UInt32 index, ref SByte v) + void VertexAttrib4Nbv(UInt32 index, ref SByte v) { unsafe { @@ -17313,16 +17684,50 @@ namespace OpenTK.OpenGL } } + public static + void VertexAttrib4Nbv(Int32 index, ref Byte v) + { + unsafe + { + fixed (Byte* v_ptr = &v) + { + Delegates.glVertexAttrib4NbvARB((UInt32)index, (SByte*)v_ptr); + } + } + } + [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4Nv(UInt32 index, Int32* v) + unsafe void VertexAttrib4Niv(UInt32 index, Int32* v) { unsafe { Delegates.glVertexAttrib4NivARB((UInt32)index, (Int32*)v); } } [System.CLSCompliant(false)] public static - void VertexAttrib4Nv(UInt32 index, Int32[] v) + unsafe void VertexAttrib4Niv(Int32 index, Int32* v) + { + unsafe + { + Delegates.glVertexAttrib4NivARB((UInt32)index, (Int32*)v); + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4Niv(UInt32 index, Int32[] v) + { + unsafe + { + fixed (Int32* v_ptr = v) + { + Delegates.glVertexAttrib4NivARB((UInt32)index, (Int32*)v_ptr); + } + } + } + + public static + void VertexAttrib4Niv(Int32 index, Int32[] v) { unsafe { @@ -17335,7 +17740,19 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4Nv(UInt32 index, ref Int32 v) + void VertexAttrib4Niv(UInt32 index, ref Int32 v) + { + unsafe + { + fixed (Int32* v_ptr = &v) + { + Delegates.glVertexAttrib4NivARB((UInt32)index, (Int32*)v_ptr); + } + } + } + + public static + void VertexAttrib4Niv(Int32 index, ref Int32 v) { unsafe { @@ -17348,14 +17765,36 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4Nv(UInt32 index, Int16* v) + unsafe void VertexAttrib4Nsv(UInt32 index, Int16* v) { unsafe { Delegates.glVertexAttrib4NsvARB((UInt32)index, (Int16*)v); } } [System.CLSCompliant(false)] public static - void VertexAttrib4Nv(UInt32 index, Int16[] v) + unsafe void VertexAttrib4Nsv(Int32 index, Int16* v) + { + unsafe + { + Delegates.glVertexAttrib4NsvARB((UInt32)index, (Int16*)v); + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4Nsv(UInt32 index, Int16[] v) + { + unsafe + { + fixed (Int16* v_ptr = v) + { + Delegates.glVertexAttrib4NsvARB((UInt32)index, (Int16*)v_ptr); + } + } + } + + public static + void VertexAttrib4Nsv(Int32 index, Int16[] v) { unsafe { @@ -17368,7 +17807,19 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4Nv(UInt32 index, ref Int16 v) + void VertexAttrib4Nsv(UInt32 index, ref Int16 v) + { + unsafe + { + fixed (Int16* v_ptr = &v) + { + Delegates.glVertexAttrib4NsvARB((UInt32)index, (Int16*)v_ptr); + } + } + } + + public static + void VertexAttrib4Nsv(Int32 index, ref Int16 v) { unsafe { @@ -17394,14 +17845,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4Nv(UInt32 index, Byte* v) + unsafe void VertexAttrib4Nubv(UInt32 index, Byte* v) { unsafe { Delegates.glVertexAttrib4NubvARB((UInt32)index, (Byte*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4Nv(Int32 index, Byte* v) + unsafe void VertexAttrib4Nubv(Int32 index, Byte* v) { unsafe { @@ -17411,7 +17862,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4Nv(UInt32 index, Byte[] v) + void VertexAttrib4Nubv(UInt32 index, Byte[] v) { unsafe { @@ -17423,7 +17874,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4Nv(Int32 index, Byte[] v) + void VertexAttrib4Nubv(Int32 index, Byte[] v) { unsafe { @@ -17436,7 +17887,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4Nv(UInt32 index, ref Byte v) + void VertexAttrib4Nubv(UInt32 index, ref Byte v) { unsafe { @@ -17448,7 +17899,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4Nv(Int32 index, ref Byte v) + void VertexAttrib4Nubv(Int32 index, ref Byte v) { unsafe { @@ -17461,14 +17912,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4Nv(UInt32 index, UInt32* v) + unsafe void VertexAttrib4Nuiv(UInt32 index, UInt32* v) { unsafe { Delegates.glVertexAttrib4NuivARB((UInt32)index, (UInt32*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4Nv(Int32 index, Int32* v) + unsafe void VertexAttrib4Nuiv(Int32 index, Int32* v) { unsafe { @@ -17478,7 +17929,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4Nv(UInt32 index, UInt32[] v) + void VertexAttrib4Nuiv(UInt32 index, UInt32[] v) { unsafe { @@ -17490,7 +17941,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4Nv(Int32 index, Int32[] v) + void VertexAttrib4Nuiv(Int32 index, Int32[] v) { unsafe { @@ -17503,7 +17954,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4Nv(UInt32 index, ref UInt32 v) + void VertexAttrib4Nuiv(UInt32 index, ref UInt32 v) { unsafe { @@ -17515,7 +17966,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4Nv(Int32 index, ref Int32 v) + void VertexAttrib4Nuiv(Int32 index, ref Int32 v) { unsafe { @@ -17528,14 +17979,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4Nv(UInt32 index, UInt16* v) + unsafe void VertexAttrib4Nusv(UInt32 index, UInt16* v) { unsafe { Delegates.glVertexAttrib4NusvARB((UInt32)index, (UInt16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4Nv(Int32 index, Int16* v) + unsafe void VertexAttrib4Nusv(Int32 index, Int16* v) { unsafe { @@ -17545,7 +17996,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4Nv(UInt32 index, UInt16[] v) + void VertexAttrib4Nusv(UInt32 index, UInt16[] v) { unsafe { @@ -17557,7 +18008,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4Nv(Int32 index, Int16[] v) + void VertexAttrib4Nusv(Int32 index, Int16[] v) { unsafe { @@ -17570,7 +18021,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4Nv(UInt32 index, ref UInt16 v) + void VertexAttrib4Nusv(UInt32 index, ref UInt16 v) { unsafe { @@ -17582,7 +18033,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4Nv(Int32 index, ref Int16 v) + void VertexAttrib4Nusv(Int32 index, ref Int16 v) { unsafe { @@ -17595,14 +18046,24 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4(UInt32 index, SByte* v) + unsafe void VertexAttrib4bv(UInt32 index, SByte* v) { unsafe { Delegates.glVertexAttrib4bvARB((UInt32)index, (SByte*)v); } } [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, SByte[] v) + unsafe void VertexAttrib4bv(Int32 index, Byte* v) + { + unsafe + { + Delegates.glVertexAttrib4bvARB((UInt32)index, (SByte*)v); + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4bv(UInt32 index, SByte[] v) { unsafe { @@ -17613,9 +18074,21 @@ namespace OpenTK.OpenGL } } + public static + void VertexAttrib4bv(Int32 index, Byte[] v) + { + unsafe + { + fixed (Byte* v_ptr = v) + { + Delegates.glVertexAttrib4bvARB((UInt32)index, (SByte*)v_ptr); + } + } + } + [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, ref SByte v) + void VertexAttrib4bv(UInt32 index, ref SByte v) { unsafe { @@ -17626,29 +18099,41 @@ namespace OpenTK.OpenGL } } + public static + void VertexAttrib4bv(Int32 index, ref Byte v) + { + unsafe + { + fixed (Byte* v_ptr = &v) + { + Delegates.glVertexAttrib4bvARB((UInt32)index, (SByte*)v_ptr); + } + } + } + [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, Double x, Double y, Double z, Double w) + void VertexAttrib4d(UInt32 index, Double x, Double y, Double z, Double w) { Delegates.glVertexAttrib4dARB((UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); } public static - void VertexAttrib4(Int32 index, Double x, Double y, Double z, Double w) + void VertexAttrib4d(Int32 index, Double x, Double y, Double z, Double w) { Delegates.glVertexAttrib4dARB((UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4(UInt32 index, Double* v) + unsafe void VertexAttrib4dv(UInt32 index, Double* v) { unsafe { Delegates.glVertexAttrib4dvARB((UInt32)index, (Double*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4(Int32 index, Double* v) + unsafe void VertexAttrib4dv(Int32 index, Double* v) { unsafe { @@ -17658,7 +18143,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, Double[] v) + void VertexAttrib4dv(UInt32 index, Double[] v) { unsafe { @@ -17670,7 +18155,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4(Int32 index, Double[] v) + void VertexAttrib4dv(Int32 index, Double[] v) { unsafe { @@ -17683,7 +18168,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, ref Double v) + void VertexAttrib4dv(UInt32 index, ref Double v) { unsafe { @@ -17695,7 +18180,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4(Int32 index, ref Double v) + void VertexAttrib4dv(Int32 index, ref Double v) { unsafe { @@ -17708,27 +18193,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, Single x, Single y, Single z, Single w) + void VertexAttrib4f(UInt32 index, Single x, Single y, Single z, Single w) { Delegates.glVertexAttrib4fARB((UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); } public static - void VertexAttrib4(Int32 index, Single x, Single y, Single z, Single w) + void VertexAttrib4f(Int32 index, Single x, Single y, Single z, Single w) { Delegates.glVertexAttrib4fARB((UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4(UInt32 index, Single* v) + unsafe void VertexAttrib4fv(UInt32 index, Single* v) { unsafe { Delegates.glVertexAttrib4fvARB((UInt32)index, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4(Int32 index, Single* v) + unsafe void VertexAttrib4fv(Int32 index, Single* v) { unsafe { @@ -17738,7 +18223,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, Single[] v) + void VertexAttrib4fv(UInt32 index, Single[] v) { unsafe { @@ -17750,7 +18235,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4(Int32 index, Single[] v) + void VertexAttrib4fv(Int32 index, Single[] v) { unsafe { @@ -17763,7 +18248,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, ref Single v) + void VertexAttrib4fv(UInt32 index, ref Single v) { unsafe { @@ -17775,7 +18260,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4(Int32 index, ref Single v) + void VertexAttrib4fv(Int32 index, ref Single v) { unsafe { @@ -17788,14 +18273,36 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4(UInt32 index, Int32* v) + unsafe void VertexAttrib4iv(UInt32 index, Int32* v) { unsafe { Delegates.glVertexAttrib4ivARB((UInt32)index, (Int32*)v); } } [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, Int32[] v) + unsafe void VertexAttrib4iv(Int32 index, Int32* v) + { + unsafe + { + Delegates.glVertexAttrib4ivARB((UInt32)index, (Int32*)v); + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4iv(UInt32 index, Int32[] v) + { + unsafe + { + fixed (Int32* v_ptr = v) + { + Delegates.glVertexAttrib4ivARB((UInt32)index, (Int32*)v_ptr); + } + } + } + + public static + void VertexAttrib4iv(Int32 index, Int32[] v) { unsafe { @@ -17808,7 +18315,19 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, ref Int32 v) + void VertexAttrib4iv(UInt32 index, ref Int32 v) + { + unsafe + { + fixed (Int32* v_ptr = &v) + { + Delegates.glVertexAttrib4ivARB((UInt32)index, (Int32*)v_ptr); + } + } + } + + public static + void VertexAttrib4iv(Int32 index, ref Int32 v) { unsafe { @@ -17821,27 +18340,49 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, Int16 x, Int16 y, Int16 z, Int16 w) + void VertexAttrib4s(UInt32 index, Int16 x, Int16 y, Int16 z, Int16 w) { Delegates.glVertexAttrib4sARB((UInt32)index, (Int16)x, (Int16)y, (Int16)z, (Int16)w); } public static - void VertexAttrib4(Int32 index, Int16 x, Int16 y, Int16 z, Int16 w) + void VertexAttrib4s(Int32 index, Int16 x, Int16 y, Int16 z, Int16 w) { Delegates.glVertexAttrib4sARB((UInt32)index, (Int16)x, (Int16)y, (Int16)z, (Int16)w); } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4(UInt32 index, Int16* v) + unsafe void VertexAttrib4sv(UInt32 index, Int16* v) { unsafe { Delegates.glVertexAttrib4svARB((UInt32)index, (Int16*)v); } } [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, Int16[] v) + unsafe void VertexAttrib4sv(Int32 index, Int16* v) + { + unsafe + { + Delegates.glVertexAttrib4svARB((UInt32)index, (Int16*)v); + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4sv(UInt32 index, Int16[] v) + { + unsafe + { + fixed (Int16* v_ptr = v) + { + Delegates.glVertexAttrib4svARB((UInt32)index, (Int16*)v_ptr); + } + } + } + + public static + void VertexAttrib4sv(Int32 index, Int16[] v) { unsafe { @@ -17854,7 +18395,19 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, ref Int16 v) + void VertexAttrib4sv(UInt32 index, ref Int16 v) + { + unsafe + { + fixed (Int16* v_ptr = &v) + { + Delegates.glVertexAttrib4svARB((UInt32)index, (Int16*)v_ptr); + } + } + } + + public static + void VertexAttrib4sv(Int32 index, ref Int16 v) { unsafe { @@ -17867,14 +18420,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4(UInt32 index, Byte* v) + unsafe void VertexAttrib4ubv(UInt32 index, Byte* v) { unsafe { Delegates.glVertexAttrib4ubvARB((UInt32)index, (Byte*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4(Int32 index, Byte* v) + unsafe void VertexAttrib4ubv(Int32 index, Byte* v) { unsafe { @@ -17884,7 +18437,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, Byte[] v) + void VertexAttrib4ubv(UInt32 index, Byte[] v) { unsafe { @@ -17896,7 +18449,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4(Int32 index, Byte[] v) + void VertexAttrib4ubv(Int32 index, Byte[] v) { unsafe { @@ -17909,7 +18462,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, ref Byte v) + void VertexAttrib4ubv(UInt32 index, ref Byte v) { unsafe { @@ -17921,7 +18474,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4(Int32 index, ref Byte v) + void VertexAttrib4ubv(Int32 index, ref Byte v) { unsafe { @@ -17934,14 +18487,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4(UInt32 index, UInt32* v) + unsafe void VertexAttrib4uiv(UInt32 index, UInt32* v) { unsafe { Delegates.glVertexAttrib4uivARB((UInt32)index, (UInt32*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4(Int32 index, Int32* v) + unsafe void VertexAttrib4uiv(Int32 index, Int32* v) { unsafe { @@ -17951,7 +18504,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, UInt32[] v) + void VertexAttrib4uiv(UInt32 index, UInt32[] v) { unsafe { @@ -17963,7 +18516,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4(Int32 index, Int32[] v) + void VertexAttrib4uiv(Int32 index, Int32[] v) { unsafe { @@ -17976,7 +18529,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, ref UInt32 v) + void VertexAttrib4uiv(UInt32 index, ref UInt32 v) { unsafe { @@ -17988,7 +18541,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4(Int32 index, ref Int32 v) + void VertexAttrib4uiv(Int32 index, ref Int32 v) { unsafe { @@ -18001,14 +18554,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4(UInt32 index, UInt16* v) + unsafe void VertexAttrib4usv(UInt32 index, UInt16* v) { unsafe { Delegates.glVertexAttrib4usvARB((UInt32)index, (UInt16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4(Int32 index, Int16* v) + unsafe void VertexAttrib4usv(Int32 index, Int16* v) { unsafe { @@ -18018,7 +18571,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, UInt16[] v) + void VertexAttrib4usv(UInt32 index, UInt16[] v) { unsafe { @@ -18030,7 +18583,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4(Int32 index, Int16[] v) + void VertexAttrib4usv(Int32 index, Int16[] v) { unsafe { @@ -18043,7 +18596,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, ref UInt16 v) + void VertexAttrib4usv(UInt32 index, ref UInt16 v) { unsafe { @@ -18055,7 +18608,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4(Int32 index, ref Int16 v) + void VertexAttrib4usv(Int32 index, ref Int16 v) { unsafe { @@ -18147,14 +18700,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void DeletePrograms(Int32 n, UInt32* programs) + unsafe void DeleteProgram(Int32 n, UInt32* programs) { unsafe { Delegates.glDeleteProgramsARB((Int32)n, (UInt32*)programs); } } [System.CLSCompliant(false)] public static - unsafe void DeletePrograms(Int32 n, Int32* programs) + unsafe void DeleteProgram(Int32 n, Int32* programs) { unsafe { @@ -18164,7 +18717,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeletePrograms(Int32 n, UInt32[] programs) + void DeleteProgram(Int32 n, UInt32[] programs) { unsafe { @@ -18176,7 +18729,7 @@ namespace OpenTK.OpenGL } public static - void DeletePrograms(Int32 n, Int32[] programs) + void DeleteProgram(Int32 n, Int32[] programs) { unsafe { @@ -18189,7 +18742,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeletePrograms(Int32 n, ref UInt32 programs) + void DeleteProgram(Int32 n, ref UInt32 programs) { unsafe { @@ -18201,7 +18754,7 @@ namespace OpenTK.OpenGL } public static - void DeletePrograms(Int32 n, ref Int32 programs) + void DeleteProgram(Int32 n, ref Int32 programs) { unsafe { @@ -18214,14 +18767,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GenPrograms(Int32 n, [Out] UInt32* programs) + unsafe void GenProgram(Int32 n, [Out] UInt32* programs) { unsafe { Delegates.glGenProgramsARB((Int32)n, (UInt32*)programs); } } [System.CLSCompliant(false)] public static - unsafe void GenPrograms(Int32 n, [Out] Int32* programs) + unsafe void GenProgram(Int32 n, [Out] Int32* programs) { unsafe { @@ -18231,7 +18784,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenPrograms(Int32 n, [Out] UInt32[] programs) + void GenProgram(Int32 n, [Out] UInt32[] programs) { unsafe { @@ -18243,7 +18796,7 @@ namespace OpenTK.OpenGL } public static - void GenPrograms(Int32 n, [Out] Int32[] programs) + void GenProgram(Int32 n, [Out] Int32[] programs) { unsafe { @@ -18256,7 +18809,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenPrograms(Int32 n, [Out] out UInt32 programs) + void GenProgram(Int32 n, [Out] out UInt32 programs) { unsafe { @@ -18269,7 +18822,7 @@ namespace OpenTK.OpenGL } public static - void GenPrograms(Int32 n, [Out] out Int32 programs) + void GenProgram(Int32 n, [Out] out Int32 programs) { unsafe { @@ -18296,14 +18849,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParameter4(GL.Enums.ARB_vertex_program target, UInt32 index, Double* @params) + unsafe void ProgramEnvParameter4v(GL.Enums.ARB_vertex_program target, UInt32 index, Double* @params) { unsafe { Delegates.glProgramEnvParameter4dvARB((GL.Enums.ARB_vertex_program)target, (UInt32)index, (Double*)@params); } } [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParameter4(GL.Enums.ARB_vertex_program target, Int32 index, Double* @params) + unsafe void ProgramEnvParameter4v(GL.Enums.ARB_vertex_program target, Int32 index, Double* @params) { unsafe { @@ -18313,7 +18866,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramEnvParameter4(GL.Enums.ARB_vertex_program target, UInt32 index, Double[] @params) + void ProgramEnvParameter4v(GL.Enums.ARB_vertex_program target, UInt32 index, Double[] @params) { unsafe { @@ -18325,7 +18878,7 @@ namespace OpenTK.OpenGL } public static - void ProgramEnvParameter4(GL.Enums.ARB_vertex_program target, Int32 index, Double[] @params) + void ProgramEnvParameter4v(GL.Enums.ARB_vertex_program target, Int32 index, Double[] @params) { unsafe { @@ -18338,7 +18891,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramEnvParameter4(GL.Enums.ARB_vertex_program target, UInt32 index, ref Double @params) + void ProgramEnvParameter4v(GL.Enums.ARB_vertex_program target, UInt32 index, ref Double @params) { unsafe { @@ -18350,7 +18903,7 @@ namespace OpenTK.OpenGL } public static - void ProgramEnvParameter4(GL.Enums.ARB_vertex_program target, Int32 index, ref Double @params) + void ProgramEnvParameter4v(GL.Enums.ARB_vertex_program target, Int32 index, ref Double @params) { unsafe { @@ -18376,14 +18929,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParameter4(GL.Enums.ARB_vertex_program target, UInt32 index, Single* @params) + unsafe void ProgramEnvParameter4v(GL.Enums.ARB_vertex_program target, UInt32 index, Single* @params) { unsafe { Delegates.glProgramEnvParameter4fvARB((GL.Enums.ARB_vertex_program)target, (UInt32)index, (Single*)@params); } } [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParameter4(GL.Enums.ARB_vertex_program target, Int32 index, Single* @params) + unsafe void ProgramEnvParameter4v(GL.Enums.ARB_vertex_program target, Int32 index, Single* @params) { unsafe { @@ -18393,7 +18946,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramEnvParameter4(GL.Enums.ARB_vertex_program target, UInt32 index, Single[] @params) + void ProgramEnvParameter4v(GL.Enums.ARB_vertex_program target, UInt32 index, Single[] @params) { unsafe { @@ -18405,7 +18958,7 @@ namespace OpenTK.OpenGL } public static - void ProgramEnvParameter4(GL.Enums.ARB_vertex_program target, Int32 index, Single[] @params) + void ProgramEnvParameter4v(GL.Enums.ARB_vertex_program target, Int32 index, Single[] @params) { unsafe { @@ -18418,7 +18971,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramEnvParameter4(GL.Enums.ARB_vertex_program target, UInt32 index, ref Single @params) + void ProgramEnvParameter4v(GL.Enums.ARB_vertex_program target, UInt32 index, ref Single @params) { unsafe { @@ -18430,7 +18983,7 @@ namespace OpenTK.OpenGL } public static - void ProgramEnvParameter4(GL.Enums.ARB_vertex_program target, Int32 index, ref Single @params) + void ProgramEnvParameter4v(GL.Enums.ARB_vertex_program target, Int32 index, ref Single @params) { unsafe { @@ -18456,14 +19009,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParameter4(GL.Enums.ARB_vertex_program target, UInt32 index, Double* @params) + unsafe void ProgramLocalParameter4v(GL.Enums.ARB_vertex_program target, UInt32 index, Double* @params) { unsafe { Delegates.glProgramLocalParameter4dvARB((GL.Enums.ARB_vertex_program)target, (UInt32)index, (Double*)@params); } } [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParameter4(GL.Enums.ARB_vertex_program target, Int32 index, Double* @params) + unsafe void ProgramLocalParameter4v(GL.Enums.ARB_vertex_program target, Int32 index, Double* @params) { unsafe { @@ -18473,7 +19026,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramLocalParameter4(GL.Enums.ARB_vertex_program target, UInt32 index, Double[] @params) + void ProgramLocalParameter4v(GL.Enums.ARB_vertex_program target, UInt32 index, Double[] @params) { unsafe { @@ -18485,7 +19038,7 @@ namespace OpenTK.OpenGL } public static - void ProgramLocalParameter4(GL.Enums.ARB_vertex_program target, Int32 index, Double[] @params) + void ProgramLocalParameter4v(GL.Enums.ARB_vertex_program target, Int32 index, Double[] @params) { unsafe { @@ -18498,7 +19051,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramLocalParameter4(GL.Enums.ARB_vertex_program target, UInt32 index, ref Double @params) + void ProgramLocalParameter4v(GL.Enums.ARB_vertex_program target, UInt32 index, ref Double @params) { unsafe { @@ -18510,7 +19063,7 @@ namespace OpenTK.OpenGL } public static - void ProgramLocalParameter4(GL.Enums.ARB_vertex_program target, Int32 index, ref Double @params) + void ProgramLocalParameter4v(GL.Enums.ARB_vertex_program target, Int32 index, ref Double @params) { unsafe { @@ -18536,14 +19089,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParameter4(GL.Enums.ARB_vertex_program target, UInt32 index, Single* @params) + unsafe void ProgramLocalParameter4v(GL.Enums.ARB_vertex_program target, UInt32 index, Single* @params) { unsafe { Delegates.glProgramLocalParameter4fvARB((GL.Enums.ARB_vertex_program)target, (UInt32)index, (Single*)@params); } } [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParameter4(GL.Enums.ARB_vertex_program target, Int32 index, Single* @params) + unsafe void ProgramLocalParameter4v(GL.Enums.ARB_vertex_program target, Int32 index, Single* @params) { unsafe { @@ -18553,7 +19106,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramLocalParameter4(GL.Enums.ARB_vertex_program target, UInt32 index, Single[] @params) + void ProgramLocalParameter4v(GL.Enums.ARB_vertex_program target, UInt32 index, Single[] @params) { unsafe { @@ -18565,7 +19118,7 @@ namespace OpenTK.OpenGL } public static - void ProgramLocalParameter4(GL.Enums.ARB_vertex_program target, Int32 index, Single[] @params) + void ProgramLocalParameter4v(GL.Enums.ARB_vertex_program target, Int32 index, Single[] @params) { unsafe { @@ -18578,7 +19131,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramLocalParameter4(GL.Enums.ARB_vertex_program target, UInt32 index, ref Single @params) + void ProgramLocalParameter4v(GL.Enums.ARB_vertex_program target, UInt32 index, ref Single @params) { unsafe { @@ -18590,7 +19143,7 @@ namespace OpenTK.OpenGL } public static - void ProgramLocalParameter4(GL.Enums.ARB_vertex_program target, Int32 index, ref Single @params) + void ProgramLocalParameter4v(GL.Enums.ARB_vertex_program target, Int32 index, ref Single @params) { unsafe { @@ -18879,13 +19432,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetProgramv(GL.Enums.ARB_vertex_program target, GL.Enums.ARB_vertex_program pname, [Out] Int32* @params) + unsafe void GetProgram(GL.Enums.ARB_vertex_program target, GL.Enums.ARB_vertex_program pname, [Out] Int32* @params) { unsafe { Delegates.glGetProgramivARB((GL.Enums.ARB_vertex_program)target, (GL.Enums.ARB_vertex_program)pname, (Int32*)@params); } } public static - void GetProgramv(GL.Enums.ARB_vertex_program target, GL.Enums.ARB_vertex_program pname, [Out] Int32[] @params) + void GetProgram(GL.Enums.ARB_vertex_program target, GL.Enums.ARB_vertex_program pname, [Out] Int32[] @params) { unsafe { @@ -18897,7 +19450,7 @@ namespace OpenTK.OpenGL } public static - void GetProgramv(GL.Enums.ARB_vertex_program target, GL.Enums.ARB_vertex_program pname, [Out] out Int32 @params) + void GetProgram(GL.Enums.ARB_vertex_program target, GL.Enums.ARB_vertex_program pname, [Out] out Int32 @params) { unsafe { @@ -18934,14 +19487,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribv(UInt32 index, GL.Enums.ARB_vertex_program pname, [Out] Double* @params) + unsafe void GetVertexAttribdv(UInt32 index, GL.Enums.ARB_vertex_program pname, [Out] Double* @params) { unsafe { Delegates.glGetVertexAttribdvARB((UInt32)index, (GL.Enums.ARB_vertex_program)pname, (Double*)@params); } } [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribv(Int32 index, GL.Enums.ARB_vertex_program pname, [Out] Double* @params) + unsafe void GetVertexAttribdv(Int32 index, GL.Enums.ARB_vertex_program pname, [Out] Double* @params) { unsafe { @@ -18951,7 +19504,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetVertexAttribv(UInt32 index, GL.Enums.ARB_vertex_program pname, [Out] Double[] @params) + void GetVertexAttribdv(UInt32 index, GL.Enums.ARB_vertex_program pname, [Out] Double[] @params) { unsafe { @@ -18963,7 +19516,7 @@ namespace OpenTK.OpenGL } public static - void GetVertexAttribv(Int32 index, GL.Enums.ARB_vertex_program pname, [Out] Double[] @params) + void GetVertexAttribdv(Int32 index, GL.Enums.ARB_vertex_program pname, [Out] Double[] @params) { unsafe { @@ -18976,7 +19529,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetVertexAttribv(UInt32 index, GL.Enums.ARB_vertex_program pname, [Out] out Double @params) + void GetVertexAttribdv(UInt32 index, GL.Enums.ARB_vertex_program pname, [Out] out Double @params) { unsafe { @@ -18989,7 +19542,7 @@ namespace OpenTK.OpenGL } public static - void GetVertexAttribv(Int32 index, GL.Enums.ARB_vertex_program pname, [Out] out Double @params) + void GetVertexAttribdv(Int32 index, GL.Enums.ARB_vertex_program pname, [Out] out Double @params) { unsafe { @@ -19003,14 +19556,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribv(UInt32 index, GL.Enums.ARB_vertex_program pname, [Out] Single* @params) + unsafe void GetVertexAttribfv(UInt32 index, GL.Enums.ARB_vertex_program pname, [Out] Single* @params) { unsafe { Delegates.glGetVertexAttribfvARB((UInt32)index, (GL.Enums.ARB_vertex_program)pname, (Single*)@params); } } [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribv(Int32 index, GL.Enums.ARB_vertex_program pname, [Out] Single* @params) + unsafe void GetVertexAttribfv(Int32 index, GL.Enums.ARB_vertex_program pname, [Out] Single* @params) { unsafe { @@ -19020,7 +19573,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetVertexAttribv(UInt32 index, GL.Enums.ARB_vertex_program pname, [Out] Single[] @params) + void GetVertexAttribfv(UInt32 index, GL.Enums.ARB_vertex_program pname, [Out] Single[] @params) { unsafe { @@ -19032,7 +19585,7 @@ namespace OpenTK.OpenGL } public static - void GetVertexAttribv(Int32 index, GL.Enums.ARB_vertex_program pname, [Out] Single[] @params) + void GetVertexAttribfv(Int32 index, GL.Enums.ARB_vertex_program pname, [Out] Single[] @params) { unsafe { @@ -19045,7 +19598,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetVertexAttribv(UInt32 index, GL.Enums.ARB_vertex_program pname, [Out] out Single @params) + void GetVertexAttribfv(UInt32 index, GL.Enums.ARB_vertex_program pname, [Out] out Single @params) { unsafe { @@ -19058,7 +19611,7 @@ namespace OpenTK.OpenGL } public static - void GetVertexAttribv(Int32 index, GL.Enums.ARB_vertex_program pname, [Out] out Single @params) + void GetVertexAttribfv(Int32 index, GL.Enums.ARB_vertex_program pname, [Out] out Single @params) { unsafe { @@ -19072,14 +19625,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribv(UInt32 index, GL.Enums.ARB_vertex_program pname, [Out] Int32* @params) + unsafe void GetVertexAttribiv(UInt32 index, GL.Enums.ARB_vertex_program pname, [Out] Int32* @params) { unsafe { Delegates.glGetVertexAttribivARB((UInt32)index, (GL.Enums.ARB_vertex_program)pname, (Int32*)@params); } } [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribv(Int32 index, GL.Enums.ARB_vertex_program pname, [Out] Int32* @params) + unsafe void GetVertexAttribiv(Int32 index, GL.Enums.ARB_vertex_program pname, [Out] Int32* @params) { unsafe { @@ -19089,7 +19642,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetVertexAttribv(UInt32 index, GL.Enums.ARB_vertex_program pname, [Out] Int32[] @params) + void GetVertexAttribiv(UInt32 index, GL.Enums.ARB_vertex_program pname, [Out] Int32[] @params) { unsafe { @@ -19101,7 +19654,7 @@ namespace OpenTK.OpenGL } public static - void GetVertexAttribv(Int32 index, GL.Enums.ARB_vertex_program pname, [Out] Int32[] @params) + void GetVertexAttribiv(Int32 index, GL.Enums.ARB_vertex_program pname, [Out] Int32[] @params) { unsafe { @@ -19114,7 +19667,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetVertexAttribv(UInt32 index, GL.Enums.ARB_vertex_program pname, [Out] out Int32 @params) + void GetVertexAttribiv(UInt32 index, GL.Enums.ARB_vertex_program pname, [Out] out Int32 @params) { unsafe { @@ -19127,7 +19680,7 @@ namespace OpenTK.OpenGL } public static - void GetVertexAttribv(Int32 index, GL.Enums.ARB_vertex_program pname, [Out] out Int32 @params) + void GetVertexAttribiv(Int32 index, GL.Enums.ARB_vertex_program pname, [Out] out Int32 @params) { unsafe { @@ -19502,14 +20055,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GenQueries(Int32 n, [Out] UInt32* ids) + unsafe void GenQuerie(Int32 n, [Out] UInt32* ids) { unsafe { Delegates.glGenQueriesARB((Int32)n, (UInt32*)ids); } } [System.CLSCompliant(false)] public static - unsafe void GenQueries(Int32 n, [Out] Int32* ids) + unsafe void GenQuerie(Int32 n, [Out] Int32* ids) { unsafe { @@ -19519,7 +20072,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenQueries(Int32 n, [Out] UInt32[] ids) + void GenQuerie(Int32 n, [Out] UInt32[] ids) { unsafe { @@ -19531,7 +20084,7 @@ namespace OpenTK.OpenGL } public static - void GenQueries(Int32 n, [Out] Int32[] ids) + void GenQuerie(Int32 n, [Out] Int32[] ids) { unsafe { @@ -19544,7 +20097,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenQueries(Int32 n, [Out] out UInt32 ids) + void GenQuerie(Int32 n, [Out] out UInt32 ids) { unsafe { @@ -19557,7 +20110,7 @@ namespace OpenTK.OpenGL } public static - void GenQueries(Int32 n, [Out] out Int32 ids) + void GenQuerie(Int32 n, [Out] out Int32 ids) { unsafe { @@ -19571,14 +20124,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void DeleteQueries(Int32 n, UInt32* ids) + unsafe void DeleteQuerie(Int32 n, UInt32* ids) { unsafe { Delegates.glDeleteQueriesARB((Int32)n, (UInt32*)ids); } } [System.CLSCompliant(false)] public static - unsafe void DeleteQueries(Int32 n, Int32* ids) + unsafe void DeleteQuerie(Int32 n, Int32* ids) { unsafe { @@ -19588,7 +20141,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeleteQueries(Int32 n, UInt32[] ids) + void DeleteQuerie(Int32 n, UInt32[] ids) { unsafe { @@ -19600,7 +20153,7 @@ namespace OpenTK.OpenGL } public static - void DeleteQueries(Int32 n, Int32[] ids) + void DeleteQuerie(Int32 n, Int32[] ids) { unsafe { @@ -19613,7 +20166,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeleteQueries(Int32 n, ref UInt32 ids) + void DeleteQuerie(Int32 n, ref UInt32 ids) { unsafe { @@ -19625,7 +20178,7 @@ namespace OpenTK.OpenGL } public static - void DeleteQueries(Int32 n, ref Int32 ids) + void DeleteQuerie(Int32 n, ref Int32 ids) { unsafe { @@ -19670,13 +20223,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetQueryv(GL.Enums.ARB_occlusion_query target, GL.Enums.ARB_occlusion_query pname, [Out] Int32* @params) + unsafe void GetQuery(GL.Enums.ARB_occlusion_query target, GL.Enums.ARB_occlusion_query pname, [Out] Int32* @params) { unsafe { Delegates.glGetQueryivARB((GL.Enums.ARB_occlusion_query)target, (GL.Enums.ARB_occlusion_query)pname, (Int32*)@params); } } public static - void GetQueryv(GL.Enums.ARB_occlusion_query target, GL.Enums.ARB_occlusion_query pname, [Out] Int32[] @params) + void GetQuery(GL.Enums.ARB_occlusion_query target, GL.Enums.ARB_occlusion_query pname, [Out] Int32[] @params) { unsafe { @@ -19688,7 +20241,7 @@ namespace OpenTK.OpenGL } public static - void GetQueryv(GL.Enums.ARB_occlusion_query target, GL.Enums.ARB_occlusion_query pname, [Out] out Int32 @params) + void GetQuery(GL.Enums.ARB_occlusion_query target, GL.Enums.ARB_occlusion_query pname, [Out] out Int32 @params) { unsafe { @@ -19702,14 +20255,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetQueryObjectv(UInt32 id, GL.Enums.ARB_occlusion_query pname, [Out] Int32* @params) + unsafe void GetQueryObject(UInt32 id, GL.Enums.ARB_occlusion_query pname, [Out] Int32* @params) { unsafe { Delegates.glGetQueryObjectivARB((UInt32)id, (GL.Enums.ARB_occlusion_query)pname, (Int32*)@params); } } [System.CLSCompliant(false)] public static - void GetQueryObjectv(UInt32 id, GL.Enums.ARB_occlusion_query pname, [Out] Int32[] @params) + void GetQueryObject(UInt32 id, GL.Enums.ARB_occlusion_query pname, [Out] Int32[] @params) { unsafe { @@ -19722,7 +20275,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetQueryObjectv(UInt32 id, GL.Enums.ARB_occlusion_query pname, [Out] out Int32 @params) + void GetQueryObject(UInt32 id, GL.Enums.ARB_occlusion_query pname, [Out] out Int32 @params) { unsafe { @@ -19736,14 +20289,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetQueryObjectv(UInt32 id, GL.Enums.ARB_occlusion_query pname, [Out] UInt32* @params) + unsafe void GetQueryObject(UInt32 id, GL.Enums.ARB_occlusion_query pname, [Out] UInt32* @params) { unsafe { Delegates.glGetQueryObjectuivARB((UInt32)id, (GL.Enums.ARB_occlusion_query)pname, (UInt32*)@params); } } [System.CLSCompliant(false)] public static - unsafe void GetQueryObjectv(Int32 id, GL.Enums.ARB_occlusion_query pname, [Out] Int32* @params) + unsafe void GetQueryObject(Int32 id, GL.Enums.ARB_occlusion_query pname, [Out] Int32* @params) { unsafe { @@ -19753,7 +20306,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetQueryObjectv(UInt32 id, GL.Enums.ARB_occlusion_query pname, [Out] UInt32[] @params) + void GetQueryObject(UInt32 id, GL.Enums.ARB_occlusion_query pname, [Out] UInt32[] @params) { unsafe { @@ -19765,7 +20318,7 @@ namespace OpenTK.OpenGL } public static - void GetQueryObjectv(Int32 id, GL.Enums.ARB_occlusion_query pname, [Out] Int32[] @params) + void GetQueryObject(Int32 id, GL.Enums.ARB_occlusion_query pname, [Out] Int32[] @params) { unsafe { @@ -19778,7 +20331,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetQueryObjectv(UInt32 id, GL.Enums.ARB_occlusion_query pname, [Out] out UInt32 @params) + void GetQueryObject(UInt32 id, GL.Enums.ARB_occlusion_query pname, [Out] out UInt32 @params) { unsafe { @@ -19791,7 +20344,7 @@ namespace OpenTK.OpenGL } public static - void GetQueryObjectv(Int32 id, GL.Enums.ARB_occlusion_query pname, [Out] out Int32 @params) + void GetQueryObject(Int32 id, GL.Enums.ARB_occlusion_query pname, [Out] out Int32 @params) { unsafe { @@ -20060,13 +20613,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Uniform2fv(Int32 location, Int32 count, Single* value) + unsafe void Uniform2v(Int32 location, Int32 count, Single* value) { unsafe { Delegates.glUniform2fvARB((Int32)location, (Int32)count, (Single*)value); } } public static - void Uniform2fv(Int32 location, Int32 count, Single[] value) + void Uniform2v(Int32 location, Int32 count, Single[] value) { unsafe { @@ -20078,7 +20631,7 @@ namespace OpenTK.OpenGL } public static - void Uniform2fv(Int32 location, Int32 count, ref Single value) + void Uniform2v(Int32 location, Int32 count, ref Single value) { unsafe { @@ -20184,13 +20737,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Uniform2iv(Int32 location, Int32 count, Int32* value) + unsafe void Uniform2v(Int32 location, Int32 count, Int32* value) { unsafe { Delegates.glUniform2ivARB((Int32)location, (Int32)count, (Int32*)value); } } public static - void Uniform2iv(Int32 location, Int32 count, Int32[] value) + void Uniform2v(Int32 location, Int32 count, Int32[] value) { unsafe { @@ -20202,7 +20755,7 @@ namespace OpenTK.OpenGL } public static - void Uniform2iv(Int32 location, Int32 count, ref Int32 value) + void Uniform2v(Int32 location, Int32 count, ref Int32 value) { unsafe { @@ -21554,14 +22107,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetUniformv(UInt32 programObj, Int32 location, [Out] Single* @params) + unsafe void GetUniform(UInt32 programObj, Int32 location, [Out] Single* @params) { unsafe { Delegates.glGetUniformfvARB((UInt32)programObj, (Int32)location, (Single*)@params); } } [System.CLSCompliant(false)] public static - unsafe void GetUniformv(Int32 programObj, Int32 location, [Out] Single* @params) + unsafe void GetUniform(Int32 programObj, Int32 location, [Out] Single* @params) { unsafe { @@ -21571,7 +22124,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetUniformv(UInt32 programObj, Int32 location, [Out] Single[] @params) + void GetUniform(UInt32 programObj, Int32 location, [Out] Single[] @params) { unsafe { @@ -21583,7 +22136,7 @@ namespace OpenTK.OpenGL } public static - void GetUniformv(Int32 programObj, Int32 location, [Out] Single[] @params) + void GetUniform(Int32 programObj, Int32 location, [Out] Single[] @params) { unsafe { @@ -21596,7 +22149,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetUniformv(UInt32 programObj, Int32 location, [Out] out Single @params) + void GetUniform(UInt32 programObj, Int32 location, [Out] out Single @params) { unsafe { @@ -21609,7 +22162,7 @@ namespace OpenTK.OpenGL } public static - void GetUniformv(Int32 programObj, Int32 location, [Out] out Single @params) + void GetUniform(Int32 programObj, Int32 location, [Out] out Single @params) { unsafe { @@ -21623,14 +22176,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetUniformv(UInt32 programObj, Int32 location, [Out] Int32* @params) + unsafe void GetUniform(UInt32 programObj, Int32 location, [Out] Int32* @params) { unsafe { Delegates.glGetUniformivARB((UInt32)programObj, (Int32)location, (Int32*)@params); } } [System.CLSCompliant(false)] public static - unsafe void GetUniformv(Int32 programObj, Int32 location, [Out] Int32* @params) + unsafe void GetUniform(Int32 programObj, Int32 location, [Out] Int32* @params) { unsafe { @@ -21640,7 +22193,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetUniformv(UInt32 programObj, Int32 location, [Out] Int32[] @params) + void GetUniform(UInt32 programObj, Int32 location, [Out] Int32[] @params) { unsafe { @@ -21652,7 +22205,7 @@ namespace OpenTK.OpenGL } public static - void GetUniformv(Int32 programObj, Int32 location, [Out] Int32[] @params) + void GetUniform(Int32 programObj, Int32 location, [Out] Int32[] @params) { unsafe { @@ -21665,7 +22218,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetUniformv(UInt32 programObj, Int32 location, [Out] out Int32 @params) + void GetUniform(UInt32 programObj, Int32 location, [Out] out Int32 @params) { unsafe { @@ -21678,7 +22231,7 @@ namespace OpenTK.OpenGL } public static - void GetUniformv(Int32 programObj, Int32 location, [Out] out Int32 @params) + void GetUniform(Int32 programObj, Int32 location, [Out] out Int32 @params) { unsafe { @@ -22968,7 +23521,7 @@ namespace OpenTK.OpenGL } public static - void ConvolutionParameterf(GL.Enums.ConvolutionTargetEXT target, GL.Enums.ConvolutionParameterEXT pname, Single @params) + void ConvolutionParameter(GL.Enums.ConvolutionTargetEXT target, GL.Enums.ConvolutionParameterEXT pname, Single @params) { Delegates.glConvolutionParameterfEXT((GL.Enums.ConvolutionTargetEXT)target, (GL.Enums.ConvolutionParameterEXT)pname, (Single)@params); } @@ -23005,7 +23558,7 @@ namespace OpenTK.OpenGL } public static - void ConvolutionParameteri(GL.Enums.ConvolutionTargetEXT target, GL.Enums.ConvolutionParameterEXT pname, Int32 @params) + void ConvolutionParameter(GL.Enums.ConvolutionTargetEXT target, GL.Enums.ConvolutionParameterEXT pname, Int32 @params) { Delegates.glConvolutionParameteriEXT((GL.Enums.ConvolutionTargetEXT)target, (GL.Enums.ConvolutionParameterEXT)pname, (Int32)@params); } @@ -23417,14 +23970,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void DeleteTextures(Int32 n, UInt32* textures) + unsafe void DeleteTexture(Int32 n, UInt32* textures) { unsafe { Delegates.glDeleteTexturesEXT((Int32)n, (UInt32*)textures); } } [System.CLSCompliant(false)] public static - unsafe void DeleteTextures(Int32 n, Int32* textures) + unsafe void DeleteTexture(Int32 n, Int32* textures) { unsafe { @@ -23434,7 +23987,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeleteTextures(Int32 n, UInt32[] textures) + void DeleteTexture(Int32 n, UInt32[] textures) { unsafe { @@ -23446,7 +23999,7 @@ namespace OpenTK.OpenGL } public static - void DeleteTextures(Int32 n, Int32[] textures) + void DeleteTexture(Int32 n, Int32[] textures) { unsafe { @@ -23459,7 +24012,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeleteTextures(Int32 n, ref UInt32 textures) + void DeleteTexture(Int32 n, ref UInt32 textures) { unsafe { @@ -23471,7 +24024,7 @@ namespace OpenTK.OpenGL } public static - void DeleteTextures(Int32 n, ref Int32 textures) + void DeleteTexture(Int32 n, ref Int32 textures) { unsafe { @@ -23484,14 +24037,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GenTextures(Int32 n, [Out] UInt32* textures) + unsafe void GenTexture(Int32 n, [Out] UInt32* textures) { unsafe { Delegates.glGenTexturesEXT((Int32)n, (UInt32*)textures); } } [System.CLSCompliant(false)] public static - unsafe void GenTextures(Int32 n, [Out] Int32* textures) + unsafe void GenTexture(Int32 n, [Out] Int32* textures) { unsafe { @@ -23501,7 +24054,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenTextures(Int32 n, [Out] UInt32[] textures) + void GenTexture(Int32 n, [Out] UInt32[] textures) { unsafe { @@ -23513,7 +24066,7 @@ namespace OpenTK.OpenGL } public static - void GenTextures(Int32 n, [Out] Int32[] textures) + void GenTexture(Int32 n, [Out] Int32[] textures) { unsafe { @@ -23526,7 +24079,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenTextures(Int32 n, [Out] out UInt32 textures) + void GenTexture(Int32 n, [Out] out UInt32 textures) { unsafe { @@ -23539,7 +24092,7 @@ namespace OpenTK.OpenGL } public static - void GenTextures(Int32 n, [Out] out Int32 textures) + void GenTexture(Int32 n, [Out] out Int32 textures) { unsafe { @@ -23566,14 +24119,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void PrioritizeTextures(Int32 n, UInt32* textures, Single* priorities) + unsafe void PrioritizeTexture(Int32 n, UInt32* textures, Single* priorities) { unsafe { Delegates.glPrioritizeTexturesEXT((Int32)n, (UInt32*)textures, (Single*)priorities); } } [System.CLSCompliant(false)] public static - unsafe void PrioritizeTextures(Int32 n, Int32* textures, Single* priorities) + unsafe void PrioritizeTexture(Int32 n, Int32* textures, Single* priorities) { unsafe { @@ -23583,7 +24136,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void PrioritizeTextures(Int32 n, UInt32* textures, Single[] priorities) + unsafe void PrioritizeTexture(Int32 n, UInt32* textures, Single[] priorities) { unsafe { @@ -23596,7 +24149,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void PrioritizeTextures(Int32 n, Int32* textures, Single[] priorities) + unsafe void PrioritizeTexture(Int32 n, Int32* textures, Single[] priorities) { unsafe { @@ -23609,7 +24162,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void PrioritizeTextures(Int32 n, UInt32* textures, ref Single priorities) + unsafe void PrioritizeTexture(Int32 n, UInt32* textures, ref Single priorities) { unsafe { @@ -23622,7 +24175,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void PrioritizeTextures(Int32 n, Int32* textures, ref Single priorities) + unsafe void PrioritizeTexture(Int32 n, Int32* textures, ref Single priorities) { unsafe { @@ -23635,7 +24188,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void PrioritizeTextures(Int32 n, UInt32[] textures, Single* priorities) + unsafe void PrioritizeTexture(Int32 n, UInt32[] textures, Single* priorities) { unsafe { @@ -23648,7 +24201,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void PrioritizeTextures(Int32 n, Int32[] textures, Single* priorities) + unsafe void PrioritizeTexture(Int32 n, Int32[] textures, Single* priorities) { unsafe { @@ -23661,7 +24214,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void PrioritizeTextures(Int32 n, UInt32[] textures, Single[] priorities) + void PrioritizeTexture(Int32 n, UInt32[] textures, Single[] priorities) { unsafe { @@ -23674,7 +24227,7 @@ namespace OpenTK.OpenGL } public static - void PrioritizeTextures(Int32 n, Int32[] textures, Single[] priorities) + void PrioritizeTexture(Int32 n, Int32[] textures, Single[] priorities) { unsafe { @@ -23688,7 +24241,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void PrioritizeTextures(Int32 n, UInt32[] textures, ref Single priorities) + void PrioritizeTexture(Int32 n, UInt32[] textures, ref Single priorities) { unsafe { @@ -23701,7 +24254,7 @@ namespace OpenTK.OpenGL } public static - void PrioritizeTextures(Int32 n, Int32[] textures, ref Single priorities) + void PrioritizeTexture(Int32 n, Int32[] textures, ref Single priorities) { unsafe { @@ -23715,7 +24268,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void PrioritizeTextures(Int32 n, ref UInt32 textures, Single* priorities) + unsafe void PrioritizeTexture(Int32 n, ref UInt32 textures, Single* priorities) { unsafe { @@ -23728,7 +24281,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void PrioritizeTextures(Int32 n, ref Int32 textures, Single* priorities) + unsafe void PrioritizeTexture(Int32 n, ref Int32 textures, Single* priorities) { unsafe { @@ -23741,7 +24294,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void PrioritizeTextures(Int32 n, ref UInt32 textures, Single[] priorities) + void PrioritizeTexture(Int32 n, ref UInt32 textures, Single[] priorities) { unsafe { @@ -23754,7 +24307,7 @@ namespace OpenTK.OpenGL } public static - void PrioritizeTextures(Int32 n, ref Int32 textures, Single[] priorities) + void PrioritizeTexture(Int32 n, ref Int32 textures, Single[] priorities) { unsafe { @@ -23768,7 +24321,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void PrioritizeTextures(Int32 n, ref UInt32 textures, ref Single priorities) + void PrioritizeTexture(Int32 n, ref UInt32 textures, ref Single priorities) { unsafe { @@ -23781,7 +24334,7 @@ namespace OpenTK.OpenGL } public static - void PrioritizeTextures(Int32 n, ref Int32 textures, ref Single priorities) + void PrioritizeTexture(Int32 n, ref Int32 textures, ref Single priorities) { unsafe { @@ -23823,7 +24376,7 @@ namespace OpenTK.OpenGL } public static - void DrawArrays(GL.Enums.BeginMode mode, Int32 first, Int32 count) + void DrawArray(GL.Enums.BeginMode mode, Int32 first, Int32 count) { Delegates.glDrawArraysEXT((GL.Enums.BeginMode)mode, (Int32)first, (Int32)count); } @@ -23957,7 +24510,7 @@ namespace OpenTK.OpenGL } public static - void PointParameterf(GL.Enums.EXT_point_parameters pname, Single param) + void PointParameter(GL.Enums.EXT_point_parameters pname, Single param) { Delegates.glPointParameterfEXT((GL.Enums.EXT_point_parameters)pname, (Single)param); } @@ -24145,13 +24698,13 @@ namespace OpenTK.OpenGL } public static - void LockArrays(Int32 first, Int32 count) + void LockArray(Int32 first, Int32 count) { Delegates.glLockArraysEXT((Int32)first, (Int32)count); } public static - void UnlockArrays() + void UnlockArray() { Delegates.glUnlockArraysEXT(); } @@ -24289,13 +24842,13 @@ namespace OpenTK.OpenGL } public static - void PixelTransformParameteri(GL.Enums.EXT_pixel_transform target, GL.Enums.EXT_pixel_transform pname, Int32 param) + void PixelTransformParameter(GL.Enums.EXT_pixel_transform target, GL.Enums.EXT_pixel_transform pname, Int32 param) { Delegates.glPixelTransformParameteriEXT((GL.Enums.EXT_pixel_transform)target, (GL.Enums.EXT_pixel_transform)pname, (Int32)param); } public static - void PixelTransformParameterf(GL.Enums.EXT_pixel_transform target, GL.Enums.EXT_pixel_transform pname, Single param) + void PixelTransformParameter(GL.Enums.EXT_pixel_transform target, GL.Enums.EXT_pixel_transform pname, Single param) { Delegates.glPixelTransformParameterfEXT((GL.Enums.EXT_pixel_transform)target, (GL.Enums.EXT_pixel_transform)pname, (Single)param); } @@ -24364,21 +24917,37 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void SecondaryColor3(SByte red, SByte green, SByte blue) + void SecondaryColor3b(SByte red, SByte green, SByte blue) + { + Delegates.glSecondaryColor3bEXT((SByte)red, (SByte)green, (SByte)blue); + } + + public static + void SecondaryColor3b(Byte red, Byte green, Byte blue) { Delegates.glSecondaryColor3bEXT((SByte)red, (SByte)green, (SByte)blue); } [System.CLSCompliant(false)] public static - unsafe void SecondaryColor3(SByte* v) + unsafe void SecondaryColor3bv(SByte* v) { unsafe { Delegates.glSecondaryColor3bvEXT((SByte*)v); } } [System.CLSCompliant(false)] public static - void SecondaryColor3(SByte[] v) + unsafe void SecondaryColor3bv(Byte* v) + { + unsafe + { + Delegates.glSecondaryColor3bvEXT((SByte*)v); + } + } + + [System.CLSCompliant(false)] + public static + void SecondaryColor3bv(SByte[] v) { unsafe { @@ -24389,9 +24958,21 @@ namespace OpenTK.OpenGL } } + public static + void SecondaryColor3bv(Byte[] v) + { + unsafe + { + fixed (Byte* v_ptr = v) + { + Delegates.glSecondaryColor3bvEXT((SByte*)v_ptr); + } + } + } + [System.CLSCompliant(false)] public static - void SecondaryColor3(ref SByte v) + void SecondaryColor3bv(ref SByte v) { unsafe { @@ -24403,20 +24984,32 @@ namespace OpenTK.OpenGL } public static - void SecondaryColor3(Double red, Double green, Double blue) + void SecondaryColor3bv(ref Byte v) + { + unsafe + { + fixed (Byte* v_ptr = &v) + { + Delegates.glSecondaryColor3bvEXT((SByte*)v_ptr); + } + } + } + + public static + void SecondaryColor3d(Double red, Double green, Double blue) { Delegates.glSecondaryColor3dEXT((Double)red, (Double)green, (Double)blue); } [System.CLSCompliant(false)] public static - unsafe void SecondaryColor3(Double* v) + unsafe void SecondaryColor3dv(Double* v) { unsafe { Delegates.glSecondaryColor3dvEXT((Double*)v); } } public static - void SecondaryColor3(Double[] v) + void SecondaryColor3dv(Double[] v) { unsafe { @@ -24428,7 +25021,7 @@ namespace OpenTK.OpenGL } public static - void SecondaryColor3(ref Double v) + void SecondaryColor3dv(ref Double v) { unsafe { @@ -24440,20 +25033,20 @@ namespace OpenTK.OpenGL } public static - void SecondaryColor3(Single red, Single green, Single blue) + void SecondaryColor3f(Single red, Single green, Single blue) { Delegates.glSecondaryColor3fEXT((Single)red, (Single)green, (Single)blue); } [System.CLSCompliant(false)] public static - unsafe void SecondaryColor3(Single* v) + unsafe void SecondaryColor3fv(Single* v) { unsafe { Delegates.glSecondaryColor3fvEXT((Single*)v); } } public static - void SecondaryColor3(Single[] v) + void SecondaryColor3fv(Single[] v) { unsafe { @@ -24465,7 +25058,7 @@ namespace OpenTK.OpenGL } public static - void SecondaryColor3(ref Single v) + void SecondaryColor3fv(ref Single v) { unsafe { @@ -24477,20 +25070,94 @@ namespace OpenTK.OpenGL } public static - void SecondaryColor3(Byte red, Byte green, Byte blue) + void SecondaryColor3i(Int32 red, Int32 green, Int32 blue) + { + Delegates.glSecondaryColor3iEXT((Int32)red, (Int32)green, (Int32)blue); + } + + [System.CLSCompliant(false)] + public static + unsafe void SecondaryColor3iv(Int32* v) + { + unsafe { Delegates.glSecondaryColor3ivEXT((Int32*)v); } + } + + public static + void SecondaryColor3iv(Int32[] v) + { + unsafe + { + fixed (Int32* v_ptr = v) + { + Delegates.glSecondaryColor3ivEXT((Int32*)v_ptr); + } + } + } + + public static + void SecondaryColor3iv(ref Int32 v) + { + unsafe + { + fixed (Int32* v_ptr = &v) + { + Delegates.glSecondaryColor3ivEXT((Int32*)v_ptr); + } + } + } + + public static + void SecondaryColor3s(Int16 red, Int16 green, Int16 blue) + { + Delegates.glSecondaryColor3sEXT((Int16)red, (Int16)green, (Int16)blue); + } + + [System.CLSCompliant(false)] + public static + unsafe void SecondaryColor3sv(Int16* v) + { + unsafe { Delegates.glSecondaryColor3svEXT((Int16*)v); } + } + + public static + void SecondaryColor3sv(Int16[] v) + { + unsafe + { + fixed (Int16* v_ptr = v) + { + Delegates.glSecondaryColor3svEXT((Int16*)v_ptr); + } + } + } + + public static + void SecondaryColor3sv(ref Int16 v) + { + unsafe + { + fixed (Int16* v_ptr = &v) + { + Delegates.glSecondaryColor3svEXT((Int16*)v_ptr); + } + } + } + + public static + void SecondaryColor3ub(Byte red, Byte green, Byte blue) { Delegates.glSecondaryColor3ubEXT((Byte)red, (Byte)green, (Byte)blue); } [System.CLSCompliant(false)] public static - unsafe void SecondaryColor3(Byte* v) + unsafe void SecondaryColor3ubv(Byte* v) { unsafe { Delegates.glSecondaryColor3ubvEXT((Byte*)v); } } public static - void SecondaryColor3(Byte[] v) + void SecondaryColor3ubv(Byte[] v) { unsafe { @@ -24502,7 +25169,7 @@ namespace OpenTK.OpenGL } public static - void SecondaryColor3(ref Byte v) + void SecondaryColor3ubv(ref Byte v) { unsafe { @@ -24515,27 +25182,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void SecondaryColor3(UInt32 red, UInt32 green, UInt32 blue) + void SecondaryColor3ui(UInt32 red, UInt32 green, UInt32 blue) { Delegates.glSecondaryColor3uiEXT((UInt32)red, (UInt32)green, (UInt32)blue); } public static - void SecondaryColor3(Int32 red, Int32 green, Int32 blue) + void SecondaryColor3ui(Int32 red, Int32 green, Int32 blue) { Delegates.glSecondaryColor3uiEXT((UInt32)red, (UInt32)green, (UInt32)blue); } [System.CLSCompliant(false)] public static - unsafe void SecondaryColor3(UInt32* v) + unsafe void SecondaryColor3uiv(UInt32* v) { unsafe { Delegates.glSecondaryColor3uivEXT((UInt32*)v); } } [System.CLSCompliant(false)] public static - unsafe void SecondaryColor3(Int32* v) + unsafe void SecondaryColor3uiv(Int32* v) { unsafe { @@ -24545,7 +25212,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void SecondaryColor3(UInt32[] v) + void SecondaryColor3uiv(UInt32[] v) { unsafe { @@ -24557,7 +25224,7 @@ namespace OpenTK.OpenGL } public static - void SecondaryColor3(Int32[] v) + void SecondaryColor3uiv(Int32[] v) { unsafe { @@ -24570,7 +25237,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void SecondaryColor3(ref UInt32 v) + void SecondaryColor3uiv(ref UInt32 v) { unsafe { @@ -24582,7 +25249,7 @@ namespace OpenTK.OpenGL } public static - void SecondaryColor3(ref Int32 v) + void SecondaryColor3uiv(ref Int32 v) { unsafe { @@ -24595,27 +25262,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void SecondaryColor3(UInt16 red, UInt16 green, UInt16 blue) + void SecondaryColor3us(UInt16 red, UInt16 green, UInt16 blue) { Delegates.glSecondaryColor3usEXT((UInt16)red, (UInt16)green, (UInt16)blue); } public static - void SecondaryColor3(Int16 red, Int16 green, Int16 blue) + void SecondaryColor3us(Int16 red, Int16 green, Int16 blue) { Delegates.glSecondaryColor3usEXT((UInt16)red, (UInt16)green, (UInt16)blue); } [System.CLSCompliant(false)] public static - unsafe void SecondaryColor3(UInt16* v) + unsafe void SecondaryColor3usv(UInt16* v) { unsafe { Delegates.glSecondaryColor3usvEXT((UInt16*)v); } } [System.CLSCompliant(false)] public static - unsafe void SecondaryColor3(Int16* v) + unsafe void SecondaryColor3usv(Int16* v) { unsafe { @@ -24625,7 +25292,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void SecondaryColor3(UInt16[] v) + void SecondaryColor3usv(UInt16[] v) { unsafe { @@ -24637,7 +25304,7 @@ namespace OpenTK.OpenGL } public static - void SecondaryColor3(Int16[] v) + void SecondaryColor3usv(Int16[] v) { unsafe { @@ -24650,7 +25317,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void SecondaryColor3(ref UInt16 v) + void SecondaryColor3usv(ref UInt16 v) { unsafe { @@ -24662,7 +25329,7 @@ namespace OpenTK.OpenGL } public static - void SecondaryColor3(ref Int16 v) + void SecondaryColor3usv(ref Int16 v) { unsafe { @@ -24704,14 +25371,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiDrawArrays(GL.Enums.BeginMode mode, [Out] Int32* first, [Out] Int32* count, Int32 primcount) + unsafe void MultiDrawArray(GL.Enums.BeginMode mode, [Out] Int32* first, [Out] Int32* count, Int32 primcount) { unsafe { Delegates.glMultiDrawArraysEXT((GL.Enums.BeginMode)mode, (Int32*)first, (Int32*)count, (Int32)primcount); } } [System.CLSCompliant(false)] public static - unsafe void MultiDrawArrays(GL.Enums.BeginMode mode, [Out] Int32* first, [Out] Int32[] count, Int32 primcount) + unsafe void MultiDrawArray(GL.Enums.BeginMode mode, [Out] Int32* first, [Out] Int32[] count, Int32 primcount) { unsafe { @@ -24724,7 +25391,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiDrawArrays(GL.Enums.BeginMode mode, [Out] Int32* first, [Out] out Int32 count, Int32 primcount) + unsafe void MultiDrawArray(GL.Enums.BeginMode mode, [Out] Int32* first, [Out] out Int32 count, Int32 primcount) { unsafe { @@ -24738,7 +25405,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiDrawArrays(GL.Enums.BeginMode mode, [Out] Int32[] first, [Out] Int32* count, Int32 primcount) + unsafe void MultiDrawArray(GL.Enums.BeginMode mode, [Out] Int32[] first, [Out] Int32* count, Int32 primcount) { unsafe { @@ -24750,7 +25417,7 @@ namespace OpenTK.OpenGL } public static - void MultiDrawArrays(GL.Enums.BeginMode mode, [Out] Int32[] first, [Out] Int32[] count, Int32 primcount) + void MultiDrawArray(GL.Enums.BeginMode mode, [Out] Int32[] first, [Out] Int32[] count, Int32 primcount) { unsafe { @@ -24763,7 +25430,7 @@ namespace OpenTK.OpenGL } public static - void MultiDrawArrays(GL.Enums.BeginMode mode, [Out] Int32[] first, [Out] out Int32 count, Int32 primcount) + void MultiDrawArray(GL.Enums.BeginMode mode, [Out] Int32[] first, [Out] out Int32 count, Int32 primcount) { unsafe { @@ -24778,7 +25445,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiDrawArrays(GL.Enums.BeginMode mode, [Out] out Int32 first, [Out] Int32* count, Int32 primcount) + unsafe void MultiDrawArray(GL.Enums.BeginMode mode, [Out] out Int32 first, [Out] Int32* count, Int32 primcount) { unsafe { @@ -24791,7 +25458,7 @@ namespace OpenTK.OpenGL } public static - void MultiDrawArrays(GL.Enums.BeginMode mode, [Out] out Int32 first, [Out] Int32[] count, Int32 primcount) + void MultiDrawArray(GL.Enums.BeginMode mode, [Out] out Int32 first, [Out] Int32[] count, Int32 primcount) { unsafe { @@ -24805,7 +25472,7 @@ namespace OpenTK.OpenGL } public static - void MultiDrawArrays(GL.Enums.BeginMode mode, [Out] out Int32 first, [Out] out Int32 count, Int32 primcount) + void MultiDrawArray(GL.Enums.BeginMode mode, [Out] out Int32 first, [Out] out Int32 count, Int32 primcount) { unsafe { @@ -24908,7 +25575,7 @@ namespace OpenTK.OpenGL } public static - void FogCoordf(Single coord) + void FogCoord(Single coord) { Delegates.glFogCoordfEXT((Single)coord); } @@ -24945,7 +25612,7 @@ namespace OpenTK.OpenGL } public static - void FogCoordd(Double coord) + void FogCoord(Double coord) { Delegates.glFogCoorddEXT((Double)coord); } @@ -25513,7 +26180,7 @@ namespace OpenTK.OpenGL } public static - void VertexWeightf(Single weight) + void VertexWeight(Single weight) { Delegates.glVertexWeightfEXT((Single)weight); } @@ -25728,13 +26395,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - Int32 GenSymbols(GL.Enums.EXT_vertex_shader datatype, GL.Enums.EXT_vertex_shader storagetype, GL.Enums.EXT_vertex_shader range, UInt32 components) + Int32 GenSymbol(GL.Enums.EXT_vertex_shader datatype, GL.Enums.EXT_vertex_shader storagetype, GL.Enums.EXT_vertex_shader range, UInt32 components) { return Delegates.glGenSymbolsEXT((GL.Enums.EXT_vertex_shader)datatype, (GL.Enums.EXT_vertex_shader)storagetype, (GL.Enums.EXT_vertex_shader)range, (UInt32)components); } public static - Int32 GenSymbols(GL.Enums.EXT_vertex_shader datatype, GL.Enums.EXT_vertex_shader storagetype, GL.Enums.EXT_vertex_shader range, Int32 components) + Int32 GenSymbol(GL.Enums.EXT_vertex_shader datatype, GL.Enums.EXT_vertex_shader storagetype, GL.Enums.EXT_vertex_shader range, Int32 components) { return Delegates.glGenSymbolsEXT((GL.Enums.EXT_vertex_shader)datatype, (GL.Enums.EXT_vertex_shader)storagetype, (GL.Enums.EXT_vertex_shader)range, (UInt32)components); } @@ -25841,14 +26508,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Variantv(UInt32 id, SByte* addr) + unsafe void Variant(UInt32 id, SByte* addr) { unsafe { Delegates.glVariantbvEXT((UInt32)id, (SByte*)addr); } } [System.CLSCompliant(false)] public static - void Variantv(UInt32 id, SByte[] addr) + void Variant(UInt32 id, SByte[] addr) { unsafe { @@ -25861,7 +26528,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Variantv(UInt32 id, ref SByte addr) + void Variant(UInt32 id, ref SByte addr) { unsafe { @@ -25874,14 +26541,36 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Variantv(UInt32 id, Int16* addr) + unsafe void Variantsv(UInt32 id, Int16* addr) { unsafe { Delegates.glVariantsvEXT((UInt32)id, (Int16*)addr); } } [System.CLSCompliant(false)] public static - void Variantv(UInt32 id, Int16[] addr) + unsafe void Variantsv(Int32 id, Int16* addr) + { + unsafe + { + Delegates.glVariantsvEXT((UInt32)id, (Int16*)addr); + } + } + + [System.CLSCompliant(false)] + public static + void Variantsv(UInt32 id, Int16[] addr) + { + unsafe + { + fixed (Int16* addr_ptr = addr) + { + Delegates.glVariantsvEXT((UInt32)id, (Int16*)addr_ptr); + } + } + } + + public static + void Variantsv(Int32 id, Int16[] addr) { unsafe { @@ -25894,7 +26583,19 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Variantv(UInt32 id, ref Int16 addr) + void Variantsv(UInt32 id, ref Int16 addr) + { + unsafe + { + fixed (Int16* addr_ptr = &addr) + { + Delegates.glVariantsvEXT((UInt32)id, (Int16*)addr_ptr); + } + } + } + + public static + void Variantsv(Int32 id, ref Int16 addr) { unsafe { @@ -25907,14 +26608,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Variantv(UInt32 id, Int32* addr) + unsafe void Variant(UInt32 id, Int32* addr) { unsafe { Delegates.glVariantivEXT((UInt32)id, (Int32*)addr); } } [System.CLSCompliant(false)] public static - void Variantv(UInt32 id, Int32[] addr) + void Variant(UInt32 id, Int32[] addr) { unsafe { @@ -25927,7 +26628,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Variantv(UInt32 id, ref Int32 addr) + void Variant(UInt32 id, ref Int32 addr) { unsafe { @@ -25940,14 +26641,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Variantv(UInt32 id, Single* addr) + unsafe void Variant(UInt32 id, Single* addr) { unsafe { Delegates.glVariantfvEXT((UInt32)id, (Single*)addr); } } [System.CLSCompliant(false)] public static - unsafe void Variantv(Int32 id, Single* addr) + unsafe void Variant(Int32 id, Single* addr) { unsafe { @@ -25957,7 +26658,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Variantv(UInt32 id, Single[] addr) + void Variant(UInt32 id, Single[] addr) { unsafe { @@ -25969,7 +26670,7 @@ namespace OpenTK.OpenGL } public static - void Variantv(Int32 id, Single[] addr) + void Variant(Int32 id, Single[] addr) { unsafe { @@ -25982,7 +26683,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Variantv(UInt32 id, ref Single addr) + void Variant(UInt32 id, ref Single addr) { unsafe { @@ -25994,7 +26695,7 @@ namespace OpenTK.OpenGL } public static - void Variantv(Int32 id, ref Single addr) + void Variant(Int32 id, ref Single addr) { unsafe { @@ -26007,14 +26708,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Variantv(UInt32 id, Double* addr) + unsafe void Variant(UInt32 id, Double* addr) { unsafe { Delegates.glVariantdvEXT((UInt32)id, (Double*)addr); } } [System.CLSCompliant(false)] public static - unsafe void Variantv(Int32 id, Double* addr) + unsafe void Variant(Int32 id, Double* addr) { unsafe { @@ -26024,7 +26725,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Variantv(UInt32 id, Double[] addr) + void Variant(UInt32 id, Double[] addr) { unsafe { @@ -26036,7 +26737,7 @@ namespace OpenTK.OpenGL } public static - void Variantv(Int32 id, Double[] addr) + void Variant(Int32 id, Double[] addr) { unsafe { @@ -26049,7 +26750,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Variantv(UInt32 id, ref Double addr) + void Variant(UInt32 id, ref Double addr) { unsafe { @@ -26061,7 +26762,7 @@ namespace OpenTK.OpenGL } public static - void Variantv(Int32 id, ref Double addr) + void Variant(Int32 id, ref Double addr) { unsafe { @@ -26074,14 +26775,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Variantv(UInt32 id, Byte* addr) + unsafe void Variant(UInt32 id, Byte* addr) { unsafe { Delegates.glVariantubvEXT((UInt32)id, (Byte*)addr); } } [System.CLSCompliant(false)] public static - unsafe void Variantv(Int32 id, Byte* addr) + unsafe void Variant(Int32 id, Byte* addr) { unsafe { @@ -26091,7 +26792,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Variantv(UInt32 id, Byte[] addr) + void Variant(UInt32 id, Byte[] addr) { unsafe { @@ -26103,7 +26804,7 @@ namespace OpenTK.OpenGL } public static - void Variantv(Int32 id, Byte[] addr) + void Variant(Int32 id, Byte[] addr) { unsafe { @@ -26116,7 +26817,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Variantv(UInt32 id, ref Byte addr) + void Variant(UInt32 id, ref Byte addr) { unsafe { @@ -26128,7 +26829,7 @@ namespace OpenTK.OpenGL } public static - void Variantv(Int32 id, ref Byte addr) + void Variant(Int32 id, ref Byte addr) { unsafe { @@ -26141,14 +26842,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Variantv(UInt32 id, UInt16* addr) + unsafe void Variant(UInt32 id, UInt16* addr) { unsafe { Delegates.glVariantusvEXT((UInt32)id, (UInt16*)addr); } } [System.CLSCompliant(false)] public static - unsafe void Variantv(Int32 id, Int16* addr) + unsafe void Variant(Int32 id, Int16* addr) { unsafe { @@ -26158,7 +26859,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Variantv(UInt32 id, UInt16[] addr) + void Variant(UInt32 id, UInt16[] addr) { unsafe { @@ -26170,7 +26871,7 @@ namespace OpenTK.OpenGL } public static - void Variantv(Int32 id, Int16[] addr) + void Variant(Int32 id, Int16[] addr) { unsafe { @@ -26183,7 +26884,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Variantv(UInt32 id, ref UInt16 addr) + void Variant(UInt32 id, ref UInt16 addr) { unsafe { @@ -26195,7 +26896,7 @@ namespace OpenTK.OpenGL } public static - void Variantv(Int32 id, ref Int16 addr) + void Variant(Int32 id, ref Int16 addr) { unsafe { @@ -26208,14 +26909,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Variantv(UInt32 id, UInt32* addr) + unsafe void Variant(UInt32 id, UInt32* addr) { unsafe { Delegates.glVariantuivEXT((UInt32)id, (UInt32*)addr); } } [System.CLSCompliant(false)] public static - unsafe void Variantv(Int32 id, Int32* addr) + unsafe void Variant(Int32 id, Int32* addr) { unsafe { @@ -26225,7 +26926,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Variantv(UInt32 id, UInt32[] addr) + void Variant(UInt32 id, UInt32[] addr) { unsafe { @@ -26237,7 +26938,7 @@ namespace OpenTK.OpenGL } public static - void Variantv(Int32 id, Int32[] addr) + void Variant(Int32 id, Int32[] addr) { unsafe { @@ -26250,7 +26951,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Variantv(UInt32 id, ref UInt32 addr) + void Variant(UInt32 id, ref UInt32 addr) { unsafe { @@ -26262,7 +26963,7 @@ namespace OpenTK.OpenGL } public static - void Variantv(Int32 id, ref Int32 addr) + void Variant(Int32 id, ref Int32 addr) { unsafe { @@ -26381,13 +27082,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - Boolean IsVariantEnabled(UInt32 id, GL.Enums.EXT_vertex_shader cap) + Boolean IsVariantEnable(UInt32 id, GL.Enums.EXT_vertex_shader cap) { return Delegates.glIsVariantEnabledEXT((UInt32)id, (GL.Enums.EXT_vertex_shader)cap); } public static - Boolean IsVariantEnabled(Int32 id, GL.Enums.EXT_vertex_shader cap) + Boolean IsVariantEnable(Int32 id, GL.Enums.EXT_vertex_shader cap) { return Delegates.glIsVariantEnabledEXT((UInt32)id, (GL.Enums.EXT_vertex_shader)cap); } @@ -27095,13 +27796,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetRenderbufferParameterv(GL.Enums.EXT_framebuffer_object target, GL.Enums.EXT_framebuffer_object pname, [Out] Int32* @params) + unsafe void GetRenderbufferParameteriv(GL.Enums.EXT_framebuffer_object target, GL.Enums.EXT_framebuffer_object pname, [Out] Int32* @params) { unsafe { Delegates.glGetRenderbufferParameterivEXT((GL.Enums.EXT_framebuffer_object)target, (GL.Enums.EXT_framebuffer_object)pname, (Int32*)@params); } } public static - void GetRenderbufferParameterv(GL.Enums.EXT_framebuffer_object target, GL.Enums.EXT_framebuffer_object pname, [Out] Int32[] @params) + void GetRenderbufferParameteriv(GL.Enums.EXT_framebuffer_object target, GL.Enums.EXT_framebuffer_object pname, [Out] Int32[] @params) { unsafe { @@ -27113,7 +27814,7 @@ namespace OpenTK.OpenGL } public static - void GetRenderbufferParameterv(GL.Enums.EXT_framebuffer_object target, GL.Enums.EXT_framebuffer_object pname, [Out] out Int32 @params) + void GetRenderbufferParameteriv(GL.Enums.EXT_framebuffer_object target, GL.Enums.EXT_framebuffer_object pname, [Out] out Int32 @params) { unsafe { @@ -27288,7 +27989,7 @@ namespace OpenTK.OpenGL } public static - GL.Enums.All CheckFramebufferStatus(GL.Enums.EXT_framebuffer_object target) + GL.Enums.All CheckFramebufferStat(GL.Enums.EXT_framebuffer_object target) { return Delegates.glCheckFramebufferStatusEXT((GL.Enums.EXT_framebuffer_object)target); } @@ -27548,14 +28249,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParameters4(GL.Enums.EXT_gpu_program_parameters target, UInt32 index, Int32 count, Single* @params) + unsafe void ProgramEnvParameters4fv(GL.Enums.EXT_gpu_program_parameters target, UInt32 index, Int32 count, Single* @params) { unsafe { Delegates.glProgramEnvParameters4fvEXT((GL.Enums.EXT_gpu_program_parameters)target, (UInt32)index, (Int32)count, (Single*)@params); } } [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParameters4(GL.Enums.EXT_gpu_program_parameters target, Int32 index, Int32 count, Single* @params) + unsafe void ProgramEnvParameters4fv(GL.Enums.EXT_gpu_program_parameters target, Int32 index, Int32 count, Single* @params) { unsafe { @@ -27565,7 +28266,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramEnvParameters4(GL.Enums.EXT_gpu_program_parameters target, UInt32 index, Int32 count, Single[] @params) + void ProgramEnvParameters4fv(GL.Enums.EXT_gpu_program_parameters target, UInt32 index, Int32 count, Single[] @params) { unsafe { @@ -27577,7 +28278,7 @@ namespace OpenTK.OpenGL } public static - void ProgramEnvParameters4(GL.Enums.EXT_gpu_program_parameters target, Int32 index, Int32 count, Single[] @params) + void ProgramEnvParameters4fv(GL.Enums.EXT_gpu_program_parameters target, Int32 index, Int32 count, Single[] @params) { unsafe { @@ -27590,7 +28291,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramEnvParameters4(GL.Enums.EXT_gpu_program_parameters target, UInt32 index, Int32 count, ref Single @params) + void ProgramEnvParameters4fv(GL.Enums.EXT_gpu_program_parameters target, UInt32 index, Int32 count, ref Single @params) { unsafe { @@ -27602,7 +28303,7 @@ namespace OpenTK.OpenGL } public static - void ProgramEnvParameters4(GL.Enums.EXT_gpu_program_parameters target, Int32 index, Int32 count, ref Single @params) + void ProgramEnvParameters4fv(GL.Enums.EXT_gpu_program_parameters target, Int32 index, Int32 count, ref Single @params) { unsafe { @@ -27615,14 +28316,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParameters4(GL.Enums.EXT_gpu_program_parameters target, UInt32 index, Int32 count, Single* @params) + unsafe void ProgramLocalParameters4fv(GL.Enums.EXT_gpu_program_parameters target, UInt32 index, Int32 count, Single* @params) { unsafe { Delegates.glProgramLocalParameters4fvEXT((GL.Enums.EXT_gpu_program_parameters)target, (UInt32)index, (Int32)count, (Single*)@params); } } [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParameters4(GL.Enums.EXT_gpu_program_parameters target, Int32 index, Int32 count, Single* @params) + unsafe void ProgramLocalParameters4fv(GL.Enums.EXT_gpu_program_parameters target, Int32 index, Int32 count, Single* @params) { unsafe { @@ -27632,7 +28333,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramLocalParameters4(GL.Enums.EXT_gpu_program_parameters target, UInt32 index, Int32 count, Single[] @params) + void ProgramLocalParameters4fv(GL.Enums.EXT_gpu_program_parameters target, UInt32 index, Int32 count, Single[] @params) { unsafe { @@ -27644,7 +28345,7 @@ namespace OpenTK.OpenGL } public static - void ProgramLocalParameters4(GL.Enums.EXT_gpu_program_parameters target, Int32 index, Int32 count, Single[] @params) + void ProgramLocalParameters4fv(GL.Enums.EXT_gpu_program_parameters target, Int32 index, Int32 count, Single[] @params) { unsafe { @@ -27657,7 +28358,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramLocalParameters4(GL.Enums.EXT_gpu_program_parameters target, UInt32 index, Int32 count, ref Single @params) + void ProgramLocalParameters4fv(GL.Enums.EXT_gpu_program_parameters target, UInt32 index, Int32 count, ref Single @params) { unsafe { @@ -27669,7 +28370,7 @@ namespace OpenTK.OpenGL } public static - void ProgramLocalParameters4(GL.Enums.EXT_gpu_program_parameters target, Int32 index, Int32 count, ref Single @params) + void ProgramLocalParameters4fv(GL.Enums.EXT_gpu_program_parameters target, Int32 index, Int32 count, ref Single @params) { unsafe { @@ -27721,93 +28422,117 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramParameteri(UInt32 program, GL.Enums.EXT_geometry_shader4 pname, Int32 value) + void ProgramParameter(UInt32 program, GL.Enums.EXT_geometry_shader4 pname, Int32 value) { Delegates.glProgramParameteriEXT((UInt32)program, (GL.Enums.EXT_geometry_shader4)pname, (Int32)value); } public static - void ProgramParameteri(Int32 program, GL.Enums.EXT_geometry_shader4 pname, Int32 value) + void ProgramParameter(Int32 program, GL.Enums.EXT_geometry_shader4 pname, Int32 value) { Delegates.glProgramParameteriEXT((UInt32)program, (GL.Enums.EXT_geometry_shader4)pname, (Int32)value); } [System.CLSCompliant(false)] public static - void VertexAttribI1(UInt32 index, Int32 x) + void VertexAttribI1i(UInt32 index, Int32 x) + { + Delegates.glVertexAttribI1iEXT((UInt32)index, (Int32)x); + } + + public static + void VertexAttribI1i(Int32 index, Int32 x) { Delegates.glVertexAttribI1iEXT((UInt32)index, (Int32)x); } [System.CLSCompliant(false)] public static - void VertexAttribI2(UInt32 index, Int32 x, Int32 y) + void VertexAttribI2i(UInt32 index, Int32 x, Int32 y) + { + Delegates.glVertexAttribI2iEXT((UInt32)index, (Int32)x, (Int32)y); + } + + public static + void VertexAttribI2i(Int32 index, Int32 x, Int32 y) { Delegates.glVertexAttribI2iEXT((UInt32)index, (Int32)x, (Int32)y); } [System.CLSCompliant(false)] public static - void VertexAttribI3(UInt32 index, Int32 x, Int32 y, Int32 z) + void VertexAttribI3i(UInt32 index, Int32 x, Int32 y, Int32 z) + { + Delegates.glVertexAttribI3iEXT((UInt32)index, (Int32)x, (Int32)y, (Int32)z); + } + + public static + void VertexAttribI3i(Int32 index, Int32 x, Int32 y, Int32 z) { Delegates.glVertexAttribI3iEXT((UInt32)index, (Int32)x, (Int32)y, (Int32)z); } [System.CLSCompliant(false)] public static - void VertexAttribI4(UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) + void VertexAttribI4i(UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) + { + Delegates.glVertexAttribI4iEXT((UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); + } + + public static + void VertexAttribI4i(Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { Delegates.glVertexAttribI4iEXT((UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); } [System.CLSCompliant(false)] public static - void VertexAttribI1(UInt32 index, UInt32 x) + void VertexAttribI1ui(UInt32 index, UInt32 x) { Delegates.glVertexAttribI1uiEXT((UInt32)index, (UInt32)x); } public static - void VertexAttribI1(Int32 index, Int32 x) + void VertexAttribI1ui(Int32 index, Int32 x) { Delegates.glVertexAttribI1uiEXT((UInt32)index, (UInt32)x); } [System.CLSCompliant(false)] public static - void VertexAttribI2(UInt32 index, UInt32 x, UInt32 y) + void VertexAttribI2ui(UInt32 index, UInt32 x, UInt32 y) { Delegates.glVertexAttribI2uiEXT((UInt32)index, (UInt32)x, (UInt32)y); } public static - void VertexAttribI2(Int32 index, Int32 x, Int32 y) + void VertexAttribI2ui(Int32 index, Int32 x, Int32 y) { Delegates.glVertexAttribI2uiEXT((UInt32)index, (UInt32)x, (UInt32)y); } [System.CLSCompliant(false)] public static - void VertexAttribI3(UInt32 index, UInt32 x, UInt32 y, UInt32 z) + void VertexAttribI3ui(UInt32 index, UInt32 x, UInt32 y, UInt32 z) { Delegates.glVertexAttribI3uiEXT((UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z); } public static - void VertexAttribI3(Int32 index, Int32 x, Int32 y, Int32 z) + void VertexAttribI3ui(Int32 index, Int32 x, Int32 y, Int32 z) { Delegates.glVertexAttribI3uiEXT((UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z); } [System.CLSCompliant(false)] public static - void VertexAttribI4(UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) + void VertexAttribI4ui(UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { Delegates.glVertexAttribI4uiEXT((UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w); } public static - void VertexAttribI4(Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) + void VertexAttribI4ui(Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { Delegates.glVertexAttribI4uiEXT((UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w); } @@ -27881,14 +28606,36 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribI2(UInt32 index, Int32* v) + unsafe void VertexAttribI2iv(UInt32 index, Int32* v) { unsafe { Delegates.glVertexAttribI2ivEXT((UInt32)index, (Int32*)v); } } [System.CLSCompliant(false)] public static - void VertexAttribI2(UInt32 index, Int32[] v) + unsafe void VertexAttribI2iv(Int32 index, Int32* v) + { + unsafe + { + Delegates.glVertexAttribI2ivEXT((UInt32)index, (Int32*)v); + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttribI2iv(UInt32 index, Int32[] v) + { + unsafe + { + fixed (Int32* v_ptr = v) + { + Delegates.glVertexAttribI2ivEXT((UInt32)index, (Int32*)v_ptr); + } + } + } + + public static + void VertexAttribI2iv(Int32 index, Int32[] v) { unsafe { @@ -27901,7 +28648,19 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribI2(UInt32 index, ref Int32 v) + void VertexAttribI2iv(UInt32 index, ref Int32 v) + { + unsafe + { + fixed (Int32* v_ptr = &v) + { + Delegates.glVertexAttribI2ivEXT((UInt32)index, (Int32*)v_ptr); + } + } + } + + public static + void VertexAttribI2iv(Int32 index, ref Int32 v) { unsafe { @@ -27914,14 +28673,36 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribI3(UInt32 index, Int32* v) + unsafe void VertexAttribI3iv(UInt32 index, Int32* v) { unsafe { Delegates.glVertexAttribI3ivEXT((UInt32)index, (Int32*)v); } } [System.CLSCompliant(false)] public static - void VertexAttribI3(UInt32 index, Int32[] v) + unsafe void VertexAttribI3iv(Int32 index, Int32* v) + { + unsafe + { + Delegates.glVertexAttribI3ivEXT((UInt32)index, (Int32*)v); + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttribI3iv(UInt32 index, Int32[] v) + { + unsafe + { + fixed (Int32* v_ptr = v) + { + Delegates.glVertexAttribI3ivEXT((UInt32)index, (Int32*)v_ptr); + } + } + } + + public static + void VertexAttribI3iv(Int32 index, Int32[] v) { unsafe { @@ -27934,7 +28715,19 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribI3(UInt32 index, ref Int32 v) + void VertexAttribI3iv(UInt32 index, ref Int32 v) + { + unsafe + { + fixed (Int32* v_ptr = &v) + { + Delegates.glVertexAttribI3ivEXT((UInt32)index, (Int32*)v_ptr); + } + } + } + + public static + void VertexAttribI3iv(Int32 index, ref Int32 v) { unsafe { @@ -27947,14 +28740,36 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribI4(UInt32 index, Int32* v) + unsafe void VertexAttribI4iv(UInt32 index, Int32* v) { unsafe { Delegates.glVertexAttribI4ivEXT((UInt32)index, (Int32*)v); } } [System.CLSCompliant(false)] public static - void VertexAttribI4(UInt32 index, Int32[] v) + unsafe void VertexAttribI4iv(Int32 index, Int32* v) + { + unsafe + { + Delegates.glVertexAttribI4ivEXT((UInt32)index, (Int32*)v); + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttribI4iv(UInt32 index, Int32[] v) + { + unsafe + { + fixed (Int32* v_ptr = v) + { + Delegates.glVertexAttribI4ivEXT((UInt32)index, (Int32*)v_ptr); + } + } + } + + public static + void VertexAttribI4iv(Int32 index, Int32[] v) { unsafe { @@ -27967,7 +28782,19 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribI4(UInt32 index, ref Int32 v) + void VertexAttribI4iv(UInt32 index, ref Int32 v) + { + unsafe + { + fixed (Int32* v_ptr = &v) + { + Delegates.glVertexAttribI4ivEXT((UInt32)index, (Int32*)v_ptr); + } + } + } + + public static + void VertexAttribI4iv(Int32 index, ref Int32 v) { unsafe { @@ -28047,14 +28874,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribI2(UInt32 index, UInt32* v) + unsafe void VertexAttribI2uiv(UInt32 index, UInt32* v) { unsafe { Delegates.glVertexAttribI2uivEXT((UInt32)index, (UInt32*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribI2(Int32 index, Int32* v) + unsafe void VertexAttribI2uiv(Int32 index, Int32* v) { unsafe { @@ -28064,7 +28891,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribI2(UInt32 index, UInt32[] v) + void VertexAttribI2uiv(UInt32 index, UInt32[] v) { unsafe { @@ -28076,7 +28903,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribI2(Int32 index, Int32[] v) + void VertexAttribI2uiv(Int32 index, Int32[] v) { unsafe { @@ -28089,7 +28916,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribI2(UInt32 index, ref UInt32 v) + void VertexAttribI2uiv(UInt32 index, ref UInt32 v) { unsafe { @@ -28101,7 +28928,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribI2(Int32 index, ref Int32 v) + void VertexAttribI2uiv(Int32 index, ref Int32 v) { unsafe { @@ -28114,14 +28941,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribI3(UInt32 index, UInt32* v) + unsafe void VertexAttribI3uiv(UInt32 index, UInt32* v) { unsafe { Delegates.glVertexAttribI3uivEXT((UInt32)index, (UInt32*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribI3(Int32 index, Int32* v) + unsafe void VertexAttribI3uiv(Int32 index, Int32* v) { unsafe { @@ -28131,7 +28958,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribI3(UInt32 index, UInt32[] v) + void VertexAttribI3uiv(UInt32 index, UInt32[] v) { unsafe { @@ -28143,7 +28970,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribI3(Int32 index, Int32[] v) + void VertexAttribI3uiv(Int32 index, Int32[] v) { unsafe { @@ -28156,7 +28983,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribI3(UInt32 index, ref UInt32 v) + void VertexAttribI3uiv(UInt32 index, ref UInt32 v) { unsafe { @@ -28168,7 +28995,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribI3(Int32 index, ref Int32 v) + void VertexAttribI3uiv(Int32 index, ref Int32 v) { unsafe { @@ -28181,14 +29008,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribI4(UInt32 index, UInt32* v) + unsafe void VertexAttribI4uiv(UInt32 index, UInt32* v) { unsafe { Delegates.glVertexAttribI4uivEXT((UInt32)index, (UInt32*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribI4(Int32 index, Int32* v) + unsafe void VertexAttribI4uiv(Int32 index, Int32* v) { unsafe { @@ -28198,7 +29025,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribI4(UInt32 index, UInt32[] v) + void VertexAttribI4uiv(UInt32 index, UInt32[] v) { unsafe { @@ -28210,7 +29037,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribI4(Int32 index, Int32[] v) + void VertexAttribI4uiv(Int32 index, Int32[] v) { unsafe { @@ -28223,7 +29050,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribI4(UInt32 index, ref UInt32 v) + void VertexAttribI4uiv(UInt32 index, ref UInt32 v) { unsafe { @@ -28235,7 +29062,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribI4(Int32 index, ref Int32 v) + void VertexAttribI4uiv(Int32 index, ref Int32 v) { unsafe { @@ -28248,14 +29075,24 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribI4(UInt32 index, SByte* v) + unsafe void VertexAttribI4bv(UInt32 index, SByte* v) { unsafe { Delegates.glVertexAttribI4bvEXT((UInt32)index, (SByte*)v); } } [System.CLSCompliant(false)] public static - void VertexAttribI4(UInt32 index, SByte[] v) + unsafe void VertexAttribI4bv(Int32 index, Byte* v) + { + unsafe + { + Delegates.glVertexAttribI4bvEXT((UInt32)index, (SByte*)v); + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttribI4bv(UInt32 index, SByte[] v) { unsafe { @@ -28266,9 +29103,21 @@ namespace OpenTK.OpenGL } } + public static + void VertexAttribI4bv(Int32 index, Byte[] v) + { + unsafe + { + fixed (Byte* v_ptr = v) + { + Delegates.glVertexAttribI4bvEXT((UInt32)index, (SByte*)v_ptr); + } + } + } + [System.CLSCompliant(false)] public static - void VertexAttribI4(UInt32 index, ref SByte v) + void VertexAttribI4bv(UInt32 index, ref SByte v) { unsafe { @@ -28279,16 +29128,50 @@ namespace OpenTK.OpenGL } } + public static + void VertexAttribI4bv(Int32 index, ref Byte v) + { + unsafe + { + fixed (Byte* v_ptr = &v) + { + Delegates.glVertexAttribI4bvEXT((UInt32)index, (SByte*)v_ptr); + } + } + } + [System.CLSCompliant(false)] public static - unsafe void VertexAttribI4(UInt32 index, Int16* v) + unsafe void VertexAttribI4sv(UInt32 index, Int16* v) { unsafe { Delegates.glVertexAttribI4svEXT((UInt32)index, (Int16*)v); } } [System.CLSCompliant(false)] public static - void VertexAttribI4(UInt32 index, Int16[] v) + unsafe void VertexAttribI4sv(Int32 index, Int16* v) + { + unsafe + { + Delegates.glVertexAttribI4svEXT((UInt32)index, (Int16*)v); + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttribI4sv(UInt32 index, Int16[] v) + { + unsafe + { + fixed (Int16* v_ptr = v) + { + Delegates.glVertexAttribI4svEXT((UInt32)index, (Int16*)v_ptr); + } + } + } + + public static + void VertexAttribI4sv(Int32 index, Int16[] v) { unsafe { @@ -28301,7 +29184,19 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribI4(UInt32 index, ref Int16 v) + void VertexAttribI4sv(UInt32 index, ref Int16 v) + { + unsafe + { + fixed (Int16* v_ptr = &v) + { + Delegates.glVertexAttribI4svEXT((UInt32)index, (Int16*)v_ptr); + } + } + } + + public static + void VertexAttribI4sv(Int32 index, ref Int16 v) { unsafe { @@ -28314,14 +29209,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribI4(UInt32 index, Byte* v) + unsafe void VertexAttribI4ubv(UInt32 index, Byte* v) { unsafe { Delegates.glVertexAttribI4ubvEXT((UInt32)index, (Byte*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribI4(Int32 index, Byte* v) + unsafe void VertexAttribI4ubv(Int32 index, Byte* v) { unsafe { @@ -28331,7 +29226,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribI4(UInt32 index, Byte[] v) + void VertexAttribI4ubv(UInt32 index, Byte[] v) { unsafe { @@ -28343,7 +29238,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribI4(Int32 index, Byte[] v) + void VertexAttribI4ubv(Int32 index, Byte[] v) { unsafe { @@ -28356,7 +29251,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribI4(UInt32 index, ref Byte v) + void VertexAttribI4ubv(UInt32 index, ref Byte v) { unsafe { @@ -28368,7 +29263,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribI4(Int32 index, ref Byte v) + void VertexAttribI4ubv(Int32 index, ref Byte v) { unsafe { @@ -28381,14 +29276,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribI4(UInt32 index, UInt16* v) + unsafe void VertexAttribI4usv(UInt32 index, UInt16* v) { unsafe { Delegates.glVertexAttribI4usvEXT((UInt32)index, (UInt16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribI4(Int32 index, Int16* v) + unsafe void VertexAttribI4usv(Int32 index, Int16* v) { unsafe { @@ -28398,7 +29293,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribI4(UInt32 index, UInt16[] v) + void VertexAttribI4usv(UInt32 index, UInt16[] v) { unsafe { @@ -28410,7 +29305,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribI4(Int32 index, Int16[] v) + void VertexAttribI4usv(Int32 index, Int16[] v) { unsafe { @@ -28423,7 +29318,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribI4(UInt32 index, ref UInt16 v) + void VertexAttribI4usv(UInt32 index, ref UInt16 v) { unsafe { @@ -28435,7 +29330,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribI4(Int32 index, ref Int16 v) + void VertexAttribI4usv(Int32 index, ref Int16 v) { unsafe { @@ -28498,14 +29393,36 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribIv(UInt32 index, GL.Enums.NV_vertex_program4 pname, [Out] Int32* @params) + unsafe void GetVertexAttribIiv(UInt32 index, GL.Enums.NV_vertex_program4 pname, [Out] Int32* @params) { unsafe { Delegates.glGetVertexAttribIivEXT((UInt32)index, (GL.Enums.NV_vertex_program4)pname, (Int32*)@params); } } [System.CLSCompliant(false)] public static - void GetVertexAttribIv(UInt32 index, GL.Enums.NV_vertex_program4 pname, [Out] Int32[] @params) + unsafe void GetVertexAttribIiv(Int32 index, GL.Enums.NV_vertex_program4 pname, [Out] Int32* @params) + { + unsafe + { + Delegates.glGetVertexAttribIivEXT((UInt32)index, (GL.Enums.NV_vertex_program4)pname, (Int32*)@params); + } + } + + [System.CLSCompliant(false)] + public static + void GetVertexAttribIiv(UInt32 index, GL.Enums.NV_vertex_program4 pname, [Out] Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glGetVertexAttribIivEXT((UInt32)index, (GL.Enums.NV_vertex_program4)pname, (Int32*)@params_ptr); + } + } + } + + public static + void GetVertexAttribIiv(Int32 index, GL.Enums.NV_vertex_program4 pname, [Out] Int32[] @params) { unsafe { @@ -28518,7 +29435,20 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetVertexAttribIv(UInt32 index, GL.Enums.NV_vertex_program4 pname, [Out] out Int32 @params) + void GetVertexAttribIiv(UInt32 index, GL.Enums.NV_vertex_program4 pname, [Out] out Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glGetVertexAttribIivEXT((UInt32)index, (GL.Enums.NV_vertex_program4)pname, (Int32*)@params_ptr); + @params = *@params_ptr; + } + } + } + + public static + void GetVertexAttribIiv(Int32 index, GL.Enums.NV_vertex_program4 pname, [Out] out Int32 @params) { unsafe { @@ -28532,14 +29462,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribIv(UInt32 index, GL.Enums.NV_vertex_program4 pname, [Out] UInt32* @params) + unsafe void GetVertexAttribIuiv(UInt32 index, GL.Enums.NV_vertex_program4 pname, [Out] UInt32* @params) { unsafe { Delegates.glGetVertexAttribIuivEXT((UInt32)index, (GL.Enums.NV_vertex_program4)pname, (UInt32*)@params); } } [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribIv(Int32 index, GL.Enums.NV_vertex_program4 pname, [Out] Int32* @params) + unsafe void GetVertexAttribIuiv(Int32 index, GL.Enums.NV_vertex_program4 pname, [Out] Int32* @params) { unsafe { @@ -28549,7 +29479,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetVertexAttribIv(UInt32 index, GL.Enums.NV_vertex_program4 pname, [Out] UInt32[] @params) + void GetVertexAttribIuiv(UInt32 index, GL.Enums.NV_vertex_program4 pname, [Out] UInt32[] @params) { unsafe { @@ -28561,7 +29491,7 @@ namespace OpenTK.OpenGL } public static - void GetVertexAttribIv(Int32 index, GL.Enums.NV_vertex_program4 pname, [Out] Int32[] @params) + void GetVertexAttribIuiv(Int32 index, GL.Enums.NV_vertex_program4 pname, [Out] Int32[] @params) { unsafe { @@ -28574,7 +29504,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetVertexAttribIv(UInt32 index, GL.Enums.NV_vertex_program4 pname, [Out] out UInt32 @params) + void GetVertexAttribIuiv(UInt32 index, GL.Enums.NV_vertex_program4 pname, [Out] out UInt32 @params) { unsafe { @@ -28587,7 +29517,7 @@ namespace OpenTK.OpenGL } public static - void GetVertexAttribIv(Int32 index, GL.Enums.NV_vertex_program4 pname, [Out] out Int32 @params) + void GetVertexAttribIuiv(Int32 index, GL.Enums.NV_vertex_program4 pname, [Out] out Int32 @params) { unsafe { @@ -28601,14 +29531,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetUniformv(UInt32 program, Int32 location, [Out] UInt32* @params) + unsafe void GetUniform(UInt32 program, Int32 location, [Out] UInt32* @params) { unsafe { Delegates.glGetUniformuivEXT((UInt32)program, (Int32)location, (UInt32*)@params); } } [System.CLSCompliant(false)] public static - unsafe void GetUniformv(Int32 program, Int32 location, [Out] Int32* @params) + unsafe void GetUniform(Int32 program, Int32 location, [Out] Int32* @params) { unsafe { @@ -28618,7 +29548,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetUniformv(UInt32 program, Int32 location, [Out] UInt32[] @params) + void GetUniform(UInt32 program, Int32 location, [Out] UInt32[] @params) { unsafe { @@ -28630,7 +29560,7 @@ namespace OpenTK.OpenGL } public static - void GetUniformv(Int32 program, Int32 location, [Out] Int32[] @params) + void GetUniform(Int32 program, Int32 location, [Out] Int32[] @params) { unsafe { @@ -28643,7 +29573,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetUniformv(UInt32 program, Int32 location, [Out] out UInt32 @params) + void GetUniform(UInt32 program, Int32 location, [Out] out UInt32 @params) { unsafe { @@ -28656,7 +29586,7 @@ namespace OpenTK.OpenGL } public static - void GetUniformv(Int32 program, Int32 location, [Out] out Int32 @params) + void GetUniform(Int32 program, Int32 location, [Out] out Int32 @params) { unsafe { @@ -28815,14 +29745,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Uniform2uiv(Int32 location, Int32 count, UInt32* value) + unsafe void Uniform2v(Int32 location, Int32 count, UInt32* value) { unsafe { Delegates.glUniform2uivEXT((Int32)location, (Int32)count, (UInt32*)value); } } [System.CLSCompliant(false)] public static - unsafe void Uniform2uiv(Int32 location, Int32 count, Int32* value) + unsafe void Uniform2v(Int32 location, Int32 count, Int32* value) { unsafe { @@ -28832,7 +29762,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Uniform2uiv(Int32 location, Int32 count, UInt32[] value) + void Uniform2v(Int32 location, Int32 count, UInt32[] value) { unsafe { @@ -28844,7 +29774,7 @@ namespace OpenTK.OpenGL } public static - void Uniform2uiv(Int32 location, Int32 count, Int32[] value) + void Uniform2v(Int32 location, Int32 count, Int32[] value) { unsafe { @@ -28857,7 +29787,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Uniform2uiv(Int32 location, Int32 count, ref UInt32 value) + void Uniform2v(Int32 location, Int32 count, ref UInt32 value) { unsafe { @@ -28869,7 +29799,7 @@ namespace OpenTK.OpenGL } public static - void Uniform2uiv(Int32 location, Int32 count, ref Int32 value) + void Uniform2v(Int32 location, Int32 count, ref Int32 value) { unsafe { @@ -29015,7 +29945,7 @@ namespace OpenTK.OpenGL } public static - void DrawArraysInstanced(GL.Enums.BeginMode mode, Int32 start, Int32 count, Int32 primcount) + void DrawArraysInstance(GL.Enums.BeginMode mode, Int32 start, Int32 count, Int32 primcount) { Delegates.glDrawArraysInstancedEXT((GL.Enums.BeginMode)mode, (Int32)start, (Int32)count, (Int32)primcount); } @@ -29074,14 +30004,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetBooleanIndexev(GL.Enums.EXT_draw_buffers2 target, UInt32 index, [Out] GL.Enums.Boolean* data) + unsafe void GetBooleanIndexedv(GL.Enums.EXT_draw_buffers2 target, UInt32 index, [Out] GL.Enums.Boolean* data) { unsafe { Delegates.glGetBooleanIndexedvEXT((GL.Enums.EXT_draw_buffers2)target, (UInt32)index, (GL.Enums.Boolean*)data); } } [System.CLSCompliant(false)] public static - unsafe void GetBooleanIndexev(GL.Enums.EXT_draw_buffers2 target, Int32 index, [Out] GL.Enums.Boolean* data) + unsafe void GetBooleanIndexedv(GL.Enums.EXT_draw_buffers2 target, Int32 index, [Out] GL.Enums.Boolean* data) { unsafe { @@ -29091,14 +30021,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetIntegerIndexev(GL.Enums.EXT_draw_buffers2 target, UInt32 index, [Out] Int32* data) + unsafe void GetIntegerIndexedv(GL.Enums.EXT_draw_buffers2 target, UInt32 index, [Out] Int32* data) { unsafe { Delegates.glGetIntegerIndexedvEXT((GL.Enums.EXT_draw_buffers2)target, (UInt32)index, (Int32*)data); } } [System.CLSCompliant(false)] public static - unsafe void GetIntegerIndexev(GL.Enums.EXT_draw_buffers2 target, Int32 index, [Out] Int32* data) + unsafe void GetIntegerIndexedv(GL.Enums.EXT_draw_buffers2 target, Int32 index, [Out] Int32* data) { unsafe { @@ -29108,7 +30038,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetIntegerIndexev(GL.Enums.EXT_draw_buffers2 target, UInt32 index, [Out] Int32[] data) + void GetIntegerIndexedv(GL.Enums.EXT_draw_buffers2 target, UInt32 index, [Out] Int32[] data) { unsafe { @@ -29120,7 +30050,7 @@ namespace OpenTK.OpenGL } public static - void GetIntegerIndexev(GL.Enums.EXT_draw_buffers2 target, Int32 index, [Out] Int32[] data) + void GetIntegerIndexedv(GL.Enums.EXT_draw_buffers2 target, Int32 index, [Out] Int32[] data) { unsafe { @@ -29133,7 +30063,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetIntegerIndexev(GL.Enums.EXT_draw_buffers2 target, UInt32 index, [Out] out Int32 data) + void GetIntegerIndexedv(GL.Enums.EXT_draw_buffers2 target, UInt32 index, [Out] out Int32 data) { unsafe { @@ -29146,7 +30076,7 @@ namespace OpenTK.OpenGL } public static - void GetIntegerIndexev(GL.Enums.EXT_draw_buffers2 target, Int32 index, [Out] out Int32 data) + void GetIntegerIndexedv(GL.Enums.EXT_draw_buffers2 target, Int32 index, [Out] out Int32 data) { unsafe { @@ -29372,21 +30302,15 @@ namespace OpenTK.OpenGL } } - public static - void ClearColorIi(Int32 red, Int32 green, Int32 blue, Int32 alpha) - { - Delegates.glClearColorIiEXT((Int32)red, (Int32)green, (Int32)blue, (Int32)alpha); - } - [System.CLSCompliant(false)] public static - void ClearColorIui(UInt32 red, UInt32 green, UInt32 blue, UInt32 alpha) + void ClearColorI(UInt32 red, UInt32 green, UInt32 blue, UInt32 alpha) { Delegates.glClearColorIuiEXT((UInt32)red, (UInt32)green, (UInt32)blue, (UInt32)alpha); } public static - void ClearColorIui(Int32 red, Int32 green, Int32 blue, Int32 alpha) + void ClearColorI(Int32 red, Int32 green, Int32 blue, Int32 alpha) { Delegates.glClearColorIuiEXT((UInt32)red, (UInt32)green, (UInt32)blue, (UInt32)alpha); } @@ -29459,7 +30383,7 @@ namespace OpenTK.OpenGL } public static - void PixelTexGenParameteri(GL.Enums.PixelTexGenParameterNameSGIS pname, Int32 param) + void PixelTexGenParameter(GL.Enums.PixelTexGenParameterNameSGIS pname, Int32 param) { Delegates.glPixelTexGenParameteriSGIS((GL.Enums.PixelTexGenParameterNameSGIS)pname, (Int32)param); } @@ -29496,7 +30420,7 @@ namespace OpenTK.OpenGL } public static - void PixelTexGenParameterf(GL.Enums.PixelTexGenParameterNameSGIS pname, Single param) + void PixelTexGenParameter(GL.Enums.PixelTexGenParameterNameSGIS pname, Single param) { Delegates.glPixelTexGenParameterfSGIS((GL.Enums.PixelTexGenParameterNameSGIS)pname, (Single)param); } @@ -29781,7 +30705,7 @@ namespace OpenTK.OpenGL } public static - void PointParameterf(GL.Enums.SGIS_point_parameters pname, Single param) + void PointParameter(GL.Enums.SGIS_point_parameters pname, Single param) { Delegates.glPointParameterfSGIS((GL.Enums.SGIS_point_parameters)pname, (Single)param); } @@ -30079,7 +31003,7 @@ namespace OpenTK.OpenGL } public static - void SpriteParameterf(GL.Enums.SGIX_sprite pname, Single param) + void SpriteParameter(GL.Enums.SGIX_sprite pname, Single param) { Delegates.glSpriteParameterfSGIX((GL.Enums.SGIX_sprite)pname, (Single)param); } @@ -30116,7 +31040,7 @@ namespace OpenTK.OpenGL } public static - void SpriteParameteri(GL.Enums.SGIX_sprite pname, Int32 param) + void SpriteParameter(GL.Enums.SGIX_sprite pname, Int32 param) { Delegates.glSpriteParameteriSGIX((GL.Enums.SGIX_sprite)pname, (Int32)param); } @@ -30505,13 +31429,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ListParameterf(UInt32 list, GL.Enums.ListParameterName pname, Single param) + void ListParameter(UInt32 list, GL.Enums.ListParameterName pname, Single param) { Delegates.glListParameterfSGIX((UInt32)list, (GL.Enums.ListParameterName)pname, (Single)param); } public static - void ListParameterf(Int32 list, GL.Enums.ListParameterName pname, Single param) + void ListParameter(Int32 list, GL.Enums.ListParameterName pname, Single param) { Delegates.glListParameterfSGIX((UInt32)list, (GL.Enums.ListParameterName)pname, (Single)param); } @@ -30585,13 +31509,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ListParameteri(UInt32 list, GL.Enums.ListParameterName pname, Int32 param) + void ListParameter(UInt32 list, GL.Enums.ListParameterName pname, Int32 param) { Delegates.glListParameteriSGIX((UInt32)list, (GL.Enums.ListParameterName)pname, (Int32)param); } public static - void ListParameteri(Int32 list, GL.Enums.ListParameterName pname, Int32 param) + void ListParameter(Int32 list, GL.Enums.ListParameterName pname, Int32 param) { Delegates.glListParameteriSGIX((UInt32)list, (GL.Enums.ListParameterName)pname, (Int32)param); } @@ -30670,7 +31594,7 @@ namespace OpenTK.OpenGL } public static - void FragmentLightf(GL.Enums.SGIX_fragment_lighting light, GL.Enums.SGIX_fragment_lighting pname, Single param) + void FragmentLight(GL.Enums.SGIX_fragment_lighting light, GL.Enums.SGIX_fragment_lighting pname, Single param) { Delegates.glFragmentLightfSGIX((GL.Enums.SGIX_fragment_lighting)light, (GL.Enums.SGIX_fragment_lighting)pname, (Single)param); } @@ -30707,7 +31631,7 @@ namespace OpenTK.OpenGL } public static - void FragmentLighti(GL.Enums.SGIX_fragment_lighting light, GL.Enums.SGIX_fragment_lighting pname, Int32 param) + void FragmentLight(GL.Enums.SGIX_fragment_lighting light, GL.Enums.SGIX_fragment_lighting pname, Int32 param) { Delegates.glFragmentLightiSGIX((GL.Enums.SGIX_fragment_lighting)light, (GL.Enums.SGIX_fragment_lighting)pname, (Int32)param); } @@ -30744,7 +31668,7 @@ namespace OpenTK.OpenGL } public static - void FragmentLightModelf(GL.Enums.FragmentLightModelParameterSGIX pname, Single param) + void FragmentLightModel(GL.Enums.FragmentLightModelParameterSGIX pname, Single param) { Delegates.glFragmentLightModelfSGIX((GL.Enums.FragmentLightModelParameterSGIX)pname, (Single)param); } @@ -30781,7 +31705,7 @@ namespace OpenTK.OpenGL } public static - void FragmentLightModeli(GL.Enums.FragmentLightModelParameterSGIX pname, Int32 param) + void FragmentLightModel(GL.Enums.FragmentLightModelParameterSGIX pname, Int32 param) { Delegates.glFragmentLightModeliSGIX((GL.Enums.FragmentLightModelParameterSGIX)pname, (Int32)param); } @@ -30818,7 +31742,7 @@ namespace OpenTK.OpenGL } public static - void FragmentMaterialf(GL.Enums.MaterialFace face, GL.Enums.MaterialParameter pname, Single param) + void FragmentMaterial(GL.Enums.MaterialFace face, GL.Enums.MaterialParameter pname, Single param) { Delegates.glFragmentMaterialfSGIX((GL.Enums.MaterialFace)face, (GL.Enums.MaterialParameter)pname, (Single)param); } @@ -30855,7 +31779,7 @@ namespace OpenTK.OpenGL } public static - void FragmentMateriali(GL.Enums.MaterialFace face, GL.Enums.MaterialParameter pname, Int32 param) + void FragmentMaterial(GL.Enums.MaterialFace face, GL.Enums.MaterialParameter pname, Int32 param) { Delegates.glFragmentMaterialiSGIX((GL.Enums.MaterialFace)face, (GL.Enums.MaterialParameter)pname, (Int32)param); } @@ -31020,7 +31944,7 @@ namespace OpenTK.OpenGL } public static - void LightEnvi(GL.Enums.LightEnvParameterSGIX pname, Int32 param) + void LightEnv(GL.Enums.LightEnvParameterSGIX pname, Int32 param) { Delegates.glLightEnviSGIX((GL.Enums.LightEnvParameterSGIX)pname, (Int32)param); } @@ -31246,13 +32170,13 @@ namespace OpenTK.OpenGL public static partial class HP { public static - void ImageTransformParameteri(GL.Enums.HP_image_transform target, GL.Enums.HP_image_transform pname, Int32 param) + void ImageTransformParameter(GL.Enums.HP_image_transform target, GL.Enums.HP_image_transform pname, Int32 param) { Delegates.glImageTransformParameteriHP((GL.Enums.HP_image_transform)target, (GL.Enums.HP_image_transform)pname, (Int32)param); } public static - void ImageTransformParameterf(GL.Enums.HP_image_transform target, GL.Enums.HP_image_transform pname, Single param) + void ImageTransformParameter(GL.Enums.HP_image_transform target, GL.Enums.HP_image_transform pname, Single param) { Delegates.glImageTransformParameterfHP((GL.Enums.HP_image_transform)target, (GL.Enums.HP_image_transform)pname, (Single)param); } @@ -31505,13 +32429,7 @@ namespace OpenTK.OpenGL { [System.CLSCompliant(false)] public static - void GlobalAlphaFactorb(SByte factor) - { - Delegates.glGlobalAlphaFactorbSUN((SByte)factor); - } - - public static - void GlobalAlphaFactorb(Byte factor) + void GlobalAlphaFactor(SByte factor) { Delegates.glGlobalAlphaFactorbSUN((SByte)factor); } @@ -31523,83 +32441,77 @@ namespace OpenTK.OpenGL } public static - void GlobalAlphaFactori(Int32 factor) - { - Delegates.glGlobalAlphaFactoriSUN((Int32)factor); - } - - public static - void GlobalAlphaFactorf(Single factor) + void GlobalAlphaFactor(Single factor) { Delegates.glGlobalAlphaFactorfSUN((Single)factor); } public static - void GlobalAlphaFactord(Double factor) + void GlobalAlphaFactor(Double factor) { Delegates.glGlobalAlphaFactordSUN((Double)factor); } public static - void GlobalAlphaFactorub(Byte factor) + void GlobalAlphaFactor(Byte factor) { Delegates.glGlobalAlphaFactorubSUN((Byte)factor); } [System.CLSCompliant(false)] public static - void GlobalAlphaFactorus(UInt16 factor) + void GlobalAlphaFactor(UInt16 factor) { Delegates.glGlobalAlphaFactorusSUN((UInt16)factor); } public static - void GlobalAlphaFactorus(Int16 factor) + void GlobalAlphaFactor(Int16 factor) { Delegates.glGlobalAlphaFactorusSUN((UInt16)factor); } [System.CLSCompliant(false)] public static - void GlobalAlphaFactorui(UInt32 factor) + void GlobalAlphaFactor(UInt32 factor) { Delegates.glGlobalAlphaFactoruiSUN((UInt32)factor); } public static - void GlobalAlphaFactorui(Int32 factor) + void GlobalAlphaFactor(Int32 factor) { Delegates.glGlobalAlphaFactoruiSUN((UInt32)factor); } [System.CLSCompliant(false)] public static - void ReplacementCodeui(UInt32 code) + void ReplacementCode(UInt32 code) { Delegates.glReplacementCodeuiSUN((UInt32)code); } public static - void ReplacementCodeui(Int32 code) + void ReplacementCode(Int32 code) { Delegates.glReplacementCodeuiSUN((UInt32)code); } [System.CLSCompliant(false)] public static - void ReplacementCodeus(UInt16 code) + void ReplacementCode(UInt16 code) { Delegates.glReplacementCodeusSUN((UInt16)code); } public static - void ReplacementCodeus(Int16 code) + void ReplacementCode(Int16 code) { Delegates.glReplacementCodeusSUN((UInt16)code); } public static - void ReplacementCodeub(Byte code) + void ReplacementCode(Byte code) { Delegates.glReplacementCodeubSUN((Byte)code); } @@ -36339,14 +37251,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiVertex3(UInt32* rc, Single* v) + unsafe void ReplacementCodeuiVertex3v(UInt32* rc, Single* v) { unsafe { Delegates.glReplacementCodeuiVertex3fvSUN((UInt32*)rc, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiVertex3(Int32* rc, Single* v) + unsafe void ReplacementCodeuiVertex3v(Int32* rc, Single* v) { unsafe { @@ -36356,7 +37268,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiVertex3(UInt32* rc, Single[] v) + unsafe void ReplacementCodeuiVertex3v(UInt32* rc, Single[] v) { unsafe { @@ -36369,7 +37281,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiVertex3(Int32* rc, Single[] v) + unsafe void ReplacementCodeuiVertex3v(Int32* rc, Single[] v) { unsafe { @@ -36382,7 +37294,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiVertex3(UInt32* rc, ref Single v) + unsafe void ReplacementCodeuiVertex3v(UInt32* rc, ref Single v) { unsafe { @@ -36395,7 +37307,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiVertex3(Int32* rc, ref Single v) + unsafe void ReplacementCodeuiVertex3v(Int32* rc, ref Single v) { unsafe { @@ -36408,7 +37320,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiVertex3(UInt32[] rc, Single* v) + unsafe void ReplacementCodeuiVertex3v(UInt32[] rc, Single* v) { unsafe { @@ -36421,7 +37333,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiVertex3(Int32[] rc, Single* v) + unsafe void ReplacementCodeuiVertex3v(Int32[] rc, Single* v) { unsafe { @@ -36434,7 +37346,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiVertex3(UInt32[] rc, Single[] v) + void ReplacementCodeuiVertex3v(UInt32[] rc, Single[] v) { unsafe { @@ -36447,7 +37359,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiVertex3(Int32[] rc, Single[] v) + void ReplacementCodeuiVertex3v(Int32[] rc, Single[] v) { unsafe { @@ -36461,7 +37373,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiVertex3(UInt32[] rc, ref Single v) + void ReplacementCodeuiVertex3v(UInt32[] rc, ref Single v) { unsafe { @@ -36474,7 +37386,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiVertex3(Int32[] rc, ref Single v) + void ReplacementCodeuiVertex3v(Int32[] rc, ref Single v) { unsafe { @@ -36488,7 +37400,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiVertex3(ref UInt32 rc, Single* v) + unsafe void ReplacementCodeuiVertex3v(ref UInt32 rc, Single* v) { unsafe { @@ -36501,7 +37413,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiVertex3(ref Int32 rc, Single* v) + unsafe void ReplacementCodeuiVertex3v(ref Int32 rc, Single* v) { unsafe { @@ -36514,7 +37426,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiVertex3(ref UInt32 rc, Single[] v) + void ReplacementCodeuiVertex3v(ref UInt32 rc, Single[] v) { unsafe { @@ -36527,7 +37439,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiVertex3(ref Int32 rc, Single[] v) + void ReplacementCodeuiVertex3v(ref Int32 rc, Single[] v) { unsafe { @@ -36541,7 +37453,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiVertex3(ref UInt32 rc, ref Single v) + void ReplacementCodeuiVertex3v(ref UInt32 rc, ref Single v) { unsafe { @@ -36554,7 +37466,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiVertex3(ref Int32 rc, ref Single v) + void ReplacementCodeuiVertex3v(ref Int32 rc, ref Single v) { unsafe { @@ -36581,14 +37493,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3(UInt32* rc, Byte* c, Single* v) + unsafe void ReplacementCodeuiColor4ubVertex3v(UInt32* rc, Byte* c, Single* v) { unsafe { Delegates.glReplacementCodeuiColor4ubVertex3fvSUN((UInt32*)rc, (Byte*)c, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3(Int32* rc, Byte* c, Single* v) + unsafe void ReplacementCodeuiColor4ubVertex3v(Int32* rc, Byte* c, Single* v) { unsafe { @@ -36598,7 +37510,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3(UInt32* rc, Byte* c, Single[] v) + unsafe void ReplacementCodeuiColor4ubVertex3v(UInt32* rc, Byte* c, Single[] v) { unsafe { @@ -36611,7 +37523,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3(Int32* rc, Byte* c, Single[] v) + unsafe void ReplacementCodeuiColor4ubVertex3v(Int32* rc, Byte* c, Single[] v) { unsafe { @@ -36624,7 +37536,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3(UInt32* rc, Byte* c, ref Single v) + unsafe void ReplacementCodeuiColor4ubVertex3v(UInt32* rc, Byte* c, ref Single v) { unsafe { @@ -36637,7 +37549,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3(Int32* rc, Byte* c, ref Single v) + unsafe void ReplacementCodeuiColor4ubVertex3v(Int32* rc, Byte* c, ref Single v) { unsafe { @@ -36650,7 +37562,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3(UInt32* rc, Byte[] c, Single* v) + unsafe void ReplacementCodeuiColor4ubVertex3v(UInt32* rc, Byte[] c, Single* v) { unsafe { @@ -36663,7 +37575,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3(Int32* rc, Byte[] c, Single* v) + unsafe void ReplacementCodeuiColor4ubVertex3v(Int32* rc, Byte[] c, Single* v) { unsafe { @@ -36676,7 +37588,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3(UInt32* rc, Byte[] c, Single[] v) + unsafe void ReplacementCodeuiColor4ubVertex3v(UInt32* rc, Byte[] c, Single[] v) { unsafe { @@ -36690,7 +37602,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3(Int32* rc, Byte[] c, Single[] v) + unsafe void ReplacementCodeuiColor4ubVertex3v(Int32* rc, Byte[] c, Single[] v) { unsafe { @@ -36704,7 +37616,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3(UInt32* rc, Byte[] c, ref Single v) + unsafe void ReplacementCodeuiColor4ubVertex3v(UInt32* rc, Byte[] c, ref Single v) { unsafe { @@ -36718,7 +37630,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3(Int32* rc, Byte[] c, ref Single v) + unsafe void ReplacementCodeuiColor4ubVertex3v(Int32* rc, Byte[] c, ref Single v) { unsafe { @@ -36732,7 +37644,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3(UInt32* rc, ref Byte c, Single* v) + unsafe void ReplacementCodeuiColor4ubVertex3v(UInt32* rc, ref Byte c, Single* v) { unsafe { @@ -36745,7 +37657,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3(Int32* rc, ref Byte c, Single* v) + unsafe void ReplacementCodeuiColor4ubVertex3v(Int32* rc, ref Byte c, Single* v) { unsafe { @@ -36758,7 +37670,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3(UInt32* rc, ref Byte c, Single[] v) + unsafe void ReplacementCodeuiColor4ubVertex3v(UInt32* rc, ref Byte c, Single[] v) { unsafe { @@ -36772,7 +37684,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3(Int32* rc, ref Byte c, Single[] v) + unsafe void ReplacementCodeuiColor4ubVertex3v(Int32* rc, ref Byte c, Single[] v) { unsafe { @@ -36786,7 +37698,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3(UInt32* rc, ref Byte c, ref Single v) + unsafe void ReplacementCodeuiColor4ubVertex3v(UInt32* rc, ref Byte c, ref Single v) { unsafe { @@ -36800,7 +37712,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3(Int32* rc, ref Byte c, ref Single v) + unsafe void ReplacementCodeuiColor4ubVertex3v(Int32* rc, ref Byte c, ref Single v) { unsafe { @@ -36814,7 +37726,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3(UInt32[] rc, Byte* c, Single* v) + unsafe void ReplacementCodeuiColor4ubVertex3v(UInt32[] rc, Byte* c, Single* v) { unsafe { @@ -36827,7 +37739,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3(Int32[] rc, Byte* c, Single* v) + unsafe void ReplacementCodeuiColor4ubVertex3v(Int32[] rc, Byte* c, Single* v) { unsafe { @@ -36840,7 +37752,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3(UInt32[] rc, Byte* c, Single[] v) + unsafe void ReplacementCodeuiColor4ubVertex3v(UInt32[] rc, Byte* c, Single[] v) { unsafe { @@ -36854,7 +37766,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3(Int32[] rc, Byte* c, Single[] v) + unsafe void ReplacementCodeuiColor4ubVertex3v(Int32[] rc, Byte* c, Single[] v) { unsafe { @@ -36868,7 +37780,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3(UInt32[] rc, Byte* c, ref Single v) + unsafe void ReplacementCodeuiColor4ubVertex3v(UInt32[] rc, Byte* c, ref Single v) { unsafe { @@ -36882,7 +37794,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3(Int32[] rc, Byte* c, ref Single v) + unsafe void ReplacementCodeuiColor4ubVertex3v(Int32[] rc, Byte* c, ref Single v) { unsafe { @@ -36896,7 +37808,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3(UInt32[] rc, Byte[] c, Single* v) + unsafe void ReplacementCodeuiColor4ubVertex3v(UInt32[] rc, Byte[] c, Single* v) { unsafe { @@ -36910,7 +37822,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3(Int32[] rc, Byte[] c, Single* v) + unsafe void ReplacementCodeuiColor4ubVertex3v(Int32[] rc, Byte[] c, Single* v) { unsafe { @@ -36924,7 +37836,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4ubVertex3(UInt32[] rc, Byte[] c, Single[] v) + void ReplacementCodeuiColor4ubVertex3v(UInt32[] rc, Byte[] c, Single[] v) { unsafe { @@ -36938,7 +37850,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4ubVertex3(Int32[] rc, Byte[] c, Single[] v) + void ReplacementCodeuiColor4ubVertex3v(Int32[] rc, Byte[] c, Single[] v) { unsafe { @@ -36953,7 +37865,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4ubVertex3(UInt32[] rc, Byte[] c, ref Single v) + void ReplacementCodeuiColor4ubVertex3v(UInt32[] rc, Byte[] c, ref Single v) { unsafe { @@ -36967,7 +37879,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4ubVertex3(Int32[] rc, Byte[] c, ref Single v) + void ReplacementCodeuiColor4ubVertex3v(Int32[] rc, Byte[] c, ref Single v) { unsafe { @@ -36982,7 +37894,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3(UInt32[] rc, ref Byte c, Single* v) + unsafe void ReplacementCodeuiColor4ubVertex3v(UInt32[] rc, ref Byte c, Single* v) { unsafe { @@ -36996,7 +37908,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3(Int32[] rc, ref Byte c, Single* v) + unsafe void ReplacementCodeuiColor4ubVertex3v(Int32[] rc, ref Byte c, Single* v) { unsafe { @@ -37010,7 +37922,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4ubVertex3(UInt32[] rc, ref Byte c, Single[] v) + void ReplacementCodeuiColor4ubVertex3v(UInt32[] rc, ref Byte c, Single[] v) { unsafe { @@ -37024,7 +37936,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4ubVertex3(Int32[] rc, ref Byte c, Single[] v) + void ReplacementCodeuiColor4ubVertex3v(Int32[] rc, ref Byte c, Single[] v) { unsafe { @@ -37039,7 +37951,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4ubVertex3(UInt32[] rc, ref Byte c, ref Single v) + void ReplacementCodeuiColor4ubVertex3v(UInt32[] rc, ref Byte c, ref Single v) { unsafe { @@ -37053,7 +37965,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4ubVertex3(Int32[] rc, ref Byte c, ref Single v) + void ReplacementCodeuiColor4ubVertex3v(Int32[] rc, ref Byte c, ref Single v) { unsafe { @@ -37068,7 +37980,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3(ref UInt32 rc, Byte* c, Single* v) + unsafe void ReplacementCodeuiColor4ubVertex3v(ref UInt32 rc, Byte* c, Single* v) { unsafe { @@ -37081,7 +37993,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3(ref Int32 rc, Byte* c, Single* v) + unsafe void ReplacementCodeuiColor4ubVertex3v(ref Int32 rc, Byte* c, Single* v) { unsafe { @@ -37094,7 +38006,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3(ref UInt32 rc, Byte* c, Single[] v) + unsafe void ReplacementCodeuiColor4ubVertex3v(ref UInt32 rc, Byte* c, Single[] v) { unsafe { @@ -37108,7 +38020,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3(ref Int32 rc, Byte* c, Single[] v) + unsafe void ReplacementCodeuiColor4ubVertex3v(ref Int32 rc, Byte* c, Single[] v) { unsafe { @@ -37122,7 +38034,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3(ref UInt32 rc, Byte* c, ref Single v) + unsafe void ReplacementCodeuiColor4ubVertex3v(ref UInt32 rc, Byte* c, ref Single v) { unsafe { @@ -37136,7 +38048,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3(ref Int32 rc, Byte* c, ref Single v) + unsafe void ReplacementCodeuiColor4ubVertex3v(ref Int32 rc, Byte* c, ref Single v) { unsafe { @@ -37150,7 +38062,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3(ref UInt32 rc, Byte[] c, Single* v) + unsafe void ReplacementCodeuiColor4ubVertex3v(ref UInt32 rc, Byte[] c, Single* v) { unsafe { @@ -37164,7 +38076,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3(ref Int32 rc, Byte[] c, Single* v) + unsafe void ReplacementCodeuiColor4ubVertex3v(ref Int32 rc, Byte[] c, Single* v) { unsafe { @@ -37178,7 +38090,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4ubVertex3(ref UInt32 rc, Byte[] c, Single[] v) + void ReplacementCodeuiColor4ubVertex3v(ref UInt32 rc, Byte[] c, Single[] v) { unsafe { @@ -37192,7 +38104,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4ubVertex3(ref Int32 rc, Byte[] c, Single[] v) + void ReplacementCodeuiColor4ubVertex3v(ref Int32 rc, Byte[] c, Single[] v) { unsafe { @@ -37207,7 +38119,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4ubVertex3(ref UInt32 rc, Byte[] c, ref Single v) + void ReplacementCodeuiColor4ubVertex3v(ref UInt32 rc, Byte[] c, ref Single v) { unsafe { @@ -37221,7 +38133,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4ubVertex3(ref Int32 rc, Byte[] c, ref Single v) + void ReplacementCodeuiColor4ubVertex3v(ref Int32 rc, Byte[] c, ref Single v) { unsafe { @@ -37236,7 +38148,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3(ref UInt32 rc, ref Byte c, Single* v) + unsafe void ReplacementCodeuiColor4ubVertex3v(ref UInt32 rc, ref Byte c, Single* v) { unsafe { @@ -37250,7 +38162,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3(ref Int32 rc, ref Byte c, Single* v) + unsafe void ReplacementCodeuiColor4ubVertex3v(ref Int32 rc, ref Byte c, Single* v) { unsafe { @@ -37264,7 +38176,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4ubVertex3(ref UInt32 rc, ref Byte c, Single[] v) + void ReplacementCodeuiColor4ubVertex3v(ref UInt32 rc, ref Byte c, Single[] v) { unsafe { @@ -37278,7 +38190,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4ubVertex3(ref Int32 rc, ref Byte c, Single[] v) + void ReplacementCodeuiColor4ubVertex3v(ref Int32 rc, ref Byte c, Single[] v) { unsafe { @@ -37293,7 +38205,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4ubVertex3(ref UInt32 rc, ref Byte c, ref Single v) + void ReplacementCodeuiColor4ubVertex3v(ref UInt32 rc, ref Byte c, ref Single v) { unsafe { @@ -37307,7 +38219,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4ubVertex3(ref Int32 rc, ref Byte c, ref Single v) + void ReplacementCodeuiColor4ubVertex3v(ref Int32 rc, ref Byte c, ref Single v) { unsafe { @@ -37335,14 +38247,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3(UInt32* rc, Single* c, Single* v) + unsafe void ReplacementCodeuiColor3fVertex3v(UInt32* rc, Single* c, Single* v) { unsafe { Delegates.glReplacementCodeuiColor3fVertex3fvSUN((UInt32*)rc, (Single*)c, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3(Int32* rc, Single* c, Single* v) + unsafe void ReplacementCodeuiColor3fVertex3v(Int32* rc, Single* c, Single* v) { unsafe { @@ -37352,7 +38264,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3(UInt32* rc, Single* c, Single[] v) + unsafe void ReplacementCodeuiColor3fVertex3v(UInt32* rc, Single* c, Single[] v) { unsafe { @@ -37365,7 +38277,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3(Int32* rc, Single* c, Single[] v) + unsafe void ReplacementCodeuiColor3fVertex3v(Int32* rc, Single* c, Single[] v) { unsafe { @@ -37378,7 +38290,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3(UInt32* rc, Single* c, ref Single v) + unsafe void ReplacementCodeuiColor3fVertex3v(UInt32* rc, Single* c, ref Single v) { unsafe { @@ -37391,7 +38303,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3(Int32* rc, Single* c, ref Single v) + unsafe void ReplacementCodeuiColor3fVertex3v(Int32* rc, Single* c, ref Single v) { unsafe { @@ -37404,7 +38316,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3(UInt32* rc, Single[] c, Single* v) + unsafe void ReplacementCodeuiColor3fVertex3v(UInt32* rc, Single[] c, Single* v) { unsafe { @@ -37417,7 +38329,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3(Int32* rc, Single[] c, Single* v) + unsafe void ReplacementCodeuiColor3fVertex3v(Int32* rc, Single[] c, Single* v) { unsafe { @@ -37430,7 +38342,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3(UInt32* rc, Single[] c, Single[] v) + unsafe void ReplacementCodeuiColor3fVertex3v(UInt32* rc, Single[] c, Single[] v) { unsafe { @@ -37444,7 +38356,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3(Int32* rc, Single[] c, Single[] v) + unsafe void ReplacementCodeuiColor3fVertex3v(Int32* rc, Single[] c, Single[] v) { unsafe { @@ -37458,7 +38370,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3(UInt32* rc, Single[] c, ref Single v) + unsafe void ReplacementCodeuiColor3fVertex3v(UInt32* rc, Single[] c, ref Single v) { unsafe { @@ -37472,7 +38384,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3(Int32* rc, Single[] c, ref Single v) + unsafe void ReplacementCodeuiColor3fVertex3v(Int32* rc, Single[] c, ref Single v) { unsafe { @@ -37486,7 +38398,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3(UInt32* rc, ref Single c, Single* v) + unsafe void ReplacementCodeuiColor3fVertex3v(UInt32* rc, ref Single c, Single* v) { unsafe { @@ -37499,7 +38411,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3(Int32* rc, ref Single c, Single* v) + unsafe void ReplacementCodeuiColor3fVertex3v(Int32* rc, ref Single c, Single* v) { unsafe { @@ -37512,7 +38424,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3(UInt32* rc, ref Single c, Single[] v) + unsafe void ReplacementCodeuiColor3fVertex3v(UInt32* rc, ref Single c, Single[] v) { unsafe { @@ -37526,7 +38438,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3(Int32* rc, ref Single c, Single[] v) + unsafe void ReplacementCodeuiColor3fVertex3v(Int32* rc, ref Single c, Single[] v) { unsafe { @@ -37540,7 +38452,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3(UInt32* rc, ref Single c, ref Single v) + unsafe void ReplacementCodeuiColor3fVertex3v(UInt32* rc, ref Single c, ref Single v) { unsafe { @@ -37554,7 +38466,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3(Int32* rc, ref Single c, ref Single v) + unsafe void ReplacementCodeuiColor3fVertex3v(Int32* rc, ref Single c, ref Single v) { unsafe { @@ -37568,7 +38480,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3(UInt32[] rc, Single* c, Single* v) + unsafe void ReplacementCodeuiColor3fVertex3v(UInt32[] rc, Single* c, Single* v) { unsafe { @@ -37581,7 +38493,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3(Int32[] rc, Single* c, Single* v) + unsafe void ReplacementCodeuiColor3fVertex3v(Int32[] rc, Single* c, Single* v) { unsafe { @@ -37594,7 +38506,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3(UInt32[] rc, Single* c, Single[] v) + unsafe void ReplacementCodeuiColor3fVertex3v(UInt32[] rc, Single* c, Single[] v) { unsafe { @@ -37608,7 +38520,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3(Int32[] rc, Single* c, Single[] v) + unsafe void ReplacementCodeuiColor3fVertex3v(Int32[] rc, Single* c, Single[] v) { unsafe { @@ -37622,7 +38534,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3(UInt32[] rc, Single* c, ref Single v) + unsafe void ReplacementCodeuiColor3fVertex3v(UInt32[] rc, Single* c, ref Single v) { unsafe { @@ -37636,7 +38548,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3(Int32[] rc, Single* c, ref Single v) + unsafe void ReplacementCodeuiColor3fVertex3v(Int32[] rc, Single* c, ref Single v) { unsafe { @@ -37650,7 +38562,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3(UInt32[] rc, Single[] c, Single* v) + unsafe void ReplacementCodeuiColor3fVertex3v(UInt32[] rc, Single[] c, Single* v) { unsafe { @@ -37664,7 +38576,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3(Int32[] rc, Single[] c, Single* v) + unsafe void ReplacementCodeuiColor3fVertex3v(Int32[] rc, Single[] c, Single* v) { unsafe { @@ -37678,7 +38590,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor3fVertex3(UInt32[] rc, Single[] c, Single[] v) + void ReplacementCodeuiColor3fVertex3v(UInt32[] rc, Single[] c, Single[] v) { unsafe { @@ -37692,7 +38604,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor3fVertex3(Int32[] rc, Single[] c, Single[] v) + void ReplacementCodeuiColor3fVertex3v(Int32[] rc, Single[] c, Single[] v) { unsafe { @@ -37707,7 +38619,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor3fVertex3(UInt32[] rc, Single[] c, ref Single v) + void ReplacementCodeuiColor3fVertex3v(UInt32[] rc, Single[] c, ref Single v) { unsafe { @@ -37721,7 +38633,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor3fVertex3(Int32[] rc, Single[] c, ref Single v) + void ReplacementCodeuiColor3fVertex3v(Int32[] rc, Single[] c, ref Single v) { unsafe { @@ -37736,7 +38648,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3(UInt32[] rc, ref Single c, Single* v) + unsafe void ReplacementCodeuiColor3fVertex3v(UInt32[] rc, ref Single c, Single* v) { unsafe { @@ -37750,7 +38662,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3(Int32[] rc, ref Single c, Single* v) + unsafe void ReplacementCodeuiColor3fVertex3v(Int32[] rc, ref Single c, Single* v) { unsafe { @@ -37764,7 +38676,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor3fVertex3(UInt32[] rc, ref Single c, Single[] v) + void ReplacementCodeuiColor3fVertex3v(UInt32[] rc, ref Single c, Single[] v) { unsafe { @@ -37778,7 +38690,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor3fVertex3(Int32[] rc, ref Single c, Single[] v) + void ReplacementCodeuiColor3fVertex3v(Int32[] rc, ref Single c, Single[] v) { unsafe { @@ -37793,7 +38705,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor3fVertex3(UInt32[] rc, ref Single c, ref Single v) + void ReplacementCodeuiColor3fVertex3v(UInt32[] rc, ref Single c, ref Single v) { unsafe { @@ -37807,7 +38719,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor3fVertex3(Int32[] rc, ref Single c, ref Single v) + void ReplacementCodeuiColor3fVertex3v(Int32[] rc, ref Single c, ref Single v) { unsafe { @@ -37822,7 +38734,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3(ref UInt32 rc, Single* c, Single* v) + unsafe void ReplacementCodeuiColor3fVertex3v(ref UInt32 rc, Single* c, Single* v) { unsafe { @@ -37835,7 +38747,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3(ref Int32 rc, Single* c, Single* v) + unsafe void ReplacementCodeuiColor3fVertex3v(ref Int32 rc, Single* c, Single* v) { unsafe { @@ -37848,7 +38760,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3(ref UInt32 rc, Single* c, Single[] v) + unsafe void ReplacementCodeuiColor3fVertex3v(ref UInt32 rc, Single* c, Single[] v) { unsafe { @@ -37862,7 +38774,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3(ref Int32 rc, Single* c, Single[] v) + unsafe void ReplacementCodeuiColor3fVertex3v(ref Int32 rc, Single* c, Single[] v) { unsafe { @@ -37876,7 +38788,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3(ref UInt32 rc, Single* c, ref Single v) + unsafe void ReplacementCodeuiColor3fVertex3v(ref UInt32 rc, Single* c, ref Single v) { unsafe { @@ -37890,7 +38802,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3(ref Int32 rc, Single* c, ref Single v) + unsafe void ReplacementCodeuiColor3fVertex3v(ref Int32 rc, Single* c, ref Single v) { unsafe { @@ -37904,7 +38816,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3(ref UInt32 rc, Single[] c, Single* v) + unsafe void ReplacementCodeuiColor3fVertex3v(ref UInt32 rc, Single[] c, Single* v) { unsafe { @@ -37918,7 +38830,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3(ref Int32 rc, Single[] c, Single* v) + unsafe void ReplacementCodeuiColor3fVertex3v(ref Int32 rc, Single[] c, Single* v) { unsafe { @@ -37932,7 +38844,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor3fVertex3(ref UInt32 rc, Single[] c, Single[] v) + void ReplacementCodeuiColor3fVertex3v(ref UInt32 rc, Single[] c, Single[] v) { unsafe { @@ -37946,7 +38858,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor3fVertex3(ref Int32 rc, Single[] c, Single[] v) + void ReplacementCodeuiColor3fVertex3v(ref Int32 rc, Single[] c, Single[] v) { unsafe { @@ -37961,7 +38873,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor3fVertex3(ref UInt32 rc, Single[] c, ref Single v) + void ReplacementCodeuiColor3fVertex3v(ref UInt32 rc, Single[] c, ref Single v) { unsafe { @@ -37975,7 +38887,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor3fVertex3(ref Int32 rc, Single[] c, ref Single v) + void ReplacementCodeuiColor3fVertex3v(ref Int32 rc, Single[] c, ref Single v) { unsafe { @@ -37990,7 +38902,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3(ref UInt32 rc, ref Single c, Single* v) + unsafe void ReplacementCodeuiColor3fVertex3v(ref UInt32 rc, ref Single c, Single* v) { unsafe { @@ -38004,7 +38916,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3(ref Int32 rc, ref Single c, Single* v) + unsafe void ReplacementCodeuiColor3fVertex3v(ref Int32 rc, ref Single c, Single* v) { unsafe { @@ -38018,7 +38930,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor3fVertex3(ref UInt32 rc, ref Single c, Single[] v) + void ReplacementCodeuiColor3fVertex3v(ref UInt32 rc, ref Single c, Single[] v) { unsafe { @@ -38032,7 +38944,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor3fVertex3(ref Int32 rc, ref Single c, Single[] v) + void ReplacementCodeuiColor3fVertex3v(ref Int32 rc, ref Single c, Single[] v) { unsafe { @@ -38047,7 +38959,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor3fVertex3(ref UInt32 rc, ref Single c, ref Single v) + void ReplacementCodeuiColor3fVertex3v(ref UInt32 rc, ref Single c, ref Single v) { unsafe { @@ -38061,7 +38973,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor3fVertex3(ref Int32 rc, ref Single c, ref Single v) + void ReplacementCodeuiColor3fVertex3v(ref Int32 rc, ref Single c, ref Single v) { unsafe { @@ -38089,14 +39001,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3(UInt32* rc, Single* n, Single* v) + unsafe void ReplacementCodeuiNormal3fVertex3v(UInt32* rc, Single* n, Single* v) { unsafe { Delegates.glReplacementCodeuiNormal3fVertex3fvSUN((UInt32*)rc, (Single*)n, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3(Int32* rc, Single* n, Single* v) + unsafe void ReplacementCodeuiNormal3fVertex3v(Int32* rc, Single* n, Single* v) { unsafe { @@ -38106,7 +39018,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3(UInt32* rc, Single* n, Single[] v) + unsafe void ReplacementCodeuiNormal3fVertex3v(UInt32* rc, Single* n, Single[] v) { unsafe { @@ -38119,7 +39031,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3(Int32* rc, Single* n, Single[] v) + unsafe void ReplacementCodeuiNormal3fVertex3v(Int32* rc, Single* n, Single[] v) { unsafe { @@ -38132,7 +39044,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3(UInt32* rc, Single* n, ref Single v) + unsafe void ReplacementCodeuiNormal3fVertex3v(UInt32* rc, Single* n, ref Single v) { unsafe { @@ -38145,7 +39057,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3(Int32* rc, Single* n, ref Single v) + unsafe void ReplacementCodeuiNormal3fVertex3v(Int32* rc, Single* n, ref Single v) { unsafe { @@ -38158,7 +39070,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3(UInt32* rc, Single[] n, Single* v) + unsafe void ReplacementCodeuiNormal3fVertex3v(UInt32* rc, Single[] n, Single* v) { unsafe { @@ -38171,7 +39083,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3(Int32* rc, Single[] n, Single* v) + unsafe void ReplacementCodeuiNormal3fVertex3v(Int32* rc, Single[] n, Single* v) { unsafe { @@ -38184,7 +39096,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3(UInt32* rc, Single[] n, Single[] v) + unsafe void ReplacementCodeuiNormal3fVertex3v(UInt32* rc, Single[] n, Single[] v) { unsafe { @@ -38198,7 +39110,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3(Int32* rc, Single[] n, Single[] v) + unsafe void ReplacementCodeuiNormal3fVertex3v(Int32* rc, Single[] n, Single[] v) { unsafe { @@ -38212,7 +39124,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3(UInt32* rc, Single[] n, ref Single v) + unsafe void ReplacementCodeuiNormal3fVertex3v(UInt32* rc, Single[] n, ref Single v) { unsafe { @@ -38226,7 +39138,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3(Int32* rc, Single[] n, ref Single v) + unsafe void ReplacementCodeuiNormal3fVertex3v(Int32* rc, Single[] n, ref Single v) { unsafe { @@ -38240,7 +39152,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3(UInt32* rc, ref Single n, Single* v) + unsafe void ReplacementCodeuiNormal3fVertex3v(UInt32* rc, ref Single n, Single* v) { unsafe { @@ -38253,7 +39165,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3(Int32* rc, ref Single n, Single* v) + unsafe void ReplacementCodeuiNormal3fVertex3v(Int32* rc, ref Single n, Single* v) { unsafe { @@ -38266,7 +39178,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3(UInt32* rc, ref Single n, Single[] v) + unsafe void ReplacementCodeuiNormal3fVertex3v(UInt32* rc, ref Single n, Single[] v) { unsafe { @@ -38280,7 +39192,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3(Int32* rc, ref Single n, Single[] v) + unsafe void ReplacementCodeuiNormal3fVertex3v(Int32* rc, ref Single n, Single[] v) { unsafe { @@ -38294,7 +39206,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3(UInt32* rc, ref Single n, ref Single v) + unsafe void ReplacementCodeuiNormal3fVertex3v(UInt32* rc, ref Single n, ref Single v) { unsafe { @@ -38308,7 +39220,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3(Int32* rc, ref Single n, ref Single v) + unsafe void ReplacementCodeuiNormal3fVertex3v(Int32* rc, ref Single n, ref Single v) { unsafe { @@ -38322,7 +39234,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3(UInt32[] rc, Single* n, Single* v) + unsafe void ReplacementCodeuiNormal3fVertex3v(UInt32[] rc, Single* n, Single* v) { unsafe { @@ -38335,7 +39247,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3(Int32[] rc, Single* n, Single* v) + unsafe void ReplacementCodeuiNormal3fVertex3v(Int32[] rc, Single* n, Single* v) { unsafe { @@ -38348,7 +39260,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3(UInt32[] rc, Single* n, Single[] v) + unsafe void ReplacementCodeuiNormal3fVertex3v(UInt32[] rc, Single* n, Single[] v) { unsafe { @@ -38362,7 +39274,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3(Int32[] rc, Single* n, Single[] v) + unsafe void ReplacementCodeuiNormal3fVertex3v(Int32[] rc, Single* n, Single[] v) { unsafe { @@ -38376,7 +39288,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3(UInt32[] rc, Single* n, ref Single v) + unsafe void ReplacementCodeuiNormal3fVertex3v(UInt32[] rc, Single* n, ref Single v) { unsafe { @@ -38390,7 +39302,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3(Int32[] rc, Single* n, ref Single v) + unsafe void ReplacementCodeuiNormal3fVertex3v(Int32[] rc, Single* n, ref Single v) { unsafe { @@ -38404,7 +39316,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3(UInt32[] rc, Single[] n, Single* v) + unsafe void ReplacementCodeuiNormal3fVertex3v(UInt32[] rc, Single[] n, Single* v) { unsafe { @@ -38418,7 +39330,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3(Int32[] rc, Single[] n, Single* v) + unsafe void ReplacementCodeuiNormal3fVertex3v(Int32[] rc, Single[] n, Single* v) { unsafe { @@ -38432,7 +39344,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiNormal3fVertex3(UInt32[] rc, Single[] n, Single[] v) + void ReplacementCodeuiNormal3fVertex3v(UInt32[] rc, Single[] n, Single[] v) { unsafe { @@ -38446,7 +39358,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiNormal3fVertex3(Int32[] rc, Single[] n, Single[] v) + void ReplacementCodeuiNormal3fVertex3v(Int32[] rc, Single[] n, Single[] v) { unsafe { @@ -38461,7 +39373,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiNormal3fVertex3(UInt32[] rc, Single[] n, ref Single v) + void ReplacementCodeuiNormal3fVertex3v(UInt32[] rc, Single[] n, ref Single v) { unsafe { @@ -38475,7 +39387,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiNormal3fVertex3(Int32[] rc, Single[] n, ref Single v) + void ReplacementCodeuiNormal3fVertex3v(Int32[] rc, Single[] n, ref Single v) { unsafe { @@ -38490,7 +39402,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3(UInt32[] rc, ref Single n, Single* v) + unsafe void ReplacementCodeuiNormal3fVertex3v(UInt32[] rc, ref Single n, Single* v) { unsafe { @@ -38504,7 +39416,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3(Int32[] rc, ref Single n, Single* v) + unsafe void ReplacementCodeuiNormal3fVertex3v(Int32[] rc, ref Single n, Single* v) { unsafe { @@ -38518,7 +39430,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiNormal3fVertex3(UInt32[] rc, ref Single n, Single[] v) + void ReplacementCodeuiNormal3fVertex3v(UInt32[] rc, ref Single n, Single[] v) { unsafe { @@ -38532,7 +39444,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiNormal3fVertex3(Int32[] rc, ref Single n, Single[] v) + void ReplacementCodeuiNormal3fVertex3v(Int32[] rc, ref Single n, Single[] v) { unsafe { @@ -38547,7 +39459,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiNormal3fVertex3(UInt32[] rc, ref Single n, ref Single v) + void ReplacementCodeuiNormal3fVertex3v(UInt32[] rc, ref Single n, ref Single v) { unsafe { @@ -38561,7 +39473,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiNormal3fVertex3(Int32[] rc, ref Single n, ref Single v) + void ReplacementCodeuiNormal3fVertex3v(Int32[] rc, ref Single n, ref Single v) { unsafe { @@ -38576,7 +39488,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3(ref UInt32 rc, Single* n, Single* v) + unsafe void ReplacementCodeuiNormal3fVertex3v(ref UInt32 rc, Single* n, Single* v) { unsafe { @@ -38589,7 +39501,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3(ref Int32 rc, Single* n, Single* v) + unsafe void ReplacementCodeuiNormal3fVertex3v(ref Int32 rc, Single* n, Single* v) { unsafe { @@ -38602,7 +39514,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3(ref UInt32 rc, Single* n, Single[] v) + unsafe void ReplacementCodeuiNormal3fVertex3v(ref UInt32 rc, Single* n, Single[] v) { unsafe { @@ -38616,7 +39528,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3(ref Int32 rc, Single* n, Single[] v) + unsafe void ReplacementCodeuiNormal3fVertex3v(ref Int32 rc, Single* n, Single[] v) { unsafe { @@ -38630,7 +39542,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3(ref UInt32 rc, Single* n, ref Single v) + unsafe void ReplacementCodeuiNormal3fVertex3v(ref UInt32 rc, Single* n, ref Single v) { unsafe { @@ -38644,7 +39556,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3(ref Int32 rc, Single* n, ref Single v) + unsafe void ReplacementCodeuiNormal3fVertex3v(ref Int32 rc, Single* n, ref Single v) { unsafe { @@ -38658,7 +39570,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3(ref UInt32 rc, Single[] n, Single* v) + unsafe void ReplacementCodeuiNormal3fVertex3v(ref UInt32 rc, Single[] n, Single* v) { unsafe { @@ -38672,7 +39584,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3(ref Int32 rc, Single[] n, Single* v) + unsafe void ReplacementCodeuiNormal3fVertex3v(ref Int32 rc, Single[] n, Single* v) { unsafe { @@ -38686,7 +39598,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiNormal3fVertex3(ref UInt32 rc, Single[] n, Single[] v) + void ReplacementCodeuiNormal3fVertex3v(ref UInt32 rc, Single[] n, Single[] v) { unsafe { @@ -38700,7 +39612,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiNormal3fVertex3(ref Int32 rc, Single[] n, Single[] v) + void ReplacementCodeuiNormal3fVertex3v(ref Int32 rc, Single[] n, Single[] v) { unsafe { @@ -38715,7 +39627,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiNormal3fVertex3(ref UInt32 rc, Single[] n, ref Single v) + void ReplacementCodeuiNormal3fVertex3v(ref UInt32 rc, Single[] n, ref Single v) { unsafe { @@ -38729,7 +39641,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiNormal3fVertex3(ref Int32 rc, Single[] n, ref Single v) + void ReplacementCodeuiNormal3fVertex3v(ref Int32 rc, Single[] n, ref Single v) { unsafe { @@ -38744,7 +39656,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3(ref UInt32 rc, ref Single n, Single* v) + unsafe void ReplacementCodeuiNormal3fVertex3v(ref UInt32 rc, ref Single n, Single* v) { unsafe { @@ -38758,7 +39670,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3(ref Int32 rc, ref Single n, Single* v) + unsafe void ReplacementCodeuiNormal3fVertex3v(ref Int32 rc, ref Single n, Single* v) { unsafe { @@ -38772,7 +39684,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiNormal3fVertex3(ref UInt32 rc, ref Single n, Single[] v) + void ReplacementCodeuiNormal3fVertex3v(ref UInt32 rc, ref Single n, Single[] v) { unsafe { @@ -38786,7 +39698,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiNormal3fVertex3(ref Int32 rc, ref Single n, Single[] v) + void ReplacementCodeuiNormal3fVertex3v(ref Int32 rc, ref Single n, Single[] v) { unsafe { @@ -38801,7 +39713,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiNormal3fVertex3(ref UInt32 rc, ref Single n, ref Single v) + void ReplacementCodeuiNormal3fVertex3v(ref UInt32 rc, ref Single n, ref Single v) { unsafe { @@ -38815,7 +39727,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiNormal3fVertex3(ref Int32 rc, ref Single n, ref Single v) + void ReplacementCodeuiNormal3fVertex3v(ref Int32 rc, ref Single n, ref Single v) { unsafe { @@ -38843,14 +39755,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, Single* c, Single* n, Single* v) { unsafe { Delegates.glReplacementCodeuiColor4fNormal3fVertex3fvSUN((UInt32*)rc, (Single*)c, (Single*)n, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, Single* c, Single* n, Single* v) { unsafe { @@ -38860,7 +39772,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, Single* c, Single* n, Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, Single* c, Single* n, Single[] v) { unsafe { @@ -38873,7 +39785,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, Single* c, Single* n, Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, Single* c, Single* n, Single[] v) { unsafe { @@ -38886,7 +39798,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, Single* c, Single* n, ref Single v) { unsafe { @@ -38899,7 +39811,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, Single* c, Single* n, ref Single v) { unsafe { @@ -38912,7 +39824,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, Single* c, Single[] n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, Single* c, Single[] n, Single* v) { unsafe { @@ -38925,7 +39837,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, Single* c, Single[] n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, Single* c, Single[] n, Single* v) { unsafe { @@ -38938,7 +39850,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, Single* c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, Single* c, Single[] n, Single[] v) { unsafe { @@ -38952,7 +39864,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, Single* c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, Single* c, Single[] n, Single[] v) { unsafe { @@ -38966,7 +39878,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, Single* c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, Single* c, Single[] n, ref Single v) { unsafe { @@ -38980,7 +39892,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, Single* c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, Single* c, Single[] n, ref Single v) { unsafe { @@ -38994,7 +39906,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, Single* c, ref Single n, Single* v) { unsafe { @@ -39007,7 +39919,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, Single* c, ref Single n, Single* v) { unsafe { @@ -39020,7 +39932,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, Single* c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, Single* c, ref Single n, Single[] v) { unsafe { @@ -39034,7 +39946,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, Single* c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, Single* c, ref Single n, Single[] v) { unsafe { @@ -39048,7 +39960,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, Single* c, ref Single n, ref Single v) { unsafe { @@ -39062,7 +39974,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, Single* c, ref Single n, ref Single v) { unsafe { @@ -39076,7 +39988,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, Single[] c, Single* n, Single* v) { unsafe { @@ -39089,7 +40001,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, Single[] c, Single* n, Single* v) { unsafe { @@ -39102,7 +40014,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, Single[] c, Single* n, Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, Single[] c, Single* n, Single[] v) { unsafe { @@ -39116,7 +40028,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, Single[] c, Single* n, Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, Single[] c, Single* n, Single[] v) { unsafe { @@ -39130,7 +40042,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, Single[] c, Single* n, ref Single v) { unsafe { @@ -39144,7 +40056,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, Single[] c, Single* n, ref Single v) { unsafe { @@ -39158,7 +40070,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, Single[] c, Single[] n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, Single[] c, Single[] n, Single* v) { unsafe { @@ -39172,7 +40084,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, Single[] c, Single[] n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, Single[] c, Single[] n, Single* v) { unsafe { @@ -39186,7 +40098,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, Single[] c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, Single[] c, Single[] n, Single[] v) { unsafe { @@ -39201,7 +40113,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, Single[] c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, Single[] c, Single[] n, Single[] v) { unsafe { @@ -39216,7 +40128,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, Single[] c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, Single[] c, Single[] n, ref Single v) { unsafe { @@ -39231,7 +40143,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, Single[] c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, Single[] c, Single[] n, ref Single v) { unsafe { @@ -39246,7 +40158,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, Single[] c, ref Single n, Single* v) { unsafe { @@ -39260,7 +40172,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, Single[] c, ref Single n, Single* v) { unsafe { @@ -39274,7 +40186,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, Single[] c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, Single[] c, ref Single n, Single[] v) { unsafe { @@ -39289,7 +40201,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, Single[] c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, Single[] c, ref Single n, Single[] v) { unsafe { @@ -39304,7 +40216,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, Single[] c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, Single[] c, ref Single n, ref Single v) { unsafe { @@ -39319,7 +40231,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, Single[] c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, Single[] c, ref Single n, ref Single v) { unsafe { @@ -39334,7 +40246,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, ref Single c, Single* n, Single* v) { unsafe { @@ -39347,7 +40259,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, ref Single c, Single* n, Single* v) { unsafe { @@ -39360,7 +40272,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, ref Single c, Single* n, Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, ref Single c, Single* n, Single[] v) { unsafe { @@ -39374,7 +40286,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, ref Single c, Single* n, Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, ref Single c, Single* n, Single[] v) { unsafe { @@ -39388,7 +40300,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, ref Single c, Single* n, ref Single v) { unsafe { @@ -39402,7 +40314,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, ref Single c, Single* n, ref Single v) { unsafe { @@ -39416,7 +40328,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, ref Single c, Single[] n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, ref Single c, Single[] n, Single* v) { unsafe { @@ -39430,7 +40342,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, ref Single c, Single[] n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, ref Single c, Single[] n, Single* v) { unsafe { @@ -39444,7 +40356,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, ref Single c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, ref Single c, Single[] n, Single[] v) { unsafe { @@ -39459,7 +40371,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, ref Single c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, ref Single c, Single[] n, Single[] v) { unsafe { @@ -39474,7 +40386,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, ref Single c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, ref Single c, Single[] n, ref Single v) { unsafe { @@ -39489,7 +40401,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, ref Single c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, ref Single c, Single[] n, ref Single v) { unsafe { @@ -39504,7 +40416,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, ref Single c, ref Single n, Single* v) { unsafe { @@ -39518,7 +40430,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, ref Single c, ref Single n, Single* v) { unsafe { @@ -39532,7 +40444,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, ref Single c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, ref Single c, ref Single n, Single[] v) { unsafe { @@ -39547,7 +40459,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, ref Single c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, ref Single c, ref Single n, Single[] v) { unsafe { @@ -39562,7 +40474,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, ref Single c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -39577,7 +40489,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, ref Single c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -39592,7 +40504,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32[] rc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32[] rc, Single* c, Single* n, Single* v) { unsafe { @@ -39605,7 +40517,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32[] rc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32[] rc, Single* c, Single* n, Single* v) { unsafe { @@ -39618,7 +40530,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32[] rc, Single* c, Single* n, Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32[] rc, Single* c, Single* n, Single[] v) { unsafe { @@ -39632,7 +40544,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32[] rc, Single* c, Single* n, Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32[] rc, Single* c, Single* n, Single[] v) { unsafe { @@ -39646,7 +40558,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32[] rc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32[] rc, Single* c, Single* n, ref Single v) { unsafe { @@ -39660,7 +40572,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32[] rc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32[] rc, Single* c, Single* n, ref Single v) { unsafe { @@ -39674,7 +40586,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32[] rc, Single* c, Single[] n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32[] rc, Single* c, Single[] n, Single* v) { unsafe { @@ -39688,7 +40600,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32[] rc, Single* c, Single[] n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32[] rc, Single* c, Single[] n, Single* v) { unsafe { @@ -39702,7 +40614,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32[] rc, Single* c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32[] rc, Single* c, Single[] n, Single[] v) { unsafe { @@ -39717,7 +40629,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32[] rc, Single* c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32[] rc, Single* c, Single[] n, Single[] v) { unsafe { @@ -39732,7 +40644,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32[] rc, Single* c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32[] rc, Single* c, Single[] n, ref Single v) { unsafe { @@ -39747,7 +40659,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32[] rc, Single* c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32[] rc, Single* c, Single[] n, ref Single v) { unsafe { @@ -39762,7 +40674,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32[] rc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32[] rc, Single* c, ref Single n, Single* v) { unsafe { @@ -39776,7 +40688,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32[] rc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32[] rc, Single* c, ref Single n, Single* v) { unsafe { @@ -39790,7 +40702,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32[] rc, Single* c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32[] rc, Single* c, ref Single n, Single[] v) { unsafe { @@ -39805,7 +40717,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32[] rc, Single* c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32[] rc, Single* c, ref Single n, Single[] v) { unsafe { @@ -39820,7 +40732,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32[] rc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32[] rc, Single* c, ref Single n, ref Single v) { unsafe { @@ -39835,7 +40747,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32[] rc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32[] rc, Single* c, ref Single n, ref Single v) { unsafe { @@ -39850,7 +40762,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32[] rc, Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32[] rc, Single[] c, Single* n, Single* v) { unsafe { @@ -39864,7 +40776,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32[] rc, Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32[] rc, Single[] c, Single* n, Single* v) { unsafe { @@ -39878,7 +40790,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32[] rc, Single[] c, Single* n, Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32[] rc, Single[] c, Single* n, Single[] v) { unsafe { @@ -39893,7 +40805,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32[] rc, Single[] c, Single* n, Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32[] rc, Single[] c, Single* n, Single[] v) { unsafe { @@ -39908,7 +40820,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32[] rc, Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32[] rc, Single[] c, Single* n, ref Single v) { unsafe { @@ -39923,7 +40835,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32[] rc, Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32[] rc, Single[] c, Single* n, ref Single v) { unsafe { @@ -39938,7 +40850,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32[] rc, Single[] c, Single[] n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32[] rc, Single[] c, Single[] n, Single* v) { unsafe { @@ -39953,7 +40865,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32[] rc, Single[] c, Single[] n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32[] rc, Single[] c, Single[] n, Single* v) { unsafe { @@ -39968,7 +40880,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4fNormal3fVertex3(UInt32[] rc, Single[] c, Single[] n, Single[] v) + void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32[] rc, Single[] c, Single[] n, Single[] v) { unsafe { @@ -39983,7 +40895,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4fNormal3fVertex3(Int32[] rc, Single[] c, Single[] n, Single[] v) + void ReplacementCodeuiColor4fNormal3fVertex3v(Int32[] rc, Single[] c, Single[] n, Single[] v) { unsafe { @@ -39999,7 +40911,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4fNormal3fVertex3(UInt32[] rc, Single[] c, Single[] n, ref Single v) + void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32[] rc, Single[] c, Single[] n, ref Single v) { unsafe { @@ -40014,7 +40926,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4fNormal3fVertex3(Int32[] rc, Single[] c, Single[] n, ref Single v) + void ReplacementCodeuiColor4fNormal3fVertex3v(Int32[] rc, Single[] c, Single[] n, ref Single v) { unsafe { @@ -40030,7 +40942,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32[] rc, Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32[] rc, Single[] c, ref Single n, Single* v) { unsafe { @@ -40045,7 +40957,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32[] rc, Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32[] rc, Single[] c, ref Single n, Single* v) { unsafe { @@ -40060,7 +40972,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4fNormal3fVertex3(UInt32[] rc, Single[] c, ref Single n, Single[] v) + void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32[] rc, Single[] c, ref Single n, Single[] v) { unsafe { @@ -40075,7 +40987,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4fNormal3fVertex3(Int32[] rc, Single[] c, ref Single n, Single[] v) + void ReplacementCodeuiColor4fNormal3fVertex3v(Int32[] rc, Single[] c, ref Single n, Single[] v) { unsafe { @@ -40091,7 +41003,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4fNormal3fVertex3(UInt32[] rc, Single[] c, ref Single n, ref Single v) + void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32[] rc, Single[] c, ref Single n, ref Single v) { unsafe { @@ -40106,7 +41018,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4fNormal3fVertex3(Int32[] rc, Single[] c, ref Single n, ref Single v) + void ReplacementCodeuiColor4fNormal3fVertex3v(Int32[] rc, Single[] c, ref Single n, ref Single v) { unsafe { @@ -40122,7 +41034,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32[] rc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32[] rc, ref Single c, Single* n, Single* v) { unsafe { @@ -40136,7 +41048,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32[] rc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32[] rc, ref Single c, Single* n, Single* v) { unsafe { @@ -40150,7 +41062,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32[] rc, ref Single c, Single* n, Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32[] rc, ref Single c, Single* n, Single[] v) { unsafe { @@ -40165,7 +41077,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32[] rc, ref Single c, Single* n, Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32[] rc, ref Single c, Single* n, Single[] v) { unsafe { @@ -40180,7 +41092,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32[] rc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32[] rc, ref Single c, Single* n, ref Single v) { unsafe { @@ -40195,7 +41107,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32[] rc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32[] rc, ref Single c, Single* n, ref Single v) { unsafe { @@ -40210,7 +41122,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32[] rc, ref Single c, Single[] n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32[] rc, ref Single c, Single[] n, Single* v) { unsafe { @@ -40225,7 +41137,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32[] rc, ref Single c, Single[] n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32[] rc, ref Single c, Single[] n, Single* v) { unsafe { @@ -40240,7 +41152,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4fNormal3fVertex3(UInt32[] rc, ref Single c, Single[] n, Single[] v) + void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32[] rc, ref Single c, Single[] n, Single[] v) { unsafe { @@ -40255,7 +41167,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4fNormal3fVertex3(Int32[] rc, ref Single c, Single[] n, Single[] v) + void ReplacementCodeuiColor4fNormal3fVertex3v(Int32[] rc, ref Single c, Single[] n, Single[] v) { unsafe { @@ -40271,7 +41183,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4fNormal3fVertex3(UInt32[] rc, ref Single c, Single[] n, ref Single v) + void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32[] rc, ref Single c, Single[] n, ref Single v) { unsafe { @@ -40286,7 +41198,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4fNormal3fVertex3(Int32[] rc, ref Single c, Single[] n, ref Single v) + void ReplacementCodeuiColor4fNormal3fVertex3v(Int32[] rc, ref Single c, Single[] n, ref Single v) { unsafe { @@ -40302,7 +41214,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32[] rc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32[] rc, ref Single c, ref Single n, Single* v) { unsafe { @@ -40317,7 +41229,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32[] rc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32[] rc, ref Single c, ref Single n, Single* v) { unsafe { @@ -40332,7 +41244,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4fNormal3fVertex3(UInt32[] rc, ref Single c, ref Single n, Single[] v) + void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32[] rc, ref Single c, ref Single n, Single[] v) { unsafe { @@ -40347,7 +41259,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4fNormal3fVertex3(Int32[] rc, ref Single c, ref Single n, Single[] v) + void ReplacementCodeuiColor4fNormal3fVertex3v(Int32[] rc, ref Single c, ref Single n, Single[] v) { unsafe { @@ -40363,7 +41275,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4fNormal3fVertex3(UInt32[] rc, ref Single c, ref Single n, ref Single v) + void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32[] rc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -40378,7 +41290,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4fNormal3fVertex3(Int32[] rc, ref Single c, ref Single n, ref Single v) + void ReplacementCodeuiColor4fNormal3fVertex3v(Int32[] rc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -40394,7 +41306,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, Single* c, Single* n, Single* v) { unsafe { @@ -40407,7 +41319,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, Single* c, Single* n, Single* v) { unsafe { @@ -40420,7 +41332,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, Single* c, Single* n, Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, Single* c, Single* n, Single[] v) { unsafe { @@ -40434,7 +41346,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, Single* c, Single* n, Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, Single* c, Single* n, Single[] v) { unsafe { @@ -40448,7 +41360,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, Single* c, Single* n, ref Single v) { unsafe { @@ -40462,7 +41374,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, Single* c, Single* n, ref Single v) { unsafe { @@ -40476,7 +41388,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, Single* c, Single[] n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, Single* c, Single[] n, Single* v) { unsafe { @@ -40490,7 +41402,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, Single* c, Single[] n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, Single* c, Single[] n, Single* v) { unsafe { @@ -40504,7 +41416,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, Single* c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, Single* c, Single[] n, Single[] v) { unsafe { @@ -40519,7 +41431,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, Single* c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, Single* c, Single[] n, Single[] v) { unsafe { @@ -40534,7 +41446,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, Single* c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, Single* c, Single[] n, ref Single v) { unsafe { @@ -40549,7 +41461,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, Single* c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, Single* c, Single[] n, ref Single v) { unsafe { @@ -40564,7 +41476,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, Single* c, ref Single n, Single* v) { unsafe { @@ -40578,7 +41490,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, Single* c, ref Single n, Single* v) { unsafe { @@ -40592,7 +41504,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, Single* c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, Single* c, ref Single n, Single[] v) { unsafe { @@ -40607,7 +41519,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, Single* c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, Single* c, ref Single n, Single[] v) { unsafe { @@ -40622,7 +41534,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, Single* c, ref Single n, ref Single v) { unsafe { @@ -40637,7 +41549,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, Single* c, ref Single n, ref Single v) { unsafe { @@ -40652,7 +41564,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, Single[] c, Single* n, Single* v) { unsafe { @@ -40666,7 +41578,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, Single[] c, Single* n, Single* v) { unsafe { @@ -40680,7 +41592,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, Single[] c, Single* n, Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, Single[] c, Single* n, Single[] v) { unsafe { @@ -40695,7 +41607,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, Single[] c, Single* n, Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, Single[] c, Single* n, Single[] v) { unsafe { @@ -40710,7 +41622,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, Single[] c, Single* n, ref Single v) { unsafe { @@ -40725,7 +41637,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, Single[] c, Single* n, ref Single v) { unsafe { @@ -40740,7 +41652,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, Single[] c, Single[] n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, Single[] c, Single[] n, Single* v) { unsafe { @@ -40755,7 +41667,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, Single[] c, Single[] n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, Single[] c, Single[] n, Single* v) { unsafe { @@ -40770,7 +41682,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, Single[] c, Single[] n, Single[] v) + void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, Single[] c, Single[] n, Single[] v) { unsafe { @@ -40785,7 +41697,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, Single[] c, Single[] n, Single[] v) + void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, Single[] c, Single[] n, Single[] v) { unsafe { @@ -40801,7 +41713,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, Single[] c, Single[] n, ref Single v) + void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, Single[] c, Single[] n, ref Single v) { unsafe { @@ -40816,7 +41728,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, Single[] c, Single[] n, ref Single v) + void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, Single[] c, Single[] n, ref Single v) { unsafe { @@ -40832,7 +41744,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, Single[] c, ref Single n, Single* v) { unsafe { @@ -40847,7 +41759,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, Single[] c, ref Single n, Single* v) { unsafe { @@ -40862,7 +41774,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, Single[] c, ref Single n, Single[] v) + void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, Single[] c, ref Single n, Single[] v) { unsafe { @@ -40877,7 +41789,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, Single[] c, ref Single n, Single[] v) + void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, Single[] c, ref Single n, Single[] v) { unsafe { @@ -40893,7 +41805,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, Single[] c, ref Single n, ref Single v) + void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, Single[] c, ref Single n, ref Single v) { unsafe { @@ -40908,7 +41820,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, Single[] c, ref Single n, ref Single v) + void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, Single[] c, ref Single n, ref Single v) { unsafe { @@ -40924,7 +41836,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, ref Single c, Single* n, Single* v) { unsafe { @@ -40938,7 +41850,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, ref Single c, Single* n, Single* v) { unsafe { @@ -40952,7 +41864,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, ref Single c, Single* n, Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, ref Single c, Single* n, Single[] v) { unsafe { @@ -40967,7 +41879,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, ref Single c, Single* n, Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, ref Single c, Single* n, Single[] v) { unsafe { @@ -40982,7 +41894,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, ref Single c, Single* n, ref Single v) { unsafe { @@ -40997,7 +41909,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, ref Single c, Single* n, ref Single v) { unsafe { @@ -41012,7 +41924,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, ref Single c, Single[] n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, ref Single c, Single[] n, Single* v) { unsafe { @@ -41027,7 +41939,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, ref Single c, Single[] n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, ref Single c, Single[] n, Single* v) { unsafe { @@ -41042,7 +41954,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, ref Single c, Single[] n, Single[] v) + void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, ref Single c, Single[] n, Single[] v) { unsafe { @@ -41057,7 +41969,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, ref Single c, Single[] n, Single[] v) + void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, ref Single c, Single[] n, Single[] v) { unsafe { @@ -41073,7 +41985,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, ref Single c, Single[] n, ref Single v) + void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, ref Single c, Single[] n, ref Single v) { unsafe { @@ -41088,7 +42000,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, ref Single c, Single[] n, ref Single v) + void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, ref Single c, Single[] n, ref Single v) { unsafe { @@ -41104,7 +42016,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, ref Single c, ref Single n, Single* v) { unsafe { @@ -41119,7 +42031,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, ref Single c, ref Single n, Single* v) { unsafe { @@ -41134,7 +42046,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, ref Single c, ref Single n, Single[] v) + void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, ref Single c, ref Single n, Single[] v) { unsafe { @@ -41149,7 +42061,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, ref Single c, ref Single n, Single[] v) + void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, ref Single c, ref Single n, Single[] v) { unsafe { @@ -41165,7 +42077,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, ref Single c, ref Single n, ref Single v) + void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -41180,7 +42092,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, ref Single c, ref Single n, ref Single v) + void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -41209,14 +42121,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(UInt32* rc, Single* tc, Single* v) + unsafe void ReplacementCodeuiTexCoord2fVertex3v(UInt32* rc, Single* tc, Single* v) { unsafe { Delegates.glReplacementCodeuiTexCoord2fVertex3fvSUN((UInt32*)rc, (Single*)tc, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(Int32* rc, Single* tc, Single* v) + unsafe void ReplacementCodeuiTexCoord2fVertex3v(Int32* rc, Single* tc, Single* v) { unsafe { @@ -41226,7 +42138,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(UInt32* rc, Single* tc, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fVertex3v(UInt32* rc, Single* tc, Single[] v) { unsafe { @@ -41239,7 +42151,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(Int32* rc, Single* tc, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fVertex3v(Int32* rc, Single* tc, Single[] v) { unsafe { @@ -41252,7 +42164,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(UInt32* rc, Single* tc, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fVertex3v(UInt32* rc, Single* tc, ref Single v) { unsafe { @@ -41265,7 +42177,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(Int32* rc, Single* tc, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fVertex3v(Int32* rc, Single* tc, ref Single v) { unsafe { @@ -41278,7 +42190,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(UInt32* rc, Single[] tc, Single* v) + unsafe void ReplacementCodeuiTexCoord2fVertex3v(UInt32* rc, Single[] tc, Single* v) { unsafe { @@ -41291,7 +42203,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(Int32* rc, Single[] tc, Single* v) + unsafe void ReplacementCodeuiTexCoord2fVertex3v(Int32* rc, Single[] tc, Single* v) { unsafe { @@ -41304,7 +42216,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(UInt32* rc, Single[] tc, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fVertex3v(UInt32* rc, Single[] tc, Single[] v) { unsafe { @@ -41318,7 +42230,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(Int32* rc, Single[] tc, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fVertex3v(Int32* rc, Single[] tc, Single[] v) { unsafe { @@ -41332,7 +42244,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(UInt32* rc, Single[] tc, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fVertex3v(UInt32* rc, Single[] tc, ref Single v) { unsafe { @@ -41346,7 +42258,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(Int32* rc, Single[] tc, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fVertex3v(Int32* rc, Single[] tc, ref Single v) { unsafe { @@ -41360,7 +42272,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(UInt32* rc, ref Single tc, Single* v) + unsafe void ReplacementCodeuiTexCoord2fVertex3v(UInt32* rc, ref Single tc, Single* v) { unsafe { @@ -41373,7 +42285,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(Int32* rc, ref Single tc, Single* v) + unsafe void ReplacementCodeuiTexCoord2fVertex3v(Int32* rc, ref Single tc, Single* v) { unsafe { @@ -41386,7 +42298,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(UInt32* rc, ref Single tc, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fVertex3v(UInt32* rc, ref Single tc, Single[] v) { unsafe { @@ -41400,7 +42312,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(Int32* rc, ref Single tc, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fVertex3v(Int32* rc, ref Single tc, Single[] v) { unsafe { @@ -41414,7 +42326,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(UInt32* rc, ref Single tc, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fVertex3v(UInt32* rc, ref Single tc, ref Single v) { unsafe { @@ -41428,7 +42340,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(Int32* rc, ref Single tc, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fVertex3v(Int32* rc, ref Single tc, ref Single v) { unsafe { @@ -41442,7 +42354,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(UInt32[] rc, Single* tc, Single* v) + unsafe void ReplacementCodeuiTexCoord2fVertex3v(UInt32[] rc, Single* tc, Single* v) { unsafe { @@ -41455,7 +42367,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(Int32[] rc, Single* tc, Single* v) + unsafe void ReplacementCodeuiTexCoord2fVertex3v(Int32[] rc, Single* tc, Single* v) { unsafe { @@ -41468,7 +42380,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(UInt32[] rc, Single* tc, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fVertex3v(UInt32[] rc, Single* tc, Single[] v) { unsafe { @@ -41482,7 +42394,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(Int32[] rc, Single* tc, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fVertex3v(Int32[] rc, Single* tc, Single[] v) { unsafe { @@ -41496,7 +42408,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(UInt32[] rc, Single* tc, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fVertex3v(UInt32[] rc, Single* tc, ref Single v) { unsafe { @@ -41510,7 +42422,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(Int32[] rc, Single* tc, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fVertex3v(Int32[] rc, Single* tc, ref Single v) { unsafe { @@ -41524,7 +42436,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(UInt32[] rc, Single[] tc, Single* v) + unsafe void ReplacementCodeuiTexCoord2fVertex3v(UInt32[] rc, Single[] tc, Single* v) { unsafe { @@ -41538,7 +42450,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(Int32[] rc, Single[] tc, Single* v) + unsafe void ReplacementCodeuiTexCoord2fVertex3v(Int32[] rc, Single[] tc, Single* v) { unsafe { @@ -41552,7 +42464,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fVertex3(UInt32[] rc, Single[] tc, Single[] v) + void ReplacementCodeuiTexCoord2fVertex3v(UInt32[] rc, Single[] tc, Single[] v) { unsafe { @@ -41566,7 +42478,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fVertex3(Int32[] rc, Single[] tc, Single[] v) + void ReplacementCodeuiTexCoord2fVertex3v(Int32[] rc, Single[] tc, Single[] v) { unsafe { @@ -41581,7 +42493,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fVertex3(UInt32[] rc, Single[] tc, ref Single v) + void ReplacementCodeuiTexCoord2fVertex3v(UInt32[] rc, Single[] tc, ref Single v) { unsafe { @@ -41595,7 +42507,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fVertex3(Int32[] rc, Single[] tc, ref Single v) + void ReplacementCodeuiTexCoord2fVertex3v(Int32[] rc, Single[] tc, ref Single v) { unsafe { @@ -41610,7 +42522,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(UInt32[] rc, ref Single tc, Single* v) + unsafe void ReplacementCodeuiTexCoord2fVertex3v(UInt32[] rc, ref Single tc, Single* v) { unsafe { @@ -41624,7 +42536,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(Int32[] rc, ref Single tc, Single* v) + unsafe void ReplacementCodeuiTexCoord2fVertex3v(Int32[] rc, ref Single tc, Single* v) { unsafe { @@ -41638,7 +42550,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fVertex3(UInt32[] rc, ref Single tc, Single[] v) + void ReplacementCodeuiTexCoord2fVertex3v(UInt32[] rc, ref Single tc, Single[] v) { unsafe { @@ -41652,7 +42564,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fVertex3(Int32[] rc, ref Single tc, Single[] v) + void ReplacementCodeuiTexCoord2fVertex3v(Int32[] rc, ref Single tc, Single[] v) { unsafe { @@ -41667,7 +42579,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fVertex3(UInt32[] rc, ref Single tc, ref Single v) + void ReplacementCodeuiTexCoord2fVertex3v(UInt32[] rc, ref Single tc, ref Single v) { unsafe { @@ -41681,7 +42593,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fVertex3(Int32[] rc, ref Single tc, ref Single v) + void ReplacementCodeuiTexCoord2fVertex3v(Int32[] rc, ref Single tc, ref Single v) { unsafe { @@ -41696,7 +42608,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(ref UInt32 rc, Single* tc, Single* v) + unsafe void ReplacementCodeuiTexCoord2fVertex3v(ref UInt32 rc, Single* tc, Single* v) { unsafe { @@ -41709,7 +42621,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(ref Int32 rc, Single* tc, Single* v) + unsafe void ReplacementCodeuiTexCoord2fVertex3v(ref Int32 rc, Single* tc, Single* v) { unsafe { @@ -41722,7 +42634,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(ref UInt32 rc, Single* tc, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fVertex3v(ref UInt32 rc, Single* tc, Single[] v) { unsafe { @@ -41736,7 +42648,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(ref Int32 rc, Single* tc, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fVertex3v(ref Int32 rc, Single* tc, Single[] v) { unsafe { @@ -41750,7 +42662,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(ref UInt32 rc, Single* tc, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fVertex3v(ref UInt32 rc, Single* tc, ref Single v) { unsafe { @@ -41764,7 +42676,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(ref Int32 rc, Single* tc, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fVertex3v(ref Int32 rc, Single* tc, ref Single v) { unsafe { @@ -41778,7 +42690,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(ref UInt32 rc, Single[] tc, Single* v) + unsafe void ReplacementCodeuiTexCoord2fVertex3v(ref UInt32 rc, Single[] tc, Single* v) { unsafe { @@ -41792,7 +42704,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(ref Int32 rc, Single[] tc, Single* v) + unsafe void ReplacementCodeuiTexCoord2fVertex3v(ref Int32 rc, Single[] tc, Single* v) { unsafe { @@ -41806,7 +42718,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fVertex3(ref UInt32 rc, Single[] tc, Single[] v) + void ReplacementCodeuiTexCoord2fVertex3v(ref UInt32 rc, Single[] tc, Single[] v) { unsafe { @@ -41820,7 +42732,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fVertex3(ref Int32 rc, Single[] tc, Single[] v) + void ReplacementCodeuiTexCoord2fVertex3v(ref Int32 rc, Single[] tc, Single[] v) { unsafe { @@ -41835,7 +42747,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fVertex3(ref UInt32 rc, Single[] tc, ref Single v) + void ReplacementCodeuiTexCoord2fVertex3v(ref UInt32 rc, Single[] tc, ref Single v) { unsafe { @@ -41849,7 +42761,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fVertex3(ref Int32 rc, Single[] tc, ref Single v) + void ReplacementCodeuiTexCoord2fVertex3v(ref Int32 rc, Single[] tc, ref Single v) { unsafe { @@ -41864,7 +42776,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(ref UInt32 rc, ref Single tc, Single* v) + unsafe void ReplacementCodeuiTexCoord2fVertex3v(ref UInt32 rc, ref Single tc, Single* v) { unsafe { @@ -41878,7 +42790,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(ref Int32 rc, ref Single tc, Single* v) + unsafe void ReplacementCodeuiTexCoord2fVertex3v(ref Int32 rc, ref Single tc, Single* v) { unsafe { @@ -41892,7 +42804,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fVertex3(ref UInt32 rc, ref Single tc, Single[] v) + void ReplacementCodeuiTexCoord2fVertex3v(ref UInt32 rc, ref Single tc, Single[] v) { unsafe { @@ -41906,7 +42818,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fVertex3(ref Int32 rc, ref Single tc, Single[] v) + void ReplacementCodeuiTexCoord2fVertex3v(ref Int32 rc, ref Single tc, Single[] v) { unsafe { @@ -41921,7 +42833,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fVertex3(ref UInt32 rc, ref Single tc, ref Single v) + void ReplacementCodeuiTexCoord2fVertex3v(ref UInt32 rc, ref Single tc, ref Single v) { unsafe { @@ -41935,7 +42847,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fVertex3(ref Int32 rc, ref Single tc, ref Single v) + void ReplacementCodeuiTexCoord2fVertex3v(ref Int32 rc, ref Single tc, ref Single v) { unsafe { @@ -41963,14 +42875,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, Single* tc, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, Single* tc, Single* n, Single* v) { unsafe { Delegates.glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN((UInt32*)rc, (Single*)tc, (Single*)n, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, Single* tc, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, Single* tc, Single* n, Single* v) { unsafe { @@ -41980,7 +42892,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, Single* tc, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, Single* tc, Single* n, Single[] v) { unsafe { @@ -41993,7 +42905,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, Single* tc, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, Single* tc, Single* n, Single[] v) { unsafe { @@ -42006,7 +42918,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, Single* tc, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, Single* tc, Single* n, ref Single v) { unsafe { @@ -42019,7 +42931,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, Single* tc, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, Single* tc, Single* n, ref Single v) { unsafe { @@ -42032,7 +42944,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, Single* tc, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, Single* tc, Single[] n, Single* v) { unsafe { @@ -42045,7 +42957,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, Single* tc, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, Single* tc, Single[] n, Single* v) { unsafe { @@ -42058,7 +42970,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, Single* tc, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, Single* tc, Single[] n, Single[] v) { unsafe { @@ -42072,7 +42984,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, Single* tc, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, Single* tc, Single[] n, Single[] v) { unsafe { @@ -42086,7 +42998,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, Single* tc, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, Single* tc, Single[] n, ref Single v) { unsafe { @@ -42100,7 +43012,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, Single* tc, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, Single* tc, Single[] n, ref Single v) { unsafe { @@ -42114,7 +43026,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, Single* tc, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, Single* tc, ref Single n, Single* v) { unsafe { @@ -42127,7 +43039,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, Single* tc, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, Single* tc, ref Single n, Single* v) { unsafe { @@ -42140,7 +43052,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, Single* tc, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, Single* tc, ref Single n, Single[] v) { unsafe { @@ -42154,7 +43066,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, Single* tc, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, Single* tc, ref Single n, Single[] v) { unsafe { @@ -42168,7 +43080,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, Single* tc, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, Single* tc, ref Single n, ref Single v) { unsafe { @@ -42182,7 +43094,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, Single* tc, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, Single* tc, ref Single n, ref Single v) { unsafe { @@ -42196,7 +43108,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, Single[] tc, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, Single[] tc, Single* n, Single* v) { unsafe { @@ -42209,7 +43121,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, Single[] tc, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, Single[] tc, Single* n, Single* v) { unsafe { @@ -42222,7 +43134,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, Single[] tc, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, Single[] tc, Single* n, Single[] v) { unsafe { @@ -42236,7 +43148,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, Single[] tc, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, Single[] tc, Single* n, Single[] v) { unsafe { @@ -42250,7 +43162,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, Single[] tc, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, Single[] tc, Single* n, ref Single v) { unsafe { @@ -42264,7 +43176,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, Single[] tc, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, Single[] tc, Single* n, ref Single v) { unsafe { @@ -42278,7 +43190,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, Single[] tc, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, Single[] tc, Single[] n, Single* v) { unsafe { @@ -42292,7 +43204,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, Single[] tc, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, Single[] tc, Single[] n, Single* v) { unsafe { @@ -42306,7 +43218,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, Single[] tc, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, Single[] tc, Single[] n, Single[] v) { unsafe { @@ -42321,7 +43233,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, Single[] tc, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, Single[] tc, Single[] n, Single[] v) { unsafe { @@ -42336,7 +43248,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, Single[] tc, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, Single[] tc, Single[] n, ref Single v) { unsafe { @@ -42351,7 +43263,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, Single[] tc, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, Single[] tc, Single[] n, ref Single v) { unsafe { @@ -42366,7 +43278,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, Single[] tc, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, Single[] tc, ref Single n, Single* v) { unsafe { @@ -42380,7 +43292,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, Single[] tc, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, Single[] tc, ref Single n, Single* v) { unsafe { @@ -42394,7 +43306,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, Single[] tc, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, Single[] tc, ref Single n, Single[] v) { unsafe { @@ -42409,7 +43321,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, Single[] tc, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, Single[] tc, ref Single n, Single[] v) { unsafe { @@ -42424,7 +43336,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, Single[] tc, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, Single[] tc, ref Single n, ref Single v) { unsafe { @@ -42439,7 +43351,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, Single[] tc, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, Single[] tc, ref Single n, ref Single v) { unsafe { @@ -42454,7 +43366,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, ref Single tc, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, ref Single tc, Single* n, Single* v) { unsafe { @@ -42467,7 +43379,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, ref Single tc, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, ref Single tc, Single* n, Single* v) { unsafe { @@ -42480,7 +43392,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, ref Single tc, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, ref Single tc, Single* n, Single[] v) { unsafe { @@ -42494,7 +43406,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, ref Single tc, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, ref Single tc, Single* n, Single[] v) { unsafe { @@ -42508,7 +43420,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, ref Single tc, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, ref Single tc, Single* n, ref Single v) { unsafe { @@ -42522,7 +43434,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, ref Single tc, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, ref Single tc, Single* n, ref Single v) { unsafe { @@ -42536,7 +43448,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, ref Single tc, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, ref Single tc, Single[] n, Single* v) { unsafe { @@ -42550,7 +43462,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, ref Single tc, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, ref Single tc, Single[] n, Single* v) { unsafe { @@ -42564,7 +43476,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, ref Single tc, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, ref Single tc, Single[] n, Single[] v) { unsafe { @@ -42579,7 +43491,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, ref Single tc, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, ref Single tc, Single[] n, Single[] v) { unsafe { @@ -42594,7 +43506,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, ref Single tc, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, ref Single tc, Single[] n, ref Single v) { unsafe { @@ -42609,7 +43521,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, ref Single tc, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, ref Single tc, Single[] n, ref Single v) { unsafe { @@ -42624,7 +43536,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, ref Single tc, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, ref Single tc, ref Single n, Single* v) { unsafe { @@ -42638,7 +43550,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, ref Single tc, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, ref Single tc, ref Single n, Single* v) { unsafe { @@ -42652,7 +43564,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, ref Single tc, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, ref Single tc, ref Single n, Single[] v) { unsafe { @@ -42667,7 +43579,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, ref Single tc, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, ref Single tc, ref Single n, Single[] v) { unsafe { @@ -42682,7 +43594,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, ref Single tc, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, ref Single tc, ref Single n, ref Single v) { unsafe { @@ -42697,7 +43609,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, ref Single tc, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, ref Single tc, ref Single n, ref Single v) { unsafe { @@ -42712,7 +43624,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32[] rc, Single* tc, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32[] rc, Single* tc, Single* n, Single* v) { unsafe { @@ -42725,7 +43637,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32[] rc, Single* tc, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32[] rc, Single* tc, Single* n, Single* v) { unsafe { @@ -42738,7 +43650,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32[] rc, Single* tc, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32[] rc, Single* tc, Single* n, Single[] v) { unsafe { @@ -42752,7 +43664,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32[] rc, Single* tc, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32[] rc, Single* tc, Single* n, Single[] v) { unsafe { @@ -42766,7 +43678,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32[] rc, Single* tc, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32[] rc, Single* tc, Single* n, ref Single v) { unsafe { @@ -42780,7 +43692,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32[] rc, Single* tc, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32[] rc, Single* tc, Single* n, ref Single v) { unsafe { @@ -42794,7 +43706,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32[] rc, Single* tc, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32[] rc, Single* tc, Single[] n, Single* v) { unsafe { @@ -42808,7 +43720,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32[] rc, Single* tc, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32[] rc, Single* tc, Single[] n, Single* v) { unsafe { @@ -42822,7 +43734,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32[] rc, Single* tc, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32[] rc, Single* tc, Single[] n, Single[] v) { unsafe { @@ -42837,7 +43749,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32[] rc, Single* tc, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32[] rc, Single* tc, Single[] n, Single[] v) { unsafe { @@ -42852,7 +43764,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32[] rc, Single* tc, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32[] rc, Single* tc, Single[] n, ref Single v) { unsafe { @@ -42867,7 +43779,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32[] rc, Single* tc, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32[] rc, Single* tc, Single[] n, ref Single v) { unsafe { @@ -42882,7 +43794,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32[] rc, Single* tc, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32[] rc, Single* tc, ref Single n, Single* v) { unsafe { @@ -42896,7 +43808,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32[] rc, Single* tc, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32[] rc, Single* tc, ref Single n, Single* v) { unsafe { @@ -42910,7 +43822,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32[] rc, Single* tc, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32[] rc, Single* tc, ref Single n, Single[] v) { unsafe { @@ -42925,7 +43837,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32[] rc, Single* tc, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32[] rc, Single* tc, ref Single n, Single[] v) { unsafe { @@ -42940,7 +43852,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32[] rc, Single* tc, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32[] rc, Single* tc, ref Single n, ref Single v) { unsafe { @@ -42955,7 +43867,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32[] rc, Single* tc, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32[] rc, Single* tc, ref Single n, ref Single v) { unsafe { @@ -42970,7 +43882,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32[] rc, Single[] tc, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32[] rc, Single[] tc, Single* n, Single* v) { unsafe { @@ -42984,7 +43896,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32[] rc, Single[] tc, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32[] rc, Single[] tc, Single* n, Single* v) { unsafe { @@ -42998,7 +43910,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32[] rc, Single[] tc, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32[] rc, Single[] tc, Single* n, Single[] v) { unsafe { @@ -43013,7 +43925,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32[] rc, Single[] tc, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32[] rc, Single[] tc, Single* n, Single[] v) { unsafe { @@ -43028,7 +43940,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32[] rc, Single[] tc, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32[] rc, Single[] tc, Single* n, ref Single v) { unsafe { @@ -43043,7 +43955,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32[] rc, Single[] tc, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32[] rc, Single[] tc, Single* n, ref Single v) { unsafe { @@ -43058,7 +43970,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32[] rc, Single[] tc, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32[] rc, Single[] tc, Single[] n, Single* v) { unsafe { @@ -43073,7 +43985,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32[] rc, Single[] tc, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32[] rc, Single[] tc, Single[] n, Single* v) { unsafe { @@ -43088,7 +44000,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32[] rc, Single[] tc, Single[] n, Single[] v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32[] rc, Single[] tc, Single[] n, Single[] v) { unsafe { @@ -43103,7 +44015,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32[] rc, Single[] tc, Single[] n, Single[] v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32[] rc, Single[] tc, Single[] n, Single[] v) { unsafe { @@ -43119,7 +44031,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32[] rc, Single[] tc, Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32[] rc, Single[] tc, Single[] n, ref Single v) { unsafe { @@ -43134,7 +44046,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32[] rc, Single[] tc, Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32[] rc, Single[] tc, Single[] n, ref Single v) { unsafe { @@ -43150,7 +44062,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32[] rc, Single[] tc, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32[] rc, Single[] tc, ref Single n, Single* v) { unsafe { @@ -43165,7 +44077,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32[] rc, Single[] tc, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32[] rc, Single[] tc, ref Single n, Single* v) { unsafe { @@ -43180,7 +44092,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32[] rc, Single[] tc, ref Single n, Single[] v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32[] rc, Single[] tc, ref Single n, Single[] v) { unsafe { @@ -43195,7 +44107,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32[] rc, Single[] tc, ref Single n, Single[] v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32[] rc, Single[] tc, ref Single n, Single[] v) { unsafe { @@ -43211,7 +44123,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32[] rc, Single[] tc, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32[] rc, Single[] tc, ref Single n, ref Single v) { unsafe { @@ -43226,7 +44138,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32[] rc, Single[] tc, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32[] rc, Single[] tc, ref Single n, ref Single v) { unsafe { @@ -43242,7 +44154,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32[] rc, ref Single tc, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32[] rc, ref Single tc, Single* n, Single* v) { unsafe { @@ -43256,7 +44168,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32[] rc, ref Single tc, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32[] rc, ref Single tc, Single* n, Single* v) { unsafe { @@ -43270,7 +44182,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32[] rc, ref Single tc, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32[] rc, ref Single tc, Single* n, Single[] v) { unsafe { @@ -43285,7 +44197,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32[] rc, ref Single tc, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32[] rc, ref Single tc, Single* n, Single[] v) { unsafe { @@ -43300,7 +44212,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32[] rc, ref Single tc, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32[] rc, ref Single tc, Single* n, ref Single v) { unsafe { @@ -43315,7 +44227,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32[] rc, ref Single tc, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32[] rc, ref Single tc, Single* n, ref Single v) { unsafe { @@ -43330,7 +44242,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32[] rc, ref Single tc, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32[] rc, ref Single tc, Single[] n, Single* v) { unsafe { @@ -43345,7 +44257,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32[] rc, ref Single tc, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32[] rc, ref Single tc, Single[] n, Single* v) { unsafe { @@ -43360,7 +44272,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32[] rc, ref Single tc, Single[] n, Single[] v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32[] rc, ref Single tc, Single[] n, Single[] v) { unsafe { @@ -43375,7 +44287,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32[] rc, ref Single tc, Single[] n, Single[] v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32[] rc, ref Single tc, Single[] n, Single[] v) { unsafe { @@ -43391,7 +44303,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32[] rc, ref Single tc, Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32[] rc, ref Single tc, Single[] n, ref Single v) { unsafe { @@ -43406,7 +44318,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32[] rc, ref Single tc, Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32[] rc, ref Single tc, Single[] n, ref Single v) { unsafe { @@ -43422,7 +44334,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32[] rc, ref Single tc, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32[] rc, ref Single tc, ref Single n, Single* v) { unsafe { @@ -43437,7 +44349,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32[] rc, ref Single tc, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32[] rc, ref Single tc, ref Single n, Single* v) { unsafe { @@ -43452,7 +44364,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32[] rc, ref Single tc, ref Single n, Single[] v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32[] rc, ref Single tc, ref Single n, Single[] v) { unsafe { @@ -43467,7 +44379,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32[] rc, ref Single tc, ref Single n, Single[] v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32[] rc, ref Single tc, ref Single n, Single[] v) { unsafe { @@ -43483,7 +44395,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32[] rc, ref Single tc, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32[] rc, ref Single tc, ref Single n, ref Single v) { unsafe { @@ -43498,7 +44410,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32[] rc, ref Single tc, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32[] rc, ref Single tc, ref Single n, ref Single v) { unsafe { @@ -43514,7 +44426,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, Single* tc, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, Single* tc, Single* n, Single* v) { unsafe { @@ -43527,7 +44439,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, Single* tc, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, Single* tc, Single* n, Single* v) { unsafe { @@ -43540,7 +44452,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, Single* tc, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, Single* tc, Single* n, Single[] v) { unsafe { @@ -43554,7 +44466,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, Single* tc, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, Single* tc, Single* n, Single[] v) { unsafe { @@ -43568,7 +44480,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, Single* tc, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, Single* tc, Single* n, ref Single v) { unsafe { @@ -43582,7 +44494,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, Single* tc, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, Single* tc, Single* n, ref Single v) { unsafe { @@ -43596,7 +44508,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, Single* tc, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, Single* tc, Single[] n, Single* v) { unsafe { @@ -43610,7 +44522,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, Single* tc, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, Single* tc, Single[] n, Single* v) { unsafe { @@ -43624,7 +44536,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, Single* tc, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, Single* tc, Single[] n, Single[] v) { unsafe { @@ -43639,7 +44551,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, Single* tc, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, Single* tc, Single[] n, Single[] v) { unsafe { @@ -43654,7 +44566,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, Single* tc, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, Single* tc, Single[] n, ref Single v) { unsafe { @@ -43669,7 +44581,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, Single* tc, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, Single* tc, Single[] n, ref Single v) { unsafe { @@ -43684,7 +44596,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, Single* tc, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, Single* tc, ref Single n, Single* v) { unsafe { @@ -43698,7 +44610,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, Single* tc, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, Single* tc, ref Single n, Single* v) { unsafe { @@ -43712,7 +44624,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, Single* tc, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, Single* tc, ref Single n, Single[] v) { unsafe { @@ -43727,7 +44639,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, Single* tc, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, Single* tc, ref Single n, Single[] v) { unsafe { @@ -43742,7 +44654,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, Single* tc, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, Single* tc, ref Single n, ref Single v) { unsafe { @@ -43757,7 +44669,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, Single* tc, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, Single* tc, ref Single n, ref Single v) { unsafe { @@ -43772,7 +44684,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, Single[] tc, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, Single[] tc, Single* n, Single* v) { unsafe { @@ -43786,7 +44698,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, Single[] tc, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, Single[] tc, Single* n, Single* v) { unsafe { @@ -43800,7 +44712,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, Single[] tc, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, Single[] tc, Single* n, Single[] v) { unsafe { @@ -43815,7 +44727,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, Single[] tc, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, Single[] tc, Single* n, Single[] v) { unsafe { @@ -43830,7 +44742,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, Single[] tc, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, Single[] tc, Single* n, ref Single v) { unsafe { @@ -43845,7 +44757,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, Single[] tc, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, Single[] tc, Single* n, ref Single v) { unsafe { @@ -43860,7 +44772,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, Single[] tc, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, Single[] tc, Single[] n, Single* v) { unsafe { @@ -43875,7 +44787,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, Single[] tc, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, Single[] tc, Single[] n, Single* v) { unsafe { @@ -43890,7 +44802,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, Single[] tc, Single[] n, Single[] v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, Single[] tc, Single[] n, Single[] v) { unsafe { @@ -43905,7 +44817,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, Single[] tc, Single[] n, Single[] v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, Single[] tc, Single[] n, Single[] v) { unsafe { @@ -43921,7 +44833,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, Single[] tc, Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, Single[] tc, Single[] n, ref Single v) { unsafe { @@ -43936,7 +44848,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, Single[] tc, Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, Single[] tc, Single[] n, ref Single v) { unsafe { @@ -43952,7 +44864,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, Single[] tc, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, Single[] tc, ref Single n, Single* v) { unsafe { @@ -43967,7 +44879,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, Single[] tc, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, Single[] tc, ref Single n, Single* v) { unsafe { @@ -43982,7 +44894,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, Single[] tc, ref Single n, Single[] v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, Single[] tc, ref Single n, Single[] v) { unsafe { @@ -43997,7 +44909,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, Single[] tc, ref Single n, Single[] v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, Single[] tc, ref Single n, Single[] v) { unsafe { @@ -44013,7 +44925,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, Single[] tc, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, Single[] tc, ref Single n, ref Single v) { unsafe { @@ -44028,7 +44940,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, Single[] tc, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, Single[] tc, ref Single n, ref Single v) { unsafe { @@ -44044,7 +44956,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, ref Single tc, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, ref Single tc, Single* n, Single* v) { unsafe { @@ -44058,7 +44970,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, ref Single tc, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, ref Single tc, Single* n, Single* v) { unsafe { @@ -44072,7 +44984,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, ref Single tc, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, ref Single tc, Single* n, Single[] v) { unsafe { @@ -44087,7 +44999,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, ref Single tc, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, ref Single tc, Single* n, Single[] v) { unsafe { @@ -44102,7 +45014,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, ref Single tc, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, ref Single tc, Single* n, ref Single v) { unsafe { @@ -44117,7 +45029,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, ref Single tc, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, ref Single tc, Single* n, ref Single v) { unsafe { @@ -44132,7 +45044,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, ref Single tc, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, ref Single tc, Single[] n, Single* v) { unsafe { @@ -44147,7 +45059,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, ref Single tc, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, ref Single tc, Single[] n, Single* v) { unsafe { @@ -44162,7 +45074,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, ref Single tc, Single[] n, Single[] v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, ref Single tc, Single[] n, Single[] v) { unsafe { @@ -44177,7 +45089,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, ref Single tc, Single[] n, Single[] v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, ref Single tc, Single[] n, Single[] v) { unsafe { @@ -44193,7 +45105,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, ref Single tc, Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, ref Single tc, Single[] n, ref Single v) { unsafe { @@ -44208,7 +45120,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, ref Single tc, Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, ref Single tc, Single[] n, ref Single v) { unsafe { @@ -44224,7 +45136,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, ref Single tc, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, ref Single tc, ref Single n, Single* v) { unsafe { @@ -44239,7 +45151,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, ref Single tc, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, ref Single tc, ref Single n, Single* v) { unsafe { @@ -44254,7 +45166,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, ref Single tc, ref Single n, Single[] v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, ref Single tc, ref Single n, Single[] v) { unsafe { @@ -44269,7 +45181,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, ref Single tc, ref Single n, Single[] v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, ref Single tc, ref Single n, Single[] v) { unsafe { @@ -44285,7 +45197,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, ref Single tc, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, ref Single tc, ref Single n, ref Single v) { unsafe { @@ -44300,7 +45212,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, ref Single tc, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, ref Single tc, ref Single n, ref Single v) { unsafe { @@ -44329,14 +45241,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, Single* c, Single* n, Single* v) { unsafe { Delegates.glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN((UInt32*)rc, (Single*)tc, (Single*)c, (Single*)n, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, Single* c, Single* n, Single* v) { unsafe { @@ -44346,7 +45258,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, Single* c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, Single* c, Single* n, Single[] v) { unsafe { @@ -44359,7 +45271,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, Single* c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, Single* c, Single* n, Single[] v) { unsafe { @@ -44372,7 +45284,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, Single* c, Single* n, ref Single v) { unsafe { @@ -44385,7 +45297,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, Single* c, Single* n, ref Single v) { unsafe { @@ -44398,7 +45310,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, Single* c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, Single* c, Single[] n, Single* v) { unsafe { @@ -44411,7 +45323,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, Single* c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, Single* c, Single[] n, Single* v) { unsafe { @@ -44424,7 +45336,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, Single* c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, Single* c, Single[] n, Single[] v) { unsafe { @@ -44438,7 +45350,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, Single* c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, Single* c, Single[] n, Single[] v) { unsafe { @@ -44452,7 +45364,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, Single* c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, Single* c, Single[] n, ref Single v) { unsafe { @@ -44466,7 +45378,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, Single* c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, Single* c, Single[] n, ref Single v) { unsafe { @@ -44480,7 +45392,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, Single* c, ref Single n, Single* v) { unsafe { @@ -44493,7 +45405,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, Single* c, ref Single n, Single* v) { unsafe { @@ -44506,7 +45418,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, Single* c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, Single* c, ref Single n, Single[] v) { unsafe { @@ -44520,7 +45432,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, Single* c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, Single* c, ref Single n, Single[] v) { unsafe { @@ -44534,7 +45446,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, Single* c, ref Single n, ref Single v) { unsafe { @@ -44548,7 +45460,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, Single* c, ref Single n, ref Single v) { unsafe { @@ -44562,7 +45474,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, Single[] c, Single* n, Single* v) { unsafe { @@ -44575,7 +45487,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, Single[] c, Single* n, Single* v) { unsafe { @@ -44588,7 +45500,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, Single[] c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, Single[] c, Single* n, Single[] v) { unsafe { @@ -44602,7 +45514,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, Single[] c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, Single[] c, Single* n, Single[] v) { unsafe { @@ -44616,7 +45528,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, Single[] c, Single* n, ref Single v) { unsafe { @@ -44630,7 +45542,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, Single[] c, Single* n, ref Single v) { unsafe { @@ -44644,7 +45556,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, Single[] c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, Single[] c, Single[] n, Single* v) { unsafe { @@ -44658,7 +45570,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, Single[] c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, Single[] c, Single[] n, Single* v) { unsafe { @@ -44672,7 +45584,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, Single[] c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, Single[] c, Single[] n, Single[] v) { unsafe { @@ -44687,7 +45599,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, Single[] c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, Single[] c, Single[] n, Single[] v) { unsafe { @@ -44702,7 +45614,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, Single[] c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, Single[] c, Single[] n, ref Single v) { unsafe { @@ -44717,7 +45629,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, Single[] c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, Single[] c, Single[] n, ref Single v) { unsafe { @@ -44732,7 +45644,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, Single[] c, ref Single n, Single* v) { unsafe { @@ -44746,7 +45658,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, Single[] c, ref Single n, Single* v) { unsafe { @@ -44760,7 +45672,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, Single[] c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, Single[] c, ref Single n, Single[] v) { unsafe { @@ -44775,7 +45687,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, Single[] c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, Single[] c, ref Single n, Single[] v) { unsafe { @@ -44790,7 +45702,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, Single[] c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, Single[] c, ref Single n, ref Single v) { unsafe { @@ -44805,7 +45717,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, Single[] c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, Single[] c, ref Single n, ref Single v) { unsafe { @@ -44820,7 +45732,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, ref Single c, Single* n, Single* v) { unsafe { @@ -44833,7 +45745,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, ref Single c, Single* n, Single* v) { unsafe { @@ -44846,7 +45758,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, ref Single c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, ref Single c, Single* n, Single[] v) { unsafe { @@ -44860,7 +45772,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, ref Single c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, ref Single c, Single* n, Single[] v) { unsafe { @@ -44874,7 +45786,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, ref Single c, Single* n, ref Single v) { unsafe { @@ -44888,7 +45800,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, ref Single c, Single* n, ref Single v) { unsafe { @@ -44902,7 +45814,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, ref Single c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, ref Single c, Single[] n, Single* v) { unsafe { @@ -44916,7 +45828,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, ref Single c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, ref Single c, Single[] n, Single* v) { unsafe { @@ -44930,7 +45842,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, ref Single c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, ref Single c, Single[] n, Single[] v) { unsafe { @@ -44945,7 +45857,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, ref Single c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, ref Single c, Single[] n, Single[] v) { unsafe { @@ -44960,7 +45872,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, ref Single c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, ref Single c, Single[] n, ref Single v) { unsafe { @@ -44975,7 +45887,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, ref Single c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, ref Single c, Single[] n, ref Single v) { unsafe { @@ -44990,7 +45902,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, ref Single c, ref Single n, Single* v) { unsafe { @@ -45004,7 +45916,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, ref Single c, ref Single n, Single* v) { unsafe { @@ -45018,7 +45930,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, ref Single c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, ref Single c, ref Single n, Single[] v) { unsafe { @@ -45033,7 +45945,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, ref Single c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, ref Single c, ref Single n, Single[] v) { unsafe { @@ -45048,7 +45960,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, ref Single c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -45063,7 +45975,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, ref Single c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -45078,7 +45990,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single[] tc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single[] tc, Single* c, Single* n, Single* v) { unsafe { @@ -45091,7 +46003,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single[] tc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single[] tc, Single* c, Single* n, Single* v) { unsafe { @@ -45104,7 +46016,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single[] tc, Single* c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single[] tc, Single* c, Single* n, Single[] v) { unsafe { @@ -45118,7 +46030,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single[] tc, Single* c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single[] tc, Single* c, Single* n, Single[] v) { unsafe { @@ -45132,7 +46044,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single[] tc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single[] tc, Single* c, Single* n, ref Single v) { unsafe { @@ -45146,7 +46058,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single[] tc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single[] tc, Single* c, Single* n, ref Single v) { unsafe { @@ -45160,7 +46072,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single[] tc, Single* c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single[] tc, Single* c, Single[] n, Single* v) { unsafe { @@ -45174,7 +46086,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single[] tc, Single* c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single[] tc, Single* c, Single[] n, Single* v) { unsafe { @@ -45188,7 +46100,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single[] tc, Single* c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single[] tc, Single* c, Single[] n, Single[] v) { unsafe { @@ -45203,7 +46115,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single[] tc, Single* c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single[] tc, Single* c, Single[] n, Single[] v) { unsafe { @@ -45218,7 +46130,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single[] tc, Single* c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single[] tc, Single* c, Single[] n, ref Single v) { unsafe { @@ -45233,7 +46145,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single[] tc, Single* c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single[] tc, Single* c, Single[] n, ref Single v) { unsafe { @@ -45248,7 +46160,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single[] tc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single[] tc, Single* c, ref Single n, Single* v) { unsafe { @@ -45262,7 +46174,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single[] tc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single[] tc, Single* c, ref Single n, Single* v) { unsafe { @@ -45276,7 +46188,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single[] tc, Single* c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single[] tc, Single* c, ref Single n, Single[] v) { unsafe { @@ -45291,7 +46203,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single[] tc, Single* c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single[] tc, Single* c, ref Single n, Single[] v) { unsafe { @@ -45306,7 +46218,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single[] tc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single[] tc, Single* c, ref Single n, ref Single v) { unsafe { @@ -45321,7 +46233,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single[] tc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single[] tc, Single* c, ref Single n, ref Single v) { unsafe { @@ -45336,7 +46248,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single[] tc, Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single[] tc, Single[] c, Single* n, Single* v) { unsafe { @@ -45350,7 +46262,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single[] tc, Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single[] tc, Single[] c, Single* n, Single* v) { unsafe { @@ -45364,7 +46276,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single[] tc, Single[] c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single[] tc, Single[] c, Single* n, Single[] v) { unsafe { @@ -45379,7 +46291,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single[] tc, Single[] c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single[] tc, Single[] c, Single* n, Single[] v) { unsafe { @@ -45394,7 +46306,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single[] tc, Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single[] tc, Single[] c, Single* n, ref Single v) { unsafe { @@ -45409,7 +46321,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single[] tc, Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single[] tc, Single[] c, Single* n, ref Single v) { unsafe { @@ -45424,7 +46336,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single[] tc, Single[] c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single[] tc, Single[] c, Single[] n, Single* v) { unsafe { @@ -45439,7 +46351,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single[] tc, Single[] c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single[] tc, Single[] c, Single[] n, Single* v) { unsafe { @@ -45454,7 +46366,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single[] tc, Single[] c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single[] tc, Single[] c, Single[] n, Single[] v) { unsafe { @@ -45470,7 +46382,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single[] tc, Single[] c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single[] tc, Single[] c, Single[] n, Single[] v) { unsafe { @@ -45486,7 +46398,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single[] tc, Single[] c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single[] tc, Single[] c, Single[] n, ref Single v) { unsafe { @@ -45502,7 +46414,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single[] tc, Single[] c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single[] tc, Single[] c, Single[] n, ref Single v) { unsafe { @@ -45518,7 +46430,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single[] tc, Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single[] tc, Single[] c, ref Single n, Single* v) { unsafe { @@ -45533,7 +46445,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single[] tc, Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single[] tc, Single[] c, ref Single n, Single* v) { unsafe { @@ -45548,7 +46460,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single[] tc, Single[] c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single[] tc, Single[] c, ref Single n, Single[] v) { unsafe { @@ -45564,7 +46476,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single[] tc, Single[] c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single[] tc, Single[] c, ref Single n, Single[] v) { unsafe { @@ -45580,7 +46492,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single[] tc, Single[] c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single[] tc, Single[] c, ref Single n, ref Single v) { unsafe { @@ -45596,7 +46508,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single[] tc, Single[] c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single[] tc, Single[] c, ref Single n, ref Single v) { unsafe { @@ -45612,7 +46524,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single[] tc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single[] tc, ref Single c, Single* n, Single* v) { unsafe { @@ -45626,7 +46538,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single[] tc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single[] tc, ref Single c, Single* n, Single* v) { unsafe { @@ -45640,7 +46552,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single[] tc, ref Single c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single[] tc, ref Single c, Single* n, Single[] v) { unsafe { @@ -45655,7 +46567,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single[] tc, ref Single c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single[] tc, ref Single c, Single* n, Single[] v) { unsafe { @@ -45670,7 +46582,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single[] tc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single[] tc, ref Single c, Single* n, ref Single v) { unsafe { @@ -45685,7 +46597,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single[] tc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single[] tc, ref Single c, Single* n, ref Single v) { unsafe { @@ -45700,7 +46612,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single[] tc, ref Single c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single[] tc, ref Single c, Single[] n, Single* v) { unsafe { @@ -45715,7 +46627,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single[] tc, ref Single c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single[] tc, ref Single c, Single[] n, Single* v) { unsafe { @@ -45730,7 +46642,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single[] tc, ref Single c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single[] tc, ref Single c, Single[] n, Single[] v) { unsafe { @@ -45746,7 +46658,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single[] tc, ref Single c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single[] tc, ref Single c, Single[] n, Single[] v) { unsafe { @@ -45762,7 +46674,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single[] tc, ref Single c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single[] tc, ref Single c, Single[] n, ref Single v) { unsafe { @@ -45778,7 +46690,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single[] tc, ref Single c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single[] tc, ref Single c, Single[] n, ref Single v) { unsafe { @@ -45794,7 +46706,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single[] tc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single[] tc, ref Single c, ref Single n, Single* v) { unsafe { @@ -45809,7 +46721,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single[] tc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single[] tc, ref Single c, ref Single n, Single* v) { unsafe { @@ -45824,7 +46736,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single[] tc, ref Single c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single[] tc, ref Single c, ref Single n, Single[] v) { unsafe { @@ -45840,7 +46752,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single[] tc, ref Single c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single[] tc, ref Single c, ref Single n, Single[] v) { unsafe { @@ -45856,7 +46768,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single[] tc, ref Single c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single[] tc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -45872,7 +46784,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single[] tc, ref Single c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single[] tc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -45888,7 +46800,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, Single* c, Single* n, Single* v) { unsafe { @@ -45901,7 +46813,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, Single* c, Single* n, Single* v) { unsafe { @@ -45914,7 +46826,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, Single* c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, Single* c, Single* n, Single[] v) { unsafe { @@ -45928,7 +46840,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, Single* c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, Single* c, Single* n, Single[] v) { unsafe { @@ -45942,7 +46854,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, Single* c, Single* n, ref Single v) { unsafe { @@ -45956,7 +46868,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, Single* c, Single* n, ref Single v) { unsafe { @@ -45970,7 +46882,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, Single* c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, Single* c, Single[] n, Single* v) { unsafe { @@ -45984,7 +46896,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, Single* c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, Single* c, Single[] n, Single* v) { unsafe { @@ -45998,7 +46910,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, Single* c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, Single* c, Single[] n, Single[] v) { unsafe { @@ -46013,7 +46925,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, Single* c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, Single* c, Single[] n, Single[] v) { unsafe { @@ -46028,7 +46940,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, Single* c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, Single* c, Single[] n, ref Single v) { unsafe { @@ -46043,7 +46955,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, Single* c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, Single* c, Single[] n, ref Single v) { unsafe { @@ -46058,7 +46970,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, Single* c, ref Single n, Single* v) { unsafe { @@ -46072,7 +46984,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, Single* c, ref Single n, Single* v) { unsafe { @@ -46086,7 +46998,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, Single* c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, Single* c, ref Single n, Single[] v) { unsafe { @@ -46101,7 +47013,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, Single* c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, Single* c, ref Single n, Single[] v) { unsafe { @@ -46116,7 +47028,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, Single* c, ref Single n, ref Single v) { unsafe { @@ -46131,7 +47043,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, Single* c, ref Single n, ref Single v) { unsafe { @@ -46146,7 +47058,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, Single[] c, Single* n, Single* v) { unsafe { @@ -46160,7 +47072,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, Single[] c, Single* n, Single* v) { unsafe { @@ -46174,7 +47086,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, Single[] c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, Single[] c, Single* n, Single[] v) { unsafe { @@ -46189,7 +47101,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, Single[] c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, Single[] c, Single* n, Single[] v) { unsafe { @@ -46204,7 +47116,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, Single[] c, Single* n, ref Single v) { unsafe { @@ -46219,7 +47131,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, Single[] c, Single* n, ref Single v) { unsafe { @@ -46234,7 +47146,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, Single[] c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, Single[] c, Single[] n, Single* v) { unsafe { @@ -46249,7 +47161,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, Single[] c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, Single[] c, Single[] n, Single* v) { unsafe { @@ -46264,7 +47176,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, Single[] c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, Single[] c, Single[] n, Single[] v) { unsafe { @@ -46280,7 +47192,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, Single[] c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, Single[] c, Single[] n, Single[] v) { unsafe { @@ -46296,7 +47208,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, Single[] c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, Single[] c, Single[] n, ref Single v) { unsafe { @@ -46312,7 +47224,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, Single[] c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, Single[] c, Single[] n, ref Single v) { unsafe { @@ -46328,7 +47240,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, Single[] c, ref Single n, Single* v) { unsafe { @@ -46343,7 +47255,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, Single[] c, ref Single n, Single* v) { unsafe { @@ -46358,7 +47270,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, Single[] c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, Single[] c, ref Single n, Single[] v) { unsafe { @@ -46374,7 +47286,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, Single[] c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, Single[] c, ref Single n, Single[] v) { unsafe { @@ -46390,7 +47302,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, Single[] c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, Single[] c, ref Single n, ref Single v) { unsafe { @@ -46406,7 +47318,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, Single[] c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, Single[] c, ref Single n, ref Single v) { unsafe { @@ -46422,7 +47334,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, ref Single c, Single* n, Single* v) { unsafe { @@ -46436,7 +47348,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, ref Single c, Single* n, Single* v) { unsafe { @@ -46450,7 +47362,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, ref Single c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, ref Single c, Single* n, Single[] v) { unsafe { @@ -46465,7 +47377,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, ref Single c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, ref Single c, Single* n, Single[] v) { unsafe { @@ -46480,7 +47392,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, ref Single c, Single* n, ref Single v) { unsafe { @@ -46495,7 +47407,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, ref Single c, Single* n, ref Single v) { unsafe { @@ -46510,7 +47422,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, ref Single c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, ref Single c, Single[] n, Single* v) { unsafe { @@ -46525,7 +47437,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, ref Single c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, ref Single c, Single[] n, Single* v) { unsafe { @@ -46540,7 +47452,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, ref Single c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, ref Single c, Single[] n, Single[] v) { unsafe { @@ -46556,7 +47468,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, ref Single c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, ref Single c, Single[] n, Single[] v) { unsafe { @@ -46572,7 +47484,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, ref Single c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, ref Single c, Single[] n, ref Single v) { unsafe { @@ -46588,7 +47500,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, ref Single c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, ref Single c, Single[] n, ref Single v) { unsafe { @@ -46604,7 +47516,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, ref Single c, ref Single n, Single* v) { unsafe { @@ -46619,7 +47531,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, ref Single c, ref Single n, Single* v) { unsafe { @@ -46634,7 +47546,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, ref Single c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, ref Single c, ref Single n, Single[] v) { unsafe { @@ -46650,7 +47562,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, ref Single c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, ref Single c, ref Single n, Single[] v) { unsafe { @@ -46666,7 +47578,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, ref Single c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -46682,7 +47594,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, ref Single c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -46698,7 +47610,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single* tc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single* tc, Single* c, Single* n, Single* v) { unsafe { @@ -46711,7 +47623,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single* tc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single* tc, Single* c, Single* n, Single* v) { unsafe { @@ -46724,7 +47636,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single* tc, Single* c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single* tc, Single* c, Single* n, Single[] v) { unsafe { @@ -46738,7 +47650,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single* tc, Single* c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single* tc, Single* c, Single* n, Single[] v) { unsafe { @@ -46752,7 +47664,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single* tc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single* tc, Single* c, Single* n, ref Single v) { unsafe { @@ -46766,7 +47678,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single* tc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single* tc, Single* c, Single* n, ref Single v) { unsafe { @@ -46780,7 +47692,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single* tc, Single* c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single* tc, Single* c, Single[] n, Single* v) { unsafe { @@ -46794,7 +47706,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single* tc, Single* c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single* tc, Single* c, Single[] n, Single* v) { unsafe { @@ -46808,7 +47720,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single* tc, Single* c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single* tc, Single* c, Single[] n, Single[] v) { unsafe { @@ -46823,7 +47735,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single* tc, Single* c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single* tc, Single* c, Single[] n, Single[] v) { unsafe { @@ -46838,7 +47750,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single* tc, Single* c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single* tc, Single* c, Single[] n, ref Single v) { unsafe { @@ -46853,7 +47765,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single* tc, Single* c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single* tc, Single* c, Single[] n, ref Single v) { unsafe { @@ -46868,7 +47780,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single* tc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single* tc, Single* c, ref Single n, Single* v) { unsafe { @@ -46882,7 +47794,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single* tc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single* tc, Single* c, ref Single n, Single* v) { unsafe { @@ -46896,7 +47808,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single* tc, Single* c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single* tc, Single* c, ref Single n, Single[] v) { unsafe { @@ -46911,7 +47823,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single* tc, Single* c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single* tc, Single* c, ref Single n, Single[] v) { unsafe { @@ -46926,7 +47838,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single* tc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single* tc, Single* c, ref Single n, ref Single v) { unsafe { @@ -46941,7 +47853,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single* tc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single* tc, Single* c, ref Single n, ref Single v) { unsafe { @@ -46956,7 +47868,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single* tc, Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single* tc, Single[] c, Single* n, Single* v) { unsafe { @@ -46970,7 +47882,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single* tc, Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single* tc, Single[] c, Single* n, Single* v) { unsafe { @@ -46984,7 +47896,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single* tc, Single[] c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single* tc, Single[] c, Single* n, Single[] v) { unsafe { @@ -46999,7 +47911,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single* tc, Single[] c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single* tc, Single[] c, Single* n, Single[] v) { unsafe { @@ -47014,7 +47926,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single* tc, Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single* tc, Single[] c, Single* n, ref Single v) { unsafe { @@ -47029,7 +47941,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single* tc, Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single* tc, Single[] c, Single* n, ref Single v) { unsafe { @@ -47044,7 +47956,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single* tc, Single[] c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single* tc, Single[] c, Single[] n, Single* v) { unsafe { @@ -47059,7 +47971,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single* tc, Single[] c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single* tc, Single[] c, Single[] n, Single* v) { unsafe { @@ -47074,7 +47986,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single* tc, Single[] c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single* tc, Single[] c, Single[] n, Single[] v) { unsafe { @@ -47090,7 +48002,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single* tc, Single[] c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single* tc, Single[] c, Single[] n, Single[] v) { unsafe { @@ -47106,7 +48018,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single* tc, Single[] c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single* tc, Single[] c, Single[] n, ref Single v) { unsafe { @@ -47122,7 +48034,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single* tc, Single[] c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single* tc, Single[] c, Single[] n, ref Single v) { unsafe { @@ -47138,7 +48050,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single* tc, Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single* tc, Single[] c, ref Single n, Single* v) { unsafe { @@ -47153,7 +48065,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single* tc, Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single* tc, Single[] c, ref Single n, Single* v) { unsafe { @@ -47168,7 +48080,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single* tc, Single[] c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single* tc, Single[] c, ref Single n, Single[] v) { unsafe { @@ -47184,7 +48096,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single* tc, Single[] c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single* tc, Single[] c, ref Single n, Single[] v) { unsafe { @@ -47200,7 +48112,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single* tc, Single[] c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single* tc, Single[] c, ref Single n, ref Single v) { unsafe { @@ -47216,7 +48128,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single* tc, Single[] c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single* tc, Single[] c, ref Single n, ref Single v) { unsafe { @@ -47232,7 +48144,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single* tc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single* tc, ref Single c, Single* n, Single* v) { unsafe { @@ -47246,7 +48158,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single* tc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single* tc, ref Single c, Single* n, Single* v) { unsafe { @@ -47260,7 +48172,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single* tc, ref Single c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single* tc, ref Single c, Single* n, Single[] v) { unsafe { @@ -47275,7 +48187,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single* tc, ref Single c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single* tc, ref Single c, Single* n, Single[] v) { unsafe { @@ -47290,7 +48202,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single* tc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single* tc, ref Single c, Single* n, ref Single v) { unsafe { @@ -47305,7 +48217,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single* tc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single* tc, ref Single c, Single* n, ref Single v) { unsafe { @@ -47320,7 +48232,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single* tc, ref Single c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single* tc, ref Single c, Single[] n, Single* v) { unsafe { @@ -47335,7 +48247,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single* tc, ref Single c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single* tc, ref Single c, Single[] n, Single* v) { unsafe { @@ -47350,7 +48262,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single* tc, ref Single c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single* tc, ref Single c, Single[] n, Single[] v) { unsafe { @@ -47366,7 +48278,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single* tc, ref Single c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single* tc, ref Single c, Single[] n, Single[] v) { unsafe { @@ -47382,7 +48294,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single* tc, ref Single c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single* tc, ref Single c, Single[] n, ref Single v) { unsafe { @@ -47398,7 +48310,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single* tc, ref Single c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single* tc, ref Single c, Single[] n, ref Single v) { unsafe { @@ -47414,7 +48326,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single* tc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single* tc, ref Single c, ref Single n, Single* v) { unsafe { @@ -47429,7 +48341,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single* tc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single* tc, ref Single c, ref Single n, Single* v) { unsafe { @@ -47444,7 +48356,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single* tc, ref Single c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single* tc, ref Single c, ref Single n, Single[] v) { unsafe { @@ -47460,7 +48372,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single* tc, ref Single c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single* tc, ref Single c, ref Single n, Single[] v) { unsafe { @@ -47476,7 +48388,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single* tc, ref Single c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single* tc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -47492,7 +48404,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single* tc, ref Single c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single* tc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -47508,7 +48420,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single[] tc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single[] tc, Single* c, Single* n, Single* v) { unsafe { @@ -47522,7 +48434,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single[] tc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single[] tc, Single* c, Single* n, Single* v) { unsafe { @@ -47536,7 +48448,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single[] tc, Single* c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single[] tc, Single* c, Single* n, Single[] v) { unsafe { @@ -47551,7 +48463,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single[] tc, Single* c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single[] tc, Single* c, Single* n, Single[] v) { unsafe { @@ -47566,7 +48478,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single[] tc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single[] tc, Single* c, Single* n, ref Single v) { unsafe { @@ -47581,7 +48493,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single[] tc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single[] tc, Single* c, Single* n, ref Single v) { unsafe { @@ -47596,7 +48508,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single[] tc, Single* c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single[] tc, Single* c, Single[] n, Single* v) { unsafe { @@ -47611,7 +48523,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single[] tc, Single* c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single[] tc, Single* c, Single[] n, Single* v) { unsafe { @@ -47626,7 +48538,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single[] tc, Single* c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single[] tc, Single* c, Single[] n, Single[] v) { unsafe { @@ -47642,7 +48554,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single[] tc, Single* c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single[] tc, Single* c, Single[] n, Single[] v) { unsafe { @@ -47658,7 +48570,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single[] tc, Single* c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single[] tc, Single* c, Single[] n, ref Single v) { unsafe { @@ -47674,7 +48586,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single[] tc, Single* c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single[] tc, Single* c, Single[] n, ref Single v) { unsafe { @@ -47690,7 +48602,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single[] tc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single[] tc, Single* c, ref Single n, Single* v) { unsafe { @@ -47705,7 +48617,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single[] tc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single[] tc, Single* c, ref Single n, Single* v) { unsafe { @@ -47720,7 +48632,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single[] tc, Single* c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single[] tc, Single* c, ref Single n, Single[] v) { unsafe { @@ -47736,7 +48648,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single[] tc, Single* c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single[] tc, Single* c, ref Single n, Single[] v) { unsafe { @@ -47752,7 +48664,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single[] tc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single[] tc, Single* c, ref Single n, ref Single v) { unsafe { @@ -47768,7 +48680,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single[] tc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single[] tc, Single* c, ref Single n, ref Single v) { unsafe { @@ -47784,7 +48696,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single[] tc, Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single[] tc, Single[] c, Single* n, Single* v) { unsafe { @@ -47799,7 +48711,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single[] tc, Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single[] tc, Single[] c, Single* n, Single* v) { unsafe { @@ -47814,7 +48726,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single[] tc, Single[] c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single[] tc, Single[] c, Single* n, Single[] v) { unsafe { @@ -47830,7 +48742,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single[] tc, Single[] c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single[] tc, Single[] c, Single* n, Single[] v) { unsafe { @@ -47846,7 +48758,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single[] tc, Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single[] tc, Single[] c, Single* n, ref Single v) { unsafe { @@ -47862,7 +48774,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single[] tc, Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single[] tc, Single[] c, Single* n, ref Single v) { unsafe { @@ -47878,7 +48790,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single[] tc, Single[] c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single[] tc, Single[] c, Single[] n, Single* v) { unsafe { @@ -47894,7 +48806,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single[] tc, Single[] c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single[] tc, Single[] c, Single[] n, Single* v) { unsafe { @@ -47910,7 +48822,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single[] tc, Single[] c, Single[] n, Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single[] tc, Single[] c, Single[] n, Single[] v) { unsafe { @@ -47926,7 +48838,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single[] tc, Single[] c, Single[] n, Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single[] tc, Single[] c, Single[] n, Single[] v) { unsafe { @@ -47943,7 +48855,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single[] tc, Single[] c, Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single[] tc, Single[] c, Single[] n, ref Single v) { unsafe { @@ -47959,7 +48871,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single[] tc, Single[] c, Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single[] tc, Single[] c, Single[] n, ref Single v) { unsafe { @@ -47976,7 +48888,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single[] tc, Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single[] tc, Single[] c, ref Single n, Single* v) { unsafe { @@ -47992,7 +48904,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single[] tc, Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single[] tc, Single[] c, ref Single n, Single* v) { unsafe { @@ -48008,7 +48920,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single[] tc, Single[] c, ref Single n, Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single[] tc, Single[] c, ref Single n, Single[] v) { unsafe { @@ -48024,7 +48936,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single[] tc, Single[] c, ref Single n, Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single[] tc, Single[] c, ref Single n, Single[] v) { unsafe { @@ -48041,7 +48953,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single[] tc, Single[] c, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single[] tc, Single[] c, ref Single n, ref Single v) { unsafe { @@ -48057,7 +48969,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single[] tc, Single[] c, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single[] tc, Single[] c, ref Single n, ref Single v) { unsafe { @@ -48074,7 +48986,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single[] tc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single[] tc, ref Single c, Single* n, Single* v) { unsafe { @@ -48089,7 +49001,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single[] tc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single[] tc, ref Single c, Single* n, Single* v) { unsafe { @@ -48104,7 +49016,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single[] tc, ref Single c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single[] tc, ref Single c, Single* n, Single[] v) { unsafe { @@ -48120,7 +49032,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single[] tc, ref Single c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single[] tc, ref Single c, Single* n, Single[] v) { unsafe { @@ -48136,7 +49048,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single[] tc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single[] tc, ref Single c, Single* n, ref Single v) { unsafe { @@ -48152,7 +49064,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single[] tc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single[] tc, ref Single c, Single* n, ref Single v) { unsafe { @@ -48168,7 +49080,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single[] tc, ref Single c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single[] tc, ref Single c, Single[] n, Single* v) { unsafe { @@ -48184,7 +49096,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single[] tc, ref Single c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single[] tc, ref Single c, Single[] n, Single* v) { unsafe { @@ -48200,7 +49112,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single[] tc, ref Single c, Single[] n, Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single[] tc, ref Single c, Single[] n, Single[] v) { unsafe { @@ -48216,7 +49128,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single[] tc, ref Single c, Single[] n, Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single[] tc, ref Single c, Single[] n, Single[] v) { unsafe { @@ -48233,7 +49145,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single[] tc, ref Single c, Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single[] tc, ref Single c, Single[] n, ref Single v) { unsafe { @@ -48249,7 +49161,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single[] tc, ref Single c, Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single[] tc, ref Single c, Single[] n, ref Single v) { unsafe { @@ -48266,7 +49178,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single[] tc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single[] tc, ref Single c, ref Single n, Single* v) { unsafe { @@ -48282,7 +49194,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single[] tc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single[] tc, ref Single c, ref Single n, Single* v) { unsafe { @@ -48298,7 +49210,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single[] tc, ref Single c, ref Single n, Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single[] tc, ref Single c, ref Single n, Single[] v) { unsafe { @@ -48314,7 +49226,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single[] tc, ref Single c, ref Single n, Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single[] tc, ref Single c, ref Single n, Single[] v) { unsafe { @@ -48331,7 +49243,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, Single[] tc, ref Single c, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single[] tc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -48347,7 +49259,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, Single[] tc, ref Single c, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single[] tc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -48364,7 +49276,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, ref Single tc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, ref Single tc, Single* c, Single* n, Single* v) { unsafe { @@ -48378,7 +49290,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, ref Single tc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, ref Single tc, Single* c, Single* n, Single* v) { unsafe { @@ -48392,7 +49304,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, ref Single tc, Single* c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, ref Single tc, Single* c, Single* n, Single[] v) { unsafe { @@ -48407,7 +49319,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, ref Single tc, Single* c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, ref Single tc, Single* c, Single* n, Single[] v) { unsafe { @@ -48422,7 +49334,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, ref Single tc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, ref Single tc, Single* c, Single* n, ref Single v) { unsafe { @@ -48437,7 +49349,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, ref Single tc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, ref Single tc, Single* c, Single* n, ref Single v) { unsafe { @@ -48452,7 +49364,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, ref Single tc, Single* c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, ref Single tc, Single* c, Single[] n, Single* v) { unsafe { @@ -48467,7 +49379,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, ref Single tc, Single* c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, ref Single tc, Single* c, Single[] n, Single* v) { unsafe { @@ -48482,7 +49394,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, ref Single tc, Single* c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, ref Single tc, Single* c, Single[] n, Single[] v) { unsafe { @@ -48498,7 +49410,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, ref Single tc, Single* c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, ref Single tc, Single* c, Single[] n, Single[] v) { unsafe { @@ -48514,7 +49426,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, ref Single tc, Single* c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, ref Single tc, Single* c, Single[] n, ref Single v) { unsafe { @@ -48530,7 +49442,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, ref Single tc, Single* c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, ref Single tc, Single* c, Single[] n, ref Single v) { unsafe { @@ -48546,7 +49458,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, ref Single tc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, ref Single tc, Single* c, ref Single n, Single* v) { unsafe { @@ -48561,7 +49473,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, ref Single tc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, ref Single tc, Single* c, ref Single n, Single* v) { unsafe { @@ -48576,7 +49488,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, ref Single tc, Single* c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, ref Single tc, Single* c, ref Single n, Single[] v) { unsafe { @@ -48592,7 +49504,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, ref Single tc, Single* c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, ref Single tc, Single* c, ref Single n, Single[] v) { unsafe { @@ -48608,7 +49520,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, ref Single tc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, ref Single tc, Single* c, ref Single n, ref Single v) { unsafe { @@ -48624,7 +49536,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, ref Single tc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, ref Single tc, Single* c, ref Single n, ref Single v) { unsafe { @@ -48640,7 +49552,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, ref Single tc, Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, ref Single tc, Single[] c, Single* n, Single* v) { unsafe { @@ -48655,7 +49567,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, ref Single tc, Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, ref Single tc, Single[] c, Single* n, Single* v) { unsafe { @@ -48670,7 +49582,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, ref Single tc, Single[] c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, ref Single tc, Single[] c, Single* n, Single[] v) { unsafe { @@ -48686,7 +49598,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, ref Single tc, Single[] c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, ref Single tc, Single[] c, Single* n, Single[] v) { unsafe { @@ -48702,7 +49614,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, ref Single tc, Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, ref Single tc, Single[] c, Single* n, ref Single v) { unsafe { @@ -48718,7 +49630,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, ref Single tc, Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, ref Single tc, Single[] c, Single* n, ref Single v) { unsafe { @@ -48734,7 +49646,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, ref Single tc, Single[] c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, ref Single tc, Single[] c, Single[] n, Single* v) { unsafe { @@ -48750,7 +49662,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, ref Single tc, Single[] c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, ref Single tc, Single[] c, Single[] n, Single* v) { unsafe { @@ -48766,7 +49678,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, ref Single tc, Single[] c, Single[] n, Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, ref Single tc, Single[] c, Single[] n, Single[] v) { unsafe { @@ -48782,7 +49694,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, ref Single tc, Single[] c, Single[] n, Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, ref Single tc, Single[] c, Single[] n, Single[] v) { unsafe { @@ -48799,7 +49711,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, ref Single tc, Single[] c, Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, ref Single tc, Single[] c, Single[] n, ref Single v) { unsafe { @@ -48815,7 +49727,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, ref Single tc, Single[] c, Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, ref Single tc, Single[] c, Single[] n, ref Single v) { unsafe { @@ -48832,7 +49744,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, ref Single tc, Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, ref Single tc, Single[] c, ref Single n, Single* v) { unsafe { @@ -48848,7 +49760,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, ref Single tc, Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, ref Single tc, Single[] c, ref Single n, Single* v) { unsafe { @@ -48864,7 +49776,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, ref Single tc, Single[] c, ref Single n, Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, ref Single tc, Single[] c, ref Single n, Single[] v) { unsafe { @@ -48880,7 +49792,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, ref Single tc, Single[] c, ref Single n, Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, ref Single tc, Single[] c, ref Single n, Single[] v) { unsafe { @@ -48897,7 +49809,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, ref Single tc, Single[] c, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, ref Single tc, Single[] c, ref Single n, ref Single v) { unsafe { @@ -48913,7 +49825,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, ref Single tc, Single[] c, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, ref Single tc, Single[] c, ref Single n, ref Single v) { unsafe { @@ -48930,7 +49842,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, ref Single tc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, ref Single tc, ref Single c, Single* n, Single* v) { unsafe { @@ -48945,7 +49857,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, ref Single tc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, ref Single tc, ref Single c, Single* n, Single* v) { unsafe { @@ -48960,7 +49872,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, ref Single tc, ref Single c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, ref Single tc, ref Single c, Single* n, Single[] v) { unsafe { @@ -48976,7 +49888,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, ref Single tc, ref Single c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, ref Single tc, ref Single c, Single* n, Single[] v) { unsafe { @@ -48992,7 +49904,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, ref Single tc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, ref Single tc, ref Single c, Single* n, ref Single v) { unsafe { @@ -49008,7 +49920,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, ref Single tc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, ref Single tc, ref Single c, Single* n, ref Single v) { unsafe { @@ -49024,7 +49936,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, ref Single tc, ref Single c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, ref Single tc, ref Single c, Single[] n, Single* v) { unsafe { @@ -49040,7 +49952,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, ref Single tc, ref Single c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, ref Single tc, ref Single c, Single[] n, Single* v) { unsafe { @@ -49056,7 +49968,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, ref Single tc, ref Single c, Single[] n, Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, ref Single tc, ref Single c, Single[] n, Single[] v) { unsafe { @@ -49072,7 +49984,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, ref Single tc, ref Single c, Single[] n, Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, ref Single tc, ref Single c, Single[] n, Single[] v) { unsafe { @@ -49089,7 +50001,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, ref Single tc, ref Single c, Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, ref Single tc, ref Single c, Single[] n, ref Single v) { unsafe { @@ -49105,7 +50017,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, ref Single tc, ref Single c, Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, ref Single tc, ref Single c, Single[] n, ref Single v) { unsafe { @@ -49122,7 +50034,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, ref Single tc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, ref Single tc, ref Single c, ref Single n, Single* v) { unsafe { @@ -49138,7 +50050,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, ref Single tc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, ref Single tc, ref Single c, ref Single n, Single* v) { unsafe { @@ -49154,7 +50066,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, ref Single tc, ref Single c, ref Single n, Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, ref Single tc, ref Single c, ref Single n, Single[] v) { unsafe { @@ -49170,7 +50082,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, ref Single tc, ref Single c, ref Single n, Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, ref Single tc, ref Single c, ref Single n, Single[] v) { unsafe { @@ -49187,7 +50099,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32[] rc, ref Single tc, ref Single c, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, ref Single tc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -49203,7 +50115,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32[] rc, ref Single tc, ref Single c, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, ref Single tc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -49220,7 +50132,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, Single* c, Single* n, Single* v) { unsafe { @@ -49233,7 +50145,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, Single* c, Single* n, Single* v) { unsafe { @@ -49246,7 +50158,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, Single* c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, Single* c, Single* n, Single[] v) { unsafe { @@ -49260,7 +50172,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, Single* c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, Single* c, Single* n, Single[] v) { unsafe { @@ -49274,7 +50186,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, Single* c, Single* n, ref Single v) { unsafe { @@ -49288,7 +50200,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, Single* c, Single* n, ref Single v) { unsafe { @@ -49302,7 +50214,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, Single* c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, Single* c, Single[] n, Single* v) { unsafe { @@ -49316,7 +50228,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, Single* c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, Single* c, Single[] n, Single* v) { unsafe { @@ -49330,7 +50242,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, Single* c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, Single* c, Single[] n, Single[] v) { unsafe { @@ -49345,7 +50257,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, Single* c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, Single* c, Single[] n, Single[] v) { unsafe { @@ -49360,7 +50272,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, Single* c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, Single* c, Single[] n, ref Single v) { unsafe { @@ -49375,7 +50287,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, Single* c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, Single* c, Single[] n, ref Single v) { unsafe { @@ -49390,7 +50302,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, Single* c, ref Single n, Single* v) { unsafe { @@ -49404,7 +50316,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, Single* c, ref Single n, Single* v) { unsafe { @@ -49418,7 +50330,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, Single* c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, Single* c, ref Single n, Single[] v) { unsafe { @@ -49433,7 +50345,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, Single* c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, Single* c, ref Single n, Single[] v) { unsafe { @@ -49448,7 +50360,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, Single* c, ref Single n, ref Single v) { unsafe { @@ -49463,7 +50375,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, Single* c, ref Single n, ref Single v) { unsafe { @@ -49478,7 +50390,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, Single[] c, Single* n, Single* v) { unsafe { @@ -49492,7 +50404,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, Single[] c, Single* n, Single* v) { unsafe { @@ -49506,7 +50418,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, Single[] c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, Single[] c, Single* n, Single[] v) { unsafe { @@ -49521,7 +50433,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, Single[] c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, Single[] c, Single* n, Single[] v) { unsafe { @@ -49536,7 +50448,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, Single[] c, Single* n, ref Single v) { unsafe { @@ -49551,7 +50463,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, Single[] c, Single* n, ref Single v) { unsafe { @@ -49566,7 +50478,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, Single[] c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, Single[] c, Single[] n, Single* v) { unsafe { @@ -49581,7 +50493,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, Single[] c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, Single[] c, Single[] n, Single* v) { unsafe { @@ -49596,7 +50508,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, Single[] c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, Single[] c, Single[] n, Single[] v) { unsafe { @@ -49612,7 +50524,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, Single[] c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, Single[] c, Single[] n, Single[] v) { unsafe { @@ -49628,7 +50540,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, Single[] c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, Single[] c, Single[] n, ref Single v) { unsafe { @@ -49644,7 +50556,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, Single[] c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, Single[] c, Single[] n, ref Single v) { unsafe { @@ -49660,7 +50572,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, Single[] c, ref Single n, Single* v) { unsafe { @@ -49675,7 +50587,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, Single[] c, ref Single n, Single* v) { unsafe { @@ -49690,7 +50602,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, Single[] c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, Single[] c, ref Single n, Single[] v) { unsafe { @@ -49706,7 +50618,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, Single[] c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, Single[] c, ref Single n, Single[] v) { unsafe { @@ -49722,7 +50634,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, Single[] c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, Single[] c, ref Single n, ref Single v) { unsafe { @@ -49738,7 +50650,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, Single[] c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, Single[] c, ref Single n, ref Single v) { unsafe { @@ -49754,7 +50666,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, ref Single c, Single* n, Single* v) { unsafe { @@ -49768,7 +50680,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, ref Single c, Single* n, Single* v) { unsafe { @@ -49782,7 +50694,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, ref Single c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, ref Single c, Single* n, Single[] v) { unsafe { @@ -49797,7 +50709,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, ref Single c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, ref Single c, Single* n, Single[] v) { unsafe { @@ -49812,7 +50724,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, ref Single c, Single* n, ref Single v) { unsafe { @@ -49827,7 +50739,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, ref Single c, Single* n, ref Single v) { unsafe { @@ -49842,7 +50754,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, ref Single c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, ref Single c, Single[] n, Single* v) { unsafe { @@ -49857,7 +50769,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, ref Single c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, ref Single c, Single[] n, Single* v) { unsafe { @@ -49872,7 +50784,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, ref Single c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, ref Single c, Single[] n, Single[] v) { unsafe { @@ -49888,7 +50800,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, ref Single c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, ref Single c, Single[] n, Single[] v) { unsafe { @@ -49904,7 +50816,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, ref Single c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, ref Single c, Single[] n, ref Single v) { unsafe { @@ -49920,7 +50832,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, ref Single c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, ref Single c, Single[] n, ref Single v) { unsafe { @@ -49936,7 +50848,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, ref Single c, ref Single n, Single* v) { unsafe { @@ -49951,7 +50863,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, ref Single c, ref Single n, Single* v) { unsafe { @@ -49966,7 +50878,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, ref Single c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, ref Single c, ref Single n, Single[] v) { unsafe { @@ -49982,7 +50894,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, ref Single c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, ref Single c, ref Single n, Single[] v) { unsafe { @@ -49998,7 +50910,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, ref Single c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -50014,7 +50926,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, ref Single c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -50030,7 +50942,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single[] tc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single[] tc, Single* c, Single* n, Single* v) { unsafe { @@ -50044,7 +50956,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single[] tc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single[] tc, Single* c, Single* n, Single* v) { unsafe { @@ -50058,7 +50970,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single[] tc, Single* c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single[] tc, Single* c, Single* n, Single[] v) { unsafe { @@ -50073,7 +50985,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single[] tc, Single* c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single[] tc, Single* c, Single* n, Single[] v) { unsafe { @@ -50088,7 +51000,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single[] tc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single[] tc, Single* c, Single* n, ref Single v) { unsafe { @@ -50103,7 +51015,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single[] tc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single[] tc, Single* c, Single* n, ref Single v) { unsafe { @@ -50118,7 +51030,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single[] tc, Single* c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single[] tc, Single* c, Single[] n, Single* v) { unsafe { @@ -50133,7 +51045,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single[] tc, Single* c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single[] tc, Single* c, Single[] n, Single* v) { unsafe { @@ -50148,7 +51060,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single[] tc, Single* c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single[] tc, Single* c, Single[] n, Single[] v) { unsafe { @@ -50164,7 +51076,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single[] tc, Single* c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single[] tc, Single* c, Single[] n, Single[] v) { unsafe { @@ -50180,7 +51092,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single[] tc, Single* c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single[] tc, Single* c, Single[] n, ref Single v) { unsafe { @@ -50196,7 +51108,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single[] tc, Single* c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single[] tc, Single* c, Single[] n, ref Single v) { unsafe { @@ -50212,7 +51124,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single[] tc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single[] tc, Single* c, ref Single n, Single* v) { unsafe { @@ -50227,7 +51139,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single[] tc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single[] tc, Single* c, ref Single n, Single* v) { unsafe { @@ -50242,7 +51154,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single[] tc, Single* c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single[] tc, Single* c, ref Single n, Single[] v) { unsafe { @@ -50258,7 +51170,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single[] tc, Single* c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single[] tc, Single* c, ref Single n, Single[] v) { unsafe { @@ -50274,7 +51186,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single[] tc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single[] tc, Single* c, ref Single n, ref Single v) { unsafe { @@ -50290,7 +51202,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single[] tc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single[] tc, Single* c, ref Single n, ref Single v) { unsafe { @@ -50306,7 +51218,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single[] tc, Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single[] tc, Single[] c, Single* n, Single* v) { unsafe { @@ -50321,7 +51233,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single[] tc, Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single[] tc, Single[] c, Single* n, Single* v) { unsafe { @@ -50336,7 +51248,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single[] tc, Single[] c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single[] tc, Single[] c, Single* n, Single[] v) { unsafe { @@ -50352,7 +51264,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single[] tc, Single[] c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single[] tc, Single[] c, Single* n, Single[] v) { unsafe { @@ -50368,7 +51280,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single[] tc, Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single[] tc, Single[] c, Single* n, ref Single v) { unsafe { @@ -50384,7 +51296,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single[] tc, Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single[] tc, Single[] c, Single* n, ref Single v) { unsafe { @@ -50400,7 +51312,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single[] tc, Single[] c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single[] tc, Single[] c, Single[] n, Single* v) { unsafe { @@ -50416,7 +51328,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single[] tc, Single[] c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single[] tc, Single[] c, Single[] n, Single* v) { unsafe { @@ -50432,7 +51344,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single[] tc, Single[] c, Single[] n, Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single[] tc, Single[] c, Single[] n, Single[] v) { unsafe { @@ -50448,7 +51360,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single[] tc, Single[] c, Single[] n, Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single[] tc, Single[] c, Single[] n, Single[] v) { unsafe { @@ -50465,7 +51377,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single[] tc, Single[] c, Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single[] tc, Single[] c, Single[] n, ref Single v) { unsafe { @@ -50481,7 +51393,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single[] tc, Single[] c, Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single[] tc, Single[] c, Single[] n, ref Single v) { unsafe { @@ -50498,7 +51410,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single[] tc, Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single[] tc, Single[] c, ref Single n, Single* v) { unsafe { @@ -50514,7 +51426,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single[] tc, Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single[] tc, Single[] c, ref Single n, Single* v) { unsafe { @@ -50530,7 +51442,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single[] tc, Single[] c, ref Single n, Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single[] tc, Single[] c, ref Single n, Single[] v) { unsafe { @@ -50546,7 +51458,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single[] tc, Single[] c, ref Single n, Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single[] tc, Single[] c, ref Single n, Single[] v) { unsafe { @@ -50563,7 +51475,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single[] tc, Single[] c, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single[] tc, Single[] c, ref Single n, ref Single v) { unsafe { @@ -50579,7 +51491,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single[] tc, Single[] c, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single[] tc, Single[] c, ref Single n, ref Single v) { unsafe { @@ -50596,7 +51508,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single[] tc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single[] tc, ref Single c, Single* n, Single* v) { unsafe { @@ -50611,7 +51523,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single[] tc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single[] tc, ref Single c, Single* n, Single* v) { unsafe { @@ -50626,7 +51538,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single[] tc, ref Single c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single[] tc, ref Single c, Single* n, Single[] v) { unsafe { @@ -50642,7 +51554,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single[] tc, ref Single c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single[] tc, ref Single c, Single* n, Single[] v) { unsafe { @@ -50658,7 +51570,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single[] tc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single[] tc, ref Single c, Single* n, ref Single v) { unsafe { @@ -50674,7 +51586,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single[] tc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single[] tc, ref Single c, Single* n, ref Single v) { unsafe { @@ -50690,7 +51602,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single[] tc, ref Single c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single[] tc, ref Single c, Single[] n, Single* v) { unsafe { @@ -50706,7 +51618,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single[] tc, ref Single c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single[] tc, ref Single c, Single[] n, Single* v) { unsafe { @@ -50722,7 +51634,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single[] tc, ref Single c, Single[] n, Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single[] tc, ref Single c, Single[] n, Single[] v) { unsafe { @@ -50738,7 +51650,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single[] tc, ref Single c, Single[] n, Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single[] tc, ref Single c, Single[] n, Single[] v) { unsafe { @@ -50755,7 +51667,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single[] tc, ref Single c, Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single[] tc, ref Single c, Single[] n, ref Single v) { unsafe { @@ -50771,7 +51683,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single[] tc, ref Single c, Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single[] tc, ref Single c, Single[] n, ref Single v) { unsafe { @@ -50788,7 +51700,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single[] tc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single[] tc, ref Single c, ref Single n, Single* v) { unsafe { @@ -50804,7 +51716,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single[] tc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single[] tc, ref Single c, ref Single n, Single* v) { unsafe { @@ -50820,7 +51732,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single[] tc, ref Single c, ref Single n, Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single[] tc, ref Single c, ref Single n, Single[] v) { unsafe { @@ -50836,7 +51748,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single[] tc, ref Single c, ref Single n, Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single[] tc, ref Single c, ref Single n, Single[] v) { unsafe { @@ -50853,7 +51765,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single[] tc, ref Single c, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single[] tc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -50869,7 +51781,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single[] tc, ref Single c, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single[] tc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -50886,7 +51798,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, Single* c, Single* n, Single* v) { unsafe { @@ -50900,7 +51812,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, Single* c, Single* n, Single* v) { unsafe { @@ -50914,7 +51826,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, Single* c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, Single* c, Single* n, Single[] v) { unsafe { @@ -50929,7 +51841,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, Single* c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, Single* c, Single* n, Single[] v) { unsafe { @@ -50944,7 +51856,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, Single* c, Single* n, ref Single v) { unsafe { @@ -50959,7 +51871,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, Single* c, Single* n, ref Single v) { unsafe { @@ -50974,7 +51886,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, Single* c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, Single* c, Single[] n, Single* v) { unsafe { @@ -50989,7 +51901,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, Single* c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, Single* c, Single[] n, Single* v) { unsafe { @@ -51004,7 +51916,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, Single* c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, Single* c, Single[] n, Single[] v) { unsafe { @@ -51020,7 +51932,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, Single* c, Single[] n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, Single* c, Single[] n, Single[] v) { unsafe { @@ -51036,7 +51948,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, Single* c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, Single* c, Single[] n, ref Single v) { unsafe { @@ -51052,7 +51964,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, Single* c, Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, Single* c, Single[] n, ref Single v) { unsafe { @@ -51068,7 +51980,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, Single* c, ref Single n, Single* v) { unsafe { @@ -51083,7 +51995,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, Single* c, ref Single n, Single* v) { unsafe { @@ -51098,7 +52010,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, Single* c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, Single* c, ref Single n, Single[] v) { unsafe { @@ -51114,7 +52026,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, Single* c, ref Single n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, Single* c, ref Single n, Single[] v) { unsafe { @@ -51130,7 +52042,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, Single* c, ref Single n, ref Single v) { unsafe { @@ -51146,7 +52058,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, Single* c, ref Single n, ref Single v) { unsafe { @@ -51162,7 +52074,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, Single[] c, Single* n, Single* v) { unsafe { @@ -51177,7 +52089,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, Single[] c, Single* n, Single* v) { unsafe { @@ -51192,7 +52104,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, Single[] c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, Single[] c, Single* n, Single[] v) { unsafe { @@ -51208,7 +52120,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, Single[] c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, Single[] c, Single* n, Single[] v) { unsafe { @@ -51224,7 +52136,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, Single[] c, Single* n, ref Single v) { unsafe { @@ -51240,7 +52152,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, Single[] c, Single* n, ref Single v) { unsafe { @@ -51256,7 +52168,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, Single[] c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, Single[] c, Single[] n, Single* v) { unsafe { @@ -51272,7 +52184,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, Single[] c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, Single[] c, Single[] n, Single* v) { unsafe { @@ -51288,7 +52200,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, Single[] c, Single[] n, Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, Single[] c, Single[] n, Single[] v) { unsafe { @@ -51304,7 +52216,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, Single[] c, Single[] n, Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, Single[] c, Single[] n, Single[] v) { unsafe { @@ -51321,7 +52233,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, Single[] c, Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, Single[] c, Single[] n, ref Single v) { unsafe { @@ -51337,7 +52249,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, Single[] c, Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, Single[] c, Single[] n, ref Single v) { unsafe { @@ -51354,7 +52266,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, Single[] c, ref Single n, Single* v) { unsafe { @@ -51370,7 +52282,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, Single[] c, ref Single n, Single* v) { unsafe { @@ -51386,7 +52298,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, Single[] c, ref Single n, Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, Single[] c, ref Single n, Single[] v) { unsafe { @@ -51402,7 +52314,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, Single[] c, ref Single n, Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, Single[] c, ref Single n, Single[] v) { unsafe { @@ -51419,7 +52331,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, Single[] c, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, Single[] c, ref Single n, ref Single v) { unsafe { @@ -51435,7 +52347,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, Single[] c, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, Single[] c, ref Single n, ref Single v) { unsafe { @@ -51452,7 +52364,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, ref Single c, Single* n, Single* v) { unsafe { @@ -51467,7 +52379,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, ref Single c, Single* n, Single* v) { unsafe { @@ -51482,7 +52394,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, ref Single c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, ref Single c, Single* n, Single[] v) { unsafe { @@ -51498,7 +52410,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, ref Single c, Single* n, Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, ref Single c, Single* n, Single[] v) { unsafe { @@ -51514,7 +52426,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, ref Single c, Single* n, ref Single v) { unsafe { @@ -51530,7 +52442,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, ref Single c, Single* n, ref Single v) { unsafe { @@ -51546,7 +52458,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, ref Single c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, ref Single c, Single[] n, Single* v) { unsafe { @@ -51562,7 +52474,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, ref Single c, Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, ref Single c, Single[] n, Single* v) { unsafe { @@ -51578,7 +52490,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, ref Single c, Single[] n, Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, ref Single c, Single[] n, Single[] v) { unsafe { @@ -51594,7 +52506,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, ref Single c, Single[] n, Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, ref Single c, Single[] n, Single[] v) { unsafe { @@ -51611,7 +52523,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, ref Single c, Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, ref Single c, Single[] n, ref Single v) { unsafe { @@ -51627,7 +52539,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, ref Single c, Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, ref Single c, Single[] n, ref Single v) { unsafe { @@ -51644,7 +52556,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, ref Single c, ref Single n, Single* v) { unsafe { @@ -51660,7 +52572,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, ref Single c, ref Single n, Single* v) { unsafe { @@ -51676,7 +52588,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, ref Single c, ref Single n, Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, ref Single c, ref Single n, Single[] v) { unsafe { @@ -51692,7 +52604,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, ref Single c, ref Single n, Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, ref Single c, ref Single n, Single[] v) { unsafe { @@ -51709,7 +52621,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, ref Single c, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -51725,7 +52637,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, ref Single c, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -51741,7 +52653,7 @@ namespace OpenTK.OpenGL } public static - void DrawMeshArrays(GL.Enums.BeginMode mode, Int32 first, Int32 count, Int32 width) + void DrawMeshArray(GL.Enums.BeginMode mode, Int32 first, Int32 count, Int32 width) { Delegates.glDrawMeshArraysSUN((GL.Enums.BeginMode)mode, (Int32)first, (Int32)count, (Int32)width); } @@ -51821,7 +52733,7 @@ namespace OpenTK.OpenGL } public static - void CombinerParameterf(GL.Enums.NV_register_combiners pname, Single param) + void CombinerParameter(GL.Enums.NV_register_combiners pname, Single param) { Delegates.glCombinerParameterfNV((GL.Enums.NV_register_combiners)pname, (Single)param); } @@ -51858,7 +52770,7 @@ namespace OpenTK.OpenGL } public static - void CombinerParameteri(GL.Enums.NV_register_combiners pname, Int32 param) + void CombinerParameter(GL.Enums.NV_register_combiners pname, Int32 param) { Delegates.glCombinerParameteriNV((GL.Enums.NV_register_combiners)pname, (Int32)param); } @@ -52075,14 +52987,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void DeleteFences(Int32 n, UInt32* fences) + unsafe void DeleteFence(Int32 n, UInt32* fences) { unsafe { Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences); } } [System.CLSCompliant(false)] public static - unsafe void DeleteFences(Int32 n, Int32* fences) + unsafe void DeleteFence(Int32 n, Int32* fences) { unsafe { @@ -52092,7 +53004,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeleteFences(Int32 n, UInt32[] fences) + void DeleteFence(Int32 n, UInt32[] fences) { unsafe { @@ -52104,7 +53016,7 @@ namespace OpenTK.OpenGL } public static - void DeleteFences(Int32 n, Int32[] fences) + void DeleteFence(Int32 n, Int32[] fences) { unsafe { @@ -52117,7 +53029,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeleteFences(Int32 n, ref UInt32 fences) + void DeleteFence(Int32 n, ref UInt32 fences) { unsafe { @@ -52129,7 +53041,7 @@ namespace OpenTK.OpenGL } public static - void DeleteFences(Int32 n, ref Int32 fences) + void DeleteFence(Int32 n, ref Int32 fences) { unsafe { @@ -52142,14 +53054,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GenFences(Int32 n, [Out] UInt32* fences) + unsafe void GenFence(Int32 n, [Out] UInt32* fences) { unsafe { Delegates.glGenFencesNV((Int32)n, (UInt32*)fences); } } [System.CLSCompliant(false)] public static - unsafe void GenFences(Int32 n, [Out] Int32* fences) + unsafe void GenFence(Int32 n, [Out] Int32* fences) { unsafe { @@ -52159,7 +53071,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenFences(Int32 n, [Out] UInt32[] fences) + void GenFence(Int32 n, [Out] UInt32[] fences) { unsafe { @@ -52171,7 +53083,7 @@ namespace OpenTK.OpenGL } public static - void GenFences(Int32 n, [Out] Int32[] fences) + void GenFence(Int32 n, [Out] Int32[] fences) { unsafe { @@ -52184,7 +53096,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenFences(Int32 n, [Out] out UInt32 fences) + void GenFence(Int32 n, [Out] out UInt32 fences) { unsafe { @@ -52197,7 +53109,7 @@ namespace OpenTK.OpenGL } public static - void GenFences(Int32 n, [Out] out Int32 fences) + void GenFence(Int32 n, [Out] out Int32 fences) { unsafe { @@ -52237,14 +53149,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetFencev(UInt32 fence, GL.Enums.NV_fence pname, [Out] Int32* @params) + unsafe void GetFence(UInt32 fence, GL.Enums.NV_fence pname, [Out] Int32* @params) { unsafe { Delegates.glGetFenceivNV((UInt32)fence, (GL.Enums.NV_fence)pname, (Int32*)@params); } } [System.CLSCompliant(false)] public static - unsafe void GetFencev(Int32 fence, GL.Enums.NV_fence pname, [Out] Int32* @params) + unsafe void GetFence(Int32 fence, GL.Enums.NV_fence pname, [Out] Int32* @params) { unsafe { @@ -52254,7 +53166,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetFencev(UInt32 fence, GL.Enums.NV_fence pname, [Out] Int32[] @params) + void GetFence(UInt32 fence, GL.Enums.NV_fence pname, [Out] Int32[] @params) { unsafe { @@ -52266,7 +53178,7 @@ namespace OpenTK.OpenGL } public static - void GetFencev(Int32 fence, GL.Enums.NV_fence pname, [Out] Int32[] @params) + void GetFence(Int32 fence, GL.Enums.NV_fence pname, [Out] Int32[] @params) { unsafe { @@ -52279,7 +53191,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetFencev(UInt32 fence, GL.Enums.NV_fence pname, [Out] out Int32 @params) + void GetFence(UInt32 fence, GL.Enums.NV_fence pname, [Out] out Int32 @params) { unsafe { @@ -52292,7 +53204,7 @@ namespace OpenTK.OpenGL } public static - void GetFencev(Int32 fence, GL.Enums.NV_fence pname, [Out] out Int32 @params) + void GetFence(Int32 fence, GL.Enums.NV_fence pname, [Out] out Int32 @params) { unsafe { @@ -52492,14 +53404,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetMapAttribParameterv(GL.Enums.NV_evaluators target, UInt32 index, GL.Enums.NV_evaluators pname, [Out] Int32* @params) + unsafe void GetMapAttribParameteriv(GL.Enums.NV_evaluators target, UInt32 index, GL.Enums.NV_evaluators pname, [Out] Int32* @params) { unsafe { Delegates.glGetMapAttribParameterivNV((GL.Enums.NV_evaluators)target, (UInt32)index, (GL.Enums.NV_evaluators)pname, (Int32*)@params); } } [System.CLSCompliant(false)] public static - unsafe void GetMapAttribParameterv(GL.Enums.NV_evaluators target, Int32 index, GL.Enums.NV_evaluators pname, [Out] Int32* @params) + unsafe void GetMapAttribParameteriv(GL.Enums.NV_evaluators target, Int32 index, GL.Enums.NV_evaluators pname, [Out] Int32* @params) { unsafe { @@ -52509,7 +53421,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetMapAttribParameterv(GL.Enums.NV_evaluators target, UInt32 index, GL.Enums.NV_evaluators pname, [Out] Int32[] @params) + void GetMapAttribParameteriv(GL.Enums.NV_evaluators target, UInt32 index, GL.Enums.NV_evaluators pname, [Out] Int32[] @params) { unsafe { @@ -52521,7 +53433,7 @@ namespace OpenTK.OpenGL } public static - void GetMapAttribParameterv(GL.Enums.NV_evaluators target, Int32 index, GL.Enums.NV_evaluators pname, [Out] Int32[] @params) + void GetMapAttribParameteriv(GL.Enums.NV_evaluators target, Int32 index, GL.Enums.NV_evaluators pname, [Out] Int32[] @params) { unsafe { @@ -52534,7 +53446,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetMapAttribParameterv(GL.Enums.NV_evaluators target, UInt32 index, GL.Enums.NV_evaluators pname, [Out] out Int32 @params) + void GetMapAttribParameteriv(GL.Enums.NV_evaluators target, UInt32 index, GL.Enums.NV_evaluators pname, [Out] out Int32 @params) { unsafe { @@ -52547,7 +53459,7 @@ namespace OpenTK.OpenGL } public static - void GetMapAttribParameterv(GL.Enums.NV_evaluators target, Int32 index, GL.Enums.NV_evaluators pname, [Out] out Int32 @params) + void GetMapAttribParameteriv(GL.Enums.NV_evaluators target, Int32 index, GL.Enums.NV_evaluators pname, [Out] out Int32 @params) { unsafe { @@ -52561,14 +53473,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetMapAttribParameterv(GL.Enums.NV_evaluators target, UInt32 index, GL.Enums.NV_evaluators pname, [Out] Single* @params) + unsafe void GetMapAttribParameterfv(GL.Enums.NV_evaluators target, UInt32 index, GL.Enums.NV_evaluators pname, [Out] Single* @params) { unsafe { Delegates.glGetMapAttribParameterfvNV((GL.Enums.NV_evaluators)target, (UInt32)index, (GL.Enums.NV_evaluators)pname, (Single*)@params); } } [System.CLSCompliant(false)] public static - unsafe void GetMapAttribParameterv(GL.Enums.NV_evaluators target, Int32 index, GL.Enums.NV_evaluators pname, [Out] Single* @params) + unsafe void GetMapAttribParameterfv(GL.Enums.NV_evaluators target, Int32 index, GL.Enums.NV_evaluators pname, [Out] Single* @params) { unsafe { @@ -52578,7 +53490,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetMapAttribParameterv(GL.Enums.NV_evaluators target, UInt32 index, GL.Enums.NV_evaluators pname, [Out] Single[] @params) + void GetMapAttribParameterfv(GL.Enums.NV_evaluators target, UInt32 index, GL.Enums.NV_evaluators pname, [Out] Single[] @params) { unsafe { @@ -52590,7 +53502,7 @@ namespace OpenTK.OpenGL } public static - void GetMapAttribParameterv(GL.Enums.NV_evaluators target, Int32 index, GL.Enums.NV_evaluators pname, [Out] Single[] @params) + void GetMapAttribParameterfv(GL.Enums.NV_evaluators target, Int32 index, GL.Enums.NV_evaluators pname, [Out] Single[] @params) { unsafe { @@ -52603,7 +53515,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetMapAttribParameterv(GL.Enums.NV_evaluators target, UInt32 index, GL.Enums.NV_evaluators pname, [Out] out Single @params) + void GetMapAttribParameterfv(GL.Enums.NV_evaluators target, UInt32 index, GL.Enums.NV_evaluators pname, [Out] out Single @params) { unsafe { @@ -52616,7 +53528,7 @@ namespace OpenTK.OpenGL } public static - void GetMapAttribParameterv(GL.Enums.NV_evaluators target, Int32 index, GL.Enums.NV_evaluators pname, [Out] out Single @params) + void GetMapAttribParameterfv(GL.Enums.NV_evaluators target, Int32 index, GL.Enums.NV_evaluators pname, [Out] out Single @params) { unsafe { @@ -52629,7 +53541,7 @@ namespace OpenTK.OpenGL } public static - void EvalMaps(GL.Enums.NV_evaluators target, GL.Enums.NV_evaluators mode) + void EvalMap(GL.Enums.NV_evaluators target, GL.Enums.NV_evaluators mode) { Delegates.glEvalMapsNV((GL.Enums.NV_evaluators)target, (GL.Enums.NV_evaluators)mode); } @@ -52786,14 +53698,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void DeletePrograms(Int32 n, UInt32* programs) + unsafe void DeleteProgram(Int32 n, UInt32* programs) { unsafe { Delegates.glDeleteProgramsNV((Int32)n, (UInt32*)programs); } } [System.CLSCompliant(false)] public static - unsafe void DeletePrograms(Int32 n, Int32* programs) + unsafe void DeleteProgram(Int32 n, Int32* programs) { unsafe { @@ -52803,7 +53715,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeletePrograms(Int32 n, UInt32[] programs) + void DeleteProgram(Int32 n, UInt32[] programs) { unsafe { @@ -52815,7 +53727,7 @@ namespace OpenTK.OpenGL } public static - void DeletePrograms(Int32 n, Int32[] programs) + void DeleteProgram(Int32 n, Int32[] programs) { unsafe { @@ -52828,7 +53740,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeletePrograms(Int32 n, ref UInt32 programs) + void DeleteProgram(Int32 n, ref UInt32 programs) { unsafe { @@ -52840,7 +53752,7 @@ namespace OpenTK.OpenGL } public static - void DeletePrograms(Int32 n, ref Int32 programs) + void DeleteProgram(Int32 n, ref Int32 programs) { unsafe { @@ -52920,14 +53832,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GenPrograms(Int32 n, [Out] UInt32* programs) + unsafe void GenProgram(Int32 n, [Out] UInt32* programs) { unsafe { Delegates.glGenProgramsNV((Int32)n, (UInt32*)programs); } } [System.CLSCompliant(false)] public static - unsafe void GenPrograms(Int32 n, [Out] Int32* programs) + unsafe void GenProgram(Int32 n, [Out] Int32* programs) { unsafe { @@ -52937,7 +53849,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenPrograms(Int32 n, [Out] UInt32[] programs) + void GenProgram(Int32 n, [Out] UInt32[] programs) { unsafe { @@ -52949,7 +53861,7 @@ namespace OpenTK.OpenGL } public static - void GenPrograms(Int32 n, [Out] Int32[] programs) + void GenProgram(Int32 n, [Out] Int32[] programs) { unsafe { @@ -52962,7 +53874,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenPrograms(Int32 n, [Out] out UInt32 programs) + void GenProgram(Int32 n, [Out] out UInt32 programs) { unsafe { @@ -52975,7 +53887,7 @@ namespace OpenTK.OpenGL } public static - void GenPrograms(Int32 n, [Out] out Int32 programs) + void GenProgram(Int32 n, [Out] out Int32 programs) { unsafe { @@ -53127,14 +54039,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetProgramv(UInt32 id, GL.Enums.NV_vertex_program pname, [Out] Int32* @params) + unsafe void GetProgram(UInt32 id, GL.Enums.NV_vertex_program pname, [Out] Int32* @params) { unsafe { Delegates.glGetProgramivNV((UInt32)id, (GL.Enums.NV_vertex_program)pname, (Int32*)@params); } } [System.CLSCompliant(false)] public static - unsafe void GetProgramv(Int32 id, GL.Enums.NV_vertex_program pname, [Out] Int32* @params) + unsafe void GetProgram(Int32 id, GL.Enums.NV_vertex_program pname, [Out] Int32* @params) { unsafe { @@ -53144,7 +54056,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetProgramv(UInt32 id, GL.Enums.NV_vertex_program pname, [Out] Int32[] @params) + void GetProgram(UInt32 id, GL.Enums.NV_vertex_program pname, [Out] Int32[] @params) { unsafe { @@ -53156,7 +54068,7 @@ namespace OpenTK.OpenGL } public static - void GetProgramv(Int32 id, GL.Enums.NV_vertex_program pname, [Out] Int32[] @params) + void GetProgram(Int32 id, GL.Enums.NV_vertex_program pname, [Out] Int32[] @params) { unsafe { @@ -53169,7 +54081,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetProgramv(UInt32 id, GL.Enums.NV_vertex_program pname, [Out] out Int32 @params) + void GetProgram(UInt32 id, GL.Enums.NV_vertex_program pname, [Out] out Int32 @params) { unsafe { @@ -53182,7 +54094,7 @@ namespace OpenTK.OpenGL } public static - void GetProgramv(Int32 id, GL.Enums.NV_vertex_program pname, [Out] out Int32 @params) + void GetProgram(Int32 id, GL.Enums.NV_vertex_program pname, [Out] out Int32 @params) { unsafe { @@ -53265,14 +54177,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetTrackMatrixv(GL.Enums.NV_vertex_program target, UInt32 address, GL.Enums.NV_vertex_program pname, [Out] Int32* @params) + unsafe void GetTrackMatrix(GL.Enums.NV_vertex_program target, UInt32 address, GL.Enums.NV_vertex_program pname, [Out] Int32* @params) { unsafe { Delegates.glGetTrackMatrixivNV((GL.Enums.NV_vertex_program)target, (UInt32)address, (GL.Enums.NV_vertex_program)pname, (Int32*)@params); } } [System.CLSCompliant(false)] public static - unsafe void GetTrackMatrixv(GL.Enums.NV_vertex_program target, Int32 address, GL.Enums.NV_vertex_program pname, [Out] Int32* @params) + unsafe void GetTrackMatrix(GL.Enums.NV_vertex_program target, Int32 address, GL.Enums.NV_vertex_program pname, [Out] Int32* @params) { unsafe { @@ -53282,7 +54194,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetTrackMatrixv(GL.Enums.NV_vertex_program target, UInt32 address, GL.Enums.NV_vertex_program pname, [Out] Int32[] @params) + void GetTrackMatrix(GL.Enums.NV_vertex_program target, UInt32 address, GL.Enums.NV_vertex_program pname, [Out] Int32[] @params) { unsafe { @@ -53294,7 +54206,7 @@ namespace OpenTK.OpenGL } public static - void GetTrackMatrixv(GL.Enums.NV_vertex_program target, Int32 address, GL.Enums.NV_vertex_program pname, [Out] Int32[] @params) + void GetTrackMatrix(GL.Enums.NV_vertex_program target, Int32 address, GL.Enums.NV_vertex_program pname, [Out] Int32[] @params) { unsafe { @@ -53307,7 +54219,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetTrackMatrixv(GL.Enums.NV_vertex_program target, UInt32 address, GL.Enums.NV_vertex_program pname, [Out] out Int32 @params) + void GetTrackMatrix(GL.Enums.NV_vertex_program target, UInt32 address, GL.Enums.NV_vertex_program pname, [Out] out Int32 @params) { unsafe { @@ -53320,7 +54232,7 @@ namespace OpenTK.OpenGL } public static - void GetTrackMatrixv(GL.Enums.NV_vertex_program target, Int32 address, GL.Enums.NV_vertex_program pname, [Out] out Int32 @params) + void GetTrackMatrix(GL.Enums.NV_vertex_program target, Int32 address, GL.Enums.NV_vertex_program pname, [Out] out Int32 @params) { unsafe { @@ -53334,14 +54246,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribv(UInt32 index, GL.Enums.NV_vertex_program pname, [Out] Double* @params) + unsafe void GetVertexAttribdv(UInt32 index, GL.Enums.NV_vertex_program pname, [Out] Double* @params) { unsafe { Delegates.glGetVertexAttribdvNV((UInt32)index, (GL.Enums.NV_vertex_program)pname, (Double*)@params); } } [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribv(Int32 index, GL.Enums.NV_vertex_program pname, [Out] Double* @params) + unsafe void GetVertexAttribdv(Int32 index, GL.Enums.NV_vertex_program pname, [Out] Double* @params) { unsafe { @@ -53351,7 +54263,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetVertexAttribv(UInt32 index, GL.Enums.NV_vertex_program pname, [Out] Double[] @params) + void GetVertexAttribdv(UInt32 index, GL.Enums.NV_vertex_program pname, [Out] Double[] @params) { unsafe { @@ -53363,7 +54275,7 @@ namespace OpenTK.OpenGL } public static - void GetVertexAttribv(Int32 index, GL.Enums.NV_vertex_program pname, [Out] Double[] @params) + void GetVertexAttribdv(Int32 index, GL.Enums.NV_vertex_program pname, [Out] Double[] @params) { unsafe { @@ -53376,7 +54288,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetVertexAttribv(UInt32 index, GL.Enums.NV_vertex_program pname, [Out] out Double @params) + void GetVertexAttribdv(UInt32 index, GL.Enums.NV_vertex_program pname, [Out] out Double @params) { unsafe { @@ -53389,7 +54301,7 @@ namespace OpenTK.OpenGL } public static - void GetVertexAttribv(Int32 index, GL.Enums.NV_vertex_program pname, [Out] out Double @params) + void GetVertexAttribdv(Int32 index, GL.Enums.NV_vertex_program pname, [Out] out Double @params) { unsafe { @@ -53403,14 +54315,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribv(UInt32 index, GL.Enums.NV_vertex_program pname, [Out] Single* @params) + unsafe void GetVertexAttribfv(UInt32 index, GL.Enums.NV_vertex_program pname, [Out] Single* @params) { unsafe { Delegates.glGetVertexAttribfvNV((UInt32)index, (GL.Enums.NV_vertex_program)pname, (Single*)@params); } } [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribv(Int32 index, GL.Enums.NV_vertex_program pname, [Out] Single* @params) + unsafe void GetVertexAttribfv(Int32 index, GL.Enums.NV_vertex_program pname, [Out] Single* @params) { unsafe { @@ -53420,7 +54332,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetVertexAttribv(UInt32 index, GL.Enums.NV_vertex_program pname, [Out] Single[] @params) + void GetVertexAttribfv(UInt32 index, GL.Enums.NV_vertex_program pname, [Out] Single[] @params) { unsafe { @@ -53432,7 +54344,7 @@ namespace OpenTK.OpenGL } public static - void GetVertexAttribv(Int32 index, GL.Enums.NV_vertex_program pname, [Out] Single[] @params) + void GetVertexAttribfv(Int32 index, GL.Enums.NV_vertex_program pname, [Out] Single[] @params) { unsafe { @@ -53445,7 +54357,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetVertexAttribv(UInt32 index, GL.Enums.NV_vertex_program pname, [Out] out Single @params) + void GetVertexAttribfv(UInt32 index, GL.Enums.NV_vertex_program pname, [Out] out Single @params) { unsafe { @@ -53458,7 +54370,7 @@ namespace OpenTK.OpenGL } public static - void GetVertexAttribv(Int32 index, GL.Enums.NV_vertex_program pname, [Out] out Single @params) + void GetVertexAttribfv(Int32 index, GL.Enums.NV_vertex_program pname, [Out] out Single @params) { unsafe { @@ -53472,14 +54384,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribv(UInt32 index, GL.Enums.NV_vertex_program pname, [Out] Int32* @params) + unsafe void GetVertexAttribiv(UInt32 index, GL.Enums.NV_vertex_program pname, [Out] Int32* @params) { unsafe { Delegates.glGetVertexAttribivNV((UInt32)index, (GL.Enums.NV_vertex_program)pname, (Int32*)@params); } } [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribv(Int32 index, GL.Enums.NV_vertex_program pname, [Out] Int32* @params) + unsafe void GetVertexAttribiv(Int32 index, GL.Enums.NV_vertex_program pname, [Out] Int32* @params) { unsafe { @@ -53489,7 +54401,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetVertexAttribv(UInt32 index, GL.Enums.NV_vertex_program pname, [Out] Int32[] @params) + void GetVertexAttribiv(UInt32 index, GL.Enums.NV_vertex_program pname, [Out] Int32[] @params) { unsafe { @@ -53501,7 +54413,7 @@ namespace OpenTK.OpenGL } public static - void GetVertexAttribv(Int32 index, GL.Enums.NV_vertex_program pname, [Out] Int32[] @params) + void GetVertexAttribiv(Int32 index, GL.Enums.NV_vertex_program pname, [Out] Int32[] @params) { unsafe { @@ -53514,7 +54426,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetVertexAttribv(UInt32 index, GL.Enums.NV_vertex_program pname, [Out] out Int32 @params) + void GetVertexAttribiv(UInt32 index, GL.Enums.NV_vertex_program pname, [Out] out Int32 @params) { unsafe { @@ -53527,7 +54439,7 @@ namespace OpenTK.OpenGL } public static - void GetVertexAttribv(Int32 index, GL.Enums.NV_vertex_program pname, [Out] out Int32 @params) + void GetVertexAttribiv(Int32 index, GL.Enums.NV_vertex_program pname, [Out] out Int32 @params) { unsafe { @@ -53684,14 +54596,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramParameter4(GL.Enums.NV_vertex_program target, UInt32 index, Double* v) + unsafe void ProgramParameter4v(GL.Enums.NV_vertex_program target, UInt32 index, Double* v) { unsafe { Delegates.glProgramParameter4dvNV((GL.Enums.NV_vertex_program)target, (UInt32)index, (Double*)v); } } [System.CLSCompliant(false)] public static - unsafe void ProgramParameter4(GL.Enums.NV_vertex_program target, Int32 index, Double* v) + unsafe void ProgramParameter4v(GL.Enums.NV_vertex_program target, Int32 index, Double* v) { unsafe { @@ -53701,7 +54613,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramParameter4(GL.Enums.NV_vertex_program target, UInt32 index, Double[] v) + void ProgramParameter4v(GL.Enums.NV_vertex_program target, UInt32 index, Double[] v) { unsafe { @@ -53713,7 +54625,7 @@ namespace OpenTK.OpenGL } public static - void ProgramParameter4(GL.Enums.NV_vertex_program target, Int32 index, Double[] v) + void ProgramParameter4v(GL.Enums.NV_vertex_program target, Int32 index, Double[] v) { unsafe { @@ -53726,7 +54638,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramParameter4(GL.Enums.NV_vertex_program target, UInt32 index, ref Double v) + void ProgramParameter4v(GL.Enums.NV_vertex_program target, UInt32 index, ref Double v) { unsafe { @@ -53738,7 +54650,7 @@ namespace OpenTK.OpenGL } public static - void ProgramParameter4(GL.Enums.NV_vertex_program target, Int32 index, ref Double v) + void ProgramParameter4v(GL.Enums.NV_vertex_program target, Int32 index, ref Double v) { unsafe { @@ -53764,14 +54676,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramParameter4(GL.Enums.NV_vertex_program target, UInt32 index, Single* v) + unsafe void ProgramParameter4v(GL.Enums.NV_vertex_program target, UInt32 index, Single* v) { unsafe { Delegates.glProgramParameter4fvNV((GL.Enums.NV_vertex_program)target, (UInt32)index, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void ProgramParameter4(GL.Enums.NV_vertex_program target, Int32 index, Single* v) + unsafe void ProgramParameter4v(GL.Enums.NV_vertex_program target, Int32 index, Single* v) { unsafe { @@ -53781,7 +54693,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramParameter4(GL.Enums.NV_vertex_program target, UInt32 index, Single[] v) + void ProgramParameter4v(GL.Enums.NV_vertex_program target, UInt32 index, Single[] v) { unsafe { @@ -53793,7 +54705,7 @@ namespace OpenTK.OpenGL } public static - void ProgramParameter4(GL.Enums.NV_vertex_program target, Int32 index, Single[] v) + void ProgramParameter4v(GL.Enums.NV_vertex_program target, Int32 index, Single[] v) { unsafe { @@ -53806,7 +54718,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramParameter4(GL.Enums.NV_vertex_program target, UInt32 index, ref Single v) + void ProgramParameter4v(GL.Enums.NV_vertex_program target, UInt32 index, ref Single v) { unsafe { @@ -53818,7 +54730,7 @@ namespace OpenTK.OpenGL } public static - void ProgramParameter4(GL.Enums.NV_vertex_program target, Int32 index, ref Single v) + void ProgramParameter4v(GL.Enums.NV_vertex_program target, Int32 index, ref Single v) { unsafe { @@ -53831,14 +54743,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramParameters4(GL.Enums.NV_vertex_program target, UInt32 index, UInt32 count, Double* v) + unsafe void ProgramParameters4dv(GL.Enums.NV_vertex_program target, UInt32 index, UInt32 count, Double* v) { unsafe { Delegates.glProgramParameters4dvNV((GL.Enums.NV_vertex_program)target, (UInt32)index, (UInt32)count, (Double*)v); } } [System.CLSCompliant(false)] public static - unsafe void ProgramParameters4(GL.Enums.NV_vertex_program target, Int32 index, Int32 count, Double* v) + unsafe void ProgramParameters4dv(GL.Enums.NV_vertex_program target, Int32 index, Int32 count, Double* v) { unsafe { @@ -53848,7 +54760,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramParameters4(GL.Enums.NV_vertex_program target, UInt32 index, UInt32 count, Double[] v) + void ProgramParameters4dv(GL.Enums.NV_vertex_program target, UInt32 index, UInt32 count, Double[] v) { unsafe { @@ -53860,7 +54772,7 @@ namespace OpenTK.OpenGL } public static - void ProgramParameters4(GL.Enums.NV_vertex_program target, Int32 index, Int32 count, Double[] v) + void ProgramParameters4dv(GL.Enums.NV_vertex_program target, Int32 index, Int32 count, Double[] v) { unsafe { @@ -53873,7 +54785,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramParameters4(GL.Enums.NV_vertex_program target, UInt32 index, UInt32 count, ref Double v) + void ProgramParameters4dv(GL.Enums.NV_vertex_program target, UInt32 index, UInt32 count, ref Double v) { unsafe { @@ -53885,7 +54797,7 @@ namespace OpenTK.OpenGL } public static - void ProgramParameters4(GL.Enums.NV_vertex_program target, Int32 index, Int32 count, ref Double v) + void ProgramParameters4dv(GL.Enums.NV_vertex_program target, Int32 index, Int32 count, ref Double v) { unsafe { @@ -53898,14 +54810,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramParameters4(GL.Enums.NV_vertex_program target, UInt32 index, UInt32 count, Single* v) + unsafe void ProgramParameters4fv(GL.Enums.NV_vertex_program target, UInt32 index, UInt32 count, Single* v) { unsafe { Delegates.glProgramParameters4fvNV((GL.Enums.NV_vertex_program)target, (UInt32)index, (UInt32)count, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void ProgramParameters4(GL.Enums.NV_vertex_program target, Int32 index, Int32 count, Single* v) + unsafe void ProgramParameters4fv(GL.Enums.NV_vertex_program target, Int32 index, Int32 count, Single* v) { unsafe { @@ -53915,7 +54827,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramParameters4(GL.Enums.NV_vertex_program target, UInt32 index, UInt32 count, Single[] v) + void ProgramParameters4fv(GL.Enums.NV_vertex_program target, UInt32 index, UInt32 count, Single[] v) { unsafe { @@ -53927,7 +54839,7 @@ namespace OpenTK.OpenGL } public static - void ProgramParameters4(GL.Enums.NV_vertex_program target, Int32 index, Int32 count, Single[] v) + void ProgramParameters4fv(GL.Enums.NV_vertex_program target, Int32 index, Int32 count, Single[] v) { unsafe { @@ -53940,7 +54852,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramParameters4(GL.Enums.NV_vertex_program target, UInt32 index, UInt32 count, ref Single v) + void ProgramParameters4fv(GL.Enums.NV_vertex_program target, UInt32 index, UInt32 count, ref Single v) { unsafe { @@ -53952,7 +54864,7 @@ namespace OpenTK.OpenGL } public static - void ProgramParameters4(GL.Enums.NV_vertex_program target, Int32 index, Int32 count, ref Single v) + void ProgramParameters4fv(GL.Enums.NV_vertex_program target, Int32 index, Int32 count, ref Single v) { unsafe { @@ -53965,14 +54877,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void RequestResidentPrograms(Int32 n, UInt32* programs) + unsafe void RequestResidentProgram(Int32 n, UInt32* programs) { unsafe { Delegates.glRequestResidentProgramsNV((Int32)n, (UInt32*)programs); } } [System.CLSCompliant(false)] public static - unsafe void RequestResidentPrograms(Int32 n, Int32* programs) + unsafe void RequestResidentProgram(Int32 n, Int32* programs) { unsafe { @@ -53982,7 +54894,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void RequestResidentPrograms(Int32 n, UInt32[] programs) + void RequestResidentProgram(Int32 n, UInt32[] programs) { unsafe { @@ -53994,7 +54906,7 @@ namespace OpenTK.OpenGL } public static - void RequestResidentPrograms(Int32 n, Int32[] programs) + void RequestResidentProgram(Int32 n, Int32[] programs) { unsafe { @@ -54007,7 +54919,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void RequestResidentPrograms(Int32 n, ref UInt32 programs) + void RequestResidentProgram(Int32 n, ref UInt32 programs) { unsafe { @@ -54019,7 +54931,7 @@ namespace OpenTK.OpenGL } public static - void RequestResidentPrograms(Int32 n, ref Int32 programs) + void RequestResidentProgram(Int32 n, ref Int32 programs) { unsafe { @@ -54095,13 +55007,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib1(UInt32 index, Double x) + void VertexAttrib1d(UInt32 index, Double x) { Delegates.glVertexAttrib1dNV((UInt32)index, (Double)x); } public static - void VertexAttrib1(Int32 index, Double x) + void VertexAttrib1d(Int32 index, Double x) { Delegates.glVertexAttrib1dNV((UInt32)index, (Double)x); } @@ -54175,13 +55087,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib1(UInt32 index, Single x) + void VertexAttrib1f(UInt32 index, Single x) { Delegates.glVertexAttrib1fNV((UInt32)index, (Single)x); } public static - void VertexAttrib1(Int32 index, Single x) + void VertexAttrib1f(Int32 index, Single x) { Delegates.glVertexAttrib1fNV((UInt32)index, (Single)x); } @@ -54255,13 +55167,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib1(UInt32 index, Int16 x) + void VertexAttrib1s(UInt32 index, Int16 x) { Delegates.glVertexAttrib1sNV((UInt32)index, (Int16)x); } public static - void VertexAttrib1(Int32 index, Int16 x) + void VertexAttrib1s(Int32 index, Int16 x) { Delegates.glVertexAttrib1sNV((UInt32)index, (Int16)x); } @@ -54335,27 +55247,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2(UInt32 index, Double x, Double y) + void VertexAttrib2d(UInt32 index, Double x, Double y) { Delegates.glVertexAttrib2dNV((UInt32)index, (Double)x, (Double)y); } public static - void VertexAttrib2(Int32 index, Double x, Double y) + void VertexAttrib2d(Int32 index, Double x, Double y) { Delegates.glVertexAttrib2dNV((UInt32)index, (Double)x, (Double)y); } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib2(UInt32 index, Double* v) + unsafe void VertexAttrib2dv(UInt32 index, Double* v) { unsafe { Delegates.glVertexAttrib2dvNV((UInt32)index, (Double*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib2(Int32 index, Double* v) + unsafe void VertexAttrib2dv(Int32 index, Double* v) { unsafe { @@ -54365,7 +55277,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2(UInt32 index, Double[] v) + void VertexAttrib2dv(UInt32 index, Double[] v) { unsafe { @@ -54377,7 +55289,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib2(Int32 index, Double[] v) + void VertexAttrib2dv(Int32 index, Double[] v) { unsafe { @@ -54390,7 +55302,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2(UInt32 index, ref Double v) + void VertexAttrib2dv(UInt32 index, ref Double v) { unsafe { @@ -54402,7 +55314,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib2(Int32 index, ref Double v) + void VertexAttrib2dv(Int32 index, ref Double v) { unsafe { @@ -54415,27 +55327,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2(UInt32 index, Single x, Single y) + void VertexAttrib2f(UInt32 index, Single x, Single y) { Delegates.glVertexAttrib2fNV((UInt32)index, (Single)x, (Single)y); } public static - void VertexAttrib2(Int32 index, Single x, Single y) + void VertexAttrib2f(Int32 index, Single x, Single y) { Delegates.glVertexAttrib2fNV((UInt32)index, (Single)x, (Single)y); } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib2(UInt32 index, Single* v) + unsafe void VertexAttrib2fv(UInt32 index, Single* v) { unsafe { Delegates.glVertexAttrib2fvNV((UInt32)index, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib2(Int32 index, Single* v) + unsafe void VertexAttrib2fv(Int32 index, Single* v) { unsafe { @@ -54445,7 +55357,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2(UInt32 index, Single[] v) + void VertexAttrib2fv(UInt32 index, Single[] v) { unsafe { @@ -54457,7 +55369,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib2(Int32 index, Single[] v) + void VertexAttrib2fv(Int32 index, Single[] v) { unsafe { @@ -54470,7 +55382,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2(UInt32 index, ref Single v) + void VertexAttrib2fv(UInt32 index, ref Single v) { unsafe { @@ -54482,7 +55394,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib2(Int32 index, ref Single v) + void VertexAttrib2fv(Int32 index, ref Single v) { unsafe { @@ -54495,27 +55407,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2(UInt32 index, Int16 x, Int16 y) + void VertexAttrib2s(UInt32 index, Int16 x, Int16 y) { Delegates.glVertexAttrib2sNV((UInt32)index, (Int16)x, (Int16)y); } public static - void VertexAttrib2(Int32 index, Int16 x, Int16 y) + void VertexAttrib2s(Int32 index, Int16 x, Int16 y) { Delegates.glVertexAttrib2sNV((UInt32)index, (Int16)x, (Int16)y); } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib2(UInt32 index, Int16* v) + unsafe void VertexAttrib2sv(UInt32 index, Int16* v) { unsafe { Delegates.glVertexAttrib2svNV((UInt32)index, (Int16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib2(Int32 index, Int16* v) + unsafe void VertexAttrib2sv(Int32 index, Int16* v) { unsafe { @@ -54525,7 +55437,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2(UInt32 index, Int16[] v) + void VertexAttrib2sv(UInt32 index, Int16[] v) { unsafe { @@ -54537,7 +55449,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib2(Int32 index, Int16[] v) + void VertexAttrib2sv(Int32 index, Int16[] v) { unsafe { @@ -54550,7 +55462,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2(UInt32 index, ref Int16 v) + void VertexAttrib2sv(UInt32 index, ref Int16 v) { unsafe { @@ -54562,7 +55474,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib2(Int32 index, ref Int16 v) + void VertexAttrib2sv(Int32 index, ref Int16 v) { unsafe { @@ -54575,27 +55487,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3(UInt32 index, Double x, Double y, Double z) + void VertexAttrib3d(UInt32 index, Double x, Double y, Double z) { Delegates.glVertexAttrib3dNV((UInt32)index, (Double)x, (Double)y, (Double)z); } public static - void VertexAttrib3(Int32 index, Double x, Double y, Double z) + void VertexAttrib3d(Int32 index, Double x, Double y, Double z) { Delegates.glVertexAttrib3dNV((UInt32)index, (Double)x, (Double)y, (Double)z); } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib3(UInt32 index, Double* v) + unsafe void VertexAttrib3dv(UInt32 index, Double* v) { unsafe { Delegates.glVertexAttrib3dvNV((UInt32)index, (Double*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib3(Int32 index, Double* v) + unsafe void VertexAttrib3dv(Int32 index, Double* v) { unsafe { @@ -54605,7 +55517,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3(UInt32 index, Double[] v) + void VertexAttrib3dv(UInt32 index, Double[] v) { unsafe { @@ -54617,7 +55529,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib3(Int32 index, Double[] v) + void VertexAttrib3dv(Int32 index, Double[] v) { unsafe { @@ -54630,7 +55542,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3(UInt32 index, ref Double v) + void VertexAttrib3dv(UInt32 index, ref Double v) { unsafe { @@ -54642,7 +55554,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib3(Int32 index, ref Double v) + void VertexAttrib3dv(Int32 index, ref Double v) { unsafe { @@ -54655,27 +55567,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3(UInt32 index, Single x, Single y, Single z) + void VertexAttrib3f(UInt32 index, Single x, Single y, Single z) { Delegates.glVertexAttrib3fNV((UInt32)index, (Single)x, (Single)y, (Single)z); } public static - void VertexAttrib3(Int32 index, Single x, Single y, Single z) + void VertexAttrib3f(Int32 index, Single x, Single y, Single z) { Delegates.glVertexAttrib3fNV((UInt32)index, (Single)x, (Single)y, (Single)z); } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib3(UInt32 index, Single* v) + unsafe void VertexAttrib3fv(UInt32 index, Single* v) { unsafe { Delegates.glVertexAttrib3fvNV((UInt32)index, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib3(Int32 index, Single* v) + unsafe void VertexAttrib3fv(Int32 index, Single* v) { unsafe { @@ -54685,7 +55597,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3(UInt32 index, Single[] v) + void VertexAttrib3fv(UInt32 index, Single[] v) { unsafe { @@ -54697,7 +55609,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib3(Int32 index, Single[] v) + void VertexAttrib3fv(Int32 index, Single[] v) { unsafe { @@ -54710,7 +55622,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3(UInt32 index, ref Single v) + void VertexAttrib3fv(UInt32 index, ref Single v) { unsafe { @@ -54722,7 +55634,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib3(Int32 index, ref Single v) + void VertexAttrib3fv(Int32 index, ref Single v) { unsafe { @@ -54735,27 +55647,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3(UInt32 index, Int16 x, Int16 y, Int16 z) + void VertexAttrib3s(UInt32 index, Int16 x, Int16 y, Int16 z) { Delegates.glVertexAttrib3sNV((UInt32)index, (Int16)x, (Int16)y, (Int16)z); } public static - void VertexAttrib3(Int32 index, Int16 x, Int16 y, Int16 z) + void VertexAttrib3s(Int32 index, Int16 x, Int16 y, Int16 z) { Delegates.glVertexAttrib3sNV((UInt32)index, (Int16)x, (Int16)y, (Int16)z); } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib3(UInt32 index, Int16* v) + unsafe void VertexAttrib3sv(UInt32 index, Int16* v) { unsafe { Delegates.glVertexAttrib3svNV((UInt32)index, (Int16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib3(Int32 index, Int16* v) + unsafe void VertexAttrib3sv(Int32 index, Int16* v) { unsafe { @@ -54765,7 +55677,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3(UInt32 index, Int16[] v) + void VertexAttrib3sv(UInt32 index, Int16[] v) { unsafe { @@ -54777,7 +55689,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib3(Int32 index, Int16[] v) + void VertexAttrib3sv(Int32 index, Int16[] v) { unsafe { @@ -54790,7 +55702,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3(UInt32 index, ref Int16 v) + void VertexAttrib3sv(UInt32 index, ref Int16 v) { unsafe { @@ -54802,7 +55714,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib3(Int32 index, ref Int16 v) + void VertexAttrib3sv(Int32 index, ref Int16 v) { unsafe { @@ -54815,27 +55727,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, Double x, Double y, Double z, Double w) + void VertexAttrib4d(UInt32 index, Double x, Double y, Double z, Double w) { Delegates.glVertexAttrib4dNV((UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); } public static - void VertexAttrib4(Int32 index, Double x, Double y, Double z, Double w) + void VertexAttrib4d(Int32 index, Double x, Double y, Double z, Double w) { Delegates.glVertexAttrib4dNV((UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4(UInt32 index, Double* v) + unsafe void VertexAttrib4dv(UInt32 index, Double* v) { unsafe { Delegates.glVertexAttrib4dvNV((UInt32)index, (Double*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4(Int32 index, Double* v) + unsafe void VertexAttrib4dv(Int32 index, Double* v) { unsafe { @@ -54845,7 +55757,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, Double[] v) + void VertexAttrib4dv(UInt32 index, Double[] v) { unsafe { @@ -54857,7 +55769,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4(Int32 index, Double[] v) + void VertexAttrib4dv(Int32 index, Double[] v) { unsafe { @@ -54870,7 +55782,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, ref Double v) + void VertexAttrib4dv(UInt32 index, ref Double v) { unsafe { @@ -54882,7 +55794,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4(Int32 index, ref Double v) + void VertexAttrib4dv(Int32 index, ref Double v) { unsafe { @@ -54895,27 +55807,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, Single x, Single y, Single z, Single w) + void VertexAttrib4f(UInt32 index, Single x, Single y, Single z, Single w) { Delegates.glVertexAttrib4fNV((UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); } public static - void VertexAttrib4(Int32 index, Single x, Single y, Single z, Single w) + void VertexAttrib4f(Int32 index, Single x, Single y, Single z, Single w) { Delegates.glVertexAttrib4fNV((UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4(UInt32 index, Single* v) + unsafe void VertexAttrib4fv(UInt32 index, Single* v) { unsafe { Delegates.glVertexAttrib4fvNV((UInt32)index, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4(Int32 index, Single* v) + unsafe void VertexAttrib4fv(Int32 index, Single* v) { unsafe { @@ -54925,7 +55837,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, Single[] v) + void VertexAttrib4fv(UInt32 index, Single[] v) { unsafe { @@ -54937,7 +55849,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4(Int32 index, Single[] v) + void VertexAttrib4fv(Int32 index, Single[] v) { unsafe { @@ -54950,7 +55862,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, ref Single v) + void VertexAttrib4fv(UInt32 index, ref Single v) { unsafe { @@ -54962,7 +55874,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4(Int32 index, ref Single v) + void VertexAttrib4fv(Int32 index, ref Single v) { unsafe { @@ -54975,27 +55887,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, Int16 x, Int16 y, Int16 z, Int16 w) + void VertexAttrib4s(UInt32 index, Int16 x, Int16 y, Int16 z, Int16 w) { Delegates.glVertexAttrib4sNV((UInt32)index, (Int16)x, (Int16)y, (Int16)z, (Int16)w); } public static - void VertexAttrib4(Int32 index, Int16 x, Int16 y, Int16 z, Int16 w) + void VertexAttrib4s(Int32 index, Int16 x, Int16 y, Int16 z, Int16 w) { Delegates.glVertexAttrib4sNV((UInt32)index, (Int16)x, (Int16)y, (Int16)z, (Int16)w); } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4(UInt32 index, Int16* v) + unsafe void VertexAttrib4sv(UInt32 index, Int16* v) { unsafe { Delegates.glVertexAttrib4svNV((UInt32)index, (Int16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4(Int32 index, Int16* v) + unsafe void VertexAttrib4sv(Int32 index, Int16* v) { unsafe { @@ -55005,7 +55917,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, Int16[] v) + void VertexAttrib4sv(UInt32 index, Int16[] v) { unsafe { @@ -55017,7 +55929,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4(Int32 index, Int16[] v) + void VertexAttrib4sv(Int32 index, Int16[] v) { unsafe { @@ -55030,7 +55942,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, ref Int16 v) + void VertexAttrib4sv(UInt32 index, ref Int16 v) { unsafe { @@ -55042,7 +55954,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4(Int32 index, ref Int16 v) + void VertexAttrib4sv(Int32 index, ref Int16 v) { unsafe { @@ -55055,27 +55967,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, Byte x, Byte y, Byte z, Byte w) + void VertexAttrib4ub(UInt32 index, Byte x, Byte y, Byte z, Byte w) { Delegates.glVertexAttrib4ubNV((UInt32)index, (Byte)x, (Byte)y, (Byte)z, (Byte)w); } public static - void VertexAttrib4(Int32 index, Byte x, Byte y, Byte z, Byte w) + void VertexAttrib4ub(Int32 index, Byte x, Byte y, Byte z, Byte w) { Delegates.glVertexAttrib4ubNV((UInt32)index, (Byte)x, (Byte)y, (Byte)z, (Byte)w); } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4(UInt32 index, Byte* v) + unsafe void VertexAttrib4ubv(UInt32 index, Byte* v) { unsafe { Delegates.glVertexAttrib4ubvNV((UInt32)index, (Byte*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4(Int32 index, Byte* v) + unsafe void VertexAttrib4ubv(Int32 index, Byte* v) { unsafe { @@ -55085,7 +55997,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, Byte[] v) + void VertexAttrib4ubv(UInt32 index, Byte[] v) { unsafe { @@ -55097,7 +56009,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4(Int32 index, Byte[] v) + void VertexAttrib4ubv(Int32 index, Byte[] v) { unsafe { @@ -55110,7 +56022,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4(UInt32 index, ref Byte v) + void VertexAttrib4ubv(UInt32 index, ref Byte v) { unsafe { @@ -55122,7 +56034,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4(Int32 index, ref Byte v) + void VertexAttrib4ubv(Int32 index, ref Byte v) { unsafe { @@ -55135,14 +56047,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribs1(UInt32 index, Int32 count, Double* v) + unsafe void VertexAttribs1dv(UInt32 index, Int32 count, Double* v) { unsafe { Delegates.glVertexAttribs1dvNV((UInt32)index, (Int32)count, (Double*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribs1(Int32 index, Int32 count, Double* v) + unsafe void VertexAttribs1dv(Int32 index, Int32 count, Double* v) { unsafe { @@ -55152,7 +56064,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs1(UInt32 index, Int32 count, Double[] v) + void VertexAttribs1dv(UInt32 index, Int32 count, Double[] v) { unsafe { @@ -55164,7 +56076,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs1(Int32 index, Int32 count, Double[] v) + void VertexAttribs1dv(Int32 index, Int32 count, Double[] v) { unsafe { @@ -55177,7 +56089,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs1(UInt32 index, Int32 count, ref Double v) + void VertexAttribs1dv(UInt32 index, Int32 count, ref Double v) { unsafe { @@ -55189,7 +56101,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs1(Int32 index, Int32 count, ref Double v) + void VertexAttribs1dv(Int32 index, Int32 count, ref Double v) { unsafe { @@ -55202,14 +56114,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribs1(UInt32 index, Int32 count, Single* v) + unsafe void VertexAttribs1fv(UInt32 index, Int32 count, Single* v) { unsafe { Delegates.glVertexAttribs1fvNV((UInt32)index, (Int32)count, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribs1(Int32 index, Int32 count, Single* v) + unsafe void VertexAttribs1fv(Int32 index, Int32 count, Single* v) { unsafe { @@ -55219,7 +56131,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs1(UInt32 index, Int32 count, Single[] v) + void VertexAttribs1fv(UInt32 index, Int32 count, Single[] v) { unsafe { @@ -55231,7 +56143,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs1(Int32 index, Int32 count, Single[] v) + void VertexAttribs1fv(Int32 index, Int32 count, Single[] v) { unsafe { @@ -55244,7 +56156,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs1(UInt32 index, Int32 count, ref Single v) + void VertexAttribs1fv(UInt32 index, Int32 count, ref Single v) { unsafe { @@ -55256,7 +56168,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs1(Int32 index, Int32 count, ref Single v) + void VertexAttribs1fv(Int32 index, Int32 count, ref Single v) { unsafe { @@ -55269,14 +56181,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribs1(UInt32 index, Int32 count, Int16* v) + unsafe void VertexAttribs1sv(UInt32 index, Int32 count, Int16* v) { unsafe { Delegates.glVertexAttribs1svNV((UInt32)index, (Int32)count, (Int16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribs1(Int32 index, Int32 count, Int16* v) + unsafe void VertexAttribs1sv(Int32 index, Int32 count, Int16* v) { unsafe { @@ -55286,7 +56198,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs1(UInt32 index, Int32 count, Int16[] v) + void VertexAttribs1sv(UInt32 index, Int32 count, Int16[] v) { unsafe { @@ -55298,7 +56210,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs1(Int32 index, Int32 count, Int16[] v) + void VertexAttribs1sv(Int32 index, Int32 count, Int16[] v) { unsafe { @@ -55311,7 +56223,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs1(UInt32 index, Int32 count, ref Int16 v) + void VertexAttribs1sv(UInt32 index, Int32 count, ref Int16 v) { unsafe { @@ -55323,7 +56235,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs1(Int32 index, Int32 count, ref Int16 v) + void VertexAttribs1sv(Int32 index, Int32 count, ref Int16 v) { unsafe { @@ -55336,14 +56248,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribs2(UInt32 index, Int32 count, Double* v) + unsafe void VertexAttribs2dv(UInt32 index, Int32 count, Double* v) { unsafe { Delegates.glVertexAttribs2dvNV((UInt32)index, (Int32)count, (Double*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribs2(Int32 index, Int32 count, Double* v) + unsafe void VertexAttribs2dv(Int32 index, Int32 count, Double* v) { unsafe { @@ -55353,7 +56265,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs2(UInt32 index, Int32 count, Double[] v) + void VertexAttribs2dv(UInt32 index, Int32 count, Double[] v) { unsafe { @@ -55365,7 +56277,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs2(Int32 index, Int32 count, Double[] v) + void VertexAttribs2dv(Int32 index, Int32 count, Double[] v) { unsafe { @@ -55378,7 +56290,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs2(UInt32 index, Int32 count, ref Double v) + void VertexAttribs2dv(UInt32 index, Int32 count, ref Double v) { unsafe { @@ -55390,7 +56302,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs2(Int32 index, Int32 count, ref Double v) + void VertexAttribs2dv(Int32 index, Int32 count, ref Double v) { unsafe { @@ -55403,14 +56315,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribs2(UInt32 index, Int32 count, Single* v) + unsafe void VertexAttribs2fv(UInt32 index, Int32 count, Single* v) { unsafe { Delegates.glVertexAttribs2fvNV((UInt32)index, (Int32)count, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribs2(Int32 index, Int32 count, Single* v) + unsafe void VertexAttribs2fv(Int32 index, Int32 count, Single* v) { unsafe { @@ -55420,7 +56332,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs2(UInt32 index, Int32 count, Single[] v) + void VertexAttribs2fv(UInt32 index, Int32 count, Single[] v) { unsafe { @@ -55432,7 +56344,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs2(Int32 index, Int32 count, Single[] v) + void VertexAttribs2fv(Int32 index, Int32 count, Single[] v) { unsafe { @@ -55445,7 +56357,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs2(UInt32 index, Int32 count, ref Single v) + void VertexAttribs2fv(UInt32 index, Int32 count, ref Single v) { unsafe { @@ -55457,7 +56369,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs2(Int32 index, Int32 count, ref Single v) + void VertexAttribs2fv(Int32 index, Int32 count, ref Single v) { unsafe { @@ -55470,14 +56382,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribs2(UInt32 index, Int32 count, Int16* v) + unsafe void VertexAttribs2sv(UInt32 index, Int32 count, Int16* v) { unsafe { Delegates.glVertexAttribs2svNV((UInt32)index, (Int32)count, (Int16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribs2(Int32 index, Int32 count, Int16* v) + unsafe void VertexAttribs2sv(Int32 index, Int32 count, Int16* v) { unsafe { @@ -55487,7 +56399,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs2(UInt32 index, Int32 count, Int16[] v) + void VertexAttribs2sv(UInt32 index, Int32 count, Int16[] v) { unsafe { @@ -55499,7 +56411,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs2(Int32 index, Int32 count, Int16[] v) + void VertexAttribs2sv(Int32 index, Int32 count, Int16[] v) { unsafe { @@ -55512,7 +56424,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs2(UInt32 index, Int32 count, ref Int16 v) + void VertexAttribs2sv(UInt32 index, Int32 count, ref Int16 v) { unsafe { @@ -55524,7 +56436,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs2(Int32 index, Int32 count, ref Int16 v) + void VertexAttribs2sv(Int32 index, Int32 count, ref Int16 v) { unsafe { @@ -55537,14 +56449,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribs3(UInt32 index, Int32 count, Double* v) + unsafe void VertexAttribs3dv(UInt32 index, Int32 count, Double* v) { unsafe { Delegates.glVertexAttribs3dvNV((UInt32)index, (Int32)count, (Double*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribs3(Int32 index, Int32 count, Double* v) + unsafe void VertexAttribs3dv(Int32 index, Int32 count, Double* v) { unsafe { @@ -55554,7 +56466,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs3(UInt32 index, Int32 count, Double[] v) + void VertexAttribs3dv(UInt32 index, Int32 count, Double[] v) { unsafe { @@ -55566,7 +56478,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs3(Int32 index, Int32 count, Double[] v) + void VertexAttribs3dv(Int32 index, Int32 count, Double[] v) { unsafe { @@ -55579,7 +56491,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs3(UInt32 index, Int32 count, ref Double v) + void VertexAttribs3dv(UInt32 index, Int32 count, ref Double v) { unsafe { @@ -55591,7 +56503,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs3(Int32 index, Int32 count, ref Double v) + void VertexAttribs3dv(Int32 index, Int32 count, ref Double v) { unsafe { @@ -55604,14 +56516,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribs3(UInt32 index, Int32 count, Single* v) + unsafe void VertexAttribs3fv(UInt32 index, Int32 count, Single* v) { unsafe { Delegates.glVertexAttribs3fvNV((UInt32)index, (Int32)count, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribs3(Int32 index, Int32 count, Single* v) + unsafe void VertexAttribs3fv(Int32 index, Int32 count, Single* v) { unsafe { @@ -55621,7 +56533,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs3(UInt32 index, Int32 count, Single[] v) + void VertexAttribs3fv(UInt32 index, Int32 count, Single[] v) { unsafe { @@ -55633,7 +56545,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs3(Int32 index, Int32 count, Single[] v) + void VertexAttribs3fv(Int32 index, Int32 count, Single[] v) { unsafe { @@ -55646,7 +56558,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs3(UInt32 index, Int32 count, ref Single v) + void VertexAttribs3fv(UInt32 index, Int32 count, ref Single v) { unsafe { @@ -55658,7 +56570,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs3(Int32 index, Int32 count, ref Single v) + void VertexAttribs3fv(Int32 index, Int32 count, ref Single v) { unsafe { @@ -55671,14 +56583,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribs3(UInt32 index, Int32 count, Int16* v) + unsafe void VertexAttribs3sv(UInt32 index, Int32 count, Int16* v) { unsafe { Delegates.glVertexAttribs3svNV((UInt32)index, (Int32)count, (Int16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribs3(Int32 index, Int32 count, Int16* v) + unsafe void VertexAttribs3sv(Int32 index, Int32 count, Int16* v) { unsafe { @@ -55688,7 +56600,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs3(UInt32 index, Int32 count, Int16[] v) + void VertexAttribs3sv(UInt32 index, Int32 count, Int16[] v) { unsafe { @@ -55700,7 +56612,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs3(Int32 index, Int32 count, Int16[] v) + void VertexAttribs3sv(Int32 index, Int32 count, Int16[] v) { unsafe { @@ -55713,7 +56625,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs3(UInt32 index, Int32 count, ref Int16 v) + void VertexAttribs3sv(UInt32 index, Int32 count, ref Int16 v) { unsafe { @@ -55725,7 +56637,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs3(Int32 index, Int32 count, ref Int16 v) + void VertexAttribs3sv(Int32 index, Int32 count, ref Int16 v) { unsafe { @@ -55738,14 +56650,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribs4(UInt32 index, Int32 count, Double* v) + unsafe void VertexAttribs4dv(UInt32 index, Int32 count, Double* v) { unsafe { Delegates.glVertexAttribs4dvNV((UInt32)index, (Int32)count, (Double*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribs4(Int32 index, Int32 count, Double* v) + unsafe void VertexAttribs4dv(Int32 index, Int32 count, Double* v) { unsafe { @@ -55755,7 +56667,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs4(UInt32 index, Int32 count, Double[] v) + void VertexAttribs4dv(UInt32 index, Int32 count, Double[] v) { unsafe { @@ -55767,7 +56679,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs4(Int32 index, Int32 count, Double[] v) + void VertexAttribs4dv(Int32 index, Int32 count, Double[] v) { unsafe { @@ -55780,7 +56692,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs4(UInt32 index, Int32 count, ref Double v) + void VertexAttribs4dv(UInt32 index, Int32 count, ref Double v) { unsafe { @@ -55792,7 +56704,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs4(Int32 index, Int32 count, ref Double v) + void VertexAttribs4dv(Int32 index, Int32 count, ref Double v) { unsafe { @@ -55805,14 +56717,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribs4(UInt32 index, Int32 count, Single* v) + unsafe void VertexAttribs4fv(UInt32 index, Int32 count, Single* v) { unsafe { Delegates.glVertexAttribs4fvNV((UInt32)index, (Int32)count, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribs4(Int32 index, Int32 count, Single* v) + unsafe void VertexAttribs4fv(Int32 index, Int32 count, Single* v) { unsafe { @@ -55822,7 +56734,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs4(UInt32 index, Int32 count, Single[] v) + void VertexAttribs4fv(UInt32 index, Int32 count, Single[] v) { unsafe { @@ -55834,7 +56746,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs4(Int32 index, Int32 count, Single[] v) + void VertexAttribs4fv(Int32 index, Int32 count, Single[] v) { unsafe { @@ -55847,7 +56759,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs4(UInt32 index, Int32 count, ref Single v) + void VertexAttribs4fv(UInt32 index, Int32 count, ref Single v) { unsafe { @@ -55859,7 +56771,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs4(Int32 index, Int32 count, ref Single v) + void VertexAttribs4fv(Int32 index, Int32 count, ref Single v) { unsafe { @@ -55872,14 +56784,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribs4(UInt32 index, Int32 count, Int16* v) + unsafe void VertexAttribs4sv(UInt32 index, Int32 count, Int16* v) { unsafe { Delegates.glVertexAttribs4svNV((UInt32)index, (Int32)count, (Int16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribs4(Int32 index, Int32 count, Int16* v) + unsafe void VertexAttribs4sv(Int32 index, Int32 count, Int16* v) { unsafe { @@ -55889,7 +56801,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs4(UInt32 index, Int32 count, Int16[] v) + void VertexAttribs4sv(UInt32 index, Int32 count, Int16[] v) { unsafe { @@ -55901,7 +56813,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs4(Int32 index, Int32 count, Int16[] v) + void VertexAttribs4sv(Int32 index, Int32 count, Int16[] v) { unsafe { @@ -55914,7 +56826,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs4(UInt32 index, Int32 count, ref Int16 v) + void VertexAttribs4sv(UInt32 index, Int32 count, ref Int16 v) { unsafe { @@ -55926,7 +56838,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs4(Int32 index, Int32 count, ref Int16 v) + void VertexAttribs4sv(Int32 index, Int32 count, ref Int16 v) { unsafe { @@ -55939,14 +56851,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribs4(UInt32 index, Int32 count, Byte* v) + unsafe void VertexAttribs4ubv(UInt32 index, Int32 count, Byte* v) { unsafe { Delegates.glVertexAttribs4ubvNV((UInt32)index, (Int32)count, (Byte*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribs4(Int32 index, Int32 count, Byte* v) + unsafe void VertexAttribs4ubv(Int32 index, Int32 count, Byte* v) { unsafe { @@ -55956,7 +56868,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs4(UInt32 index, Int32 count, Byte[] v) + void VertexAttribs4ubv(UInt32 index, Int32 count, Byte[] v) { unsafe { @@ -55968,7 +56880,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs4(Int32 index, Int32 count, Byte[] v) + void VertexAttribs4ubv(Int32 index, Int32 count, Byte[] v) { unsafe { @@ -55981,7 +56893,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs4(UInt32 index, Int32 count, ref Byte v) + void VertexAttribs4ubv(UInt32 index, Int32 count, ref Byte v) { unsafe { @@ -55993,7 +56905,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs4(Int32 index, Int32 count, ref Byte v) + void VertexAttribs4ubv(Int32 index, Int32 count, ref Byte v) { unsafe { @@ -56006,14 +56918,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GenOcclusionQueries(Int32 n, [Out] UInt32* ids) + unsafe void GenOcclusionQuerie(Int32 n, [Out] UInt32* ids) { unsafe { Delegates.glGenOcclusionQueriesNV((Int32)n, (UInt32*)ids); } } [System.CLSCompliant(false)] public static - unsafe void GenOcclusionQueries(Int32 n, [Out] Int32* ids) + unsafe void GenOcclusionQuerie(Int32 n, [Out] Int32* ids) { unsafe { @@ -56023,7 +56935,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenOcclusionQueries(Int32 n, [Out] UInt32[] ids) + void GenOcclusionQuerie(Int32 n, [Out] UInt32[] ids) { unsafe { @@ -56035,7 +56947,7 @@ namespace OpenTK.OpenGL } public static - void GenOcclusionQueries(Int32 n, [Out] Int32[] ids) + void GenOcclusionQuerie(Int32 n, [Out] Int32[] ids) { unsafe { @@ -56048,7 +56960,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenOcclusionQueries(Int32 n, [Out] out UInt32 ids) + void GenOcclusionQuerie(Int32 n, [Out] out UInt32 ids) { unsafe { @@ -56061,7 +56973,7 @@ namespace OpenTK.OpenGL } public static - void GenOcclusionQueries(Int32 n, [Out] out Int32 ids) + void GenOcclusionQuerie(Int32 n, [Out] out Int32 ids) { unsafe { @@ -56075,14 +56987,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void DeleteOcclusionQueries(Int32 n, UInt32* ids) + unsafe void DeleteOcclusionQuerie(Int32 n, UInt32* ids) { unsafe { Delegates.glDeleteOcclusionQueriesNV((Int32)n, (UInt32*)ids); } } [System.CLSCompliant(false)] public static - unsafe void DeleteOcclusionQueries(Int32 n, Int32* ids) + unsafe void DeleteOcclusionQuerie(Int32 n, Int32* ids) { unsafe { @@ -56092,7 +57004,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeleteOcclusionQueries(Int32 n, UInt32[] ids) + void DeleteOcclusionQuerie(Int32 n, UInt32[] ids) { unsafe { @@ -56104,7 +57016,7 @@ namespace OpenTK.OpenGL } public static - void DeleteOcclusionQueries(Int32 n, Int32[] ids) + void DeleteOcclusionQuerie(Int32 n, Int32[] ids) { unsafe { @@ -56117,7 +57029,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeleteOcclusionQueries(Int32 n, ref UInt32 ids) + void DeleteOcclusionQuerie(Int32 n, ref UInt32 ids) { unsafe { @@ -56129,7 +57041,7 @@ namespace OpenTK.OpenGL } public static - void DeleteOcclusionQueries(Int32 n, ref Int32 ids) + void DeleteOcclusionQuerie(Int32 n, ref Int32 ids) { unsafe { @@ -56174,14 +57086,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetOcclusionQueryv(UInt32 id, GL.Enums.NV_occlusion_query pname, [Out] Int32* @params) + unsafe void GetOcclusionQuery(UInt32 id, GL.Enums.NV_occlusion_query pname, [Out] Int32* @params) { unsafe { Delegates.glGetOcclusionQueryivNV((UInt32)id, (GL.Enums.NV_occlusion_query)pname, (Int32*)@params); } } [System.CLSCompliant(false)] public static - void GetOcclusionQueryv(UInt32 id, GL.Enums.NV_occlusion_query pname, [Out] Int32[] @params) + void GetOcclusionQuery(UInt32 id, GL.Enums.NV_occlusion_query pname, [Out] Int32[] @params) { unsafe { @@ -56194,7 +57106,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetOcclusionQueryv(UInt32 id, GL.Enums.NV_occlusion_query pname, [Out] out Int32 @params) + void GetOcclusionQuery(UInt32 id, GL.Enums.NV_occlusion_query pname, [Out] out Int32 @params) { unsafe { @@ -56208,14 +57120,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetOcclusionQueryv(UInt32 id, GL.Enums.NV_occlusion_query pname, [Out] UInt32* @params) + unsafe void GetOcclusionQuery(UInt32 id, GL.Enums.NV_occlusion_query pname, [Out] UInt32* @params) { unsafe { Delegates.glGetOcclusionQueryuivNV((UInt32)id, (GL.Enums.NV_occlusion_query)pname, (UInt32*)@params); } } [System.CLSCompliant(false)] public static - unsafe void GetOcclusionQueryv(Int32 id, GL.Enums.NV_occlusion_query pname, [Out] Int32* @params) + unsafe void GetOcclusionQuery(Int32 id, GL.Enums.NV_occlusion_query pname, [Out] Int32* @params) { unsafe { @@ -56225,7 +57137,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetOcclusionQueryv(UInt32 id, GL.Enums.NV_occlusion_query pname, [Out] UInt32[] @params) + void GetOcclusionQuery(UInt32 id, GL.Enums.NV_occlusion_query pname, [Out] UInt32[] @params) { unsafe { @@ -56237,7 +57149,7 @@ namespace OpenTK.OpenGL } public static - void GetOcclusionQueryv(Int32 id, GL.Enums.NV_occlusion_query pname, [Out] Int32[] @params) + void GetOcclusionQuery(Int32 id, GL.Enums.NV_occlusion_query pname, [Out] Int32[] @params) { unsafe { @@ -56250,7 +57162,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetOcclusionQueryv(UInt32 id, GL.Enums.NV_occlusion_query pname, [Out] out UInt32 @params) + void GetOcclusionQuery(UInt32 id, GL.Enums.NV_occlusion_query pname, [Out] out UInt32 @params) { unsafe { @@ -56263,7 +57175,7 @@ namespace OpenTK.OpenGL } public static - void GetOcclusionQueryv(Int32 id, GL.Enums.NV_occlusion_query pname, [Out] out Int32 @params) + void GetOcclusionQuery(Int32 id, GL.Enums.NV_occlusion_query pname, [Out] out Int32 @params) { unsafe { @@ -56276,7 +57188,7 @@ namespace OpenTK.OpenGL } public static - void PointParameteri(GL.Enums.NV_point_sprite pname, Int32 param) + void PointParameter(GL.Enums.NV_point_sprite pname, Int32 param) { Delegates.glPointParameteriNV((GL.Enums.NV_point_sprite)pname, (Int32)param); } @@ -56448,14 +57360,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, Byte* name, Single* v) + unsafe void ProgramNamedParameter4v(UInt32 id, Int32 len, Byte* name, Single* v) { unsafe { Delegates.glProgramNamedParameter4fvNV((UInt32)id, (Int32)len, (Byte*)name, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4(Int32 id, Int32 len, Byte* name, Single* v) + unsafe void ProgramNamedParameter4v(Int32 id, Int32 len, Byte* name, Single* v) { unsafe { @@ -56465,7 +57377,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, Byte* name, Single[] v) + unsafe void ProgramNamedParameter4v(UInt32 id, Int32 len, Byte* name, Single[] v) { unsafe { @@ -56478,7 +57390,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4(Int32 id, Int32 len, Byte* name, Single[] v) + unsafe void ProgramNamedParameter4v(Int32 id, Int32 len, Byte* name, Single[] v) { unsafe { @@ -56491,7 +57403,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, Byte* name, ref Single v) + unsafe void ProgramNamedParameter4v(UInt32 id, Int32 len, Byte* name, ref Single v) { unsafe { @@ -56504,7 +57416,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4(Int32 id, Int32 len, Byte* name, ref Single v) + unsafe void ProgramNamedParameter4v(Int32 id, Int32 len, Byte* name, ref Single v) { unsafe { @@ -56517,7 +57429,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, Byte[] name, Single* v) + unsafe void ProgramNamedParameter4v(UInt32 id, Int32 len, Byte[] name, Single* v) { unsafe { @@ -56530,7 +57442,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4(Int32 id, Int32 len, Byte[] name, Single* v) + unsafe void ProgramNamedParameter4v(Int32 id, Int32 len, Byte[] name, Single* v) { unsafe { @@ -56543,7 +57455,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramNamedParameter4(UInt32 id, Int32 len, Byte[] name, Single[] v) + void ProgramNamedParameter4v(UInt32 id, Int32 len, Byte[] name, Single[] v) { unsafe { @@ -56556,7 +57468,7 @@ namespace OpenTK.OpenGL } public static - void ProgramNamedParameter4(Int32 id, Int32 len, Byte[] name, Single[] v) + void ProgramNamedParameter4v(Int32 id, Int32 len, Byte[] name, Single[] v) { unsafe { @@ -56570,7 +57482,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramNamedParameter4(UInt32 id, Int32 len, Byte[] name, ref Single v) + void ProgramNamedParameter4v(UInt32 id, Int32 len, Byte[] name, ref Single v) { unsafe { @@ -56583,7 +57495,7 @@ namespace OpenTK.OpenGL } public static - void ProgramNamedParameter4(Int32 id, Int32 len, Byte[] name, ref Single v) + void ProgramNamedParameter4v(Int32 id, Int32 len, Byte[] name, ref Single v) { unsafe { @@ -56597,7 +57509,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, ref Byte name, Single* v) + unsafe void ProgramNamedParameter4v(UInt32 id, Int32 len, ref Byte name, Single* v) { unsafe { @@ -56610,7 +57522,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4(Int32 id, Int32 len, ref Byte name, Single* v) + unsafe void ProgramNamedParameter4v(Int32 id, Int32 len, ref Byte name, Single* v) { unsafe { @@ -56623,7 +57535,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramNamedParameter4(UInt32 id, Int32 len, ref Byte name, Single[] v) + void ProgramNamedParameter4v(UInt32 id, Int32 len, ref Byte name, Single[] v) { unsafe { @@ -56636,7 +57548,7 @@ namespace OpenTK.OpenGL } public static - void ProgramNamedParameter4(Int32 id, Int32 len, ref Byte name, Single[] v) + void ProgramNamedParameter4v(Int32 id, Int32 len, ref Byte name, Single[] v) { unsafe { @@ -56650,7 +57562,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramNamedParameter4(UInt32 id, Int32 len, ref Byte name, ref Single v) + void ProgramNamedParameter4v(UInt32 id, Int32 len, ref Byte name, ref Single v) { unsafe { @@ -56663,7 +57575,7 @@ namespace OpenTK.OpenGL } public static - void ProgramNamedParameter4(Int32 id, Int32 len, ref Byte name, ref Single v) + void ProgramNamedParameter4v(Int32 id, Int32 len, ref Byte name, ref Single v) { unsafe { @@ -56677,14 +57589,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, Byte* name, Double* v) + unsafe void ProgramNamedParameter4v(UInt32 id, Int32 len, Byte* name, Double* v) { unsafe { Delegates.glProgramNamedParameter4dvNV((UInt32)id, (Int32)len, (Byte*)name, (Double*)v); } } [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4(Int32 id, Int32 len, Byte* name, Double* v) + unsafe void ProgramNamedParameter4v(Int32 id, Int32 len, Byte* name, Double* v) { unsafe { @@ -56694,7 +57606,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, Byte* name, Double[] v) + unsafe void ProgramNamedParameter4v(UInt32 id, Int32 len, Byte* name, Double[] v) { unsafe { @@ -56707,7 +57619,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4(Int32 id, Int32 len, Byte* name, Double[] v) + unsafe void ProgramNamedParameter4v(Int32 id, Int32 len, Byte* name, Double[] v) { unsafe { @@ -56720,7 +57632,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, Byte* name, ref Double v) + unsafe void ProgramNamedParameter4v(UInt32 id, Int32 len, Byte* name, ref Double v) { unsafe { @@ -56733,7 +57645,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4(Int32 id, Int32 len, Byte* name, ref Double v) + unsafe void ProgramNamedParameter4v(Int32 id, Int32 len, Byte* name, ref Double v) { unsafe { @@ -56746,7 +57658,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, Byte[] name, Double* v) + unsafe void ProgramNamedParameter4v(UInt32 id, Int32 len, Byte[] name, Double* v) { unsafe { @@ -56759,7 +57671,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4(Int32 id, Int32 len, Byte[] name, Double* v) + unsafe void ProgramNamedParameter4v(Int32 id, Int32 len, Byte[] name, Double* v) { unsafe { @@ -56772,7 +57684,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramNamedParameter4(UInt32 id, Int32 len, Byte[] name, Double[] v) + void ProgramNamedParameter4v(UInt32 id, Int32 len, Byte[] name, Double[] v) { unsafe { @@ -56785,7 +57697,7 @@ namespace OpenTK.OpenGL } public static - void ProgramNamedParameter4(Int32 id, Int32 len, Byte[] name, Double[] v) + void ProgramNamedParameter4v(Int32 id, Int32 len, Byte[] name, Double[] v) { unsafe { @@ -56799,7 +57711,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramNamedParameter4(UInt32 id, Int32 len, Byte[] name, ref Double v) + void ProgramNamedParameter4v(UInt32 id, Int32 len, Byte[] name, ref Double v) { unsafe { @@ -56812,7 +57724,7 @@ namespace OpenTK.OpenGL } public static - void ProgramNamedParameter4(Int32 id, Int32 len, Byte[] name, ref Double v) + void ProgramNamedParameter4v(Int32 id, Int32 len, Byte[] name, ref Double v) { unsafe { @@ -56826,7 +57738,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, ref Byte name, Double* v) + unsafe void ProgramNamedParameter4v(UInt32 id, Int32 len, ref Byte name, Double* v) { unsafe { @@ -56839,7 +57751,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4(Int32 id, Int32 len, ref Byte name, Double* v) + unsafe void ProgramNamedParameter4v(Int32 id, Int32 len, ref Byte name, Double* v) { unsafe { @@ -56852,7 +57764,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramNamedParameter4(UInt32 id, Int32 len, ref Byte name, Double[] v) + void ProgramNamedParameter4v(UInt32 id, Int32 len, ref Byte name, Double[] v) { unsafe { @@ -56865,7 +57777,7 @@ namespace OpenTK.OpenGL } public static - void ProgramNamedParameter4(Int32 id, Int32 len, ref Byte name, Double[] v) + void ProgramNamedParameter4v(Int32 id, Int32 len, ref Byte name, Double[] v) { unsafe { @@ -56879,7 +57791,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramNamedParameter4(UInt32 id, Int32 len, ref Byte name, ref Double v) + void ProgramNamedParameter4v(UInt32 id, Int32 len, ref Byte name, ref Double v) { unsafe { @@ -56892,7 +57804,7 @@ namespace OpenTK.OpenGL } public static - void ProgramNamedParameter4(Int32 id, Int32 len, ref Byte name, ref Double v) + void ProgramNamedParameter4v(Int32 id, Int32 len, ref Byte name, ref Double v) { unsafe { @@ -59379,14 +60291,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParameterI4(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32* @params) + unsafe void ProgramLocalParameterI4v(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32* @params) { unsafe { Delegates.glProgramLocalParameterI4ivNV((GL.Enums.NV_gpu_program4)target, (UInt32)index, (Int32*)@params); } } [System.CLSCompliant(false)] public static - void ProgramLocalParameterI4(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32[] @params) + void ProgramLocalParameterI4v(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32[] @params) { unsafe { @@ -59399,7 +60311,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramLocalParameterI4(GL.Enums.NV_gpu_program4 target, UInt32 index, ref Int32 @params) + void ProgramLocalParameterI4v(GL.Enums.NV_gpu_program4 target, UInt32 index, ref Int32 @params) { unsafe { @@ -59412,14 +60324,36 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParametersI4(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, Int32* @params) + unsafe void ProgramLocalParametersI4iv(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, Int32* @params) { unsafe { Delegates.glProgramLocalParametersI4ivNV((GL.Enums.NV_gpu_program4)target, (UInt32)index, (Int32)count, (Int32*)@params); } } [System.CLSCompliant(false)] public static - void ProgramLocalParametersI4(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, Int32[] @params) + unsafe void ProgramLocalParametersI4iv(GL.Enums.NV_gpu_program4 target, Int32 index, Int32 count, Int32* @params) + { + unsafe + { + Delegates.glProgramLocalParametersI4ivNV((GL.Enums.NV_gpu_program4)target, (UInt32)index, (Int32)count, (Int32*)@params); + } + } + + [System.CLSCompliant(false)] + public static + void ProgramLocalParametersI4iv(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glProgramLocalParametersI4ivNV((GL.Enums.NV_gpu_program4)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr); + } + } + } + + public static + void ProgramLocalParametersI4iv(GL.Enums.NV_gpu_program4 target, Int32 index, Int32 count, Int32[] @params) { unsafe { @@ -59432,7 +60366,19 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramLocalParametersI4(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, ref Int32 @params) + void ProgramLocalParametersI4iv(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, ref Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glProgramLocalParametersI4ivNV((GL.Enums.NV_gpu_program4)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr); + } + } + } + + public static + void ProgramLocalParametersI4iv(GL.Enums.NV_gpu_program4 target, Int32 index, Int32 count, ref Int32 @params) { unsafe { @@ -59458,14 +60404,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParameterI4(GL.Enums.NV_gpu_program4 target, UInt32 index, UInt32* @params) + unsafe void ProgramLocalParameterI4v(GL.Enums.NV_gpu_program4 target, UInt32 index, UInt32* @params) { unsafe { Delegates.glProgramLocalParameterI4uivNV((GL.Enums.NV_gpu_program4)target, (UInt32)index, (UInt32*)@params); } } [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParameterI4(GL.Enums.NV_gpu_program4 target, Int32 index, Int32* @params) + unsafe void ProgramLocalParameterI4v(GL.Enums.NV_gpu_program4 target, Int32 index, Int32* @params) { unsafe { @@ -59475,7 +60421,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramLocalParameterI4(GL.Enums.NV_gpu_program4 target, UInt32 index, UInt32[] @params) + void ProgramLocalParameterI4v(GL.Enums.NV_gpu_program4 target, UInt32 index, UInt32[] @params) { unsafe { @@ -59487,7 +60433,7 @@ namespace OpenTK.OpenGL } public static - void ProgramLocalParameterI4(GL.Enums.NV_gpu_program4 target, Int32 index, Int32[] @params) + void ProgramLocalParameterI4v(GL.Enums.NV_gpu_program4 target, Int32 index, Int32[] @params) { unsafe { @@ -59500,7 +60446,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramLocalParameterI4(GL.Enums.NV_gpu_program4 target, UInt32 index, ref UInt32 @params) + void ProgramLocalParameterI4v(GL.Enums.NV_gpu_program4 target, UInt32 index, ref UInt32 @params) { unsafe { @@ -59512,7 +60458,7 @@ namespace OpenTK.OpenGL } public static - void ProgramLocalParameterI4(GL.Enums.NV_gpu_program4 target, Int32 index, ref Int32 @params) + void ProgramLocalParameterI4v(GL.Enums.NV_gpu_program4 target, Int32 index, ref Int32 @params) { unsafe { @@ -59525,14 +60471,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParametersI4(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, UInt32* @params) + unsafe void ProgramLocalParametersI4uiv(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, UInt32* @params) { unsafe { Delegates.glProgramLocalParametersI4uivNV((GL.Enums.NV_gpu_program4)target, (UInt32)index, (Int32)count, (UInt32*)@params); } } [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParametersI4(GL.Enums.NV_gpu_program4 target, Int32 index, Int32 count, Int32* @params) + unsafe void ProgramLocalParametersI4uiv(GL.Enums.NV_gpu_program4 target, Int32 index, Int32 count, Int32* @params) { unsafe { @@ -59542,7 +60488,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramLocalParametersI4(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, UInt32[] @params) + void ProgramLocalParametersI4uiv(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, UInt32[] @params) { unsafe { @@ -59554,7 +60500,7 @@ namespace OpenTK.OpenGL } public static - void ProgramLocalParametersI4(GL.Enums.NV_gpu_program4 target, Int32 index, Int32 count, Int32[] @params) + void ProgramLocalParametersI4uiv(GL.Enums.NV_gpu_program4 target, Int32 index, Int32 count, Int32[] @params) { unsafe { @@ -59567,7 +60513,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramLocalParametersI4(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, ref UInt32 @params) + void ProgramLocalParametersI4uiv(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, ref UInt32 @params) { unsafe { @@ -59579,7 +60525,7 @@ namespace OpenTK.OpenGL } public static - void ProgramLocalParametersI4(GL.Enums.NV_gpu_program4 target, Int32 index, Int32 count, ref Int32 @params) + void ProgramLocalParametersI4uiv(GL.Enums.NV_gpu_program4 target, Int32 index, Int32 count, ref Int32 @params) { unsafe { @@ -59599,14 +60545,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParameterI4(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32* @params) + unsafe void ProgramEnvParameterI4v(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32* @params) { unsafe { Delegates.glProgramEnvParameterI4ivNV((GL.Enums.NV_gpu_program4)target, (UInt32)index, (Int32*)@params); } } [System.CLSCompliant(false)] public static - void ProgramEnvParameterI4(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32[] @params) + void ProgramEnvParameterI4v(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32[] @params) { unsafe { @@ -59619,7 +60565,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramEnvParameterI4(GL.Enums.NV_gpu_program4 target, UInt32 index, ref Int32 @params) + void ProgramEnvParameterI4v(GL.Enums.NV_gpu_program4 target, UInt32 index, ref Int32 @params) { unsafe { @@ -59632,14 +60578,36 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParametersI4(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, Int32* @params) + unsafe void ProgramEnvParametersI4iv(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, Int32* @params) { unsafe { Delegates.glProgramEnvParametersI4ivNV((GL.Enums.NV_gpu_program4)target, (UInt32)index, (Int32)count, (Int32*)@params); } } [System.CLSCompliant(false)] public static - void ProgramEnvParametersI4(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, Int32[] @params) + unsafe void ProgramEnvParametersI4iv(GL.Enums.NV_gpu_program4 target, Int32 index, Int32 count, Int32* @params) + { + unsafe + { + Delegates.glProgramEnvParametersI4ivNV((GL.Enums.NV_gpu_program4)target, (UInt32)index, (Int32)count, (Int32*)@params); + } + } + + [System.CLSCompliant(false)] + public static + void ProgramEnvParametersI4iv(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glProgramEnvParametersI4ivNV((GL.Enums.NV_gpu_program4)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr); + } + } + } + + public static + void ProgramEnvParametersI4iv(GL.Enums.NV_gpu_program4 target, Int32 index, Int32 count, Int32[] @params) { unsafe { @@ -59652,7 +60620,19 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramEnvParametersI4(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, ref Int32 @params) + void ProgramEnvParametersI4iv(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, ref Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glProgramEnvParametersI4ivNV((GL.Enums.NV_gpu_program4)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr); + } + } + } + + public static + void ProgramEnvParametersI4iv(GL.Enums.NV_gpu_program4 target, Int32 index, Int32 count, ref Int32 @params) { unsafe { @@ -59678,14 +60658,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParameterI4(GL.Enums.NV_gpu_program4 target, UInt32 index, UInt32* @params) + unsafe void ProgramEnvParameterI4v(GL.Enums.NV_gpu_program4 target, UInt32 index, UInt32* @params) { unsafe { Delegates.glProgramEnvParameterI4uivNV((GL.Enums.NV_gpu_program4)target, (UInt32)index, (UInt32*)@params); } } [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParameterI4(GL.Enums.NV_gpu_program4 target, Int32 index, Int32* @params) + unsafe void ProgramEnvParameterI4v(GL.Enums.NV_gpu_program4 target, Int32 index, Int32* @params) { unsafe { @@ -59695,7 +60675,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramEnvParameterI4(GL.Enums.NV_gpu_program4 target, UInt32 index, UInt32[] @params) + void ProgramEnvParameterI4v(GL.Enums.NV_gpu_program4 target, UInt32 index, UInt32[] @params) { unsafe { @@ -59707,7 +60687,7 @@ namespace OpenTK.OpenGL } public static - void ProgramEnvParameterI4(GL.Enums.NV_gpu_program4 target, Int32 index, Int32[] @params) + void ProgramEnvParameterI4v(GL.Enums.NV_gpu_program4 target, Int32 index, Int32[] @params) { unsafe { @@ -59720,7 +60700,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramEnvParameterI4(GL.Enums.NV_gpu_program4 target, UInt32 index, ref UInt32 @params) + void ProgramEnvParameterI4v(GL.Enums.NV_gpu_program4 target, UInt32 index, ref UInt32 @params) { unsafe { @@ -59732,7 +60712,7 @@ namespace OpenTK.OpenGL } public static - void ProgramEnvParameterI4(GL.Enums.NV_gpu_program4 target, Int32 index, ref Int32 @params) + void ProgramEnvParameterI4v(GL.Enums.NV_gpu_program4 target, Int32 index, ref Int32 @params) { unsafe { @@ -59745,14 +60725,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParametersI4(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, UInt32* @params) + unsafe void ProgramEnvParametersI4uiv(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, UInt32* @params) { unsafe { Delegates.glProgramEnvParametersI4uivNV((GL.Enums.NV_gpu_program4)target, (UInt32)index, (Int32)count, (UInt32*)@params); } } [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParametersI4(GL.Enums.NV_gpu_program4 target, Int32 index, Int32 count, Int32* @params) + unsafe void ProgramEnvParametersI4uiv(GL.Enums.NV_gpu_program4 target, Int32 index, Int32 count, Int32* @params) { unsafe { @@ -59762,7 +60742,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramEnvParametersI4(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, UInt32[] @params) + void ProgramEnvParametersI4uiv(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, UInt32[] @params) { unsafe { @@ -59774,7 +60754,7 @@ namespace OpenTK.OpenGL } public static - void ProgramEnvParametersI4(GL.Enums.NV_gpu_program4 target, Int32 index, Int32 count, Int32[] @params) + void ProgramEnvParametersI4uiv(GL.Enums.NV_gpu_program4 target, Int32 index, Int32 count, Int32[] @params) { unsafe { @@ -59787,7 +60767,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramEnvParametersI4(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, ref UInt32 @params) + void ProgramEnvParametersI4uiv(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, ref UInt32 @params) { unsafe { @@ -59799,7 +60779,7 @@ namespace OpenTK.OpenGL } public static - void ProgramEnvParametersI4(GL.Enums.NV_gpu_program4 target, Int32 index, Int32 count, ref Int32 @params) + void ProgramEnvParametersI4uiv(GL.Enums.NV_gpu_program4 target, Int32 index, Int32 count, ref Int32 @params) { unsafe { @@ -60023,13 +61003,13 @@ namespace OpenTK.OpenGL } public static - void DepthRanged(Double zNear, Double zFar) + void DepthRange(Double zNear, Double zFar) { Delegates.glDepthRangedNV((Double)zNear, (Double)zFar); } public static - void ClearDepthd(Double depth) + void ClearDepth(Double depth) { Delegates.glClearDepthdNV((Double)depth); } @@ -60048,14 +61028,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramBufferParametersv(GL.Enums.NV_parameter_buffer_object target, UInt32 buffer, UInt32 index, Int32 count, Single* @params) + unsafe void ProgramBufferParametersfv(GL.Enums.NV_parameter_buffer_object target, UInt32 buffer, UInt32 index, Int32 count, Single* @params) { unsafe { Delegates.glProgramBufferParametersfvNV((GL.Enums.NV_parameter_buffer_object)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Single*)@params); } } [System.CLSCompliant(false)] public static - unsafe void ProgramBufferParametersv(GL.Enums.NV_parameter_buffer_object target, Int32 buffer, Int32 index, Int32 count, Single* @params) + unsafe void ProgramBufferParametersfv(GL.Enums.NV_parameter_buffer_object target, Int32 buffer, Int32 index, Int32 count, Single* @params) { unsafe { @@ -60065,7 +61045,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramBufferParametersv(GL.Enums.NV_parameter_buffer_object target, UInt32 buffer, UInt32 index, Int32 count, Single[] @params) + void ProgramBufferParametersfv(GL.Enums.NV_parameter_buffer_object target, UInt32 buffer, UInt32 index, Int32 count, Single[] @params) { unsafe { @@ -60077,7 +61057,7 @@ namespace OpenTK.OpenGL } public static - void ProgramBufferParametersv(GL.Enums.NV_parameter_buffer_object target, Int32 buffer, Int32 index, Int32 count, Single[] @params) + void ProgramBufferParametersfv(GL.Enums.NV_parameter_buffer_object target, Int32 buffer, Int32 index, Int32 count, Single[] @params) { unsafe { @@ -60090,7 +61070,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramBufferParametersv(GL.Enums.NV_parameter_buffer_object target, UInt32 buffer, UInt32 index, Int32 count, ref Single @params) + void ProgramBufferParametersfv(GL.Enums.NV_parameter_buffer_object target, UInt32 buffer, UInt32 index, Int32 count, ref Single @params) { unsafe { @@ -60102,7 +61082,7 @@ namespace OpenTK.OpenGL } public static - void ProgramBufferParametersv(GL.Enums.NV_parameter_buffer_object target, Int32 buffer, Int32 index, Int32 count, ref Single @params) + void ProgramBufferParametersfv(GL.Enums.NV_parameter_buffer_object target, Int32 buffer, Int32 index, Int32 count, ref Single @params) { unsafe { @@ -60115,14 +61095,36 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramBufferParametersIv(GL.Enums.NV_parameter_buffer_object target, UInt32 buffer, UInt32 index, Int32 count, Int32* @params) + unsafe void ProgramBufferParametersIiv(GL.Enums.NV_parameter_buffer_object target, UInt32 buffer, UInt32 index, Int32 count, Int32* @params) { unsafe { Delegates.glProgramBufferParametersIivNV((GL.Enums.NV_parameter_buffer_object)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Int32*)@params); } } [System.CLSCompliant(false)] public static - void ProgramBufferParametersIv(GL.Enums.NV_parameter_buffer_object target, UInt32 buffer, UInt32 index, Int32 count, Int32[] @params) + unsafe void ProgramBufferParametersIiv(GL.Enums.NV_parameter_buffer_object target, Int32 buffer, Int32 index, Int32 count, Int32* @params) + { + unsafe + { + Delegates.glProgramBufferParametersIivNV((GL.Enums.NV_parameter_buffer_object)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Int32*)@params); + } + } + + [System.CLSCompliant(false)] + public static + void ProgramBufferParametersIiv(GL.Enums.NV_parameter_buffer_object target, UInt32 buffer, UInt32 index, Int32 count, Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glProgramBufferParametersIivNV((GL.Enums.NV_parameter_buffer_object)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Int32*)@params_ptr); + } + } + } + + public static + void ProgramBufferParametersIiv(GL.Enums.NV_parameter_buffer_object target, Int32 buffer, Int32 index, Int32 count, Int32[] @params) { unsafe { @@ -60135,7 +61137,19 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramBufferParametersIv(GL.Enums.NV_parameter_buffer_object target, UInt32 buffer, UInt32 index, Int32 count, ref Int32 @params) + void ProgramBufferParametersIiv(GL.Enums.NV_parameter_buffer_object target, UInt32 buffer, UInt32 index, Int32 count, ref Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glProgramBufferParametersIivNV((GL.Enums.NV_parameter_buffer_object)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Int32*)@params_ptr); + } + } + } + + public static + void ProgramBufferParametersIiv(GL.Enums.NV_parameter_buffer_object target, Int32 buffer, Int32 index, Int32 count, ref Int32 @params) { unsafe { @@ -60148,14 +61162,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramBufferParametersIv(GL.Enums.NV_parameter_buffer_object target, UInt32 buffer, UInt32 index, Int32 count, UInt32* @params) + unsafe void ProgramBufferParametersIuiv(GL.Enums.NV_parameter_buffer_object target, UInt32 buffer, UInt32 index, Int32 count, UInt32* @params) { unsafe { Delegates.glProgramBufferParametersIuivNV((GL.Enums.NV_parameter_buffer_object)target, (UInt32)buffer, (UInt32)index, (Int32)count, (UInt32*)@params); } } [System.CLSCompliant(false)] public static - unsafe void ProgramBufferParametersIv(GL.Enums.NV_parameter_buffer_object target, Int32 buffer, Int32 index, Int32 count, Int32* @params) + unsafe void ProgramBufferParametersIuiv(GL.Enums.NV_parameter_buffer_object target, Int32 buffer, Int32 index, Int32 count, Int32* @params) { unsafe { @@ -60165,7 +61179,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramBufferParametersIv(GL.Enums.NV_parameter_buffer_object target, UInt32 buffer, UInt32 index, Int32 count, UInt32[] @params) + void ProgramBufferParametersIuiv(GL.Enums.NV_parameter_buffer_object target, UInt32 buffer, UInt32 index, Int32 count, UInt32[] @params) { unsafe { @@ -60177,7 +61191,7 @@ namespace OpenTK.OpenGL } public static - void ProgramBufferParametersIv(GL.Enums.NV_parameter_buffer_object target, Int32 buffer, Int32 index, Int32 count, Int32[] @params) + void ProgramBufferParametersIuiv(GL.Enums.NV_parameter_buffer_object target, Int32 buffer, Int32 index, Int32 count, Int32[] @params) { unsafe { @@ -60190,7 +61204,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramBufferParametersIv(GL.Enums.NV_parameter_buffer_object target, UInt32 buffer, UInt32 index, Int32 count, ref UInt32 @params) + void ProgramBufferParametersIuiv(GL.Enums.NV_parameter_buffer_object target, UInt32 buffer, UInt32 index, Int32 count, ref UInt32 @params) { unsafe { @@ -60202,7 +61216,7 @@ namespace OpenTK.OpenGL } public static - void ProgramBufferParametersIv(GL.Enums.NV_parameter_buffer_object target, Int32 buffer, Int32 index, Int32 count, ref Int32 @params) + void ProgramBufferParametersIuiv(GL.Enums.NV_parameter_buffer_object target, Int32 buffer, Int32 index, Int32 count, ref Int32 @params) { unsafe { @@ -60333,14 +61347,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TransformFeedbackVaryings(UInt32 program, Int32 count, Int32* locations, GL.Enums.NV_transform_feedback bufferMode) + unsafe void TransformFeedbackVarying(UInt32 program, Int32 count, Int32* locations, GL.Enums.NV_transform_feedback bufferMode) { unsafe { Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations, (GL.Enums.NV_transform_feedback)bufferMode); } } [System.CLSCompliant(false)] public static - unsafe void TransformFeedbackVaryings(Int32 program, Int32 count, Int32* locations, GL.Enums.NV_transform_feedback bufferMode) + unsafe void TransformFeedbackVarying(Int32 program, Int32 count, Int32* locations, GL.Enums.NV_transform_feedback bufferMode) { unsafe { @@ -60350,7 +61364,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void TransformFeedbackVaryings(UInt32 program, Int32 count, Int32[] locations, GL.Enums.NV_transform_feedback bufferMode) + void TransformFeedbackVarying(UInt32 program, Int32 count, Int32[] locations, GL.Enums.NV_transform_feedback bufferMode) { unsafe { @@ -60362,7 +61376,7 @@ namespace OpenTK.OpenGL } public static - void TransformFeedbackVaryings(Int32 program, Int32 count, Int32[] locations, GL.Enums.NV_transform_feedback bufferMode) + void TransformFeedbackVarying(Int32 program, Int32 count, Int32[] locations, GL.Enums.NV_transform_feedback bufferMode) { unsafe { @@ -60375,7 +61389,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void TransformFeedbackVaryings(UInt32 program, Int32 count, ref Int32 locations, GL.Enums.NV_transform_feedback bufferMode) + void TransformFeedbackVarying(UInt32 program, Int32 count, ref Int32 locations, GL.Enums.NV_transform_feedback bufferMode) { unsafe { @@ -60387,7 +61401,7 @@ namespace OpenTK.OpenGL } public static - void TransformFeedbackVaryings(Int32 program, Int32 count, ref Int32 locations, GL.Enums.NV_transform_feedback bufferMode) + void TransformFeedbackVarying(Int32 program, Int32 count, ref Int32 locations, GL.Enums.NV_transform_feedback bufferMode) { unsafe { @@ -61299,20 +62313,20 @@ namespace OpenTK.OpenGL } public static - void WindowPos2(Double x, Double y) + void WindowPos2d(Double x, Double y) { Delegates.glWindowPos2dMESA((Double)x, (Double)y); } [System.CLSCompliant(false)] public static - unsafe void WindowPos2(Double* v) + unsafe void WindowPos2dv(Double* v) { unsafe { Delegates.glWindowPos2dvMESA((Double*)v); } } public static - void WindowPos2(Double[] v) + void WindowPos2dv(Double[] v) { unsafe { @@ -61324,7 +62338,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos2(ref Double v) + void WindowPos2dv(ref Double v) { unsafe { @@ -61336,20 +62350,20 @@ namespace OpenTK.OpenGL } public static - void WindowPos2(Single x, Single y) + void WindowPos2f(Single x, Single y) { Delegates.glWindowPos2fMESA((Single)x, (Single)y); } [System.CLSCompliant(false)] public static - unsafe void WindowPos2(Single* v) + unsafe void WindowPos2fv(Single* v) { unsafe { Delegates.glWindowPos2fvMESA((Single*)v); } } public static - void WindowPos2(Single[] v) + void WindowPos2fv(Single[] v) { unsafe { @@ -61361,7 +62375,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos2(ref Single v) + void WindowPos2fv(ref Single v) { unsafe { @@ -61373,20 +62387,20 @@ namespace OpenTK.OpenGL } public static - void WindowPos2(Int32 x, Int32 y) + void WindowPos2i(Int32 x, Int32 y) { Delegates.glWindowPos2iMESA((Int32)x, (Int32)y); } [System.CLSCompliant(false)] public static - unsafe void WindowPos2(Int32* v) + unsafe void WindowPos2iv(Int32* v) { unsafe { Delegates.glWindowPos2ivMESA((Int32*)v); } } public static - void WindowPos2(Int32[] v) + void WindowPos2iv(Int32[] v) { unsafe { @@ -61398,7 +62412,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos2(ref Int32 v) + void WindowPos2iv(ref Int32 v) { unsafe { @@ -61410,20 +62424,20 @@ namespace OpenTK.OpenGL } public static - void WindowPos2(Int16 x, Int16 y) + void WindowPos2s(Int16 x, Int16 y) { Delegates.glWindowPos2sMESA((Int16)x, (Int16)y); } [System.CLSCompliant(false)] public static - unsafe void WindowPos2(Int16* v) + unsafe void WindowPos2sv(Int16* v) { unsafe { Delegates.glWindowPos2svMESA((Int16*)v); } } public static - void WindowPos2(Int16[] v) + void WindowPos2sv(Int16[] v) { unsafe { @@ -61435,7 +62449,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos2(ref Int16 v) + void WindowPos2sv(ref Int16 v) { unsafe { @@ -61447,20 +62461,20 @@ namespace OpenTK.OpenGL } public static - void WindowPos3(Double x, Double y, Double z) + void WindowPos3d(Double x, Double y, Double z) { Delegates.glWindowPos3dMESA((Double)x, (Double)y, (Double)z); } [System.CLSCompliant(false)] public static - unsafe void WindowPos3(Double* v) + unsafe void WindowPos3dv(Double* v) { unsafe { Delegates.glWindowPos3dvMESA((Double*)v); } } public static - void WindowPos3(Double[] v) + void WindowPos3dv(Double[] v) { unsafe { @@ -61472,7 +62486,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos3(ref Double v) + void WindowPos3dv(ref Double v) { unsafe { @@ -61484,20 +62498,20 @@ namespace OpenTK.OpenGL } public static - void WindowPos3(Single x, Single y, Single z) + void WindowPos3f(Single x, Single y, Single z) { Delegates.glWindowPos3fMESA((Single)x, (Single)y, (Single)z); } [System.CLSCompliant(false)] public static - unsafe void WindowPos3(Single* v) + unsafe void WindowPos3fv(Single* v) { unsafe { Delegates.glWindowPos3fvMESA((Single*)v); } } public static - void WindowPos3(Single[] v) + void WindowPos3fv(Single[] v) { unsafe { @@ -61509,7 +62523,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos3(ref Single v) + void WindowPos3fv(ref Single v) { unsafe { @@ -61521,20 +62535,20 @@ namespace OpenTK.OpenGL } public static - void WindowPos3(Int32 x, Int32 y, Int32 z) + void WindowPos3i(Int32 x, Int32 y, Int32 z) { Delegates.glWindowPos3iMESA((Int32)x, (Int32)y, (Int32)z); } [System.CLSCompliant(false)] public static - unsafe void WindowPos3(Int32* v) + unsafe void WindowPos3iv(Int32* v) { unsafe { Delegates.glWindowPos3ivMESA((Int32*)v); } } public static - void WindowPos3(Int32[] v) + void WindowPos3iv(Int32[] v) { unsafe { @@ -61546,7 +62560,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos3(ref Int32 v) + void WindowPos3iv(ref Int32 v) { unsafe { @@ -61558,20 +62572,20 @@ namespace OpenTK.OpenGL } public static - void WindowPos3(Int16 x, Int16 y, Int16 z) + void WindowPos3s(Int16 x, Int16 y, Int16 z) { Delegates.glWindowPos3sMESA((Int16)x, (Int16)y, (Int16)z); } [System.CLSCompliant(false)] public static - unsafe void WindowPos3(Int16* v) + unsafe void WindowPos3sv(Int16* v) { unsafe { Delegates.glWindowPos3svMESA((Int16*)v); } } public static - void WindowPos3(Int16[] v) + void WindowPos3sv(Int16[] v) { unsafe { @@ -61583,7 +62597,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos3(ref Int16 v) + void WindowPos3sv(ref Int16 v) { unsafe { @@ -61595,20 +62609,20 @@ namespace OpenTK.OpenGL } public static - void WindowPos4(Double x, Double y, Double z, Double w) + void WindowPos4d(Double x, Double y, Double z, Double w) { Delegates.glWindowPos4dMESA((Double)x, (Double)y, (Double)z, (Double)w); } [System.CLSCompliant(false)] public static - unsafe void WindowPos4(Double* v) + unsafe void WindowPos4dv(Double* v) { unsafe { Delegates.glWindowPos4dvMESA((Double*)v); } } public static - void WindowPos4(Double[] v) + void WindowPos4dv(Double[] v) { unsafe { @@ -61620,7 +62634,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos4(ref Double v) + void WindowPos4dv(ref Double v) { unsafe { @@ -61632,20 +62646,20 @@ namespace OpenTK.OpenGL } public static - void WindowPos4(Single x, Single y, Single z, Single w) + void WindowPos4f(Single x, Single y, Single z, Single w) { Delegates.glWindowPos4fMESA((Single)x, (Single)y, (Single)z, (Single)w); } [System.CLSCompliant(false)] public static - unsafe void WindowPos4(Single* v) + unsafe void WindowPos4fv(Single* v) { unsafe { Delegates.glWindowPos4fvMESA((Single*)v); } } public static - void WindowPos4(Single[] v) + void WindowPos4fv(Single[] v) { unsafe { @@ -61657,7 +62671,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos4(ref Single v) + void WindowPos4fv(ref Single v) { unsafe { @@ -61669,20 +62683,20 @@ namespace OpenTK.OpenGL } public static - void WindowPos4(Int32 x, Int32 y, Int32 z, Int32 w) + void WindowPos4i(Int32 x, Int32 y, Int32 z, Int32 w) { Delegates.glWindowPos4iMESA((Int32)x, (Int32)y, (Int32)z, (Int32)w); } [System.CLSCompliant(false)] public static - unsafe void WindowPos4(Int32* v) + unsafe void WindowPos4iv(Int32* v) { unsafe { Delegates.glWindowPos4ivMESA((Int32*)v); } } public static - void WindowPos4(Int32[] v) + void WindowPos4iv(Int32[] v) { unsafe { @@ -61694,7 +62708,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos4(ref Int32 v) + void WindowPos4iv(ref Int32 v) { unsafe { @@ -61706,20 +62720,20 @@ namespace OpenTK.OpenGL } public static - void WindowPos4(Int16 x, Int16 y, Int16 z, Int16 w) + void WindowPos4s(Int16 x, Int16 y, Int16 z, Int16 w) { Delegates.glWindowPos4sMESA((Int16)x, (Int16)y, (Int16)z, (Int16)w); } [System.CLSCompliant(false)] public static - unsafe void WindowPos4(Int16* v) + unsafe void WindowPos4sv(Int16* v) { unsafe { Delegates.glWindowPos4svMESA((Int16*)v); } } public static - void WindowPos4(Int16[] v) + void WindowPos4sv(Int16[] v) { unsafe { @@ -61731,7 +62745,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos4(ref Int16 v) + void WindowPos4sv(ref Int16 v) { unsafe { @@ -61748,14 +62762,14 @@ namespace OpenTK.OpenGL { [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawArrays(GL.Enums.BeginMode* mode, Int32* first, Int32* count, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawArray(GL.Enums.BeginMode* mode, Int32* first, Int32* count, Int32 primcount, Int32 modestride) { unsafe { Delegates.glMultiModeDrawArraysIBM((GL.Enums.BeginMode*)mode, (Int32*)first, (Int32*)count, (Int32)primcount, (Int32)modestride); } } [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawArrays(GL.Enums.BeginMode* mode, Int32* first, Int32[] count, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawArray(GL.Enums.BeginMode* mode, Int32* first, Int32[] count, Int32 primcount, Int32 modestride) { unsafe { @@ -61768,7 +62782,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawArrays(GL.Enums.BeginMode* mode, Int32* first, ref Int32 count, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawArray(GL.Enums.BeginMode* mode, Int32* first, ref Int32 count, Int32 primcount, Int32 modestride) { unsafe { @@ -61781,7 +62795,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawArrays(GL.Enums.BeginMode* mode, Int32[] first, Int32* count, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawArray(GL.Enums.BeginMode* mode, Int32[] first, Int32* count, Int32 primcount, Int32 modestride) { unsafe { @@ -61794,7 +62808,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawArrays(GL.Enums.BeginMode* mode, Int32[] first, Int32[] count, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawArray(GL.Enums.BeginMode* mode, Int32[] first, Int32[] count, Int32 primcount, Int32 modestride) { unsafe { @@ -61808,7 +62822,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawArrays(GL.Enums.BeginMode* mode, Int32[] first, ref Int32 count, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawArray(GL.Enums.BeginMode* mode, Int32[] first, ref Int32 count, Int32 primcount, Int32 modestride) { unsafe { @@ -61822,7 +62836,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawArrays(GL.Enums.BeginMode* mode, ref Int32 first, Int32* count, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawArray(GL.Enums.BeginMode* mode, ref Int32 first, Int32* count, Int32 primcount, Int32 modestride) { unsafe { @@ -61835,7 +62849,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawArrays(GL.Enums.BeginMode* mode, ref Int32 first, Int32[] count, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawArray(GL.Enums.BeginMode* mode, ref Int32 first, Int32[] count, Int32 primcount, Int32 modestride) { unsafe { @@ -61849,7 +62863,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawArrays(GL.Enums.BeginMode* mode, ref Int32 first, ref Int32 count, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawArray(GL.Enums.BeginMode* mode, ref Int32 first, ref Int32 count, Int32 primcount, Int32 modestride) { unsafe { @@ -61863,7 +62877,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawArrays(GL.Enums.BeginMode[] mode, Int32* first, Int32* count, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawArray(GL.Enums.BeginMode[] mode, Int32* first, Int32* count, Int32 primcount, Int32 modestride) { unsafe { @@ -61876,7 +62890,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawArrays(GL.Enums.BeginMode[] mode, Int32* first, Int32[] count, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawArray(GL.Enums.BeginMode[] mode, Int32* first, Int32[] count, Int32 primcount, Int32 modestride) { unsafe { @@ -61890,7 +62904,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawArrays(GL.Enums.BeginMode[] mode, Int32* first, ref Int32 count, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawArray(GL.Enums.BeginMode[] mode, Int32* first, ref Int32 count, Int32 primcount, Int32 modestride) { unsafe { @@ -61904,7 +62918,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawArrays(GL.Enums.BeginMode[] mode, Int32[] first, Int32* count, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawArray(GL.Enums.BeginMode[] mode, Int32[] first, Int32* count, Int32 primcount, Int32 modestride) { unsafe { @@ -61917,7 +62931,7 @@ namespace OpenTK.OpenGL } public static - void MultiModeDrawArrays(GL.Enums.BeginMode[] mode, Int32[] first, Int32[] count, Int32 primcount, Int32 modestride) + void MultiModeDrawArray(GL.Enums.BeginMode[] mode, Int32[] first, Int32[] count, Int32 primcount, Int32 modestride) { unsafe { @@ -61931,7 +62945,7 @@ namespace OpenTK.OpenGL } public static - void MultiModeDrawArrays(GL.Enums.BeginMode[] mode, Int32[] first, ref Int32 count, Int32 primcount, Int32 modestride) + void MultiModeDrawArray(GL.Enums.BeginMode[] mode, Int32[] first, ref Int32 count, Int32 primcount, Int32 modestride) { unsafe { @@ -61946,7 +62960,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawArrays(GL.Enums.BeginMode[] mode, ref Int32 first, Int32* count, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawArray(GL.Enums.BeginMode[] mode, ref Int32 first, Int32* count, Int32 primcount, Int32 modestride) { unsafe { @@ -61959,7 +62973,7 @@ namespace OpenTK.OpenGL } public static - void MultiModeDrawArrays(GL.Enums.BeginMode[] mode, ref Int32 first, Int32[] count, Int32 primcount, Int32 modestride) + void MultiModeDrawArray(GL.Enums.BeginMode[] mode, ref Int32 first, Int32[] count, Int32 primcount, Int32 modestride) { unsafe { @@ -61973,7 +62987,7 @@ namespace OpenTK.OpenGL } public static - void MultiModeDrawArrays(GL.Enums.BeginMode[] mode, ref Int32 first, ref Int32 count, Int32 primcount, Int32 modestride) + void MultiModeDrawArray(GL.Enums.BeginMode[] mode, ref Int32 first, ref Int32 count, Int32 primcount, Int32 modestride) { unsafe { @@ -61988,7 +63002,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawArrays(ref GL.Enums.BeginMode mode, Int32* first, Int32* count, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawArray(ref GL.Enums.BeginMode mode, Int32* first, Int32* count, Int32 primcount, Int32 modestride) { unsafe { @@ -62001,7 +63015,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawArrays(ref GL.Enums.BeginMode mode, Int32* first, Int32[] count, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawArray(ref GL.Enums.BeginMode mode, Int32* first, Int32[] count, Int32 primcount, Int32 modestride) { unsafe { @@ -62015,7 +63029,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawArrays(ref GL.Enums.BeginMode mode, Int32* first, ref Int32 count, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawArray(ref GL.Enums.BeginMode mode, Int32* first, ref Int32 count, Int32 primcount, Int32 modestride) { unsafe { @@ -62029,7 +63043,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawArrays(ref GL.Enums.BeginMode mode, Int32[] first, Int32* count, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawArray(ref GL.Enums.BeginMode mode, Int32[] first, Int32* count, Int32 primcount, Int32 modestride) { unsafe { @@ -62042,7 +63056,7 @@ namespace OpenTK.OpenGL } public static - void MultiModeDrawArrays(ref GL.Enums.BeginMode mode, Int32[] first, Int32[] count, Int32 primcount, Int32 modestride) + void MultiModeDrawArray(ref GL.Enums.BeginMode mode, Int32[] first, Int32[] count, Int32 primcount, Int32 modestride) { unsafe { @@ -62056,7 +63070,7 @@ namespace OpenTK.OpenGL } public static - void MultiModeDrawArrays(ref GL.Enums.BeginMode mode, Int32[] first, ref Int32 count, Int32 primcount, Int32 modestride) + void MultiModeDrawArray(ref GL.Enums.BeginMode mode, Int32[] first, ref Int32 count, Int32 primcount, Int32 modestride) { unsafe { @@ -62071,7 +63085,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawArrays(ref GL.Enums.BeginMode mode, ref Int32 first, Int32* count, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawArray(ref GL.Enums.BeginMode mode, ref Int32 first, Int32* count, Int32 primcount, Int32 modestride) { unsafe { @@ -62084,7 +63098,7 @@ namespace OpenTK.OpenGL } public static - void MultiModeDrawArrays(ref GL.Enums.BeginMode mode, ref Int32 first, Int32[] count, Int32 primcount, Int32 modestride) + void MultiModeDrawArray(ref GL.Enums.BeginMode mode, ref Int32 first, Int32[] count, Int32 primcount, Int32 modestride) { unsafe { @@ -62098,7 +63112,7 @@ namespace OpenTK.OpenGL } public static - void MultiModeDrawArrays(ref GL.Enums.BeginMode mode, ref Int32 first, ref Int32 count, Int32 primcount, Int32 modestride) + void MultiModeDrawArray(ref GL.Enums.BeginMode mode, ref Int32 first, ref Int32 count, Int32 primcount, Int32 modestride) { unsafe { @@ -62771,13 +63785,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void PassTexCoord(UInt32 dst, UInt32 coord, GL.Enums.ATI_fragment_shader swizzle) + void PassTexCoor(UInt32 dst, UInt32 coord, GL.Enums.ATI_fragment_shader swizzle) { Delegates.glPassTexCoordATI((UInt32)dst, (UInt32)coord, (GL.Enums.ATI_fragment_shader)swizzle); } public static - void PassTexCoord(Int32 dst, Int32 coord, GL.Enums.ATI_fragment_shader swizzle) + void PassTexCoor(Int32 dst, Int32 coord, GL.Enums.ATI_fragment_shader swizzle) { Delegates.glPassTexCoordATI((UInt32)dst, (UInt32)coord, (GL.Enums.ATI_fragment_shader)swizzle); } @@ -62941,13 +63955,13 @@ namespace OpenTK.OpenGL } public static - void PNTrianglesi(GL.Enums.ATI_pn_triangles pname, Int32 param) + void PNTriangles(GL.Enums.ATI_pn_triangles pname, Int32 param) { Delegates.glPNTrianglesiATI((GL.Enums.ATI_pn_triangles)pname, (Int32)param); } public static - void PNTrianglesf(GL.Enums.ATI_pn_triangles pname, Single param) + void PNTriangles(GL.Enums.ATI_pn_triangles pname, Single param) { Delegates.glPNTrianglesfATI((GL.Enums.ATI_pn_triangles)pname, (Single)param); } @@ -63041,14 +64055,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetObjectBufferv(UInt32 buffer, GL.Enums.ATI_vertex_array_object pname, [Out] Single* @params) + unsafe void GetObjectBuffer(UInt32 buffer, GL.Enums.ATI_vertex_array_object pname, [Out] Single* @params) { unsafe { Delegates.glGetObjectBufferfvATI((UInt32)buffer, (GL.Enums.ATI_vertex_array_object)pname, (Single*)@params); } } [System.CLSCompliant(false)] public static - unsafe void GetObjectBufferv(Int32 buffer, GL.Enums.ATI_vertex_array_object pname, [Out] Single* @params) + unsafe void GetObjectBuffer(Int32 buffer, GL.Enums.ATI_vertex_array_object pname, [Out] Single* @params) { unsafe { @@ -63058,7 +64072,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetObjectBufferv(UInt32 buffer, GL.Enums.ATI_vertex_array_object pname, [Out] Single[] @params) + void GetObjectBuffer(UInt32 buffer, GL.Enums.ATI_vertex_array_object pname, [Out] Single[] @params) { unsafe { @@ -63070,7 +64084,7 @@ namespace OpenTK.OpenGL } public static - void GetObjectBufferv(Int32 buffer, GL.Enums.ATI_vertex_array_object pname, [Out] Single[] @params) + void GetObjectBuffer(Int32 buffer, GL.Enums.ATI_vertex_array_object pname, [Out] Single[] @params) { unsafe { @@ -63083,7 +64097,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetObjectBufferv(UInt32 buffer, GL.Enums.ATI_vertex_array_object pname, [Out] out Single @params) + void GetObjectBuffer(UInt32 buffer, GL.Enums.ATI_vertex_array_object pname, [Out] out Single @params) { unsafe { @@ -63096,7 +64110,7 @@ namespace OpenTK.OpenGL } public static - void GetObjectBufferv(Int32 buffer, GL.Enums.ATI_vertex_array_object pname, [Out] out Single @params) + void GetObjectBuffer(Int32 buffer, GL.Enums.ATI_vertex_array_object pname, [Out] out Single @params) { unsafe { @@ -63110,14 +64124,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetObjectBufferv(UInt32 buffer, GL.Enums.ATI_vertex_array_object pname, [Out] Int32* @params) + unsafe void GetObjectBuffer(UInt32 buffer, GL.Enums.ATI_vertex_array_object pname, [Out] Int32* @params) { unsafe { Delegates.glGetObjectBufferivATI((UInt32)buffer, (GL.Enums.ATI_vertex_array_object)pname, (Int32*)@params); } } [System.CLSCompliant(false)] public static - unsafe void GetObjectBufferv(Int32 buffer, GL.Enums.ATI_vertex_array_object pname, [Out] Int32* @params) + unsafe void GetObjectBuffer(Int32 buffer, GL.Enums.ATI_vertex_array_object pname, [Out] Int32* @params) { unsafe { @@ -63127,7 +64141,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetObjectBufferv(UInt32 buffer, GL.Enums.ATI_vertex_array_object pname, [Out] Int32[] @params) + void GetObjectBuffer(UInt32 buffer, GL.Enums.ATI_vertex_array_object pname, [Out] Int32[] @params) { unsafe { @@ -63139,7 +64153,7 @@ namespace OpenTK.OpenGL } public static - void GetObjectBufferv(Int32 buffer, GL.Enums.ATI_vertex_array_object pname, [Out] Int32[] @params) + void GetObjectBuffer(Int32 buffer, GL.Enums.ATI_vertex_array_object pname, [Out] Int32[] @params) { unsafe { @@ -63152,7 +64166,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetObjectBufferv(UInt32 buffer, GL.Enums.ATI_vertex_array_object pname, [Out] out Int32 @params) + void GetObjectBuffer(UInt32 buffer, GL.Enums.ATI_vertex_array_object pname, [Out] out Int32 @params) { unsafe { @@ -63165,7 +64179,7 @@ namespace OpenTK.OpenGL } public static - void GetObjectBufferv(Int32 buffer, GL.Enums.ATI_vertex_array_object pname, [Out] out Int32 @params) + void GetObjectBuffer(Int32 buffer, GL.Enums.ATI_vertex_array_object pname, [Out] out Int32 @params) { unsafe { @@ -63205,13 +64219,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetArrayObjectv(GL.Enums.EnableCap array, GL.Enums.ATI_vertex_array_object pname, [Out] Single* @params) + unsafe void GetArrayObject(GL.Enums.EnableCap array, GL.Enums.ATI_vertex_array_object pname, [Out] Single* @params) { unsafe { Delegates.glGetArrayObjectfvATI((GL.Enums.EnableCap)array, (GL.Enums.ATI_vertex_array_object)pname, (Single*)@params); } } public static - void GetArrayObjectv(GL.Enums.EnableCap array, GL.Enums.ATI_vertex_array_object pname, [Out] Single[] @params) + void GetArrayObject(GL.Enums.EnableCap array, GL.Enums.ATI_vertex_array_object pname, [Out] Single[] @params) { unsafe { @@ -63223,7 +64237,7 @@ namespace OpenTK.OpenGL } public static - void GetArrayObjectv(GL.Enums.EnableCap array, GL.Enums.ATI_vertex_array_object pname, [Out] out Single @params) + void GetArrayObject(GL.Enums.EnableCap array, GL.Enums.ATI_vertex_array_object pname, [Out] out Single @params) { unsafe { @@ -63237,13 +64251,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetArrayObjectv(GL.Enums.EnableCap array, GL.Enums.ATI_vertex_array_object pname, [Out] Int32* @params) + unsafe void GetArrayObject(GL.Enums.EnableCap array, GL.Enums.ATI_vertex_array_object pname, [Out] Int32* @params) { unsafe { Delegates.glGetArrayObjectivATI((GL.Enums.EnableCap)array, (GL.Enums.ATI_vertex_array_object)pname, (Int32*)@params); } } public static - void GetArrayObjectv(GL.Enums.EnableCap array, GL.Enums.ATI_vertex_array_object pname, [Out] Int32[] @params) + void GetArrayObject(GL.Enums.EnableCap array, GL.Enums.ATI_vertex_array_object pname, [Out] Int32[] @params) { unsafe { @@ -63255,7 +64269,7 @@ namespace OpenTK.OpenGL } public static - void GetArrayObjectv(GL.Enums.EnableCap array, GL.Enums.ATI_vertex_array_object pname, [Out] out Int32 @params) + void GetArrayObject(GL.Enums.EnableCap array, GL.Enums.ATI_vertex_array_object pname, [Out] out Int32 @params) { unsafe { @@ -63282,14 +64296,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVariantArrayObjectv(UInt32 id, GL.Enums.ATI_vertex_array_object pname, [Out] Single* @params) + unsafe void GetVariantArrayObject(UInt32 id, GL.Enums.ATI_vertex_array_object pname, [Out] Single* @params) { unsafe { Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (GL.Enums.ATI_vertex_array_object)pname, (Single*)@params); } } [System.CLSCompliant(false)] public static - unsafe void GetVariantArrayObjectv(Int32 id, GL.Enums.ATI_vertex_array_object pname, [Out] Single* @params) + unsafe void GetVariantArrayObject(Int32 id, GL.Enums.ATI_vertex_array_object pname, [Out] Single* @params) { unsafe { @@ -63299,7 +64313,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetVariantArrayObjectv(UInt32 id, GL.Enums.ATI_vertex_array_object pname, [Out] Single[] @params) + void GetVariantArrayObject(UInt32 id, GL.Enums.ATI_vertex_array_object pname, [Out] Single[] @params) { unsafe { @@ -63311,7 +64325,7 @@ namespace OpenTK.OpenGL } public static - void GetVariantArrayObjectv(Int32 id, GL.Enums.ATI_vertex_array_object pname, [Out] Single[] @params) + void GetVariantArrayObject(Int32 id, GL.Enums.ATI_vertex_array_object pname, [Out] Single[] @params) { unsafe { @@ -63324,7 +64338,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetVariantArrayObjectv(UInt32 id, GL.Enums.ATI_vertex_array_object pname, [Out] out Single @params) + void GetVariantArrayObject(UInt32 id, GL.Enums.ATI_vertex_array_object pname, [Out] out Single @params) { unsafe { @@ -63337,7 +64351,7 @@ namespace OpenTK.OpenGL } public static - void GetVariantArrayObjectv(Int32 id, GL.Enums.ATI_vertex_array_object pname, [Out] out Single @params) + void GetVariantArrayObject(Int32 id, GL.Enums.ATI_vertex_array_object pname, [Out] out Single @params) { unsafe { @@ -63351,14 +64365,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVariantArrayObjectv(UInt32 id, GL.Enums.ATI_vertex_array_object pname, [Out] Int32* @params) + unsafe void GetVariantArrayObject(UInt32 id, GL.Enums.ATI_vertex_array_object pname, [Out] Int32* @params) { unsafe { Delegates.glGetVariantArrayObjectivATI((UInt32)id, (GL.Enums.ATI_vertex_array_object)pname, (Int32*)@params); } } [System.CLSCompliant(false)] public static - unsafe void GetVariantArrayObjectv(Int32 id, GL.Enums.ATI_vertex_array_object pname, [Out] Int32* @params) + unsafe void GetVariantArrayObject(Int32 id, GL.Enums.ATI_vertex_array_object pname, [Out] Int32* @params) { unsafe { @@ -63368,7 +64382,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetVariantArrayObjectv(UInt32 id, GL.Enums.ATI_vertex_array_object pname, [Out] Int32[] @params) + void GetVariantArrayObject(UInt32 id, GL.Enums.ATI_vertex_array_object pname, [Out] Int32[] @params) { unsafe { @@ -63380,7 +64394,7 @@ namespace OpenTK.OpenGL } public static - void GetVariantArrayObjectv(Int32 id, GL.Enums.ATI_vertex_array_object pname, [Out] Int32[] @params) + void GetVariantArrayObject(Int32 id, GL.Enums.ATI_vertex_array_object pname, [Out] Int32[] @params) { unsafe { @@ -63393,7 +64407,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetVariantArrayObjectv(UInt32 id, GL.Enums.ATI_vertex_array_object pname, [Out] out Int32 @params) + void GetVariantArrayObject(UInt32 id, GL.Enums.ATI_vertex_array_object pname, [Out] out Int32 @params) { unsafe { @@ -63406,7 +64420,7 @@ namespace OpenTK.OpenGL } public static - void GetVariantArrayObjectv(Int32 id, GL.Enums.ATI_vertex_array_object pname, [Out] out Int32 @params) + void GetVariantArrayObject(Int32 id, GL.Enums.ATI_vertex_array_object pname, [Out] out Int32 @params) { unsafe { @@ -63426,13 +64440,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexStream1sv(GL.Enums.ATI_vertex_streams stream, Int16* coords) + unsafe void VertexStream1v(GL.Enums.ATI_vertex_streams stream, Int16* coords) { unsafe { Delegates.glVertexStream1svATI((GL.Enums.ATI_vertex_streams)stream, (Int16*)coords); } } public static - void VertexStream1sv(GL.Enums.ATI_vertex_streams stream, Int16[] coords) + void VertexStream1v(GL.Enums.ATI_vertex_streams stream, Int16[] coords) { unsafe { @@ -63444,7 +64458,7 @@ namespace OpenTK.OpenGL } public static - void VertexStream1sv(GL.Enums.ATI_vertex_streams stream, ref Int16 coords) + void VertexStream1v(GL.Enums.ATI_vertex_streams stream, ref Int16 coords) { unsafe { @@ -63463,13 +64477,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexStream1iv(GL.Enums.ATI_vertex_streams stream, Int32* coords) + unsafe void VertexStream1v(GL.Enums.ATI_vertex_streams stream, Int32* coords) { unsafe { Delegates.glVertexStream1ivATI((GL.Enums.ATI_vertex_streams)stream, (Int32*)coords); } } public static - void VertexStream1iv(GL.Enums.ATI_vertex_streams stream, Int32[] coords) + void VertexStream1v(GL.Enums.ATI_vertex_streams stream, Int32[] coords) { unsafe { @@ -63481,7 +64495,7 @@ namespace OpenTK.OpenGL } public static - void VertexStream1iv(GL.Enums.ATI_vertex_streams stream, ref Int32 coords) + void VertexStream1v(GL.Enums.ATI_vertex_streams stream, ref Int32 coords) { unsafe { @@ -63500,13 +64514,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexStream1fv(GL.Enums.ATI_vertex_streams stream, Single* coords) + unsafe void VertexStream1v(GL.Enums.ATI_vertex_streams stream, Single* coords) { unsafe { Delegates.glVertexStream1fvATI((GL.Enums.ATI_vertex_streams)stream, (Single*)coords); } } public static - void VertexStream1fv(GL.Enums.ATI_vertex_streams stream, Single[] coords) + void VertexStream1v(GL.Enums.ATI_vertex_streams stream, Single[] coords) { unsafe { @@ -63518,7 +64532,7 @@ namespace OpenTK.OpenGL } public static - void VertexStream1fv(GL.Enums.ATI_vertex_streams stream, ref Single coords) + void VertexStream1v(GL.Enums.ATI_vertex_streams stream, ref Single coords) { unsafe { @@ -63537,13 +64551,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexStream1dv(GL.Enums.ATI_vertex_streams stream, Double* coords) + unsafe void VertexStream1v(GL.Enums.ATI_vertex_streams stream, Double* coords) { unsafe { Delegates.glVertexStream1dvATI((GL.Enums.ATI_vertex_streams)stream, (Double*)coords); } } public static - void VertexStream1dv(GL.Enums.ATI_vertex_streams stream, Double[] coords) + void VertexStream1v(GL.Enums.ATI_vertex_streams stream, Double[] coords) { unsafe { @@ -63555,7 +64569,7 @@ namespace OpenTK.OpenGL } public static - void VertexStream1dv(GL.Enums.ATI_vertex_streams stream, ref Double coords) + void VertexStream1v(GL.Enums.ATI_vertex_streams stream, ref Double coords) { unsafe { @@ -64396,14 +65410,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribArrayObjectv(UInt32 index, GL.Enums.ATI_vertex_attrib_array_object pname, [Out] Single* @params) + unsafe void GetVertexAttribArrayObjectfv(UInt32 index, GL.Enums.ATI_vertex_attrib_array_object pname, [Out] Single* @params) { unsafe { Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (GL.Enums.ATI_vertex_attrib_array_object)pname, (Single*)@params); } } [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribArrayObjectv(Int32 index, GL.Enums.ATI_vertex_attrib_array_object pname, [Out] Single* @params) + unsafe void GetVertexAttribArrayObjectfv(Int32 index, GL.Enums.ATI_vertex_attrib_array_object pname, [Out] Single* @params) { unsafe { @@ -64413,7 +65427,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetVertexAttribArrayObjectv(UInt32 index, GL.Enums.ATI_vertex_attrib_array_object pname, [Out] Single[] @params) + void GetVertexAttribArrayObjectfv(UInt32 index, GL.Enums.ATI_vertex_attrib_array_object pname, [Out] Single[] @params) { unsafe { @@ -64425,7 +65439,7 @@ namespace OpenTK.OpenGL } public static - void GetVertexAttribArrayObjectv(Int32 index, GL.Enums.ATI_vertex_attrib_array_object pname, [Out] Single[] @params) + void GetVertexAttribArrayObjectfv(Int32 index, GL.Enums.ATI_vertex_attrib_array_object pname, [Out] Single[] @params) { unsafe { @@ -64438,7 +65452,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetVertexAttribArrayObjectv(UInt32 index, GL.Enums.ATI_vertex_attrib_array_object pname, [Out] out Single @params) + void GetVertexAttribArrayObjectfv(UInt32 index, GL.Enums.ATI_vertex_attrib_array_object pname, [Out] out Single @params) { unsafe { @@ -64451,7 +65465,7 @@ namespace OpenTK.OpenGL } public static - void GetVertexAttribArrayObjectv(Int32 index, GL.Enums.ATI_vertex_attrib_array_object pname, [Out] out Single @params) + void GetVertexAttribArrayObjectfv(Int32 index, GL.Enums.ATI_vertex_attrib_array_object pname, [Out] out Single @params) { unsafe { @@ -64465,14 +65479,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribArrayObjectv(UInt32 index, GL.Enums.ATI_vertex_attrib_array_object pname, [Out] Int32* @params) + unsafe void GetVertexAttribArrayObjectiv(UInt32 index, GL.Enums.ATI_vertex_attrib_array_object pname, [Out] Int32* @params) { unsafe { Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (GL.Enums.ATI_vertex_attrib_array_object)pname, (Int32*)@params); } } [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribArrayObjectv(Int32 index, GL.Enums.ATI_vertex_attrib_array_object pname, [Out] Int32* @params) + unsafe void GetVertexAttribArrayObjectiv(Int32 index, GL.Enums.ATI_vertex_attrib_array_object pname, [Out] Int32* @params) { unsafe { @@ -64482,7 +65496,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetVertexAttribArrayObjectv(UInt32 index, GL.Enums.ATI_vertex_attrib_array_object pname, [Out] Int32[] @params) + void GetVertexAttribArrayObjectiv(UInt32 index, GL.Enums.ATI_vertex_attrib_array_object pname, [Out] Int32[] @params) { unsafe { @@ -64494,7 +65508,7 @@ namespace OpenTK.OpenGL } public static - void GetVertexAttribArrayObjectv(Int32 index, GL.Enums.ATI_vertex_attrib_array_object pname, [Out] Int32[] @params) + void GetVertexAttribArrayObjectiv(Int32 index, GL.Enums.ATI_vertex_attrib_array_object pname, [Out] Int32[] @params) { unsafe { @@ -64507,7 +65521,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetVertexAttribArrayObjectv(UInt32 index, GL.Enums.ATI_vertex_attrib_array_object pname, [Out] out Int32 @params) + void GetVertexAttribArrayObjectiv(UInt32 index, GL.Enums.ATI_vertex_attrib_array_object pname, [Out] out Int32 @params) { unsafe { @@ -64520,7 +65534,7 @@ namespace OpenTK.OpenGL } public static - void GetVertexAttribArrayObjectv(Int32 index, GL.Enums.ATI_vertex_attrib_array_object pname, [Out] out Int32 @params) + void GetVertexAttribArrayObjectiv(Int32 index, GL.Enums.ATI_vertex_attrib_array_object pname, [Out] out Int32 @params) { unsafe { @@ -64920,14 +65934,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GenFences(Int32 n, [Out] UInt32* fences) + unsafe void GenFence(Int32 n, [Out] UInt32* fences) { unsafe { Delegates.glGenFencesAPPLE((Int32)n, (UInt32*)fences); } } [System.CLSCompliant(false)] public static - unsafe void GenFences(Int32 n, [Out] Int32* fences) + unsafe void GenFence(Int32 n, [Out] Int32* fences) { unsafe { @@ -64937,7 +65951,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenFences(Int32 n, [Out] UInt32[] fences) + void GenFence(Int32 n, [Out] UInt32[] fences) { unsafe { @@ -64949,7 +65963,7 @@ namespace OpenTK.OpenGL } public static - void GenFences(Int32 n, [Out] Int32[] fences) + void GenFence(Int32 n, [Out] Int32[] fences) { unsafe { @@ -64962,7 +65976,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenFences(Int32 n, [Out] out UInt32 fences) + void GenFence(Int32 n, [Out] out UInt32 fences) { unsafe { @@ -64975,7 +65989,7 @@ namespace OpenTK.OpenGL } public static - void GenFences(Int32 n, [Out] out Int32 fences) + void GenFence(Int32 n, [Out] out Int32 fences) { unsafe { @@ -64989,14 +66003,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void DeleteFences(Int32 n, UInt32* fences) + unsafe void DeleteFence(Int32 n, UInt32* fences) { unsafe { Delegates.glDeleteFencesAPPLE((Int32)n, (UInt32*)fences); } } [System.CLSCompliant(false)] public static - unsafe void DeleteFences(Int32 n, Int32* fences) + unsafe void DeleteFence(Int32 n, Int32* fences) { unsafe { @@ -65006,7 +66020,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeleteFences(Int32 n, UInt32[] fences) + void DeleteFence(Int32 n, UInt32[] fences) { unsafe { @@ -65018,7 +66032,7 @@ namespace OpenTK.OpenGL } public static - void DeleteFences(Int32 n, Int32[] fences) + void DeleteFence(Int32 n, Int32[] fences) { unsafe { @@ -65031,7 +66045,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeleteFences(Int32 n, ref UInt32 fences) + void DeleteFence(Int32 n, ref UInt32 fences) { unsafe { @@ -65043,7 +66057,7 @@ namespace OpenTK.OpenGL } public static - void DeleteFences(Int32 n, ref Int32 fences) + void DeleteFence(Int32 n, ref Int32 fences) { unsafe { @@ -65140,14 +66154,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void DeleteVertexArrays(Int32 n, UInt32* arrays) + unsafe void DeleteVertexArray(Int32 n, UInt32* arrays) { unsafe { Delegates.glDeleteVertexArraysAPPLE((Int32)n, (UInt32*)arrays); } } [System.CLSCompliant(false)] public static - unsafe void DeleteVertexArrays(Int32 n, Int32* arrays) + unsafe void DeleteVertexArray(Int32 n, Int32* arrays) { unsafe { @@ -65157,7 +66171,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeleteVertexArrays(Int32 n, UInt32[] arrays) + void DeleteVertexArray(Int32 n, UInt32[] arrays) { unsafe { @@ -65169,7 +66183,7 @@ namespace OpenTK.OpenGL } public static - void DeleteVertexArrays(Int32 n, Int32[] arrays) + void DeleteVertexArray(Int32 n, Int32[] arrays) { unsafe { @@ -65182,7 +66196,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeleteVertexArrays(Int32 n, ref UInt32 arrays) + void DeleteVertexArray(Int32 n, ref UInt32 arrays) { unsafe { @@ -65194,7 +66208,7 @@ namespace OpenTK.OpenGL } public static - void DeleteVertexArrays(Int32 n, ref Int32 arrays) + void DeleteVertexArray(Int32 n, ref Int32 arrays) { unsafe { @@ -65207,14 +66221,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GenVertexArrays(Int32 n, [Out] UInt32* arrays) + unsafe void GenVertexArray(Int32 n, [Out] UInt32* arrays) { unsafe { Delegates.glGenVertexArraysAPPLE((Int32)n, (UInt32*)arrays); } } [System.CLSCompliant(false)] public static - unsafe void GenVertexArrays(Int32 n, [Out] Int32* arrays) + unsafe void GenVertexArray(Int32 n, [Out] Int32* arrays) { unsafe { @@ -65224,7 +66238,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenVertexArrays(Int32 n, [Out] UInt32[] arrays) + void GenVertexArray(Int32 n, [Out] UInt32[] arrays) { unsafe { @@ -65236,7 +66250,7 @@ namespace OpenTK.OpenGL } public static - void GenVertexArrays(Int32 n, [Out] Int32[] arrays) + void GenVertexArray(Int32 n, [Out] Int32[] arrays) { unsafe { @@ -65249,7 +66263,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenVertexArrays(Int32 n, [Out] out UInt32 arrays) + void GenVertexArray(Int32 n, [Out] out UInt32 arrays) { unsafe { @@ -65262,7 +66276,7 @@ namespace OpenTK.OpenGL } public static - void GenVertexArrays(Int32 n, [Out] out Int32 arrays) + void GenVertexArray(Int32 n, [Out] out Int32 arrays) { unsafe { @@ -65334,13 +66348,13 @@ namespace OpenTK.OpenGL } public static - void VertexArrayParameteri(GL.Enums.APPLE_vertex_array_range pname, Int32 param) + void VertexArrayParameter(GL.Enums.APPLE_vertex_array_range pname, Int32 param) { Delegates.glVertexArrayParameteriAPPLE((GL.Enums.APPLE_vertex_array_range)pname, (Int32)param); } public static - void BufferParameteri(GL.Enums.APPLE_flush_buffer_range target, GL.Enums.APPLE_flush_buffer_range pname, Int32 param) + void BufferParameter(GL.Enums.APPLE_flush_buffer_range target, GL.Enums.APPLE_flush_buffer_range pname, Int32 param) { Delegates.glBufferParameteriAPPLE((GL.Enums.APPLE_flush_buffer_range)target, (GL.Enums.APPLE_flush_buffer_range)pname, (Int32)param); } diff --git a/Source/OpenTK/OpenGL/Glu.cs b/Source/OpenTK/OpenGL/Glu.cs index 9639a5a2..e6a1e380 100644 --- a/Source/OpenTK/OpenGL/Glu.cs +++ b/Source/OpenTK/OpenGL/Glu.cs @@ -14,7 +14,7 @@ namespace OpenTK.OpenGL /// /// Provides access to GLU functions. /// - public class Glu + public static partial class Glu { #region GLU functions diff --git a/Source/OpenTK/Platform/X11/API.cs b/Source/OpenTK/Platform/X11/API.cs index 87f976da..4fd02576 100644 --- a/Source/OpenTK/Platform/X11/API.cs +++ b/Source/OpenTK/Platform/X11/API.cs @@ -528,10 +528,10 @@ XF86VidModeGetGammaRampSize( #region X11 Structures - #region public class VisualInfo + #region internal class XVisualInfo [StructLayout(LayoutKind.Sequential)] - public class VisualInfo + public class XVisualInfo { public IntPtr visual; public VisualID visualid; diff --git a/Source/OpenTK/Platform/X11/GlxHelper.cs b/Source/OpenTK/Platform/X11/GlxHelper.cs index 520602ca..b0505e80 100644 --- a/Source/OpenTK/Platform/X11/GlxHelper.cs +++ b/Source/OpenTK/Platform/X11/GlxHelper.cs @@ -11,4 +11,24 @@ namespace OpenTK.Platform.X11 // Disable BeforeFieldInit optimization. static Glx() { } } + + public struct GLXDrawable + { + } + + public struct GLXContext + { + } + + public struct GLXHyperpipeNetworkPointer + { + } + + public struct GLXHyperpipeConfig + { + } + + public struct GLXHyperpipeConfigPointer + { + } } diff --git a/Source/OpenTK/Platform/X11/WindowInfo.cs b/Source/OpenTK/Platform/X11/WindowInfo.cs index ae161f78..0195461a 100644 --- a/Source/OpenTK/Platform/X11/WindowInfo.cs +++ b/Source/OpenTK/Platform/X11/WindowInfo.cs @@ -18,7 +18,7 @@ namespace OpenTK.Platform.X11 { public WindowInfo() { - visinfo = new VisualInfo(); + visinfo = new XVisualInfo(); } public WindowInfo(WindowInfo parent) @@ -35,7 +35,7 @@ namespace OpenTK.Platform.X11 private IntPtr rootWindow, handle, topLevelWindow, display; private int screen; private WindowInfo parent; - private VisualInfo visinfo; + private XVisualInfo visinfo; public IntPtr RootWindow { get { return rootWindow; } set { rootWindow = value; } } public IntPtr TopLevelWindow { get { return topLevelWindow; } set { topLevelWindow = value; } } diff --git a/Source/OpenTK/Platform/X11/X11GLContext.cs b/Source/OpenTK/Platform/X11/X11GLContext.cs index 11374a2c..c2cd6113 100644 --- a/Source/OpenTK/Platform/X11/X11GLContext.cs +++ b/Source/OpenTK/Platform/X11/X11GLContext.cs @@ -107,7 +107,7 @@ namespace OpenTK.Platform.X11 } else { - windowInfo.VisualInfo = (VisualInfo)Marshal.PtrToStructure(visual, typeof(VisualInfo)); + windowInfo.VisualInfo = (XVisualInfo)Marshal.PtrToStructure(visual, typeof(XVisualInfo)); Debug.Print("Prepared visual: {0}", windowInfo.VisualInfo.ToString()); } }