diff --git a/Source/Bind/FuncProcessor.cs b/Source/Bind/FuncProcessor.cs index ebf2e94c..7da19ec8 100644 --- a/Source/Bind/FuncProcessor.cs +++ b/Source/Bind/FuncProcessor.cs @@ -41,7 +41,7 @@ namespace Bind { const string Path = "/signatures/replace/function[@name='{0}' and @extension='{1}']"; static readonly Regex Endings = - new Regex(@"((((d|f|fi)|u?[isb])_?v?)|v)", RegexOptions.Compiled | RegexOptions.RightToLeft); + new Regex(@"((((d|f|fi)|(L?u?[isb]))_?(64)?v?)|(64)|v)", RegexOptions.Compiled | RegexOptions.RightToLeft); static readonly Regex EndingsNotToTrim = new Regex("(ib|[tdrey]s|[eE]n[vd]|bled|Flag|Tess|Status|Pixels|Instanced|Indexed|Varyings|Boolean|IDs)", RegexOptions.Compiled | RegexOptions.RightToLeft); static readonly Regex EndingsAddV = new Regex("^0", RegexOptions.Compiled); @@ -76,7 +76,7 @@ namespace Bind } // Trims unecessary suffices from the specified OpenGL function name. - static string TrimName(string name, bool keep_extension) + public static string TrimName(string name, bool keep_extension) { string trimmed_name = Utilities.StripGL2Extension(name); string extension = Utilities.GetGL2Extension(name); diff --git a/Source/Bind/Structures/Function.cs b/Source/Bind/Structures/Function.cs index 9516df44..16e336fc 100644 --- a/Source/Bind/Structures/Function.cs +++ b/Source/Bind/Structures/Function.cs @@ -122,33 +122,7 @@ namespace Bind.Structures } else { - TrimmedName = Utilities.StripGL2Extension(value); - - Match m = endingsNotToTrim.Match(TrimmedName); - if ((m.Index + m.Length) != TrimmedName.Length) - { - // Some endings should not be trimmed, for example: 'b' from Attrib - - m = endings.Match(TrimmedName); - - if (m.Length > 0 && m.Index + m.Length == TrimmedName.Length) - { - // Only trim endings, not internal matches. - if (m.Value[m.Length - 1] == 'v' && endingsAddV.IsMatch(Name) && - !Name.StartsWith("Get") && !Name.StartsWith("MatrixIndex")) - { - // Only trim ending 'v' when there is a number - TrimmedName = TrimmedName.Substring(0, m.Index) + "v"; - } - else - { - if (!TrimmedName.EndsWith("xedv")) - TrimmedName = TrimmedName.Substring(0, m.Index); - else - TrimmedName = TrimmedName.Substring(0, m.Index + 1); - } - } - } + TrimmedName = FuncProcessor.TrimName(Name, false); } } } diff --git a/Source/OpenTK/Graphics/OpenGL/GL.cs b/Source/OpenTK/Graphics/OpenGL/GL.cs index 8dc33bd6..dfe1e1c6 100644 --- a/Source/OpenTK/Graphics/OpenGL/GL.cs +++ b/Source/OpenTK/Graphics/OpenGL/GL.cs @@ -53950,10 +53950,28 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: v3.2] + + /// [requires: v3.2] + /// Return parameters of a buffer object + /// + /// + /// + /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER. + /// + /// + /// + /// + /// Specifies the symbolic name of a buffer object parameter. Accepted values are GL_BUFFER_ACCESS, GL_BUFFER_MAPPED, GL_BUFFER_SIZE, or GL_BUFFER_USAGE. + /// + /// + /// + /// + /// Returns the requested parameter. + /// + /// [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetBufferParameteri64v")] public static - void GetBufferParameteri64(OpenTK.Graphics.OpenGL.Version32 target, OpenTK.Graphics.OpenGL.Version32 pname, [OutAttribute] Int64[] @params) + void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int64[] @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -53963,7 +53981,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* @params_ptr = @params) { - Delegates.glGetBufferParameteri64v((OpenTK.Graphics.OpenGL.Version32)target, (OpenTK.Graphics.OpenGL.Version32)pname, (Int64*)@params_ptr); + Delegates.glGetBufferParameteri64v((OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.BufferParameterName)pname, (Int64*)@params_ptr); } } #if DEBUG @@ -53971,10 +53989,28 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: v3.2] + + /// [requires: v3.2] + /// Return parameters of a buffer object + /// + /// + /// + /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER. + /// + /// + /// + /// + /// Specifies the symbolic name of a buffer object parameter. Accepted values are GL_BUFFER_ACCESS, GL_BUFFER_MAPPED, GL_BUFFER_SIZE, or GL_BUFFER_USAGE. + /// + /// + /// + /// + /// Returns the requested parameter. + /// + /// [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetBufferParameteri64v")] public static - void GetBufferParameteri64(OpenTK.Graphics.OpenGL.Version32 target, OpenTK.Graphics.OpenGL.Version32 pname, [OutAttribute] out Int64 @params) + void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] out Int64 @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -53984,7 +54020,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetBufferParameteri64v((OpenTK.Graphics.OpenGL.Version32)target, (OpenTK.Graphics.OpenGL.Version32)pname, (Int64*)@params_ptr); + Delegates.glGetBufferParameteri64v((OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.BufferParameterName)pname, (Int64*)@params_ptr); @params = *@params_ptr; } } @@ -53993,17 +54029,35 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: v3.2] + + /// [requires: v3.2] + /// Return parameters of a buffer object + /// + /// + /// + /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER. + /// + /// + /// + /// + /// Specifies the symbolic name of a buffer object parameter. Accepted values are GL_BUFFER_ACCESS, GL_BUFFER_MAPPED, GL_BUFFER_SIZE, or GL_BUFFER_USAGE. + /// + /// + /// + /// + /// Returns the requested parameter. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetBufferParameteri64v")] public static - unsafe void GetBufferParameteri64(OpenTK.Graphics.OpenGL.Version32 target, OpenTK.Graphics.OpenGL.Version32 pname, [OutAttribute] Int64* @params) + unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int64* @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBufferParameteri64v((OpenTK.Graphics.OpenGL.Version32)target, (OpenTK.Graphics.OpenGL.Version32)pname, (Int64*)@params); + Delegates.glGetBufferParameteri64v((OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.BufferParameterName)pname, (Int64*)@params); #if DEBUG } #endif @@ -61902,10 +61956,28 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: v1.2 and ARB_timer_query] + + /// [requires: v1.2 and ARB_timer_query] + /// Return parameters of a query object + /// + /// + /// + /// Specifies the name of a query object. + /// + /// + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are GL_QUERY_RESULT or GL_QUERY_RESULT_AVAILABLE. + /// + /// + /// + /// + /// Returns the requested data. + /// + /// [AutoGenerated(Category = "ARB_timer_query", Version = "1.2", EntryPoint = "glGetQueryObjecti64v")] public static - void GetQueryObjecti64(Int32 id, OpenTK.Graphics.OpenGL.ArbTimerQuery pname, [OutAttribute] Int64[] @params) + void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute] Int64[] @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -61915,7 +61987,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* @params_ptr = @params) { - Delegates.glGetQueryObjecti64v((UInt32)id, (OpenTK.Graphics.OpenGL.ArbTimerQuery)pname, (Int64*)@params_ptr); + Delegates.glGetQueryObjecti64v((UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (Int64*)@params_ptr); } } #if DEBUG @@ -61923,10 +61995,28 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: v1.2 and ARB_timer_query] + + /// [requires: v1.2 and ARB_timer_query] + /// Return parameters of a query object + /// + /// + /// + /// Specifies the name of a query object. + /// + /// + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are GL_QUERY_RESULT or GL_QUERY_RESULT_AVAILABLE. + /// + /// + /// + /// + /// Returns the requested data. + /// + /// [AutoGenerated(Category = "ARB_timer_query", Version = "1.2", EntryPoint = "glGetQueryObjecti64v")] public static - void GetQueryObjecti64(Int32 id, OpenTK.Graphics.OpenGL.ArbTimerQuery pname, [OutAttribute] out Int64 @params) + void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute] out Int64 @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -61936,7 +62026,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetQueryObjecti64v((UInt32)id, (OpenTK.Graphics.OpenGL.ArbTimerQuery)pname, (Int64*)@params_ptr); + Delegates.glGetQueryObjecti64v((UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (Int64*)@params_ptr); @params = *@params_ptr; } } @@ -61945,27 +62035,63 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: v1.2 and ARB_timer_query] + + /// [requires: v1.2 and ARB_timer_query] + /// Return parameters of a query object + /// + /// + /// + /// Specifies the name of a query object. + /// + /// + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are GL_QUERY_RESULT or GL_QUERY_RESULT_AVAILABLE. + /// + /// + /// + /// + /// Returns the requested data. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_timer_query", Version = "1.2", EntryPoint = "glGetQueryObjecti64v")] public static - unsafe void GetQueryObjecti64(Int32 id, OpenTK.Graphics.OpenGL.ArbTimerQuery pname, [OutAttribute] Int64* @params) + unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute] Int64* @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjecti64v((UInt32)id, (OpenTK.Graphics.OpenGL.ArbTimerQuery)pname, (Int64*)@params); + Delegates.glGetQueryObjecti64v((UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (Int64*)@params); #if DEBUG } #endif } - /// [requires: v1.2 and ARB_timer_query] + + /// [requires: v1.2 and ARB_timer_query] + /// Return parameters of a query object + /// + /// + /// + /// Specifies the name of a query object. + /// + /// + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are GL_QUERY_RESULT or GL_QUERY_RESULT_AVAILABLE. + /// + /// + /// + /// + /// Returns the requested data. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_timer_query", Version = "1.2", EntryPoint = "glGetQueryObjecti64v")] public static - void GetQueryObjecti64(UInt32 id, OpenTK.Graphics.OpenGL.ArbTimerQuery pname, [OutAttribute] Int64[] @params) + void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute] Int64[] @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -61975,7 +62101,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* @params_ptr = @params) { - Delegates.glGetQueryObjecti64v((UInt32)id, (OpenTK.Graphics.OpenGL.ArbTimerQuery)pname, (Int64*)@params_ptr); + Delegates.glGetQueryObjecti64v((UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (Int64*)@params_ptr); } } #if DEBUG @@ -61983,11 +62109,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: v1.2 and ARB_timer_query] + + /// [requires: v1.2 and ARB_timer_query] + /// Return parameters of a query object + /// + /// + /// + /// Specifies the name of a query object. + /// + /// + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are GL_QUERY_RESULT or GL_QUERY_RESULT_AVAILABLE. + /// + /// + /// + /// + /// Returns the requested data. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_timer_query", Version = "1.2", EntryPoint = "glGetQueryObjecti64v")] public static - void GetQueryObjecti64(UInt32 id, OpenTK.Graphics.OpenGL.ArbTimerQuery pname, [OutAttribute] out Int64 @params) + void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute] out Int64 @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -61997,7 +62141,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetQueryObjecti64v((UInt32)id, (OpenTK.Graphics.OpenGL.ArbTimerQuery)pname, (Int64*)@params_ptr); + Delegates.glGetQueryObjecti64v((UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (Int64*)@params_ptr); @params = *@params_ptr; } } @@ -62006,17 +62150,35 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: v1.2 and ARB_timer_query] + + /// [requires: v1.2 and ARB_timer_query] + /// Return parameters of a query object + /// + /// + /// + /// Specifies the name of a query object. + /// + /// + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are GL_QUERY_RESULT or GL_QUERY_RESULT_AVAILABLE. + /// + /// + /// + /// + /// Returns the requested data. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_timer_query", Version = "1.2", EntryPoint = "glGetQueryObjecti64v")] public static - unsafe void GetQueryObjecti64(UInt32 id, OpenTK.Graphics.OpenGL.ArbTimerQuery pname, [OutAttribute] Int64* @params) + unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute] Int64* @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjecti64v((UInt32)id, (OpenTK.Graphics.OpenGL.ArbTimerQuery)pname, (Int64*)@params); + Delegates.glGetQueryObjecti64v((UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (Int64*)@params); #if DEBUG } #endif @@ -62250,70 +62412,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: v1.2 and ARB_timer_query] - [AutoGenerated(Category = "ARB_timer_query", Version = "1.2", EntryPoint = "glGetQueryObjectui64v")] - public static - void GetQueryObjectui64(Int32 id, OpenTK.Graphics.OpenGL.ArbTimerQuery pname, [OutAttribute] Int64[] @params) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - unsafe - { - fixed (Int64* @params_ptr = @params) - { - Delegates.glGetQueryObjectui64v((UInt32)id, (OpenTK.Graphics.OpenGL.ArbTimerQuery)pname, (UInt64*)@params_ptr); - } - } - #if DEBUG - } - #endif - } - - /// [requires: v1.2 and ARB_timer_query] - [AutoGenerated(Category = "ARB_timer_query", Version = "1.2", EntryPoint = "glGetQueryObjectui64v")] - public static - void GetQueryObjectui64(Int32 id, OpenTK.Graphics.OpenGL.ArbTimerQuery pname, [OutAttribute] out Int64 @params) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - unsafe - { - fixed (Int64* @params_ptr = &@params) - { - Delegates.glGetQueryObjectui64v((UInt32)id, (OpenTK.Graphics.OpenGL.ArbTimerQuery)pname, (UInt64*)@params_ptr); - @params = *@params_ptr; - } - } - #if DEBUG - } - #endif - } - - /// [requires: v1.2 and ARB_timer_query] + + /// [requires: v1.2 and ARB_timer_query] + /// Return parameters of a query object + /// + /// + /// + /// Specifies the name of a query object. + /// + /// + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are GL_QUERY_RESULT or GL_QUERY_RESULT_AVAILABLE. + /// + /// + /// + /// + /// Returns the requested data. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_timer_query", Version = "1.2", EntryPoint = "glGetQueryObjectui64v")] public static - unsafe void GetQueryObjectui64(Int32 id, OpenTK.Graphics.OpenGL.ArbTimerQuery pname, [OutAttribute] Int64* @params) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - Delegates.glGetQueryObjectui64v((UInt32)id, (OpenTK.Graphics.OpenGL.ArbTimerQuery)pname, (UInt64*)@params); - #if DEBUG - } - #endif - } - - /// [requires: v1.2 and ARB_timer_query] - [System.CLSCompliant(false)] - [AutoGenerated(Category = "ARB_timer_query", Version = "1.2", EntryPoint = "glGetQueryObjectui64v")] - public static - void GetQueryObjectui64(UInt32 id, OpenTK.Graphics.OpenGL.ArbTimerQuery pname, [OutAttribute] UInt64[] @params) + void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute] UInt64[] @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -62323,7 +62444,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* @params_ptr = @params) { - Delegates.glGetQueryObjectui64v((UInt32)id, (OpenTK.Graphics.OpenGL.ArbTimerQuery)pname, (UInt64*)@params_ptr); + Delegates.glGetQueryObjectui64v((UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (UInt64*)@params_ptr); } } #if DEBUG @@ -62331,11 +62452,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: v1.2 and ARB_timer_query] + + /// [requires: v1.2 and ARB_timer_query] + /// Return parameters of a query object + /// + /// + /// + /// Specifies the name of a query object. + /// + /// + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are GL_QUERY_RESULT or GL_QUERY_RESULT_AVAILABLE. + /// + /// + /// + /// + /// Returns the requested data. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_timer_query", Version = "1.2", EntryPoint = "glGetQueryObjectui64v")] public static - void GetQueryObjectui64(UInt32 id, OpenTK.Graphics.OpenGL.ArbTimerQuery pname, [OutAttribute] out UInt64 @params) + void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute] out UInt64 @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -62345,7 +62484,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* @params_ptr = &@params) { - Delegates.glGetQueryObjectui64v((UInt32)id, (OpenTK.Graphics.OpenGL.ArbTimerQuery)pname, (UInt64*)@params_ptr); + Delegates.glGetQueryObjectui64v((UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (UInt64*)@params_ptr); @params = *@params_ptr; } } @@ -62354,17 +62493,35 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: v1.2 and ARB_timer_query] + + /// [requires: v1.2 and ARB_timer_query] + /// Return parameters of a query object + /// + /// + /// + /// Specifies the name of a query object. + /// + /// + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are GL_QUERY_RESULT or GL_QUERY_RESULT_AVAILABLE. + /// + /// + /// + /// + /// Returns the requested data. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "ARB_timer_query", Version = "1.2", EntryPoint = "glGetQueryObjectui64v")] public static - unsafe void GetQueryObjectui64(UInt32 id, OpenTK.Graphics.OpenGL.ArbTimerQuery pname, [OutAttribute] UInt64* @params) + unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute] UInt64* @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjectui64v((UInt32)id, (OpenTK.Graphics.OpenGL.ArbTimerQuery)pname, (UInt64*)@params); + Delegates.glGetQueryObjectui64v((UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (UInt64*)@params); #if DEBUG } #endif @@ -128833,10 +128990,28 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: EXT_timer_query] + + /// [requires: EXT_timer_query] + /// Return parameters of a query object + /// + /// + /// + /// Specifies the name of a query object. + /// + /// + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are GL_QUERY_RESULT or GL_QUERY_RESULT_AVAILABLE. + /// + /// + /// + /// + /// Returns the requested data. + /// + /// [AutoGenerated(Category = "EXT_timer_query", Version = "1.5", EntryPoint = "glGetQueryObjecti64vEXT")] public static - void GetQueryObjecti64(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64[] @params) + void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64[] @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -128854,10 +129029,28 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: EXT_timer_query] + + /// [requires: EXT_timer_query] + /// Return parameters of a query object + /// + /// + /// + /// Specifies the name of a query object. + /// + /// + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are GL_QUERY_RESULT or GL_QUERY_RESULT_AVAILABLE. + /// + /// + /// + /// + /// Returns the requested data. + /// + /// [AutoGenerated(Category = "EXT_timer_query", Version = "1.5", EntryPoint = "glGetQueryObjecti64vEXT")] public static - void GetQueryObjecti64(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] out Int64 @params) + void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] out Int64 @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -128876,11 +129069,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: EXT_timer_query] + + /// [requires: EXT_timer_query] + /// Return parameters of a query object + /// + /// + /// + /// Specifies the name of a query object. + /// + /// + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are GL_QUERY_RESULT or GL_QUERY_RESULT_AVAILABLE. + /// + /// + /// + /// + /// Returns the requested data. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_timer_query", Version = "1.5", EntryPoint = "glGetQueryObjecti64vEXT")] public static - unsafe void GetQueryObjecti64(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64* @params) + unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64* @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -128892,11 +129103,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: EXT_timer_query] + + /// [requires: EXT_timer_query] + /// Return parameters of a query object + /// + /// + /// + /// Specifies the name of a query object. + /// + /// + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are GL_QUERY_RESULT or GL_QUERY_RESULT_AVAILABLE. + /// + /// + /// + /// + /// Returns the requested data. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_timer_query", Version = "1.5", EntryPoint = "glGetQueryObjecti64vEXT")] public static - void GetQueryObjecti64(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64[] @params) + void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64[] @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -128914,11 +129143,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: EXT_timer_query] + + /// [requires: EXT_timer_query] + /// Return parameters of a query object + /// + /// + /// + /// Specifies the name of a query object. + /// + /// + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are GL_QUERY_RESULT or GL_QUERY_RESULT_AVAILABLE. + /// + /// + /// + /// + /// Returns the requested data. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_timer_query", Version = "1.5", EntryPoint = "glGetQueryObjecti64vEXT")] public static - void GetQueryObjecti64(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] out Int64 @params) + void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] out Int64 @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -128937,11 +129184,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: EXT_timer_query] + + /// [requires: EXT_timer_query] + /// Return parameters of a query object + /// + /// + /// + /// Specifies the name of a query object. + /// + /// + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are GL_QUERY_RESULT or GL_QUERY_RESULT_AVAILABLE. + /// + /// + /// + /// + /// Returns the requested data. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_timer_query", Version = "1.5", EntryPoint = "glGetQueryObjecti64vEXT")] public static - unsafe void GetQueryObjecti64(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64* @params) + unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64* @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -128953,70 +129218,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: EXT_timer_query] - [AutoGenerated(Category = "EXT_timer_query", Version = "1.5", EntryPoint = "glGetQueryObjectui64vEXT")] - public static - void GetQueryObjectui64(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64[] @params) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - unsafe - { - fixed (Int64* @params_ptr = @params) - { - Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtTimerQuery)pname, (UInt64*)@params_ptr); - } - } - #if DEBUG - } - #endif - } - - /// [requires: EXT_timer_query] - [AutoGenerated(Category = "EXT_timer_query", Version = "1.5", EntryPoint = "glGetQueryObjectui64vEXT")] - public static - void GetQueryObjectui64(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] out Int64 @params) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - unsafe - { - fixed (Int64* @params_ptr = &@params) - { - Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtTimerQuery)pname, (UInt64*)@params_ptr); - @params = *@params_ptr; - } - } - #if DEBUG - } - #endif - } - - /// [requires: EXT_timer_query] + + /// [requires: EXT_timer_query] + /// Return parameters of a query object + /// + /// + /// + /// Specifies the name of a query object. + /// + /// + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are GL_QUERY_RESULT or GL_QUERY_RESULT_AVAILABLE. + /// + /// + /// + /// + /// Returns the requested data. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_timer_query", Version = "1.5", EntryPoint = "glGetQueryObjectui64vEXT")] public static - unsafe void GetQueryObjectui64(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64* @params) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtTimerQuery)pname, (UInt64*)@params); - #if DEBUG - } - #endif - } - - /// [requires: EXT_timer_query] - [System.CLSCompliant(false)] - [AutoGenerated(Category = "EXT_timer_query", Version = "1.5", EntryPoint = "glGetQueryObjectui64vEXT")] - public static - void GetQueryObjectui64(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] UInt64[] @params) + void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] UInt64[] @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -129034,11 +129258,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: EXT_timer_query] + + /// [requires: EXT_timer_query] + /// Return parameters of a query object + /// + /// + /// + /// Specifies the name of a query object. + /// + /// + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are GL_QUERY_RESULT or GL_QUERY_RESULT_AVAILABLE. + /// + /// + /// + /// + /// Returns the requested data. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_timer_query", Version = "1.5", EntryPoint = "glGetQueryObjectui64vEXT")] public static - void GetQueryObjectui64(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] out UInt64 @params) + void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] out UInt64 @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -129057,11 +129299,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: EXT_timer_query] + + /// [requires: EXT_timer_query] + /// Return parameters of a query object + /// + /// + /// + /// Specifies the name of a query object. + /// + /// + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are GL_QUERY_RESULT or GL_QUERY_RESULT_AVAILABLE. + /// + /// + /// + /// + /// Returns the requested data. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "EXT_timer_query", Version = "1.5", EntryPoint = "glGetQueryObjectui64vEXT")] public static - unsafe void GetQueryObjectui64(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] UInt64* @params) + unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] UInt64* @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -162781,10 +163041,28 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_shader_buffer_load] + + /// [requires: NV_shader_buffer_load] + /// Return parameters of a buffer object + /// + /// + /// + /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER. + /// + /// + /// + /// + /// Specifies the symbolic name of a buffer object parameter. Accepted values are GL_BUFFER_ACCESS, GL_BUFFER_MAPPED, GL_BUFFER_SIZE, or GL_BUFFER_USAGE. + /// + /// + /// + /// + /// Returns the requested parameter. + /// + /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glGetBufferParameterui64vNV")] public static - void GetBufferParameterui64(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] Int64[] @params) + void GetBufferParameter(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] Int64[] @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -162802,10 +163080,28 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_shader_buffer_load] + + /// [requires: NV_shader_buffer_load] + /// Return parameters of a buffer object + /// + /// + /// + /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER. + /// + /// + /// + /// + /// Specifies the symbolic name of a buffer object parameter. Accepted values are GL_BUFFER_ACCESS, GL_BUFFER_MAPPED, GL_BUFFER_SIZE, or GL_BUFFER_USAGE. + /// + /// + /// + /// + /// Returns the requested parameter. + /// + /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glGetBufferParameterui64vNV")] public static - void GetBufferParameterui64(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] out Int64 @params) + void GetBufferParameter(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] out Int64 @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -162824,11 +163120,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_shader_buffer_load] + + /// [requires: NV_shader_buffer_load] + /// Return parameters of a buffer object + /// + /// + /// + /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER. + /// + /// + /// + /// + /// Specifies the symbolic name of a buffer object parameter. Accepted values are GL_BUFFER_ACCESS, GL_BUFFER_MAPPED, GL_BUFFER_SIZE, or GL_BUFFER_USAGE. + /// + /// + /// + /// + /// Returns the requested parameter. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glGetBufferParameterui64vNV")] public static - unsafe void GetBufferParameterui64(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] Int64* @params) + unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] Int64* @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -162840,11 +163154,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_shader_buffer_load] + + /// [requires: NV_shader_buffer_load] + /// Return parameters of a buffer object + /// + /// + /// + /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER. + /// + /// + /// + /// + /// Specifies the symbolic name of a buffer object parameter. Accepted values are GL_BUFFER_ACCESS, GL_BUFFER_MAPPED, GL_BUFFER_SIZE, or GL_BUFFER_USAGE. + /// + /// + /// + /// + /// Returns the requested parameter. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glGetBufferParameterui64vNV")] public static - void GetBufferParameterui64(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] UInt64[] @params) + void GetBufferParameter(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] UInt64[] @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -162862,11 +163194,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_shader_buffer_load] + + /// [requires: NV_shader_buffer_load] + /// Return parameters of a buffer object + /// + /// + /// + /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER. + /// + /// + /// + /// + /// Specifies the symbolic name of a buffer object parameter. Accepted values are GL_BUFFER_ACCESS, GL_BUFFER_MAPPED, GL_BUFFER_SIZE, or GL_BUFFER_USAGE. + /// + /// + /// + /// + /// Returns the requested parameter. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glGetBufferParameterui64vNV")] public static - void GetBufferParameterui64(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] out UInt64 @params) + void GetBufferParameter(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] out UInt64 @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -162885,11 +163235,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_shader_buffer_load] + + /// [requires: NV_shader_buffer_load] + /// Return parameters of a buffer object + /// + /// + /// + /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER. + /// + /// + /// + /// + /// Specifies the symbolic name of a buffer object parameter. Accepted values are GL_BUFFER_ACCESS, GL_BUFFER_MAPPED, GL_BUFFER_SIZE, or GL_BUFFER_USAGE. + /// + /// + /// + /// + /// Returns the requested parameter. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glGetBufferParameterui64vNV")] public static - unsafe void GetBufferParameterui64(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] UInt64* @params) + unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] UInt64* @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -163557,7 +163925,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_shader_buffer_load] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glGetIntegerui64vNV")] public static - void GetIntegerui64(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute] Int64[] result) + void GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute] Int64[] result) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -163578,7 +163946,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_shader_buffer_load] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glGetIntegerui64vNV")] public static - void GetIntegerui64(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute] out Int64 result) + void GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute] out Int64 result) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -163601,7 +163969,7 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glGetIntegerui64vNV")] public static - unsafe void GetIntegerui64(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute] Int64* result) + unsafe void GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute] Int64* result) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -163617,7 +163985,7 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glGetIntegerui64vNV")] public static - void GetIntegerui64(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute] UInt64[] result) + void GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute] UInt64[] result) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -163639,7 +164007,7 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glGetIntegerui64vNV")] public static - void GetIntegerui64(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute] out UInt64 result) + void GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute] out UInt64 result) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -163662,7 +164030,7 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glGetIntegerui64vNV")] public static - unsafe void GetIntegerui64(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute] UInt64* result) + unsafe void GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute] UInt64* result) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -164492,7 +164860,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_shader_buffer_load] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glGetNamedBufferParameterui64vNV")] public static - void GetNamedBufferParameterui64(Int32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] Int64[] @params) + void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] Int64[] @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -164513,7 +164881,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_shader_buffer_load] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glGetNamedBufferParameterui64vNV")] public static - void GetNamedBufferParameterui64(Int32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] out Int64 @params) + void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] out Int64 @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -164536,7 +164904,7 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glGetNamedBufferParameterui64vNV")] public static - unsafe void GetNamedBufferParameterui64(Int32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] Int64* @params) + unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] Int64* @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -164552,7 +164920,7 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glGetNamedBufferParameterui64vNV")] public static - void GetNamedBufferParameterui64(UInt32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] UInt64[] @params) + void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] UInt64[] @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -164574,7 +164942,7 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glGetNamedBufferParameterui64vNV")] public static - void GetNamedBufferParameterui64(UInt32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] out UInt64 @params) + void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] out UInt64 @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -164597,7 +164965,7 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glGetNamedBufferParameterui64vNV")] public static - unsafe void GetNamedBufferParameterui64(UInt32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] UInt64* @params) + unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] UInt64* @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -166400,10 +166768,28 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Returns the value of a uniform variable + /// + /// + /// + /// Specifies the program object to be queried. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be queried. + /// + /// + /// + /// + /// Returns the value of the specified uniform variable. + /// + /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glGetUniformi64vNV")] public static - void GetUniformi64(Int32 program, Int32 location, [OutAttribute] Int64[] @params) + void GetUniform(Int32 program, Int32 location, [OutAttribute] Int64[] @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -166421,10 +166807,28 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Returns the value of a uniform variable + /// + /// + /// + /// Specifies the program object to be queried. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be queried. + /// + /// + /// + /// + /// Returns the value of the specified uniform variable. + /// + /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glGetUniformi64vNV")] public static - void GetUniformi64(Int32 program, Int32 location, [OutAttribute] out Int64 @params) + void GetUniform(Int32 program, Int32 location, [OutAttribute] out Int64 @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -166443,11 +166847,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Returns the value of a uniform variable + /// + /// + /// + /// Specifies the program object to be queried. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be queried. + /// + /// + /// + /// + /// Returns the value of the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glGetUniformi64vNV")] public static - unsafe void GetUniformi64(Int32 program, Int32 location, [OutAttribute] Int64* @params) + unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute] Int64* @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -166459,11 +166881,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Returns the value of a uniform variable + /// + /// + /// + /// Specifies the program object to be queried. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be queried. + /// + /// + /// + /// + /// Returns the value of the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glGetUniformi64vNV")] public static - void GetUniformi64(UInt32 program, Int32 location, [OutAttribute] Int64[] @params) + void GetUniform(UInt32 program, Int32 location, [OutAttribute] Int64[] @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -166481,11 +166921,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Returns the value of a uniform variable + /// + /// + /// + /// Specifies the program object to be queried. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be queried. + /// + /// + /// + /// + /// Returns the value of the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glGetUniformi64vNV")] public static - void GetUniformi64(UInt32 program, Int32 location, [OutAttribute] out Int64 @params) + void GetUniform(UInt32 program, Int32 location, [OutAttribute] out Int64 @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -166504,11 +166962,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Returns the value of a uniform variable + /// + /// + /// + /// Specifies the program object to be queried. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be queried. + /// + /// + /// + /// + /// Returns the value of the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glGetUniformi64vNV")] public static - unsafe void GetUniformi64(UInt32 program, Int32 location, [OutAttribute] Int64* @params) + unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute] Int64* @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -166520,70 +166996,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_shader_buffer_load] - [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glGetUniformui64vNV")] - public static - void GetUniformui64(Int32 program, Int32 location, [OutAttribute] Int64[] @params) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - unsafe - { - fixed (Int64* @params_ptr = @params) - { - Delegates.glGetUniformui64vNV((UInt32)program, (Int32)location, (UInt64*)@params_ptr); - } - } - #if DEBUG - } - #endif - } - - /// [requires: NV_shader_buffer_load] - [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glGetUniformui64vNV")] - public static - void GetUniformui64(Int32 program, Int32 location, [OutAttribute] out Int64 @params) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - unsafe - { - fixed (Int64* @params_ptr = &@params) - { - Delegates.glGetUniformui64vNV((UInt32)program, (Int32)location, (UInt64*)@params_ptr); - @params = *@params_ptr; - } - } - #if DEBUG - } - #endif - } - - /// [requires: NV_shader_buffer_load] + + /// [requires: NV_shader_buffer_load] + /// Returns the value of a uniform variable + /// + /// + /// + /// Specifies the program object to be queried. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be queried. + /// + /// + /// + /// + /// Returns the value of the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glGetUniformui64vNV")] public static - unsafe void GetUniformui64(Int32 program, Int32 location, [OutAttribute] Int64* @params) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - Delegates.glGetUniformui64vNV((UInt32)program, (Int32)location, (UInt64*)@params); - #if DEBUG - } - #endif - } - - /// [requires: NV_shader_buffer_load] - [System.CLSCompliant(false)] - [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glGetUniformui64vNV")] - public static - void GetUniformui64(UInt32 program, Int32 location, [OutAttribute] UInt64[] @params) + void GetUniform(UInt32 program, Int32 location, [OutAttribute] UInt64[] @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -166601,11 +167036,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_shader_buffer_load] + + /// [requires: NV_shader_buffer_load] + /// Returns the value of a uniform variable + /// + /// + /// + /// Specifies the program object to be queried. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be queried. + /// + /// + /// + /// + /// Returns the value of the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glGetUniformui64vNV")] public static - void GetUniformui64(UInt32 program, Int32 location, [OutAttribute] out UInt64 @params) + void GetUniform(UInt32 program, Int32 location, [OutAttribute] out UInt64 @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -166624,11 +167077,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_shader_buffer_load] + + /// [requires: NV_shader_buffer_load] + /// Returns the value of a uniform variable + /// + /// + /// + /// Specifies the program object to be queried. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be queried. + /// + /// + /// + /// + /// Returns the value of the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glGetUniformui64vNV")] public static - unsafe void GetUniformui64(UInt32 program, Int32 location, [OutAttribute] UInt64* @params) + unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute] UInt64* @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -167118,10 +167589,28 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_vertex_attrib_integer_64bit] + + /// [requires: NV_vertex_attrib_integer_64bit] + /// Return a generic vertex attribute parameter + /// + /// + /// + /// Specifies the generic vertex attribute parameter to be queried. + /// + /// + /// + /// + /// Specifies the symbolic name of the vertex attribute parameter to be queried. Accepted values are GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING, GL_VERTEX_ATTRIB_ARRAY_ENABLED, GL_VERTEX_ATTRIB_ARRAY_SIZE, GL_VERTEX_ATTRIB_ARRAY_STRIDE, GL_VERTEX_ATTRIB_ARRAY_TYPE, GL_VERTEX_ATTRIB_ARRAY_NORMALIZED, GL_VERTEX_ATTRIB_ARRAY_INTEGER, GL_VERTEX_ATTRIB_ARRAY_DIVISOR, or GL_CURRENT_VERTEX_ATTRIB. + /// + /// + /// + /// + /// Returns the requested data. + /// + /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glGetVertexAttribLi64vNV")] public static - void GetVertexAttribLi64(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute] Int64[] @params) + void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute] Int64[] @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -167139,10 +167628,28 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_vertex_attrib_integer_64bit] + + /// [requires: NV_vertex_attrib_integer_64bit] + /// Return a generic vertex attribute parameter + /// + /// + /// + /// Specifies the generic vertex attribute parameter to be queried. + /// + /// + /// + /// + /// Specifies the symbolic name of the vertex attribute parameter to be queried. Accepted values are GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING, GL_VERTEX_ATTRIB_ARRAY_ENABLED, GL_VERTEX_ATTRIB_ARRAY_SIZE, GL_VERTEX_ATTRIB_ARRAY_STRIDE, GL_VERTEX_ATTRIB_ARRAY_TYPE, GL_VERTEX_ATTRIB_ARRAY_NORMALIZED, GL_VERTEX_ATTRIB_ARRAY_INTEGER, GL_VERTEX_ATTRIB_ARRAY_DIVISOR, or GL_CURRENT_VERTEX_ATTRIB. + /// + /// + /// + /// + /// Returns the requested data. + /// + /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glGetVertexAttribLi64vNV")] public static - void GetVertexAttribLi64(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute] out Int64 @params) + void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute] out Int64 @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -167161,11 +167668,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_vertex_attrib_integer_64bit] + + /// [requires: NV_vertex_attrib_integer_64bit] + /// Return a generic vertex attribute parameter + /// + /// + /// + /// Specifies the generic vertex attribute parameter to be queried. + /// + /// + /// + /// + /// Specifies the symbolic name of the vertex attribute parameter to be queried. Accepted values are GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING, GL_VERTEX_ATTRIB_ARRAY_ENABLED, GL_VERTEX_ATTRIB_ARRAY_SIZE, GL_VERTEX_ATTRIB_ARRAY_STRIDE, GL_VERTEX_ATTRIB_ARRAY_TYPE, GL_VERTEX_ATTRIB_ARRAY_NORMALIZED, GL_VERTEX_ATTRIB_ARRAY_INTEGER, GL_VERTEX_ATTRIB_ARRAY_DIVISOR, or GL_CURRENT_VERTEX_ATTRIB. + /// + /// + /// + /// + /// Returns the requested data. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glGetVertexAttribLi64vNV")] public static - unsafe void GetVertexAttribLi64(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute] Int64* @params) + unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute] Int64* @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -167177,11 +167702,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_vertex_attrib_integer_64bit] + + /// [requires: NV_vertex_attrib_integer_64bit] + /// Return a generic vertex attribute parameter + /// + /// + /// + /// Specifies the generic vertex attribute parameter to be queried. + /// + /// + /// + /// + /// Specifies the symbolic name of the vertex attribute parameter to be queried. Accepted values are GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING, GL_VERTEX_ATTRIB_ARRAY_ENABLED, GL_VERTEX_ATTRIB_ARRAY_SIZE, GL_VERTEX_ATTRIB_ARRAY_STRIDE, GL_VERTEX_ATTRIB_ARRAY_TYPE, GL_VERTEX_ATTRIB_ARRAY_NORMALIZED, GL_VERTEX_ATTRIB_ARRAY_INTEGER, GL_VERTEX_ATTRIB_ARRAY_DIVISOR, or GL_CURRENT_VERTEX_ATTRIB. + /// + /// + /// + /// + /// Returns the requested data. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glGetVertexAttribLi64vNV")] public static - void GetVertexAttribLi64(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute] Int64[] @params) + void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute] Int64[] @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -167199,11 +167742,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_vertex_attrib_integer_64bit] + + /// [requires: NV_vertex_attrib_integer_64bit] + /// Return a generic vertex attribute parameter + /// + /// + /// + /// Specifies the generic vertex attribute parameter to be queried. + /// + /// + /// + /// + /// Specifies the symbolic name of the vertex attribute parameter to be queried. Accepted values are GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING, GL_VERTEX_ATTRIB_ARRAY_ENABLED, GL_VERTEX_ATTRIB_ARRAY_SIZE, GL_VERTEX_ATTRIB_ARRAY_STRIDE, GL_VERTEX_ATTRIB_ARRAY_TYPE, GL_VERTEX_ATTRIB_ARRAY_NORMALIZED, GL_VERTEX_ATTRIB_ARRAY_INTEGER, GL_VERTEX_ATTRIB_ARRAY_DIVISOR, or GL_CURRENT_VERTEX_ATTRIB. + /// + /// + /// + /// + /// Returns the requested data. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glGetVertexAttribLi64vNV")] public static - void GetVertexAttribLi64(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute] out Int64 @params) + void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute] out Int64 @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -167222,11 +167783,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_vertex_attrib_integer_64bit] + + /// [requires: NV_vertex_attrib_integer_64bit] + /// Return a generic vertex attribute parameter + /// + /// + /// + /// Specifies the generic vertex attribute parameter to be queried. + /// + /// + /// + /// + /// Specifies the symbolic name of the vertex attribute parameter to be queried. Accepted values are GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING, GL_VERTEX_ATTRIB_ARRAY_ENABLED, GL_VERTEX_ATTRIB_ARRAY_SIZE, GL_VERTEX_ATTRIB_ARRAY_STRIDE, GL_VERTEX_ATTRIB_ARRAY_TYPE, GL_VERTEX_ATTRIB_ARRAY_NORMALIZED, GL_VERTEX_ATTRIB_ARRAY_INTEGER, GL_VERTEX_ATTRIB_ARRAY_DIVISOR, or GL_CURRENT_VERTEX_ATTRIB. + /// + /// + /// + /// + /// Returns the requested data. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glGetVertexAttribLi64vNV")] public static - unsafe void GetVertexAttribLi64(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute] Int64* @params) + unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute] Int64* @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -167238,70 +167817,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_vertex_attrib_integer_64bit] - [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glGetVertexAttribLui64vNV")] - public static - void GetVertexAttribLui64(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute] Int64[] @params) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - unsafe - { - fixed (Int64* @params_ptr = @params) - { - Delegates.glGetVertexAttribLui64vNV((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit)pname, (UInt64*)@params_ptr); - } - } - #if DEBUG - } - #endif - } - - /// [requires: NV_vertex_attrib_integer_64bit] - [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glGetVertexAttribLui64vNV")] - public static - void GetVertexAttribLui64(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute] out Int64 @params) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - unsafe - { - fixed (Int64* @params_ptr = &@params) - { - Delegates.glGetVertexAttribLui64vNV((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit)pname, (UInt64*)@params_ptr); - @params = *@params_ptr; - } - } - #if DEBUG - } - #endif - } - - /// [requires: NV_vertex_attrib_integer_64bit] + + /// [requires: NV_vertex_attrib_integer_64bit] + /// Return a generic vertex attribute parameter + /// + /// + /// + /// Specifies the generic vertex attribute parameter to be queried. + /// + /// + /// + /// + /// Specifies the symbolic name of the vertex attribute parameter to be queried. Accepted values are GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING, GL_VERTEX_ATTRIB_ARRAY_ENABLED, GL_VERTEX_ATTRIB_ARRAY_SIZE, GL_VERTEX_ATTRIB_ARRAY_STRIDE, GL_VERTEX_ATTRIB_ARRAY_TYPE, GL_VERTEX_ATTRIB_ARRAY_NORMALIZED, GL_VERTEX_ATTRIB_ARRAY_INTEGER, GL_VERTEX_ATTRIB_ARRAY_DIVISOR, or GL_CURRENT_VERTEX_ATTRIB. + /// + /// + /// + /// + /// Returns the requested data. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glGetVertexAttribLui64vNV")] public static - unsafe void GetVertexAttribLui64(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute] Int64* @params) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - Delegates.glGetVertexAttribLui64vNV((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit)pname, (UInt64*)@params); - #if DEBUG - } - #endif - } - - /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] - [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glGetVertexAttribLui64vNV")] - public static - void GetVertexAttribLui64(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute] UInt64[] @params) + void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute] UInt64[] @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -167319,11 +167857,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_vertex_attrib_integer_64bit] + + /// [requires: NV_vertex_attrib_integer_64bit] + /// Return a generic vertex attribute parameter + /// + /// + /// + /// Specifies the generic vertex attribute parameter to be queried. + /// + /// + /// + /// + /// Specifies the symbolic name of the vertex attribute parameter to be queried. Accepted values are GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING, GL_VERTEX_ATTRIB_ARRAY_ENABLED, GL_VERTEX_ATTRIB_ARRAY_SIZE, GL_VERTEX_ATTRIB_ARRAY_STRIDE, GL_VERTEX_ATTRIB_ARRAY_TYPE, GL_VERTEX_ATTRIB_ARRAY_NORMALIZED, GL_VERTEX_ATTRIB_ARRAY_INTEGER, GL_VERTEX_ATTRIB_ARRAY_DIVISOR, or GL_CURRENT_VERTEX_ATTRIB. + /// + /// + /// + /// + /// Returns the requested data. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glGetVertexAttribLui64vNV")] public static - void GetVertexAttribLui64(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute] out UInt64 @params) + void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute] out UInt64 @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -167342,11 +167898,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_vertex_attrib_integer_64bit] + + /// [requires: NV_vertex_attrib_integer_64bit] + /// Return a generic vertex attribute parameter + /// + /// + /// + /// Specifies the generic vertex attribute parameter to be queried. + /// + /// + /// + /// + /// Specifies the symbolic name of the vertex attribute parameter to be queried. Accepted values are GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING, GL_VERTEX_ATTRIB_ARRAY_ENABLED, GL_VERTEX_ATTRIB_ARRAY_SIZE, GL_VERTEX_ATTRIB_ARRAY_STRIDE, GL_VERTEX_ATTRIB_ARRAY_TYPE, GL_VERTEX_ATTRIB_ARRAY_NORMALIZED, GL_VERTEX_ATTRIB_ARRAY_INTEGER, GL_VERTEX_ATTRIB_ARRAY_DIVISOR, or GL_CURRENT_VERTEX_ATTRIB. + /// + /// + /// + /// + /// Returns the requested data. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glGetVertexAttribLui64vNV")] public static - unsafe void GetVertexAttribLui64(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute] UInt64* @params) + unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute] UInt64* @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -168070,7 +168644,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_present_video] [AutoGenerated(Category = "NV_present_video", Version = "1.2", EntryPoint = "glGetVideoi64vNV")] public static - void GetVideoi64(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int64[] @params) + void GetVideo(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int64[] @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -168091,7 +168665,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_present_video] [AutoGenerated(Category = "NV_present_video", Version = "1.2", EntryPoint = "glGetVideoi64vNV")] public static - void GetVideoi64(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] out Int64 @params) + void GetVideo(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] out Int64 @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -168114,7 +168688,7 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_present_video", Version = "1.2", EntryPoint = "glGetVideoi64vNV")] public static - unsafe void GetVideoi64(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int64* @params) + unsafe void GetVideo(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int64* @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -168130,7 +168704,7 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_present_video", Version = "1.2", EntryPoint = "glGetVideoi64vNV")] public static - void GetVideoi64(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int64[] @params) + void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int64[] @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -168152,7 +168726,7 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_present_video", Version = "1.2", EntryPoint = "glGetVideoi64vNV")] public static - void GetVideoi64(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] out Int64 @params) + void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] out Int64 @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -168175,7 +168749,7 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_present_video", Version = "1.2", EntryPoint = "glGetVideoi64vNV")] public static - unsafe void GetVideoi64(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int64* @params) + unsafe void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int64* @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -168307,70 +168881,11 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_present_video] - [AutoGenerated(Category = "NV_present_video", Version = "1.2", EntryPoint = "glGetVideoui64vNV")] - public static - void GetVideoui64(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int64[] @params) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - unsafe - { - fixed (Int64* @params_ptr = @params) - { - Delegates.glGetVideoui64vNV((UInt32)video_slot, (OpenTK.Graphics.OpenGL.NvPresentVideo)pname, (UInt64*)@params_ptr); - } - } - #if DEBUG - } - #endif - } - - /// [requires: NV_present_video] - [AutoGenerated(Category = "NV_present_video", Version = "1.2", EntryPoint = "glGetVideoui64vNV")] - public static - void GetVideoui64(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] out Int64 @params) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - unsafe - { - fixed (Int64* @params_ptr = &@params) - { - Delegates.glGetVideoui64vNV((UInt32)video_slot, (OpenTK.Graphics.OpenGL.NvPresentVideo)pname, (UInt64*)@params_ptr); - @params = *@params_ptr; - } - } - #if DEBUG - } - #endif - } - /// [requires: NV_present_video] [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_present_video", Version = "1.2", EntryPoint = "glGetVideoui64vNV")] public static - unsafe void GetVideoui64(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int64* @params) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - Delegates.glGetVideoui64vNV((UInt32)video_slot, (OpenTK.Graphics.OpenGL.NvPresentVideo)pname, (UInt64*)@params); - #if DEBUG - } - #endif - } - - /// [requires: NV_present_video] - [System.CLSCompliant(false)] - [AutoGenerated(Category = "NV_present_video", Version = "1.2", EntryPoint = "glGetVideoui64vNV")] - public static - void GetVideoui64(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] UInt64[] @params) + void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] UInt64[] @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -168392,7 +168907,7 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_present_video", Version = "1.2", EntryPoint = "glGetVideoui64vNV")] public static - void GetVideoui64(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] out UInt64 @params) + void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] out UInt64 @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -168415,7 +168930,7 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_present_video", Version = "1.2", EntryPoint = "glGetVideoui64vNV")] public static - unsafe void GetVideoui64(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] UInt64* @params) + unsafe void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] UInt64* @params) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -172365,10 +172880,28 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform1i64NV")] public static - void ProgramUniform1i64(Int32 program, Int32 location, Int64 x) + void ProgramUniform1(Int32 program, Int32 location, Int64 x) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -172380,11 +172913,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform1i64NV")] public static - void ProgramUniform1i64(UInt32 program, Int32 location, Int64 x) + void ProgramUniform1(UInt32 program, Int32 location, Int64 x) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -172396,10 +172947,28 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform1i64vNV")] public static - void ProgramUniform1i64(Int32 program, Int32 location, Int32 count, Int64[] value) + void ProgramUniform1(Int32 program, Int32 location, Int32 count, Int64[] value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -172417,10 +172986,28 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform1i64vNV")] public static - void ProgramUniform1i64(Int32 program, Int32 location, Int32 count, ref Int64 value) + void ProgramUniform1(Int32 program, Int32 location, Int32 count, ref Int64 value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -172438,11 +173025,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform1i64vNV")] public static - unsafe void ProgramUniform1i64(Int32 program, Int32 location, Int32 count, Int64* value) + unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, Int64* value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -172454,11 +173059,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform1i64vNV")] public static - void ProgramUniform1i64(UInt32 program, Int32 location, Int32 count, Int64[] value) + void ProgramUniform1(UInt32 program, Int32 location, Int32 count, Int64[] value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -172476,11 +173099,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform1i64vNV")] public static - void ProgramUniform1i64(UInt32 program, Int32 location, Int32 count, ref Int64 value) + void ProgramUniform1(UInt32 program, Int32 location, Int32 count, ref Int64 value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -172498,11 +173139,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform1i64vNV")] public static - unsafe void ProgramUniform1i64(UInt32 program, Int32 location, Int32 count, Int64* value) + unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, Int64* value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -172514,10 +173173,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// + [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform1ui64NV")] public static - void ProgramUniform1ui64(Int32 program, Int32 location, Int64 x) + void ProgramUniform1(UInt32 program, Int32 location, UInt64 x) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -172529,26 +173207,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] - [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform1ui64NV")] - public static - void ProgramUniform1ui64(UInt32 program, Int32 location, UInt64 x) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - Delegates.glProgramUniform1ui64NV((UInt32)program, (Int32)location, (UInt64)x); - #if DEBUG - } - #endif - } - - /// [requires: NV_gpu_shader5] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform1ui64vNV")] public static - void ProgramUniform1ui64(Int32 program, Int32 location, Int32 count, Int64[] value) + void ProgramUniform1(UInt32 program, Int32 location, Int32 count, UInt64[] value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -172556,7 +173237,7 @@ namespace OpenTK.Graphics.OpenGL #endif unsafe { - fixed (Int64* value_ptr = value) + fixed (UInt64* value_ptr = value) { Delegates.glProgramUniform1ui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)value_ptr); } @@ -172566,10 +173247,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// + [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform1ui64vNV")] public static - void ProgramUniform1ui64(Int32 program, Int32 location, Int32 count, ref Int64 value) + void ProgramUniform1(UInt32 program, Int32 location, Int32 count, ref UInt64 value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -172577,7 +173277,7 @@ namespace OpenTK.Graphics.OpenGL #endif unsafe { - fixed (Int64* value_ptr = &value) + fixed (UInt64* value_ptr = &value) { Delegates.glProgramUniform1ui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)value_ptr); } @@ -172587,11 +173287,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform1ui64vNV")] public static - unsafe void ProgramUniform1ui64(Int32 program, Int32 location, Int32 count, Int64* value) + unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, UInt64* value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -172603,70 +173321,28 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] - [System.CLSCompliant(false)] - [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform1ui64vNV")] - public static - void ProgramUniform1ui64(UInt32 program, Int32 location, Int32 count, UInt64[] value) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - unsafe - { - fixed (UInt64* value_ptr = value) - { - Delegates.glProgramUniform1ui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)value_ptr); - } - } - #if DEBUG - } - #endif - } - - /// [requires: NV_gpu_shader5] - [System.CLSCompliant(false)] - [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform1ui64vNV")] - public static - void ProgramUniform1ui64(UInt32 program, Int32 location, Int32 count, ref UInt64 value) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - unsafe - { - fixed (UInt64* value_ptr = &value) - { - Delegates.glProgramUniform1ui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)value_ptr); - } - } - #if DEBUG - } - #endif - } - - /// [requires: NV_gpu_shader5] - [System.CLSCompliant(false)] - [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform1ui64vNV")] - public static - unsafe void ProgramUniform1ui64(UInt32 program, Int32 location, Int32 count, UInt64* value) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - Delegates.glProgramUniform1ui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)value); - #if DEBUG - } - #endif - } - - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform2i64NV")] public static - void ProgramUniform2i64(Int32 program, Int32 location, Int64 x, Int64 y) + void ProgramUniform2(Int32 program, Int32 location, Int64 x, Int64 y) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -172678,11 +173354,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform2i64NV")] public static - void ProgramUniform2i64(UInt32 program, Int32 location, Int64 x, Int64 y) + void ProgramUniform2(UInt32 program, Int32 location, Int64 x, Int64 y) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -172694,10 +173388,28 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform2i64vNV")] public static - void ProgramUniform2i64(Int32 program, Int32 location, Int32 count, Int64[] value) + void ProgramUniform2(Int32 program, Int32 location, Int32 count, Int64[] value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -172715,10 +173427,28 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform2i64vNV")] public static - void ProgramUniform2i64(Int32 program, Int32 location, Int32 count, ref Int64 value) + void ProgramUniform2(Int32 program, Int32 location, Int32 count, ref Int64 value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -172736,11 +173466,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform2i64vNV")] public static - unsafe void ProgramUniform2i64(Int32 program, Int32 location, Int32 count, Int64* value) + unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, Int64* value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -172752,11 +173500,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform2i64vNV")] public static - void ProgramUniform2i64(UInt32 program, Int32 location, Int32 count, Int64[] value) + void ProgramUniform2(UInt32 program, Int32 location, Int32 count, Int64[] value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -172774,11 +173540,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform2i64vNV")] public static - void ProgramUniform2i64(UInt32 program, Int32 location, Int32 count, ref Int64 value) + void ProgramUniform2(UInt32 program, Int32 location, Int32 count, ref Int64 value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -172796,11 +173580,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform2i64vNV")] public static - unsafe void ProgramUniform2i64(UInt32 program, Int32 location, Int32 count, Int64* value) + unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, Int64* value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -172812,10 +173614,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// + [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform2ui64NV")] public static - void ProgramUniform2ui64(Int32 program, Int32 location, Int64 x, Int64 y) + void ProgramUniform2(UInt32 program, Int32 location, UInt64 x, UInt64 y) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -172827,26 +173648,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] - [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform2ui64NV")] - public static - void ProgramUniform2ui64(UInt32 program, Int32 location, UInt64 x, UInt64 y) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - Delegates.glProgramUniform2ui64NV((UInt32)program, (Int32)location, (UInt64)x, (UInt64)y); - #if DEBUG - } - #endif - } - - /// [requires: NV_gpu_shader5] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform2ui64vNV")] public static - void ProgramUniform2ui64(Int32 program, Int32 location, Int32 count, Int64[] value) + void ProgramUniform2(UInt32 program, Int32 location, Int32 count, UInt64[] value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -172854,7 +173678,7 @@ namespace OpenTK.Graphics.OpenGL #endif unsafe { - fixed (Int64* value_ptr = value) + fixed (UInt64* value_ptr = value) { Delegates.glProgramUniform2ui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)value_ptr); } @@ -172864,10 +173688,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// + [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform2ui64vNV")] public static - void ProgramUniform2ui64(Int32 program, Int32 location, Int32 count, ref Int64 value) + void ProgramUniform2(UInt32 program, Int32 location, Int32 count, ref UInt64 value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -172875,7 +173718,7 @@ namespace OpenTK.Graphics.OpenGL #endif unsafe { - fixed (Int64* value_ptr = &value) + fixed (UInt64* value_ptr = &value) { Delegates.glProgramUniform2ui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)value_ptr); } @@ -172885,11 +173728,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform2ui64vNV")] public static - unsafe void ProgramUniform2ui64(Int32 program, Int32 location, Int32 count, Int64* value) + unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, UInt64* value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -172901,70 +173762,28 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] - [System.CLSCompliant(false)] - [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform2ui64vNV")] - public static - void ProgramUniform2ui64(UInt32 program, Int32 location, Int32 count, UInt64[] value) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - unsafe - { - fixed (UInt64* value_ptr = value) - { - Delegates.glProgramUniform2ui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)value_ptr); - } - } - #if DEBUG - } - #endif - } - - /// [requires: NV_gpu_shader5] - [System.CLSCompliant(false)] - [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform2ui64vNV")] - public static - void ProgramUniform2ui64(UInt32 program, Int32 location, Int32 count, ref UInt64 value) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - unsafe - { - fixed (UInt64* value_ptr = &value) - { - Delegates.glProgramUniform2ui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)value_ptr); - } - } - #if DEBUG - } - #endif - } - - /// [requires: NV_gpu_shader5] - [System.CLSCompliant(false)] - [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform2ui64vNV")] - public static - unsafe void ProgramUniform2ui64(UInt32 program, Int32 location, Int32 count, UInt64* value) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - Delegates.glProgramUniform2ui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)value); - #if DEBUG - } - #endif - } - - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform3i64NV")] public static - void ProgramUniform3i64(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z) + void ProgramUniform3(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -172976,11 +173795,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform3i64NV")] public static - void ProgramUniform3i64(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z) + void ProgramUniform3(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -172992,10 +173829,28 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform3i64vNV")] public static - void ProgramUniform3i64(Int32 program, Int32 location, Int32 count, Int64[] value) + void ProgramUniform3(Int32 program, Int32 location, Int32 count, Int64[] value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -173013,10 +173868,28 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform3i64vNV")] public static - void ProgramUniform3i64(Int32 program, Int32 location, Int32 count, ref Int64 value) + void ProgramUniform3(Int32 program, Int32 location, Int32 count, ref Int64 value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -173034,11 +173907,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform3i64vNV")] public static - unsafe void ProgramUniform3i64(Int32 program, Int32 location, Int32 count, Int64* value) + unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, Int64* value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -173050,11 +173941,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform3i64vNV")] public static - void ProgramUniform3i64(UInt32 program, Int32 location, Int32 count, Int64[] value) + void ProgramUniform3(UInt32 program, Int32 location, Int32 count, Int64[] value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -173072,11 +173981,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform3i64vNV")] public static - void ProgramUniform3i64(UInt32 program, Int32 location, Int32 count, ref Int64 value) + void ProgramUniform3(UInt32 program, Int32 location, Int32 count, ref Int64 value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -173094,11 +174021,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform3i64vNV")] public static - unsafe void ProgramUniform3i64(UInt32 program, Int32 location, Int32 count, Int64* value) + unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, Int64* value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -173110,10 +174055,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// + [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform3ui64NV")] public static - void ProgramUniform3ui64(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z) + void ProgramUniform3(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -173125,85 +174089,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] - [System.CLSCompliant(false)] - [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform3ui64NV")] - public static - void ProgramUniform3ui64(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - Delegates.glProgramUniform3ui64NV((UInt32)program, (Int32)location, (UInt64)x, (UInt64)y, (UInt64)z); - #if DEBUG - } - #endif - } - - /// [requires: NV_gpu_shader5] - [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform3ui64vNV")] - public static - void ProgramUniform3ui64(Int32 program, Int32 location, Int32 count, Int64[] value) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - unsafe - { - fixed (Int64* value_ptr = value) - { - Delegates.glProgramUniform3ui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)value_ptr); - } - } - #if DEBUG - } - #endif - } - - /// [requires: NV_gpu_shader5] - [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform3ui64vNV")] - public static - void ProgramUniform3ui64(Int32 program, Int32 location, Int32 count, ref Int64 value) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - unsafe - { - fixed (Int64* value_ptr = &value) - { - Delegates.glProgramUniform3ui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)value_ptr); - } - } - #if DEBUG - } - #endif - } - - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform3ui64vNV")] public static - unsafe void ProgramUniform3ui64(Int32 program, Int32 location, Int32 count, Int64* value) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - Delegates.glProgramUniform3ui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)value); - #if DEBUG - } - #endif - } - - /// [requires: NV_gpu_shader5] - [System.CLSCompliant(false)] - [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform3ui64vNV")] - public static - void ProgramUniform3ui64(UInt32 program, Int32 location, Int32 count, UInt64[] value) + void ProgramUniform3(UInt32 program, Int32 location, Int32 count, UInt64[] value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -173221,11 +174129,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform3ui64vNV")] public static - void ProgramUniform3ui64(UInt32 program, Int32 location, Int32 count, ref UInt64 value) + void ProgramUniform3(UInt32 program, Int32 location, Int32 count, ref UInt64 value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -173243,11 +174169,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform3ui64vNV")] public static - unsafe void ProgramUniform3ui64(UInt32 program, Int32 location, Int32 count, UInt64* value) + unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, UInt64* value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -173259,10 +174203,28 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform4i64NV")] public static - void ProgramUniform4i64(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) + void ProgramUniform4(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -173274,11 +174236,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform4i64NV")] public static - void ProgramUniform4i64(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) + void ProgramUniform4(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -173290,10 +174270,28 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform4i64vNV")] public static - void ProgramUniform4i64(Int32 program, Int32 location, Int32 count, Int64[] value) + void ProgramUniform4(Int32 program, Int32 location, Int32 count, Int64[] value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -173311,10 +174309,28 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform4i64vNV")] public static - void ProgramUniform4i64(Int32 program, Int32 location, Int32 count, ref Int64 value) + void ProgramUniform4(Int32 program, Int32 location, Int32 count, ref Int64 value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -173332,11 +174348,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform4i64vNV")] public static - unsafe void ProgramUniform4i64(Int32 program, Int32 location, Int32 count, Int64* value) + unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, Int64* value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -173348,11 +174382,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform4i64vNV")] public static - void ProgramUniform4i64(UInt32 program, Int32 location, Int32 count, Int64[] value) + void ProgramUniform4(UInt32 program, Int32 location, Int32 count, Int64[] value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -173370,11 +174422,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform4i64vNV")] public static - void ProgramUniform4i64(UInt32 program, Int32 location, Int32 count, ref Int64 value) + void ProgramUniform4(UInt32 program, Int32 location, Int32 count, ref Int64 value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -173392,11 +174462,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform4i64vNV")] public static - unsafe void ProgramUniform4i64(UInt32 program, Int32 location, Int32 count, Int64* value) + unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, Int64* value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -173408,10 +174496,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// + [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform4ui64NV")] public static - void ProgramUniform4ui64(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) + void ProgramUniform4(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -173423,85 +174530,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] - [System.CLSCompliant(false)] - [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform4ui64NV")] - public static - void ProgramUniform4ui64(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - Delegates.glProgramUniform4ui64NV((UInt32)program, (Int32)location, (UInt64)x, (UInt64)y, (UInt64)z, (UInt64)w); - #if DEBUG - } - #endif - } - - /// [requires: NV_gpu_shader5] - [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform4ui64vNV")] - public static - void ProgramUniform4ui64(Int32 program, Int32 location, Int32 count, Int64[] value) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - unsafe - { - fixed (Int64* value_ptr = value) - { - Delegates.glProgramUniform4ui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)value_ptr); - } - } - #if DEBUG - } - #endif - } - - /// [requires: NV_gpu_shader5] - [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform4ui64vNV")] - public static - void ProgramUniform4ui64(Int32 program, Int32 location, Int32 count, ref Int64 value) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - unsafe - { - fixed (Int64* value_ptr = &value) - { - Delegates.glProgramUniform4ui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)value_ptr); - } - } - #if DEBUG - } - #endif - } - - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform4ui64vNV")] public static - unsafe void ProgramUniform4ui64(Int32 program, Int32 location, Int32 count, Int64* value) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - Delegates.glProgramUniform4ui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)value); - #if DEBUG - } - #endif - } - - /// [requires: NV_gpu_shader5] - [System.CLSCompliant(false)] - [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform4ui64vNV")] - public static - void ProgramUniform4ui64(UInt32 program, Int32 location, Int32 count, UInt64[] value) + void ProgramUniform4(UInt32 program, Int32 location, Int32 count, UInt64[] value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -173519,11 +174570,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform4ui64vNV")] public static - void ProgramUniform4ui64(UInt32 program, Int32 location, Int32 count, ref UInt64 value) + void ProgramUniform4(UInt32 program, Int32 location, Int32 count, ref UInt64 value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -173541,11 +174610,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glProgramUniform4ui64vNV")] public static - unsafe void ProgramUniform4ui64(UInt32 program, Int32 location, Int32 count, UInt64* value) + unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, UInt64* value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -173557,10 +174644,28 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_shader_buffer_load] + + /// [requires: NV_shader_buffer_load] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glProgramUniformui64NV")] public static - void ProgramUniformui64(Int32 program, Int32 location, Int64 value) + void ProgramUniform(Int32 program, Int32 location, Int64 value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -173572,11 +174677,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_shader_buffer_load] + + /// [requires: NV_shader_buffer_load] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glProgramUniformui64NV")] public static - void ProgramUniformui64(UInt32 program, Int32 location, UInt64 value) + void ProgramUniform(UInt32 program, Int32 location, UInt64 value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -173588,10 +174711,28 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_shader_buffer_load] + + /// [requires: NV_shader_buffer_load] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glProgramUniformui64vNV")] public static - void ProgramUniformui64(Int32 program, Int32 location, Int32 count, Int64[] value) + void ProgramUniform(Int32 program, Int32 location, Int32 count, Int64[] value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -173609,10 +174750,28 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_shader_buffer_load] + + /// [requires: NV_shader_buffer_load] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glProgramUniformui64vNV")] public static - void ProgramUniformui64(Int32 program, Int32 location, Int32 count, ref Int64 value) + void ProgramUniform(Int32 program, Int32 location, Int32 count, ref Int64 value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -173630,11 +174789,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_shader_buffer_load] + + /// [requires: NV_shader_buffer_load] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glProgramUniformui64vNV")] public static - unsafe void ProgramUniformui64(Int32 program, Int32 location, Int32 count, Int64* value) + unsafe void ProgramUniform(Int32 program, Int32 location, Int32 count, Int64* value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -173646,11 +174823,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_shader_buffer_load] + + /// [requires: NV_shader_buffer_load] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glProgramUniformui64vNV")] public static - void ProgramUniformui64(UInt32 program, Int32 location, Int32 count, UInt64[] value) + void ProgramUniform(UInt32 program, Int32 location, Int32 count, UInt64[] value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -173668,11 +174863,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_shader_buffer_load] + + /// [requires: NV_shader_buffer_load] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glProgramUniformui64vNV")] public static - void ProgramUniformui64(UInt32 program, Int32 location, Int32 count, ref UInt64 value) + void ProgramUniform(UInt32 program, Int32 location, Int32 count, ref UInt64 value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -173690,11 +174903,29 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_shader_buffer_load] + + /// [requires: NV_shader_buffer_load] + /// Specify the value of a uniform variable for a specified program object + /// + /// + /// + /// Specifies the handle of the program containing the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glProgramUniformui64vNV")] public static - unsafe void ProgramUniformui64(UInt32 program, Int32 location, Int32 count, UInt64* value) + unsafe void ProgramUniform(UInt32 program, Int32 location, Int32 count, UInt64* value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -174983,10 +176214,23 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform1i64NV")] public static - void Uniform1i64(Int32 location, Int64 x) + void Uniform1(Int32 location, Int64 x) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -174998,10 +176242,23 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform1i64vNV")] public static - void Uniform1i64(Int32 location, Int32 count, Int64[] value) + void Uniform1(Int32 location, Int32 count, Int64[] value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -175019,10 +176276,23 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform1i64vNV")] public static - void Uniform1i64(Int32 location, Int32 count, ref Int64 value) + void Uniform1(Int32 location, Int32 count, ref Int64 value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -175040,11 +176310,24 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform1i64vNV")] public static - unsafe void Uniform1i64(Int32 location, Int32 count, Int64* value) + unsafe void Uniform1(Int32 location, Int32 count, Int64* value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -175056,10 +176339,24 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// + [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform1ui64NV")] public static - void Uniform1ui64(Int32 location, Int64 x) + void Uniform1(Int32 location, UInt64 x) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -175071,85 +176368,24 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] - [System.CLSCompliant(false)] - [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform1ui64NV")] - public static - void Uniform1ui64(Int32 location, UInt64 x) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - Delegates.glUniform1ui64NV((Int32)location, (UInt64)x); - #if DEBUG - } - #endif - } - - /// [requires: NV_gpu_shader5] - [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform1ui64vNV")] - public static - void Uniform1ui64(Int32 location, Int32 count, Int64[] value) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - unsafe - { - fixed (Int64* value_ptr = value) - { - Delegates.glUniform1ui64vNV((Int32)location, (Int32)count, (UInt64*)value_ptr); - } - } - #if DEBUG - } - #endif - } - - /// [requires: NV_gpu_shader5] - [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform1ui64vNV")] - public static - void Uniform1ui64(Int32 location, Int32 count, ref Int64 value) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - unsafe - { - fixed (Int64* value_ptr = &value) - { - Delegates.glUniform1ui64vNV((Int32)location, (Int32)count, (UInt64*)value_ptr); - } - } - #if DEBUG - } - #endif - } - - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform1ui64vNV")] public static - unsafe void Uniform1ui64(Int32 location, Int32 count, Int64* value) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - Delegates.glUniform1ui64vNV((Int32)location, (Int32)count, (UInt64*)value); - #if DEBUG - } - #endif - } - - /// [requires: NV_gpu_shader5] - [System.CLSCompliant(false)] - [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform1ui64vNV")] - public static - void Uniform1ui64(Int32 location, Int32 count, UInt64[] value) + void Uniform1(Int32 location, Int32 count, UInt64[] value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -175167,11 +176403,24 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform1ui64vNV")] public static - void Uniform1ui64(Int32 location, Int32 count, ref UInt64 value) + void Uniform1(Int32 location, Int32 count, ref UInt64 value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -175189,11 +176438,24 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform1ui64vNV")] public static - unsafe void Uniform1ui64(Int32 location, Int32 count, UInt64* value) + unsafe void Uniform1(Int32 location, Int32 count, UInt64* value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -175205,10 +176467,23 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform2i64NV")] public static - void Uniform2i64(Int32 location, Int64 x, Int64 y) + void Uniform2(Int32 location, Int64 x, Int64 y) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -175220,10 +176495,23 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform2i64vNV")] public static - void Uniform2i64(Int32 location, Int32 count, Int64[] value) + void Uniform2(Int32 location, Int32 count, Int64[] value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -175241,10 +176529,23 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform2i64vNV")] public static - void Uniform2i64(Int32 location, Int32 count, ref Int64 value) + void Uniform2(Int32 location, Int32 count, ref Int64 value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -175262,11 +176563,24 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform2i64vNV")] public static - unsafe void Uniform2i64(Int32 location, Int32 count, Int64* value) + unsafe void Uniform2(Int32 location, Int32 count, Int64* value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -175278,10 +176592,24 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// + [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform2ui64NV")] public static - void Uniform2ui64(Int32 location, Int64 x, Int64 y) + void Uniform2(Int32 location, UInt64 x, UInt64 y) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -175293,85 +176621,24 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] - [System.CLSCompliant(false)] - [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform2ui64NV")] - public static - void Uniform2ui64(Int32 location, UInt64 x, UInt64 y) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - Delegates.glUniform2ui64NV((Int32)location, (UInt64)x, (UInt64)y); - #if DEBUG - } - #endif - } - - /// [requires: NV_gpu_shader5] - [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform2ui64vNV")] - public static - void Uniform2ui64(Int32 location, Int32 count, Int64[] value) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - unsafe - { - fixed (Int64* value_ptr = value) - { - Delegates.glUniform2ui64vNV((Int32)location, (Int32)count, (UInt64*)value_ptr); - } - } - #if DEBUG - } - #endif - } - - /// [requires: NV_gpu_shader5] - [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform2ui64vNV")] - public static - void Uniform2ui64(Int32 location, Int32 count, ref Int64 value) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - unsafe - { - fixed (Int64* value_ptr = &value) - { - Delegates.glUniform2ui64vNV((Int32)location, (Int32)count, (UInt64*)value_ptr); - } - } - #if DEBUG - } - #endif - } - - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform2ui64vNV")] public static - unsafe void Uniform2ui64(Int32 location, Int32 count, Int64* value) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - Delegates.glUniform2ui64vNV((Int32)location, (Int32)count, (UInt64*)value); - #if DEBUG - } - #endif - } - - /// [requires: NV_gpu_shader5] - [System.CLSCompliant(false)] - [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform2ui64vNV")] - public static - void Uniform2ui64(Int32 location, Int32 count, UInt64[] value) + void Uniform2(Int32 location, Int32 count, UInt64[] value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -175389,11 +176656,24 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform2ui64vNV")] public static - void Uniform2ui64(Int32 location, Int32 count, ref UInt64 value) + void Uniform2(Int32 location, Int32 count, ref UInt64 value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -175411,11 +176691,24 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform2ui64vNV")] public static - unsafe void Uniform2ui64(Int32 location, Int32 count, UInt64* value) + unsafe void Uniform2(Int32 location, Int32 count, UInt64* value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -175427,10 +176720,23 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform3i64NV")] public static - void Uniform3i64(Int32 location, Int64 x, Int64 y, Int64 z) + void Uniform3(Int32 location, Int64 x, Int64 y, Int64 z) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -175442,10 +176748,23 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform3i64vNV")] public static - void Uniform3i64(Int32 location, Int32 count, Int64[] value) + void Uniform3(Int32 location, Int32 count, Int64[] value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -175463,10 +176782,23 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform3i64vNV")] public static - void Uniform3i64(Int32 location, Int32 count, ref Int64 value) + void Uniform3(Int32 location, Int32 count, ref Int64 value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -175484,11 +176816,24 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform3i64vNV")] public static - unsafe void Uniform3i64(Int32 location, Int32 count, Int64* value) + unsafe void Uniform3(Int32 location, Int32 count, Int64* value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -175500,10 +176845,24 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// + [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform3ui64NV")] public static - void Uniform3ui64(Int32 location, Int64 x, Int64 y, Int64 z) + void Uniform3(Int32 location, UInt64 x, UInt64 y, UInt64 z) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -175515,85 +176874,24 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] - [System.CLSCompliant(false)] - [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform3ui64NV")] - public static - void Uniform3ui64(Int32 location, UInt64 x, UInt64 y, UInt64 z) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - Delegates.glUniform3ui64NV((Int32)location, (UInt64)x, (UInt64)y, (UInt64)z); - #if DEBUG - } - #endif - } - - /// [requires: NV_gpu_shader5] - [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform3ui64vNV")] - public static - void Uniform3ui64(Int32 location, Int32 count, Int64[] value) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - unsafe - { - fixed (Int64* value_ptr = value) - { - Delegates.glUniform3ui64vNV((Int32)location, (Int32)count, (UInt64*)value_ptr); - } - } - #if DEBUG - } - #endif - } - - /// [requires: NV_gpu_shader5] - [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform3ui64vNV")] - public static - void Uniform3ui64(Int32 location, Int32 count, ref Int64 value) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - unsafe - { - fixed (Int64* value_ptr = &value) - { - Delegates.glUniform3ui64vNV((Int32)location, (Int32)count, (UInt64*)value_ptr); - } - } - #if DEBUG - } - #endif - } - - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform3ui64vNV")] public static - unsafe void Uniform3ui64(Int32 location, Int32 count, Int64* value) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - Delegates.glUniform3ui64vNV((Int32)location, (Int32)count, (UInt64*)value); - #if DEBUG - } - #endif - } - - /// [requires: NV_gpu_shader5] - [System.CLSCompliant(false)] - [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform3ui64vNV")] - public static - void Uniform3ui64(Int32 location, Int32 count, UInt64[] value) + void Uniform3(Int32 location, Int32 count, UInt64[] value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -175611,11 +176909,24 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform3ui64vNV")] public static - void Uniform3ui64(Int32 location, Int32 count, ref UInt64 value) + void Uniform3(Int32 location, Int32 count, ref UInt64 value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -175633,11 +176944,24 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform3ui64vNV")] public static - unsafe void Uniform3ui64(Int32 location, Int32 count, UInt64* value) + unsafe void Uniform3(Int32 location, Int32 count, UInt64* value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -175649,10 +176973,23 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform4i64NV")] public static - void Uniform4i64(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) + void Uniform4(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -175664,10 +177001,23 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform4i64vNV")] public static - void Uniform4i64(Int32 location, Int32 count, Int64[] value) + void Uniform4(Int32 location, Int32 count, Int64[] value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -175685,10 +177035,23 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform4i64vNV")] public static - void Uniform4i64(Int32 location, Int32 count, ref Int64 value) + void Uniform4(Int32 location, Int32 count, ref Int64 value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -175706,11 +177069,24 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform4i64vNV")] public static - unsafe void Uniform4i64(Int32 location, Int32 count, Int64* value) + unsafe void Uniform4(Int32 location, Int32 count, Int64* value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -175722,10 +177098,24 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// + [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform4ui64NV")] public static - void Uniform4ui64(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) + void Uniform4(Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -175737,85 +177127,24 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] - [System.CLSCompliant(false)] - [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform4ui64NV")] - public static - void Uniform4ui64(Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - Delegates.glUniform4ui64NV((Int32)location, (UInt64)x, (UInt64)y, (UInt64)z, (UInt64)w); - #if DEBUG - } - #endif - } - - /// [requires: NV_gpu_shader5] - [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform4ui64vNV")] - public static - void Uniform4ui64(Int32 location, Int32 count, Int64[] value) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - unsafe - { - fixed (Int64* value_ptr = value) - { - Delegates.glUniform4ui64vNV((Int32)location, (Int32)count, (UInt64*)value_ptr); - } - } - #if DEBUG - } - #endif - } - - /// [requires: NV_gpu_shader5] - [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform4ui64vNV")] - public static - void Uniform4ui64(Int32 location, Int32 count, ref Int64 value) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - unsafe - { - fixed (Int64* value_ptr = &value) - { - Delegates.glUniform4ui64vNV((Int32)location, (Int32)count, (UInt64*)value_ptr); - } - } - #if DEBUG - } - #endif - } - - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform4ui64vNV")] public static - unsafe void Uniform4ui64(Int32 location, Int32 count, Int64* value) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - Delegates.glUniform4ui64vNV((Int32)location, (Int32)count, (UInt64*)value); - #if DEBUG - } - #endif - } - - /// [requires: NV_gpu_shader5] - [System.CLSCompliant(false)] - [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform4ui64vNV")] - public static - void Uniform4ui64(Int32 location, Int32 count, UInt64[] value) + void Uniform4(Int32 location, Int32 count, UInt64[] value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -175833,11 +177162,24 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform4ui64vNV")] public static - void Uniform4ui64(Int32 location, Int32 count, ref UInt64 value) + void Uniform4(Int32 location, Int32 count, ref UInt64 value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -175855,11 +177197,24 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_gpu_shader5] + + /// [requires: NV_gpu_shader5] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_gpu_shader5", Version = "4.1", EntryPoint = "glUniform4ui64vNV")] public static - unsafe void Uniform4ui64(Int32 location, Int32 count, UInt64* value) + unsafe void Uniform4(Int32 location, Int32 count, UInt64* value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -175871,10 +177226,23 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_shader_buffer_load] + + /// [requires: NV_shader_buffer_load] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glUniformui64NV")] public static - void Uniformui64(Int32 location, Int64 value) + void Uniform(Int32 location, Int64 value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -175886,11 +177254,24 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_shader_buffer_load] + + /// [requires: NV_shader_buffer_load] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glUniformui64NV")] public static - void Uniformui64(Int32 location, UInt64 value) + void Uniform(Int32 location, UInt64 value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -175902,10 +177283,23 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_shader_buffer_load] + + /// [requires: NV_shader_buffer_load] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glUniformui64vNV")] public static - void Uniformui64(Int32 location, Int32 count, Int64[] value) + void Uniform(Int32 location, Int32 count, Int64[] value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -175923,10 +177317,23 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_shader_buffer_load] + + /// [requires: NV_shader_buffer_load] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glUniformui64vNV")] public static - void Uniformui64(Int32 location, Int32 count, ref Int64 value) + void Uniform(Int32 location, Int32 count, ref Int64 value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -175944,11 +177351,24 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_shader_buffer_load] + + /// [requires: NV_shader_buffer_load] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glUniformui64vNV")] public static - unsafe void Uniformui64(Int32 location, Int32 count, Int64* value) + unsafe void Uniform(Int32 location, Int32 count, Int64* value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -175960,11 +177380,24 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_shader_buffer_load] + + /// [requires: NV_shader_buffer_load] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glUniformui64vNV")] public static - void Uniformui64(Int32 location, Int32 count, UInt64[] value) + void Uniform(Int32 location, Int32 count, UInt64[] value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -175982,11 +177415,24 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_shader_buffer_load] + + /// [requires: NV_shader_buffer_load] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glUniformui64vNV")] public static - void Uniformui64(Int32 location, Int32 count, ref UInt64 value) + void Uniform(Int32 location, Int32 count, ref UInt64 value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -176004,11 +177450,24 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_shader_buffer_load] + + /// [requires: NV_shader_buffer_load] + /// Specify the value of a uniform variable for the current program object + /// + /// + /// + /// Specifies the location of the uniform variable to be modified. + /// + /// + /// + /// + /// Specifies the new values to be used for the specified uniform variable. + /// + /// [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "1.2", EntryPoint = "glUniformui64vNV")] public static - unsafe void Uniformui64(Int32 location, Int32 count, UInt64* value) + unsafe void Uniform(Int32 location, Int32 count, UInt64* value) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -181896,7 +183355,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_vertex_attrib_integer_64bit] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL1i64NV")] public static - void VertexAttribL1i64(Int32 index, Int64 x) + void VertexAttribL1(Int32 index, Int64 x) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -181912,7 +183371,7 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL1i64NV")] public static - void VertexAttribL1i64(UInt32 index, Int64 x) + void VertexAttribL1(UInt32 index, Int64 x) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -181928,7 +183387,7 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL1i64vNV")] public static - unsafe void VertexAttribL1i64(Int32 index, Int64* v) + unsafe void VertexAttribL1(Int32 index, Int64* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -181944,7 +183403,7 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL1i64vNV")] public static - unsafe void VertexAttribL1i64(UInt32 index, Int64* v) + unsafe void VertexAttribL1(UInt32 index, Int64* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -181956,26 +183415,11 @@ namespace OpenTK.Graphics.OpenGL #endif } - /// [requires: NV_vertex_attrib_integer_64bit] - [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL1ui64NV")] - public static - void VertexAttribL1ui64(Int32 index, Int64 x) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - Delegates.glVertexAttribL1ui64NV((UInt32)index, (UInt64)x); - #if DEBUG - } - #endif - } - /// [requires: NV_vertex_attrib_integer_64bit] [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL1ui64NV")] public static - void VertexAttribL1ui64(UInt32 index, UInt64 x) + void VertexAttribL1(UInt32 index, UInt64 x) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -181991,23 +183435,7 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL1ui64vNV")] public static - unsafe void VertexAttribL1ui64(Int32 index, Int64* v) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - Delegates.glVertexAttribL1ui64vNV((UInt32)index, (UInt64*)v); - #if DEBUG - } - #endif - } - - /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] - [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL1ui64vNV")] - public static - unsafe void VertexAttribL1ui64(UInt32 index, UInt64* v) + unsafe void VertexAttribL1(UInt32 index, UInt64* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -182022,7 +183450,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_vertex_attrib_integer_64bit] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL2i64NV")] public static - void VertexAttribL2i64(Int32 index, Int64 x, Int64 y) + void VertexAttribL2(Int32 index, Int64 x, Int64 y) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -182038,7 +183466,7 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL2i64NV")] public static - void VertexAttribL2i64(UInt32 index, Int64 x, Int64 y) + void VertexAttribL2(UInt32 index, Int64 x, Int64 y) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -182053,7 +183481,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_vertex_attrib_integer_64bit] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL2i64vNV")] public static - void VertexAttribL2i64(Int32 index, Int64[] v) + void VertexAttribL2(Int32 index, Int64[] v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -182074,7 +183502,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_vertex_attrib_integer_64bit] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL2i64vNV")] public static - void VertexAttribL2i64(Int32 index, ref Int64 v) + void VertexAttribL2(Int32 index, ref Int64 v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -182096,7 +183524,7 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL2i64vNV")] public static - unsafe void VertexAttribL2i64(Int32 index, Int64* v) + unsafe void VertexAttribL2(Int32 index, Int64* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -182112,7 +183540,7 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL2i64vNV")] public static - void VertexAttribL2i64(UInt32 index, Int64[] v) + void VertexAttribL2(UInt32 index, Int64[] v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -182134,7 +183562,7 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL2i64vNV")] public static - void VertexAttribL2i64(UInt32 index, ref Int64 v) + void VertexAttribL2(UInt32 index, ref Int64 v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -182156,7 +183584,7 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL2i64vNV")] public static - unsafe void VertexAttribL2i64(UInt32 index, Int64* v) + unsafe void VertexAttribL2(UInt32 index, Int64* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -182169,9 +183597,10 @@ namespace OpenTK.Graphics.OpenGL } /// [requires: NV_vertex_attrib_integer_64bit] + [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL2ui64NV")] public static - void VertexAttribL2ui64(Int32 index, Int64 x, Int64 y) + void VertexAttribL2(UInt32 index, UInt64 x, UInt64 y) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -182185,83 +183614,9 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_vertex_attrib_integer_64bit] [System.CLSCompliant(false)] - [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL2ui64NV")] - public static - void VertexAttribL2ui64(UInt32 index, UInt64 x, UInt64 y) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - Delegates.glVertexAttribL2ui64NV((UInt32)index, (UInt64)x, (UInt64)y); - #if DEBUG - } - #endif - } - - /// [requires: NV_vertex_attrib_integer_64bit] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL2ui64vNV")] public static - void VertexAttribL2ui64(Int32 index, Int64[] v) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - unsafe - { - fixed (Int64* v_ptr = v) - { - Delegates.glVertexAttribL2ui64vNV((UInt32)index, (UInt64*)v_ptr); - } - } - #if DEBUG - } - #endif - } - - /// [requires: NV_vertex_attrib_integer_64bit] - [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL2ui64vNV")] - public static - void VertexAttribL2ui64(Int32 index, ref Int64 v) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - unsafe - { - fixed (Int64* v_ptr = &v) - { - Delegates.glVertexAttribL2ui64vNV((UInt32)index, (UInt64*)v_ptr); - } - } - #if DEBUG - } - #endif - } - - /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] - [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL2ui64vNV")] - public static - unsafe void VertexAttribL2ui64(Int32 index, Int64* v) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - Delegates.glVertexAttribL2ui64vNV((UInt32)index, (UInt64*)v); - #if DEBUG - } - #endif - } - - /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] - [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL2ui64vNV")] - public static - void VertexAttribL2ui64(UInt32 index, UInt64[] v) + void VertexAttribL2(UInt32 index, UInt64[] v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -182283,7 +183638,7 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL2ui64vNV")] public static - void VertexAttribL2ui64(UInt32 index, ref UInt64 v) + void VertexAttribL2(UInt32 index, ref UInt64 v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -182305,7 +183660,7 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL2ui64vNV")] public static - unsafe void VertexAttribL2ui64(UInt32 index, UInt64* v) + unsafe void VertexAttribL2(UInt32 index, UInt64* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -182320,7 +183675,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_vertex_attrib_integer_64bit] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL3i64NV")] public static - void VertexAttribL3i64(Int32 index, Int64 x, Int64 y, Int64 z) + void VertexAttribL3(Int32 index, Int64 x, Int64 y, Int64 z) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -182336,7 +183691,7 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL3i64NV")] public static - void VertexAttribL3i64(UInt32 index, Int64 x, Int64 y, Int64 z) + void VertexAttribL3(UInt32 index, Int64 x, Int64 y, Int64 z) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -182351,7 +183706,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_vertex_attrib_integer_64bit] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL3i64vNV")] public static - void VertexAttribL3i64(Int32 index, Int64[] v) + void VertexAttribL3(Int32 index, Int64[] v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -182372,7 +183727,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_vertex_attrib_integer_64bit] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL3i64vNV")] public static - void VertexAttribL3i64(Int32 index, ref Int64 v) + void VertexAttribL3(Int32 index, ref Int64 v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -182394,7 +183749,7 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL3i64vNV")] public static - unsafe void VertexAttribL3i64(Int32 index, Int64* v) + unsafe void VertexAttribL3(Int32 index, Int64* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -182410,7 +183765,7 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL3i64vNV")] public static - void VertexAttribL3i64(UInt32 index, Int64[] v) + void VertexAttribL3(UInt32 index, Int64[] v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -182432,7 +183787,7 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL3i64vNV")] public static - void VertexAttribL3i64(UInt32 index, ref Int64 v) + void VertexAttribL3(UInt32 index, ref Int64 v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -182454,7 +183809,7 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL3i64vNV")] public static - unsafe void VertexAttribL3i64(UInt32 index, Int64* v) + unsafe void VertexAttribL3(UInt32 index, Int64* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -182467,9 +183822,10 @@ namespace OpenTK.Graphics.OpenGL } /// [requires: NV_vertex_attrib_integer_64bit] + [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL3ui64NV")] public static - void VertexAttribL3ui64(Int32 index, Int64 x, Int64 y, Int64 z) + void VertexAttribL3(UInt32 index, UInt64 x, UInt64 y, UInt64 z) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -182483,83 +183839,9 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_vertex_attrib_integer_64bit] [System.CLSCompliant(false)] - [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL3ui64NV")] - public static - void VertexAttribL3ui64(UInt32 index, UInt64 x, UInt64 y, UInt64 z) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - Delegates.glVertexAttribL3ui64NV((UInt32)index, (UInt64)x, (UInt64)y, (UInt64)z); - #if DEBUG - } - #endif - } - - /// [requires: NV_vertex_attrib_integer_64bit] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL3ui64vNV")] public static - void VertexAttribL3ui64(Int32 index, Int64[] v) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - unsafe - { - fixed (Int64* v_ptr = v) - { - Delegates.glVertexAttribL3ui64vNV((UInt32)index, (UInt64*)v_ptr); - } - } - #if DEBUG - } - #endif - } - - /// [requires: NV_vertex_attrib_integer_64bit] - [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL3ui64vNV")] - public static - void VertexAttribL3ui64(Int32 index, ref Int64 v) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - unsafe - { - fixed (Int64* v_ptr = &v) - { - Delegates.glVertexAttribL3ui64vNV((UInt32)index, (UInt64*)v_ptr); - } - } - #if DEBUG - } - #endif - } - - /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] - [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL3ui64vNV")] - public static - unsafe void VertexAttribL3ui64(Int32 index, Int64* v) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - Delegates.glVertexAttribL3ui64vNV((UInt32)index, (UInt64*)v); - #if DEBUG - } - #endif - } - - /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] - [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL3ui64vNV")] - public static - void VertexAttribL3ui64(UInt32 index, UInt64[] v) + void VertexAttribL3(UInt32 index, UInt64[] v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -182581,7 +183863,7 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL3ui64vNV")] public static - void VertexAttribL3ui64(UInt32 index, ref UInt64 v) + void VertexAttribL3(UInt32 index, ref UInt64 v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -182603,7 +183885,7 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL3ui64vNV")] public static - unsafe void VertexAttribL3ui64(UInt32 index, UInt64* v) + unsafe void VertexAttribL3(UInt32 index, UInt64* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -182618,7 +183900,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_vertex_attrib_integer_64bit] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL4i64NV")] public static - void VertexAttribL4i64(Int32 index, Int64 x, Int64 y, Int64 z, Int64 w) + void VertexAttribL4(Int32 index, Int64 x, Int64 y, Int64 z, Int64 w) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -182634,7 +183916,7 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL4i64NV")] public static - void VertexAttribL4i64(UInt32 index, Int64 x, Int64 y, Int64 z, Int64 w) + void VertexAttribL4(UInt32 index, Int64 x, Int64 y, Int64 z, Int64 w) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -182649,7 +183931,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_vertex_attrib_integer_64bit] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL4i64vNV")] public static - void VertexAttribL4i64(Int32 index, Int64[] v) + void VertexAttribL4(Int32 index, Int64[] v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -182670,7 +183952,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_vertex_attrib_integer_64bit] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL4i64vNV")] public static - void VertexAttribL4i64(Int32 index, ref Int64 v) + void VertexAttribL4(Int32 index, ref Int64 v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -182692,7 +183974,7 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL4i64vNV")] public static - unsafe void VertexAttribL4i64(Int32 index, Int64* v) + unsafe void VertexAttribL4(Int32 index, Int64* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -182708,7 +183990,7 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL4i64vNV")] public static - void VertexAttribL4i64(UInt32 index, Int64[] v) + void VertexAttribL4(UInt32 index, Int64[] v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -182730,7 +184012,7 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL4i64vNV")] public static - void VertexAttribL4i64(UInt32 index, ref Int64 v) + void VertexAttribL4(UInt32 index, ref Int64 v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -182752,7 +184034,7 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL4i64vNV")] public static - unsafe void VertexAttribL4i64(UInt32 index, Int64* v) + unsafe void VertexAttribL4(UInt32 index, Int64* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -182765,9 +184047,10 @@ namespace OpenTK.Graphics.OpenGL } /// [requires: NV_vertex_attrib_integer_64bit] + [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL4ui64NV")] public static - void VertexAttribL4ui64(Int32 index, Int64 x, Int64 y, Int64 z, Int64 w) + void VertexAttribL4(UInt32 index, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -182781,83 +184064,9 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_vertex_attrib_integer_64bit] [System.CLSCompliant(false)] - [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL4ui64NV")] - public static - void VertexAttribL4ui64(UInt32 index, UInt64 x, UInt64 y, UInt64 z, UInt64 w) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - Delegates.glVertexAttribL4ui64NV((UInt32)index, (UInt64)x, (UInt64)y, (UInt64)z, (UInt64)w); - #if DEBUG - } - #endif - } - - /// [requires: NV_vertex_attrib_integer_64bit] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL4ui64vNV")] public static - void VertexAttribL4ui64(Int32 index, Int64[] v) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - unsafe - { - fixed (Int64* v_ptr = v) - { - Delegates.glVertexAttribL4ui64vNV((UInt32)index, (UInt64*)v_ptr); - } - } - #if DEBUG - } - #endif - } - - /// [requires: NV_vertex_attrib_integer_64bit] - [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL4ui64vNV")] - public static - void VertexAttribL4ui64(Int32 index, ref Int64 v) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - unsafe - { - fixed (Int64* v_ptr = &v) - { - Delegates.glVertexAttribL4ui64vNV((UInt32)index, (UInt64*)v_ptr); - } - } - #if DEBUG - } - #endif - } - - /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] - [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL4ui64vNV")] - public static - unsafe void VertexAttribL4ui64(Int32 index, Int64* v) - { - #if DEBUG - using (new ErrorHelper(GraphicsContext.CurrentContext)) - { - #endif - Delegates.glVertexAttribL4ui64vNV((UInt32)index, (UInt64*)v); - #if DEBUG - } - #endif - } - - /// [requires: NV_vertex_attrib_integer_64bit] - [System.CLSCompliant(false)] - [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL4ui64vNV")] - public static - void VertexAttribL4ui64(UInt32 index, UInt64[] v) + void VertexAttribL4(UInt32 index, UInt64[] v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -182879,7 +184088,7 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL4ui64vNV")] public static - void VertexAttribL4ui64(UInt32 index, ref UInt64 v) + void VertexAttribL4(UInt32 index, ref UInt64 v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -182901,7 +184110,7 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "4.1", EntryPoint = "glVertexAttribL4ui64vNV")] public static - unsafe void VertexAttribL4ui64(UInt32 index, UInt64* v) + unsafe void VertexAttribL4(UInt32 index, UInt64* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) diff --git a/Source/OpenTK/Graphics/OpenGL/GLCore.cs b/Source/OpenTK/Graphics/OpenGL/GLCore.cs index 2b866c16..6cca373f 100644 --- a/Source/OpenTK/Graphics/OpenGL/GLCore.cs +++ b/Source/OpenTK/Graphics/OpenGL/GLCore.cs @@ -1736,7 +1736,7 @@ namespace OpenTK.Graphics.OpenGL internal extern static unsafe void GetBooleanv(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute] bool* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetBufferParameteri64v", ExactSpelling = true)] - internal extern static unsafe void GetBufferParameteri64v(OpenTK.Graphics.OpenGL.Version32 target, OpenTK.Graphics.OpenGL.Version32 pname, [OutAttribute] Int64* @params); + internal extern static unsafe void GetBufferParameteri64v(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int64* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetBufferParameteriv", ExactSpelling = true)] internal extern static unsafe void GetBufferParameteriv(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int32* @params); @@ -2324,7 +2324,7 @@ namespace OpenTK.Graphics.OpenGL internal extern static unsafe void GetQueryivARB(OpenTK.Graphics.OpenGL.ArbOcclusionQuery target, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute] Int32* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetQueryObjecti64v", ExactSpelling = true)] - internal extern static unsafe void GetQueryObjecti64v(UInt32 id, OpenTK.Graphics.OpenGL.ArbTimerQuery pname, [OutAttribute] Int64* @params); + internal extern static unsafe void GetQueryObjecti64v(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute] Int64* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetQueryObjecti64vEXT", ExactSpelling = true)] internal extern static unsafe void GetQueryObjecti64vEXT(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64* @params); @@ -2336,7 +2336,7 @@ namespace OpenTK.Graphics.OpenGL internal extern static unsafe void GetQueryObjectivARB(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute] Int32* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetQueryObjectui64v", ExactSpelling = true)] - internal extern static unsafe void GetQueryObjectui64v(UInt32 id, OpenTK.Graphics.OpenGL.ArbTimerQuery pname, [OutAttribute] UInt64* @params); + internal extern static unsafe void GetQueryObjectui64v(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute] UInt64* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetQueryObjectui64vEXT", ExactSpelling = true)] internal extern static unsafe void GetQueryObjectui64vEXT(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] UInt64* @params); diff --git a/Source/OpenTK/Graphics/OpenGL/GLDelegates.cs b/Source/OpenTK/Graphics/OpenGL/GLDelegates.cs index 147246d2..9714c53e 100644 --- a/Source/OpenTK/Graphics/OpenGL/GLDelegates.cs +++ b/Source/OpenTK/Graphics/OpenGL/GLDelegates.cs @@ -1734,7 +1734,7 @@ namespace OpenTK.Graphics.OpenGL internal unsafe delegate void GetBooleanv(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute] bool* @params); internal unsafe static GetBooleanv glGetBooleanv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetBufferParameteri64v(OpenTK.Graphics.OpenGL.Version32 target, OpenTK.Graphics.OpenGL.Version32 pname, [OutAttribute] Int64* @params); + internal unsafe delegate void GetBufferParameteri64v(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int64* @params); internal unsafe static GetBufferParameteri64v glGetBufferParameteri64v; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void GetBufferParameteriv(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int32* @params); @@ -2322,7 +2322,7 @@ namespace OpenTK.Graphics.OpenGL internal unsafe delegate void GetQueryivARB(OpenTK.Graphics.OpenGL.ArbOcclusionQuery target, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute] Int32* @params); internal unsafe static GetQueryivARB glGetQueryivARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetQueryObjecti64v(UInt32 id, OpenTK.Graphics.OpenGL.ArbTimerQuery pname, [OutAttribute] Int64* @params); + internal unsafe delegate void GetQueryObjecti64v(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute] Int64* @params); internal unsafe static GetQueryObjecti64v glGetQueryObjecti64v; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void GetQueryObjecti64vEXT(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64* @params); @@ -2334,7 +2334,7 @@ namespace OpenTK.Graphics.OpenGL internal unsafe delegate void GetQueryObjectivARB(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute] Int32* @params); internal unsafe static GetQueryObjectivARB glGetQueryObjectivARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetQueryObjectui64v(UInt32 id, OpenTK.Graphics.OpenGL.ArbTimerQuery pname, [OutAttribute] UInt64* @params); + internal unsafe delegate void GetQueryObjectui64v(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute] UInt64* @params); internal unsafe static GetQueryObjectui64v glGetQueryObjectui64v; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void GetQueryObjectui64vEXT(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] UInt64* @params); diff --git a/Source/OpenTK/Graphics/OpenGL/GLEnums.cs b/Source/OpenTK/Graphics/OpenGL/GLEnums.cs index 53e9a589..4f3d99b3 100644 --- a/Source/OpenTK/Graphics/OpenGL/GLEnums.cs +++ b/Source/OpenTK/Graphics/OpenGL/GLEnums.cs @@ -21602,7 +21602,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.GetQueryObjecti64, GL.GetQueryObjectui64 + /// Not used directly. /// public enum ArbTimerQuery : int { @@ -29280,7 +29280,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Ext.GetQueryObjecti64, GL.Ext.GetQueryObjectui64 + /// Used in GL.Ext.GetQueryObject /// public enum ExtTimerQuery : int { @@ -36611,7 +36611,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.NV.GetVideoi64, GL.NV.GetVideo, GL.NV.GetVideoui64, GL.NV.PresentFrameDualFill, GL.NV.PresentFrameKeye + /// Used in GL.NV.GetVideo, GL.NV.PresentFrameDualFill, GL.NV.PresentFrameKeye /// public enum NvPresentVideo : int { @@ -36911,7 +36911,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.NV.GetBufferParameterui64, GL.NV.GetIntegerui64, GL.NV.GetNamedBufferParameterui64, GL.NV.IsBufferResident, GL.NV.MakeBufferNonResident, GL.NV.MakeBufferResident, GL.NV.MakeNamedBufferResident + /// Used in GL.NV.GetBufferParameter, GL.NV.GetInteger, GL.NV.GetNamedBufferParameter, GL.NV.IsBufferResident, GL.NV.MakeBufferNonResident, GL.NV.MakeBufferResident, GL.NV.MakeNamedBufferResident /// public enum NvShaderBufferLoad : int { @@ -37828,7 +37828,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.NV.GetVertexAttribLi64, GL.NV.GetVertexAttribLui64, GL.NV.VertexAttribLFormat + /// Used in GL.NV.GetVertexAttrib, GL.NV.VertexAttribLFormat /// public enum NvVertexAttribInteger64bit : int { @@ -51169,7 +51169,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.GetBufferParameteri64, GL.GetInteger64 + /// Used in GL.GetInteger64 /// public enum Version32 : int {