diff --git a/Source/OpenTK/OpenGL/Bindings/GL.cs b/Source/OpenTK/OpenGL/Bindings/GL.cs index 943599b5..1afa0e07 100644 --- a/Source/OpenTK/OpenGL/Bindings/GL.cs +++ b/Source/OpenTK/OpenGL/Bindings/GL.cs @@ -4423,38 +4423,6 @@ namespace OpenTK.OpenGL } } - public static - void GetBoolean(OpenTK.OpenGL.Enums.GetPName pname, [Out] bool[] @params) - { - unsafe - { - fixed (bool* @params_ptr = @params) - { - Delegates.glGetBooleanv((OpenTK.OpenGL.Enums.GetPName)pname, (bool*)@params_ptr); - } - } - } - - public static - void GetBoolean(OpenTK.OpenGL.Enums.GetPName pname, [Out] out bool @params) - { - unsafe - { - fixed (bool* @params_ptr = &@params) - { - Delegates.glGetBooleanv((OpenTK.OpenGL.Enums.GetPName)pname, (bool*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetBoolean(OpenTK.OpenGL.Enums.GetPName pname, [Out] bool* @params) - { - Delegates.glGetBooleanv((OpenTK.OpenGL.Enums.GetPName)pname, (bool*)@params); - } - public static void GetClipPlane(OpenTK.OpenGL.Enums.ClipPlaneName plane, [Out] Double[] equation) { @@ -5530,7 +5498,7 @@ namespace OpenTK.OpenGL } public static - void Scaled(Double x, Double y, Double z) + void Scale(Double x, Double y, Double z) { Delegates.glScaled((Double)x, (Double)y, (Double)z); } @@ -6251,40 +6219,40 @@ namespace OpenTK.OpenGL } public static - void BlendEquation(OpenTK.OpenGL.Enums.Version12 mode) + void BlendEquation(OpenTK.OpenGL.Enums.All mode) { - Delegates.glBlendEquation((OpenTK.OpenGL.Enums.Version12)mode); + Delegates.glBlendEquation((OpenTK.OpenGL.Enums.All)mode); } [System.CLSCompliant(false)] public static - void DrawRangeElements(OpenTK.OpenGL.Enums.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.OpenGL.Enums.Version12 type, IntPtr indices) + void DrawRangeElements(OpenTK.OpenGL.Enums.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.OpenGL.Enums.All type, IntPtr indices) { unsafe { - Delegates.glDrawRangeElements((OpenTK.OpenGL.Enums.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.OpenGL.Enums.Version12)type, (IntPtr)indices); + Delegates.glDrawRangeElements((OpenTK.OpenGL.Enums.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.OpenGL.Enums.All)type, (IntPtr)indices); } } public static - void DrawRangeElements(OpenTK.OpenGL.Enums.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.OpenGL.Enums.Version12 type, IntPtr indices) + void DrawRangeElements(OpenTK.OpenGL.Enums.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.OpenGL.Enums.All type, IntPtr indices) { unsafe { - Delegates.glDrawRangeElements((OpenTK.OpenGL.Enums.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.OpenGL.Enums.Version12)type, (IntPtr)indices); + Delegates.glDrawRangeElements((OpenTK.OpenGL.Enums.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.OpenGL.Enums.All)type, (IntPtr)indices); } } [System.CLSCompliant(false)] public static - void DrawRangeElements(OpenTK.OpenGL.Enums.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.OpenGL.Enums.Version12 type, [In, Out] object indices) + void DrawRangeElements(OpenTK.OpenGL.Enums.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.OpenGL.Enums.All type, [In, Out] object indices) { unsafe { System.Runtime.InteropServices.GCHandle indices_ptr = System.Runtime.InteropServices.GCHandle.Alloc(indices, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.OpenGL.Enums.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.OpenGL.Enums.Version12)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + Delegates.glDrawRangeElements((OpenTK.OpenGL.Enums.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.OpenGL.Enums.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -6294,14 +6262,14 @@ namespace OpenTK.OpenGL } public static - void DrawRangeElements(OpenTK.OpenGL.Enums.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.OpenGL.Enums.Version12 type, [In, Out] object indices) + void DrawRangeElements(OpenTK.OpenGL.Enums.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.OpenGL.Enums.All type, [In, Out] object indices) { unsafe { System.Runtime.InteropServices.GCHandle indices_ptr = System.Runtime.InteropServices.GCHandle.Alloc(indices, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.OpenGL.Enums.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.OpenGL.Enums.Version12)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + Delegates.glDrawRangeElements((OpenTK.OpenGL.Enums.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.OpenGL.Enums.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -6311,23 +6279,23 @@ namespace OpenTK.OpenGL } public static - void ColorTable(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr table) + void ColorTable(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr table) { unsafe { - Delegates.glColorTable((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)table); + Delegates.glColorTable((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)table); } } public static - void ColorTable(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object table) + void ColorTable(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object table) { unsafe { System.Runtime.InteropServices.GCHandle table_ptr = System.Runtime.InteropServices.GCHandle.Alloc(table, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glColorTable((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); + Delegates.glColorTable((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); } finally { @@ -6337,91 +6305,91 @@ namespace OpenTK.OpenGL } public static - void ColorTableParameter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, Single[] @params) + void ColorTableParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glColorTableParameterfv((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.Version12)pname, (Single*)@params_ptr); + Delegates.glColorTableParameterfv((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); } } } public static - void ColorTableParameter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, ref Single @params) + void ColorTableParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glColorTableParameterfv((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.Version12)pname, (Single*)@params_ptr); + Delegates.glColorTableParameterfv((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ColorTableParameter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, Single* @params) + unsafe void ColorTableParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Single* @params) { - Delegates.glColorTableParameterfv((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.Version12)pname, (Single*)@params); + Delegates.glColorTableParameterfv((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); } public static - void ColorTableParameter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, Int32[] @params) + void ColorTableParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glColorTableParameteriv((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.Version12)pname, (Int32*)@params_ptr); + Delegates.glColorTableParameteriv((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); } } } public static - void ColorTableParameter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, ref Int32 @params) + void ColorTableParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glColorTableParameteriv((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.Version12)pname, (Int32*)@params_ptr); + Delegates.glColorTableParameteriv((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ColorTableParameter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, Int32* @params) + unsafe void ColorTableParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Int32* @params) { - Delegates.glColorTableParameteriv((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.Version12)pname, (Int32*)@params); + Delegates.glColorTableParameteriv((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); } public static - void CopyColorTable(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) + void CopyColorTable(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { - Delegates.glCopyColorTable((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width); + Delegates.glCopyColorTable((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width); } public static - void GetColorTable(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr table) + void GetColorTable(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr table) { unsafe { - Delegates.glGetColorTable((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)table); + Delegates.glGetColorTable((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)table); } } public static - void GetColorTable(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object table) + void GetColorTable(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object table) { unsafe { System.Runtime.InteropServices.GCHandle table_ptr = System.Runtime.InteropServices.GCHandle.Alloc(table, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glGetColorTable((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); + Delegates.glGetColorTable((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); } finally { @@ -6431,25 +6399,25 @@ namespace OpenTK.OpenGL } public static - void GetColorTableParameter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] Single[] @params) + void GetColorTableParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetColorTableParameterfv((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.Version12)pname, (Single*)@params_ptr); + Delegates.glGetColorTableParameterfv((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); } } } public static - void GetColorTableParameter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] out Single @params) + void GetColorTableParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetColorTableParameterfv((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.Version12)pname, (Single*)@params_ptr); + Delegates.glGetColorTableParameterfv((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -6457,31 +6425,31 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetColorTableParameter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] Single* @params) + unsafe void GetColorTableParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params) { - Delegates.glGetColorTableParameterfv((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.Version12)pname, (Single*)@params); + Delegates.glGetColorTableParameterfv((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); } public static - void GetColorTableParameter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] Int32[] @params) + void GetColorTableParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetColorTableParameteriv((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.Version12)pname, (Int32*)@params_ptr); + Delegates.glGetColorTableParameteriv((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); } } } public static - void GetColorTableParameter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] out Int32 @params) + void GetColorTableParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetColorTableParameteriv((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.Version12)pname, (Int32*)@params_ptr); + Delegates.glGetColorTableParameteriv((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -6489,29 +6457,29 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetColorTableParameter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] Int32* @params) + unsafe void GetColorTableParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) { - Delegates.glGetColorTableParameteriv((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.Version12)pname, (Int32*)@params); + Delegates.glGetColorTableParameteriv((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); } public static - void ColorSubTable(OpenTK.OpenGL.Enums.Version12 target, Int32 start, Int32 count, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr data) + void ColorSubTable(OpenTK.OpenGL.Enums.All target, Int32 start, Int32 count, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr data) { unsafe { - Delegates.glColorSubTable((OpenTK.OpenGL.Enums.Version12)target, (Int32)start, (Int32)count, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)data); + Delegates.glColorSubTable((OpenTK.OpenGL.Enums.All)target, (Int32)start, (Int32)count, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)data); } } public static - void ColorSubTable(OpenTK.OpenGL.Enums.Version12 target, Int32 start, Int32 count, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object data) + void ColorSubTable(OpenTK.OpenGL.Enums.All target, Int32 start, Int32 count, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object data) { unsafe { System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glColorSubTable((OpenTK.OpenGL.Enums.Version12)target, (Int32)start, (Int32)count, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + Delegates.glColorSubTable((OpenTK.OpenGL.Enums.All)target, (Int32)start, (Int32)count, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -6521,29 +6489,29 @@ namespace OpenTK.OpenGL } public static - void CopyColorSubTable(OpenTK.OpenGL.Enums.Version12 target, Int32 start, Int32 x, Int32 y, Int32 width) + void CopyColorSubTable(OpenTK.OpenGL.Enums.All target, Int32 start, Int32 x, Int32 y, Int32 width) { - Delegates.glCopyColorSubTable((OpenTK.OpenGL.Enums.Version12)target, (Int32)start, (Int32)x, (Int32)y, (Int32)width); + Delegates.glCopyColorSubTable((OpenTK.OpenGL.Enums.All)target, (Int32)start, (Int32)x, (Int32)y, (Int32)width); } public static - void ConvolutionFilter1D(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr image) + void ConvolutionFilter1D(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr image) { unsafe { - Delegates.glConvolutionFilter1D((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)image); + Delegates.glConvolutionFilter1D((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)image); } } public static - void ConvolutionFilter1D(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object image) + void ConvolutionFilter1D(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object image) { unsafe { System.Runtime.InteropServices.GCHandle image_ptr = System.Runtime.InteropServices.GCHandle.Alloc(image, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glConvolutionFilter1D((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + Delegates.glConvolutionFilter1D((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -6553,23 +6521,23 @@ namespace OpenTK.OpenGL } public static - void ConvolutionFilter2D(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr image) + void ConvolutionFilter2D(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr image) { unsafe { - Delegates.glConvolutionFilter2D((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)image); + Delegates.glConvolutionFilter2D((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)image); } } public static - void ConvolutionFilter2D(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object image) + void ConvolutionFilter2D(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object image) { unsafe { System.Runtime.InteropServices.GCHandle image_ptr = System.Runtime.InteropServices.GCHandle.Alloc(image, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glConvolutionFilter2D((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + Delegates.glConvolutionFilter2D((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -6579,109 +6547,109 @@ namespace OpenTK.OpenGL } public static - void ConvolutionParameter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, Single @params) + void ConvolutionParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Single @params) { - Delegates.glConvolutionParameterf((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.Version12)pname, (Single)@params); + Delegates.glConvolutionParameterf((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single)@params); } public static - void ConvolutionParameterv(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, Single[] @params) + void ConvolutionParameterv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glConvolutionParameterfv((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.Version12)pname, (Single*)@params_ptr); + Delegates.glConvolutionParameterfv((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); } } } public static - void ConvolutionParameterv(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, ref Single @params) + void ConvolutionParameterv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glConvolutionParameterfv((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.Version12)pname, (Single*)@params_ptr); + Delegates.glConvolutionParameterfv((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ConvolutionParameterv(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, Single* @params) + unsafe void ConvolutionParameterv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Single* @params) { - Delegates.glConvolutionParameterfv((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.Version12)pname, (Single*)@params); + Delegates.glConvolutionParameterfv((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); } public static - void ConvolutionParameter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, Int32 @params) + void ConvolutionParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Int32 @params) { - Delegates.glConvolutionParameteri((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.Version12)pname, (Int32)@params); + Delegates.glConvolutionParameteri((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32)@params); } public static - void ConvolutionParameterv(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, Int32[] @params) + void ConvolutionParameterv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glConvolutionParameteriv((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.Version12)pname, (Int32*)@params_ptr); + Delegates.glConvolutionParameteriv((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); } } } public static - void ConvolutionParameterv(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, ref Int32 @params) + void ConvolutionParameterv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glConvolutionParameteriv((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.Version12)pname, (Int32*)@params_ptr); + Delegates.glConvolutionParameteriv((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ConvolutionParameterv(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, Int32* @params) + unsafe void ConvolutionParameterv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Int32* @params) { - Delegates.glConvolutionParameteriv((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.Version12)pname, (Int32*)@params); + Delegates.glConvolutionParameteriv((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); } public static - void CopyConvolutionFilter1D(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) + void CopyConvolutionFilter1D(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { - Delegates.glCopyConvolutionFilter1D((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width); + Delegates.glCopyConvolutionFilter1D((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width); } public static - void CopyConvolutionFilter2D(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height) + void CopyConvolutionFilter2D(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height) { - Delegates.glCopyConvolutionFilter2D((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + Delegates.glCopyConvolutionFilter2D((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height); } public static - void GetConvolutionFilter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr image) + void GetConvolutionFilter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr image) { unsafe { - Delegates.glGetConvolutionFilter((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)image); + Delegates.glGetConvolutionFilter((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)image); } } public static - void GetConvolutionFilter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object image) + void GetConvolutionFilter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object image) { unsafe { System.Runtime.InteropServices.GCHandle image_ptr = System.Runtime.InteropServices.GCHandle.Alloc(image, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glGetConvolutionFilter((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + Delegates.glGetConvolutionFilter((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -6691,25 +6659,25 @@ namespace OpenTK.OpenGL } public static - void GetConvolutionParameter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] Single[] @params) + void GetConvolutionParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetConvolutionParameterfv((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.Version12)pname, (Single*)@params_ptr); + Delegates.glGetConvolutionParameterfv((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); } } } public static - void GetConvolutionParameter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] out Single @params) + void GetConvolutionParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetConvolutionParameterfv((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.Version12)pname, (Single*)@params_ptr); + Delegates.glGetConvolutionParameterfv((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -6717,31 +6685,31 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetConvolutionParameter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] Single* @params) + unsafe void GetConvolutionParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params) { - Delegates.glGetConvolutionParameterfv((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.Version12)pname, (Single*)@params); + Delegates.glGetConvolutionParameterfv((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); } public static - void GetConvolutionParameter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] Int32[] @params) + void GetConvolutionParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetConvolutionParameteriv((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.Version12)pname, (Int32*)@params_ptr); + Delegates.glGetConvolutionParameteriv((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); } } } public static - void GetConvolutionParameter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] out Int32 @params) + void GetConvolutionParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetConvolutionParameteriv((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.Version12)pname, (Int32*)@params_ptr); + Delegates.glGetConvolutionParameteriv((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -6749,22 +6717,22 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetConvolutionParameter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] Int32* @params) + unsafe void GetConvolutionParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) { - Delegates.glGetConvolutionParameteriv((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.Version12)pname, (Int32*)@params); + Delegates.glGetConvolutionParameteriv((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); } public static - void GetSeparableFilter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr row, [Out] IntPtr column, [Out] IntPtr span) + void GetSeparableFilter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr row, [Out] IntPtr column, [Out] IntPtr span) { unsafe { - Delegates.glGetSeparableFilter((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)row, (IntPtr)column, (IntPtr)span); + Delegates.glGetSeparableFilter((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)row, (IntPtr)column, (IntPtr)span); } } public static - void GetSeparableFilter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object row, [In, Out] object column, [In, Out] object span) + void GetSeparableFilter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object row, [In, Out] object column, [In, Out] object span) { unsafe { @@ -6773,7 +6741,7 @@ namespace OpenTK.OpenGL System.Runtime.InteropServices.GCHandle span_ptr = System.Runtime.InteropServices.GCHandle.Alloc(span, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glGetSeparableFilter((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); + Delegates.glGetSeparableFilter((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); } finally { @@ -6785,7 +6753,7 @@ namespace OpenTK.OpenGL } public static - void GetSeparableFilter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr row, [In, Out] object column, [In, Out] object span) + void GetSeparableFilter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr row, [In, Out] object column, [In, Out] object span) { unsafe { @@ -6793,7 +6761,7 @@ namespace OpenTK.OpenGL System.Runtime.InteropServices.GCHandle span_ptr = System.Runtime.InteropServices.GCHandle.Alloc(span, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glGetSeparableFilter((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)row, (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); + Delegates.glGetSeparableFilter((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)row, (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); } finally { @@ -6804,16 +6772,16 @@ namespace OpenTK.OpenGL } public static - void SeparableFilter2D(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr row, IntPtr column) + void SeparableFilter2D(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr row, IntPtr column) { unsafe { - Delegates.glSeparableFilter2D((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)row, (IntPtr)column); + Delegates.glSeparableFilter2D((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)row, (IntPtr)column); } } public static - void SeparableFilter2D(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object row, [In, Out] object column) + void SeparableFilter2D(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object row, [In, Out] object column) { unsafe { @@ -6821,7 +6789,7 @@ namespace OpenTK.OpenGL System.Runtime.InteropServices.GCHandle column_ptr = System.Runtime.InteropServices.GCHandle.Alloc(column, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glSeparableFilter2D((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject()); + Delegates.glSeparableFilter2D((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject()); } finally { @@ -6832,23 +6800,23 @@ namespace OpenTK.OpenGL } public static - void GetHistogram(OpenTK.OpenGL.Enums.Version12 target, bool reset, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr values) + void GetHistogram(OpenTK.OpenGL.Enums.All target, bool reset, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr values) { unsafe { - Delegates.glGetHistogram((OpenTK.OpenGL.Enums.Version12)target, (bool)reset, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)values); + Delegates.glGetHistogram((OpenTK.OpenGL.Enums.All)target, (bool)reset, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)values); } } public static - void GetHistogram(OpenTK.OpenGL.Enums.Version12 target, bool reset, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object values) + void GetHistogram(OpenTK.OpenGL.Enums.All target, bool reset, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object values) { unsafe { System.Runtime.InteropServices.GCHandle values_ptr = System.Runtime.InteropServices.GCHandle.Alloc(values, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glGetHistogram((OpenTK.OpenGL.Enums.Version12)target, (bool)reset, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); + Delegates.glGetHistogram((OpenTK.OpenGL.Enums.All)target, (bool)reset, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); } finally { @@ -6858,25 +6826,25 @@ namespace OpenTK.OpenGL } public static - void GetHistogramParameter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] Single[] @params) + void GetHistogramParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetHistogramParameterfv((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.Version12)pname, (Single*)@params_ptr); + Delegates.glGetHistogramParameterfv((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); } } } public static - void GetHistogramParameter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] out Single @params) + void GetHistogramParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetHistogramParameterfv((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.Version12)pname, (Single*)@params_ptr); + Delegates.glGetHistogramParameterfv((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -6884,31 +6852,31 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetHistogramParameter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] Single* @params) + unsafe void GetHistogramParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params) { - Delegates.glGetHistogramParameterfv((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.Version12)pname, (Single*)@params); + Delegates.glGetHistogramParameterfv((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); } public static - void GetHistogramParameter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] Int32[] @params) + void GetHistogramParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetHistogramParameteriv((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.Version12)pname, (Int32*)@params_ptr); + Delegates.glGetHistogramParameteriv((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); } } } public static - void GetHistogramParameter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] out Int32 @params) + void GetHistogramParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetHistogramParameteriv((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.Version12)pname, (Int32*)@params_ptr); + Delegates.glGetHistogramParameteriv((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -6916,29 +6884,29 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetHistogramParameter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] Int32* @params) + unsafe void GetHistogramParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) { - Delegates.glGetHistogramParameteriv((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.Version12)pname, (Int32*)@params); + Delegates.glGetHistogramParameteriv((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); } public static - void GetMinmax(OpenTK.OpenGL.Enums.Version12 target, bool reset, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr values) + void GetMinmax(OpenTK.OpenGL.Enums.All target, bool reset, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr values) { unsafe { - Delegates.glGetMinmax((OpenTK.OpenGL.Enums.Version12)target, (bool)reset, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)values); + Delegates.glGetMinmax((OpenTK.OpenGL.Enums.All)target, (bool)reset, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)values); } } public static - void GetMinmax(OpenTK.OpenGL.Enums.Version12 target, bool reset, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object values) + void GetMinmax(OpenTK.OpenGL.Enums.All target, bool reset, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object values) { unsafe { System.Runtime.InteropServices.GCHandle values_ptr = System.Runtime.InteropServices.GCHandle.Alloc(values, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glGetMinmax((OpenTK.OpenGL.Enums.Version12)target, (bool)reset, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); + Delegates.glGetMinmax((OpenTK.OpenGL.Enums.All)target, (bool)reset, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); } finally { @@ -6948,25 +6916,25 @@ namespace OpenTK.OpenGL } public static - void GetMinmaxParameter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] Single[] @params) + void GetMinmaxParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetMinmaxParameterfv((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.Version12)pname, (Single*)@params_ptr); + Delegates.glGetMinmaxParameterfv((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); } } } public static - void GetMinmaxParameter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] out Single @params) + void GetMinmaxParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetMinmaxParameterfv((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.Version12)pname, (Single*)@params_ptr); + Delegates.glGetMinmaxParameterfv((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -6974,31 +6942,31 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetMinmaxParameter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] Single* @params) + unsafe void GetMinmaxParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params) { - Delegates.glGetMinmaxParameterfv((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.Version12)pname, (Single*)@params); + Delegates.glGetMinmaxParameterfv((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); } public static - void GetMinmaxParameter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] Int32[] @params) + void GetMinmaxParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetMinmaxParameteriv((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.Version12)pname, (Int32*)@params_ptr); + Delegates.glGetMinmaxParameteriv((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); } } } public static - void GetMinmaxParameter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] out Int32 @params) + void GetMinmaxParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetMinmaxParameteriv((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.Version12)pname, (Int32*)@params_ptr); + Delegates.glGetMinmaxParameteriv((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -7006,33 +6974,33 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetMinmaxParameter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] Int32* @params) + unsafe void GetMinmaxParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) { - Delegates.glGetMinmaxParameteriv((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.Version12)pname, (Int32*)@params); + Delegates.glGetMinmaxParameteriv((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); } public static - void Histogram(OpenTK.OpenGL.Enums.Version12 target, Int32 width, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, bool sink) + void Histogram(OpenTK.OpenGL.Enums.All target, Int32 width, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, bool sink) { - Delegates.glHistogram((OpenTK.OpenGL.Enums.Version12)target, (Int32)width, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (bool)sink); + Delegates.glHistogram((OpenTK.OpenGL.Enums.All)target, (Int32)width, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (bool)sink); } public static - void Minmax(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, bool sink) + void Minmax(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, bool sink) { - Delegates.glMinmax((OpenTK.OpenGL.Enums.Version12)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (bool)sink); + Delegates.glMinmax((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (bool)sink); } public static - void ResetHistogram(OpenTK.OpenGL.Enums.Version12 target) + void ResetHistogram(OpenTK.OpenGL.Enums.All target) { - Delegates.glResetHistogram((OpenTK.OpenGL.Enums.Version12)target); + Delegates.glResetHistogram((OpenTK.OpenGL.Enums.All)target); } public static - void ResetMinmax(OpenTK.OpenGL.Enums.Version12 target) + void ResetMinmax(OpenTK.OpenGL.Enums.All target) { - Delegates.glResetMinmax((OpenTK.OpenGL.Enums.Version12)target); + Delegates.glResetMinmax((OpenTK.OpenGL.Enums.All)target); } public static @@ -7094,607 +7062,607 @@ namespace OpenTK.OpenGL } public static - void ActiveTexture(OpenTK.OpenGL.Enums.Version13 texture) + void ActiveTexture(OpenTK.OpenGL.Enums.TextureUnit texture) { - Delegates.glActiveTexture((OpenTK.OpenGL.Enums.Version13)texture); + Delegates.glActiveTexture((OpenTK.OpenGL.Enums.TextureUnit)texture); } public static - void ClientActiveTexture(OpenTK.OpenGL.Enums.Version13 texture) + void ClientActiveTexture(OpenTK.OpenGL.Enums.TextureUnit texture) { - Delegates.glClientActiveTexture((OpenTK.OpenGL.Enums.Version13)texture); + Delegates.glClientActiveTexture((OpenTK.OpenGL.Enums.TextureUnit)texture); } public static - void MultiTexCoord1(OpenTK.OpenGL.Enums.Version13 target, Double s) + void MultiTexCoord1(OpenTK.OpenGL.Enums.TextureUnit target, Double s) { - Delegates.glMultiTexCoord1d((OpenTK.OpenGL.Enums.Version13)target, (Double)s); + Delegates.glMultiTexCoord1d((OpenTK.OpenGL.Enums.TextureUnit)target, (Double)s); } public static - void MultiTexCoord1v(OpenTK.OpenGL.Enums.Version13 target, Double[] v) + void MultiTexCoord1v(OpenTK.OpenGL.Enums.TextureUnit target, Double[] v) { unsafe { fixed (Double* v_ptr = v) { - Delegates.glMultiTexCoord1dv((OpenTK.OpenGL.Enums.Version13)target, (Double*)v_ptr); + Delegates.glMultiTexCoord1dv((OpenTK.OpenGL.Enums.TextureUnit)target, (Double*)v_ptr); } } } public static - void MultiTexCoord1v(OpenTK.OpenGL.Enums.Version13 target, ref Double v) + void MultiTexCoord1v(OpenTK.OpenGL.Enums.TextureUnit target, ref Double v) { unsafe { fixed (Double* v_ptr = &v) { - Delegates.glMultiTexCoord1dv((OpenTK.OpenGL.Enums.Version13)target, (Double*)v_ptr); + Delegates.glMultiTexCoord1dv((OpenTK.OpenGL.Enums.TextureUnit)target, (Double*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord1v(OpenTK.OpenGL.Enums.Version13 target, Double* v) + unsafe void MultiTexCoord1v(OpenTK.OpenGL.Enums.TextureUnit target, Double* v) { - Delegates.glMultiTexCoord1dv((OpenTK.OpenGL.Enums.Version13)target, (Double*)v); + Delegates.glMultiTexCoord1dv((OpenTK.OpenGL.Enums.TextureUnit)target, (Double*)v); } public static - void MultiTexCoord1(OpenTK.OpenGL.Enums.Version13 target, Single s) + void MultiTexCoord1(OpenTK.OpenGL.Enums.TextureUnit target, Single s) { - Delegates.glMultiTexCoord1f((OpenTK.OpenGL.Enums.Version13)target, (Single)s); + Delegates.glMultiTexCoord1f((OpenTK.OpenGL.Enums.TextureUnit)target, (Single)s); } public static - void MultiTexCoord1v(OpenTK.OpenGL.Enums.Version13 target, Single[] v) + void MultiTexCoord1v(OpenTK.OpenGL.Enums.TextureUnit target, Single[] v) { unsafe { fixed (Single* v_ptr = v) { - Delegates.glMultiTexCoord1fv((OpenTK.OpenGL.Enums.Version13)target, (Single*)v_ptr); + Delegates.glMultiTexCoord1fv((OpenTK.OpenGL.Enums.TextureUnit)target, (Single*)v_ptr); } } } public static - void MultiTexCoord1v(OpenTK.OpenGL.Enums.Version13 target, ref Single v) + void MultiTexCoord1v(OpenTK.OpenGL.Enums.TextureUnit target, ref Single v) { unsafe { fixed (Single* v_ptr = &v) { - Delegates.glMultiTexCoord1fv((OpenTK.OpenGL.Enums.Version13)target, (Single*)v_ptr); + Delegates.glMultiTexCoord1fv((OpenTK.OpenGL.Enums.TextureUnit)target, (Single*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord1v(OpenTK.OpenGL.Enums.Version13 target, Single* v) + unsafe void MultiTexCoord1v(OpenTK.OpenGL.Enums.TextureUnit target, Single* v) { - Delegates.glMultiTexCoord1fv((OpenTK.OpenGL.Enums.Version13)target, (Single*)v); + Delegates.glMultiTexCoord1fv((OpenTK.OpenGL.Enums.TextureUnit)target, (Single*)v); } public static - void MultiTexCoord1(OpenTK.OpenGL.Enums.Version13 target, Int32 s) + void MultiTexCoord1(OpenTK.OpenGL.Enums.TextureUnit target, Int32 s) { - Delegates.glMultiTexCoord1i((OpenTK.OpenGL.Enums.Version13)target, (Int32)s); + Delegates.glMultiTexCoord1i((OpenTK.OpenGL.Enums.TextureUnit)target, (Int32)s); } public static - void MultiTexCoord1v(OpenTK.OpenGL.Enums.Version13 target, Int32[] v) + void MultiTexCoord1v(OpenTK.OpenGL.Enums.TextureUnit target, Int32[] v) { unsafe { fixed (Int32* v_ptr = v) { - Delegates.glMultiTexCoord1iv((OpenTK.OpenGL.Enums.Version13)target, (Int32*)v_ptr); + Delegates.glMultiTexCoord1iv((OpenTK.OpenGL.Enums.TextureUnit)target, (Int32*)v_ptr); } } } public static - void MultiTexCoord1v(OpenTK.OpenGL.Enums.Version13 target, ref Int32 v) + void MultiTexCoord1v(OpenTK.OpenGL.Enums.TextureUnit target, ref Int32 v) { unsafe { fixed (Int32* v_ptr = &v) { - Delegates.glMultiTexCoord1iv((OpenTK.OpenGL.Enums.Version13)target, (Int32*)v_ptr); + Delegates.glMultiTexCoord1iv((OpenTK.OpenGL.Enums.TextureUnit)target, (Int32*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord1v(OpenTK.OpenGL.Enums.Version13 target, Int32* v) + unsafe void MultiTexCoord1v(OpenTK.OpenGL.Enums.TextureUnit target, Int32* v) { - Delegates.glMultiTexCoord1iv((OpenTK.OpenGL.Enums.Version13)target, (Int32*)v); + Delegates.glMultiTexCoord1iv((OpenTK.OpenGL.Enums.TextureUnit)target, (Int32*)v); } public static - void MultiTexCoord1(OpenTK.OpenGL.Enums.Version13 target, Int16 s) + void MultiTexCoord1(OpenTK.OpenGL.Enums.TextureUnit target, Int16 s) { - Delegates.glMultiTexCoord1s((OpenTK.OpenGL.Enums.Version13)target, (Int16)s); + Delegates.glMultiTexCoord1s((OpenTK.OpenGL.Enums.TextureUnit)target, (Int16)s); } public static - void MultiTexCoord1v(OpenTK.OpenGL.Enums.Version13 target, Int16[] v) + void MultiTexCoord1v(OpenTK.OpenGL.Enums.TextureUnit target, Int16[] v) { unsafe { fixed (Int16* v_ptr = v) { - Delegates.glMultiTexCoord1sv((OpenTK.OpenGL.Enums.Version13)target, (Int16*)v_ptr); + Delegates.glMultiTexCoord1sv((OpenTK.OpenGL.Enums.TextureUnit)target, (Int16*)v_ptr); } } } public static - void MultiTexCoord1v(OpenTK.OpenGL.Enums.Version13 target, ref Int16 v) + void MultiTexCoord1v(OpenTK.OpenGL.Enums.TextureUnit target, ref Int16 v) { unsafe { fixed (Int16* v_ptr = &v) { - Delegates.glMultiTexCoord1sv((OpenTK.OpenGL.Enums.Version13)target, (Int16*)v_ptr); + Delegates.glMultiTexCoord1sv((OpenTK.OpenGL.Enums.TextureUnit)target, (Int16*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord1v(OpenTK.OpenGL.Enums.Version13 target, Int16* v) + unsafe void MultiTexCoord1v(OpenTK.OpenGL.Enums.TextureUnit target, Int16* v) { - Delegates.glMultiTexCoord1sv((OpenTK.OpenGL.Enums.Version13)target, (Int16*)v); + Delegates.glMultiTexCoord1sv((OpenTK.OpenGL.Enums.TextureUnit)target, (Int16*)v); } public static - void MultiTexCoord2(OpenTK.OpenGL.Enums.Version13 target, Double s, Double t) + void MultiTexCoord2(OpenTK.OpenGL.Enums.TextureUnit target, Double s, Double t) { - Delegates.glMultiTexCoord2d((OpenTK.OpenGL.Enums.Version13)target, (Double)s, (Double)t); + Delegates.glMultiTexCoord2d((OpenTK.OpenGL.Enums.TextureUnit)target, (Double)s, (Double)t); } public static - void MultiTexCoord2(OpenTK.OpenGL.Enums.Version13 target, Double[] v) + void MultiTexCoord2(OpenTK.OpenGL.Enums.TextureUnit target, Double[] v) { unsafe { fixed (Double* v_ptr = v) { - Delegates.glMultiTexCoord2dv((OpenTK.OpenGL.Enums.Version13)target, (Double*)v_ptr); + Delegates.glMultiTexCoord2dv((OpenTK.OpenGL.Enums.TextureUnit)target, (Double*)v_ptr); } } } public static - void MultiTexCoord2(OpenTK.OpenGL.Enums.Version13 target, ref Double v) + void MultiTexCoord2(OpenTK.OpenGL.Enums.TextureUnit target, ref Double v) { unsafe { fixed (Double* v_ptr = &v) { - Delegates.glMultiTexCoord2dv((OpenTK.OpenGL.Enums.Version13)target, (Double*)v_ptr); + Delegates.glMultiTexCoord2dv((OpenTK.OpenGL.Enums.TextureUnit)target, (Double*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord2(OpenTK.OpenGL.Enums.Version13 target, Double* v) + unsafe void MultiTexCoord2(OpenTK.OpenGL.Enums.TextureUnit target, Double* v) { - Delegates.glMultiTexCoord2dv((OpenTK.OpenGL.Enums.Version13)target, (Double*)v); + Delegates.glMultiTexCoord2dv((OpenTK.OpenGL.Enums.TextureUnit)target, (Double*)v); } public static - void MultiTexCoord2(OpenTK.OpenGL.Enums.Version13 target, Single s, Single t) + void MultiTexCoord2(OpenTK.OpenGL.Enums.TextureUnit target, Single s, Single t) { - Delegates.glMultiTexCoord2f((OpenTK.OpenGL.Enums.Version13)target, (Single)s, (Single)t); + Delegates.glMultiTexCoord2f((OpenTK.OpenGL.Enums.TextureUnit)target, (Single)s, (Single)t); } public static - void MultiTexCoord2(OpenTK.OpenGL.Enums.Version13 target, Single[] v) + void MultiTexCoord2(OpenTK.OpenGL.Enums.TextureUnit target, Single[] v) { unsafe { fixed (Single* v_ptr = v) { - Delegates.glMultiTexCoord2fv((OpenTK.OpenGL.Enums.Version13)target, (Single*)v_ptr); + Delegates.glMultiTexCoord2fv((OpenTK.OpenGL.Enums.TextureUnit)target, (Single*)v_ptr); } } } public static - void MultiTexCoord2(OpenTK.OpenGL.Enums.Version13 target, ref Single v) + void MultiTexCoord2(OpenTK.OpenGL.Enums.TextureUnit target, ref Single v) { unsafe { fixed (Single* v_ptr = &v) { - Delegates.glMultiTexCoord2fv((OpenTK.OpenGL.Enums.Version13)target, (Single*)v_ptr); + Delegates.glMultiTexCoord2fv((OpenTK.OpenGL.Enums.TextureUnit)target, (Single*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord2(OpenTK.OpenGL.Enums.Version13 target, Single* v) + unsafe void MultiTexCoord2(OpenTK.OpenGL.Enums.TextureUnit target, Single* v) { - Delegates.glMultiTexCoord2fv((OpenTK.OpenGL.Enums.Version13)target, (Single*)v); + Delegates.glMultiTexCoord2fv((OpenTK.OpenGL.Enums.TextureUnit)target, (Single*)v); } public static - void MultiTexCoord2(OpenTK.OpenGL.Enums.Version13 target, Int32 s, Int32 t) + void MultiTexCoord2(OpenTK.OpenGL.Enums.TextureUnit target, Int32 s, Int32 t) { - Delegates.glMultiTexCoord2i((OpenTK.OpenGL.Enums.Version13)target, (Int32)s, (Int32)t); + Delegates.glMultiTexCoord2i((OpenTK.OpenGL.Enums.TextureUnit)target, (Int32)s, (Int32)t); } public static - void MultiTexCoord2(OpenTK.OpenGL.Enums.Version13 target, Int32[] v) + void MultiTexCoord2(OpenTK.OpenGL.Enums.TextureUnit target, Int32[] v) { unsafe { fixed (Int32* v_ptr = v) { - Delegates.glMultiTexCoord2iv((OpenTK.OpenGL.Enums.Version13)target, (Int32*)v_ptr); + Delegates.glMultiTexCoord2iv((OpenTK.OpenGL.Enums.TextureUnit)target, (Int32*)v_ptr); } } } public static - void MultiTexCoord2(OpenTK.OpenGL.Enums.Version13 target, ref Int32 v) + void MultiTexCoord2(OpenTK.OpenGL.Enums.TextureUnit target, ref Int32 v) { unsafe { fixed (Int32* v_ptr = &v) { - Delegates.glMultiTexCoord2iv((OpenTK.OpenGL.Enums.Version13)target, (Int32*)v_ptr); + Delegates.glMultiTexCoord2iv((OpenTK.OpenGL.Enums.TextureUnit)target, (Int32*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord2(OpenTK.OpenGL.Enums.Version13 target, Int32* v) + unsafe void MultiTexCoord2(OpenTK.OpenGL.Enums.TextureUnit target, Int32* v) { - Delegates.glMultiTexCoord2iv((OpenTK.OpenGL.Enums.Version13)target, (Int32*)v); + Delegates.glMultiTexCoord2iv((OpenTK.OpenGL.Enums.TextureUnit)target, (Int32*)v); } public static - void MultiTexCoord2(OpenTK.OpenGL.Enums.Version13 target, Int16 s, Int16 t) + void MultiTexCoord2(OpenTK.OpenGL.Enums.TextureUnit target, Int16 s, Int16 t) { - Delegates.glMultiTexCoord2s((OpenTK.OpenGL.Enums.Version13)target, (Int16)s, (Int16)t); + Delegates.glMultiTexCoord2s((OpenTK.OpenGL.Enums.TextureUnit)target, (Int16)s, (Int16)t); } public static - void MultiTexCoord2(OpenTK.OpenGL.Enums.Version13 target, Int16[] v) + void MultiTexCoord2(OpenTK.OpenGL.Enums.TextureUnit target, Int16[] v) { unsafe { fixed (Int16* v_ptr = v) { - Delegates.glMultiTexCoord2sv((OpenTK.OpenGL.Enums.Version13)target, (Int16*)v_ptr); + Delegates.glMultiTexCoord2sv((OpenTK.OpenGL.Enums.TextureUnit)target, (Int16*)v_ptr); } } } public static - void MultiTexCoord2(OpenTK.OpenGL.Enums.Version13 target, ref Int16 v) + void MultiTexCoord2(OpenTK.OpenGL.Enums.TextureUnit target, ref Int16 v) { unsafe { fixed (Int16* v_ptr = &v) { - Delegates.glMultiTexCoord2sv((OpenTK.OpenGL.Enums.Version13)target, (Int16*)v_ptr); + Delegates.glMultiTexCoord2sv((OpenTK.OpenGL.Enums.TextureUnit)target, (Int16*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord2(OpenTK.OpenGL.Enums.Version13 target, Int16* v) + unsafe void MultiTexCoord2(OpenTK.OpenGL.Enums.TextureUnit target, Int16* v) { - Delegates.glMultiTexCoord2sv((OpenTK.OpenGL.Enums.Version13)target, (Int16*)v); + Delegates.glMultiTexCoord2sv((OpenTK.OpenGL.Enums.TextureUnit)target, (Int16*)v); } public static - void MultiTexCoord3(OpenTK.OpenGL.Enums.Version13 target, Double s, Double t, Double r) + void MultiTexCoord3(OpenTK.OpenGL.Enums.TextureUnit target, Double s, Double t, Double r) { - Delegates.glMultiTexCoord3d((OpenTK.OpenGL.Enums.Version13)target, (Double)s, (Double)t, (Double)r); + Delegates.glMultiTexCoord3d((OpenTK.OpenGL.Enums.TextureUnit)target, (Double)s, (Double)t, (Double)r); } public static - void MultiTexCoord3(OpenTK.OpenGL.Enums.Version13 target, Double[] v) + void MultiTexCoord3(OpenTK.OpenGL.Enums.TextureUnit target, Double[] v) { unsafe { fixed (Double* v_ptr = v) { - Delegates.glMultiTexCoord3dv((OpenTK.OpenGL.Enums.Version13)target, (Double*)v_ptr); + Delegates.glMultiTexCoord3dv((OpenTK.OpenGL.Enums.TextureUnit)target, (Double*)v_ptr); } } } public static - void MultiTexCoord3(OpenTK.OpenGL.Enums.Version13 target, ref Double v) + void MultiTexCoord3(OpenTK.OpenGL.Enums.TextureUnit target, ref Double v) { unsafe { fixed (Double* v_ptr = &v) { - Delegates.glMultiTexCoord3dv((OpenTK.OpenGL.Enums.Version13)target, (Double*)v_ptr); + Delegates.glMultiTexCoord3dv((OpenTK.OpenGL.Enums.TextureUnit)target, (Double*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord3(OpenTK.OpenGL.Enums.Version13 target, Double* v) + unsafe void MultiTexCoord3(OpenTK.OpenGL.Enums.TextureUnit target, Double* v) { - Delegates.glMultiTexCoord3dv((OpenTK.OpenGL.Enums.Version13)target, (Double*)v); + Delegates.glMultiTexCoord3dv((OpenTK.OpenGL.Enums.TextureUnit)target, (Double*)v); } public static - void MultiTexCoord3(OpenTK.OpenGL.Enums.Version13 target, Single s, Single t, Single r) + void MultiTexCoord3(OpenTK.OpenGL.Enums.TextureUnit target, Single s, Single t, Single r) { - Delegates.glMultiTexCoord3f((OpenTK.OpenGL.Enums.Version13)target, (Single)s, (Single)t, (Single)r); + Delegates.glMultiTexCoord3f((OpenTK.OpenGL.Enums.TextureUnit)target, (Single)s, (Single)t, (Single)r); } public static - void MultiTexCoord3(OpenTK.OpenGL.Enums.Version13 target, Single[] v) + void MultiTexCoord3(OpenTK.OpenGL.Enums.TextureUnit target, Single[] v) { unsafe { fixed (Single* v_ptr = v) { - Delegates.glMultiTexCoord3fv((OpenTK.OpenGL.Enums.Version13)target, (Single*)v_ptr); + Delegates.glMultiTexCoord3fv((OpenTK.OpenGL.Enums.TextureUnit)target, (Single*)v_ptr); } } } public static - void MultiTexCoord3(OpenTK.OpenGL.Enums.Version13 target, ref Single v) + void MultiTexCoord3(OpenTK.OpenGL.Enums.TextureUnit target, ref Single v) { unsafe { fixed (Single* v_ptr = &v) { - Delegates.glMultiTexCoord3fv((OpenTK.OpenGL.Enums.Version13)target, (Single*)v_ptr); + Delegates.glMultiTexCoord3fv((OpenTK.OpenGL.Enums.TextureUnit)target, (Single*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord3(OpenTK.OpenGL.Enums.Version13 target, Single* v) + unsafe void MultiTexCoord3(OpenTK.OpenGL.Enums.TextureUnit target, Single* v) { - Delegates.glMultiTexCoord3fv((OpenTK.OpenGL.Enums.Version13)target, (Single*)v); + Delegates.glMultiTexCoord3fv((OpenTK.OpenGL.Enums.TextureUnit)target, (Single*)v); } public static - void MultiTexCoord3(OpenTK.OpenGL.Enums.Version13 target, Int32 s, Int32 t, Int32 r) + void MultiTexCoord3(OpenTK.OpenGL.Enums.TextureUnit target, Int32 s, Int32 t, Int32 r) { - Delegates.glMultiTexCoord3i((OpenTK.OpenGL.Enums.Version13)target, (Int32)s, (Int32)t, (Int32)r); + Delegates.glMultiTexCoord3i((OpenTK.OpenGL.Enums.TextureUnit)target, (Int32)s, (Int32)t, (Int32)r); } public static - void MultiTexCoord3(OpenTK.OpenGL.Enums.Version13 target, Int32[] v) + void MultiTexCoord3(OpenTK.OpenGL.Enums.TextureUnit target, Int32[] v) { unsafe { fixed (Int32* v_ptr = v) { - Delegates.glMultiTexCoord3iv((OpenTK.OpenGL.Enums.Version13)target, (Int32*)v_ptr); + Delegates.glMultiTexCoord3iv((OpenTK.OpenGL.Enums.TextureUnit)target, (Int32*)v_ptr); } } } public static - void MultiTexCoord3(OpenTK.OpenGL.Enums.Version13 target, ref Int32 v) + void MultiTexCoord3(OpenTK.OpenGL.Enums.TextureUnit target, ref Int32 v) { unsafe { fixed (Int32* v_ptr = &v) { - Delegates.glMultiTexCoord3iv((OpenTK.OpenGL.Enums.Version13)target, (Int32*)v_ptr); + Delegates.glMultiTexCoord3iv((OpenTK.OpenGL.Enums.TextureUnit)target, (Int32*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord3(OpenTK.OpenGL.Enums.Version13 target, Int32* v) + unsafe void MultiTexCoord3(OpenTK.OpenGL.Enums.TextureUnit target, Int32* v) { - Delegates.glMultiTexCoord3iv((OpenTK.OpenGL.Enums.Version13)target, (Int32*)v); + Delegates.glMultiTexCoord3iv((OpenTK.OpenGL.Enums.TextureUnit)target, (Int32*)v); } public static - void MultiTexCoord3(OpenTK.OpenGL.Enums.Version13 target, Int16 s, Int16 t, Int16 r) + void MultiTexCoord3(OpenTK.OpenGL.Enums.TextureUnit target, Int16 s, Int16 t, Int16 r) { - Delegates.glMultiTexCoord3s((OpenTK.OpenGL.Enums.Version13)target, (Int16)s, (Int16)t, (Int16)r); + Delegates.glMultiTexCoord3s((OpenTK.OpenGL.Enums.TextureUnit)target, (Int16)s, (Int16)t, (Int16)r); } public static - void MultiTexCoord3(OpenTK.OpenGL.Enums.Version13 target, Int16[] v) + void MultiTexCoord3(OpenTK.OpenGL.Enums.TextureUnit target, Int16[] v) { unsafe { fixed (Int16* v_ptr = v) { - Delegates.glMultiTexCoord3sv((OpenTK.OpenGL.Enums.Version13)target, (Int16*)v_ptr); + Delegates.glMultiTexCoord3sv((OpenTK.OpenGL.Enums.TextureUnit)target, (Int16*)v_ptr); } } } public static - void MultiTexCoord3(OpenTK.OpenGL.Enums.Version13 target, ref Int16 v) + void MultiTexCoord3(OpenTK.OpenGL.Enums.TextureUnit target, ref Int16 v) { unsafe { fixed (Int16* v_ptr = &v) { - Delegates.glMultiTexCoord3sv((OpenTK.OpenGL.Enums.Version13)target, (Int16*)v_ptr); + Delegates.glMultiTexCoord3sv((OpenTK.OpenGL.Enums.TextureUnit)target, (Int16*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord3(OpenTK.OpenGL.Enums.Version13 target, Int16* v) + unsafe void MultiTexCoord3(OpenTK.OpenGL.Enums.TextureUnit target, Int16* v) { - Delegates.glMultiTexCoord3sv((OpenTK.OpenGL.Enums.Version13)target, (Int16*)v); + Delegates.glMultiTexCoord3sv((OpenTK.OpenGL.Enums.TextureUnit)target, (Int16*)v); } public static - void MultiTexCoord4(OpenTK.OpenGL.Enums.Version13 target, Double s, Double t, Double r, Double q) + void MultiTexCoord4(OpenTK.OpenGL.Enums.TextureUnit target, Double s, Double t, Double r, Double q) { - Delegates.glMultiTexCoord4d((OpenTK.OpenGL.Enums.Version13)target, (Double)s, (Double)t, (Double)r, (Double)q); + Delegates.glMultiTexCoord4d((OpenTK.OpenGL.Enums.TextureUnit)target, (Double)s, (Double)t, (Double)r, (Double)q); } public static - void MultiTexCoord4(OpenTK.OpenGL.Enums.Version13 target, Double[] v) + void MultiTexCoord4(OpenTK.OpenGL.Enums.TextureUnit target, Double[] v) { unsafe { fixed (Double* v_ptr = v) { - Delegates.glMultiTexCoord4dv((OpenTK.OpenGL.Enums.Version13)target, (Double*)v_ptr); + Delegates.glMultiTexCoord4dv((OpenTK.OpenGL.Enums.TextureUnit)target, (Double*)v_ptr); } } } public static - void MultiTexCoord4(OpenTK.OpenGL.Enums.Version13 target, ref Double v) + void MultiTexCoord4(OpenTK.OpenGL.Enums.TextureUnit target, ref Double v) { unsafe { fixed (Double* v_ptr = &v) { - Delegates.glMultiTexCoord4dv((OpenTK.OpenGL.Enums.Version13)target, (Double*)v_ptr); + Delegates.glMultiTexCoord4dv((OpenTK.OpenGL.Enums.TextureUnit)target, (Double*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord4(OpenTK.OpenGL.Enums.Version13 target, Double* v) + unsafe void MultiTexCoord4(OpenTK.OpenGL.Enums.TextureUnit target, Double* v) { - Delegates.glMultiTexCoord4dv((OpenTK.OpenGL.Enums.Version13)target, (Double*)v); + Delegates.glMultiTexCoord4dv((OpenTK.OpenGL.Enums.TextureUnit)target, (Double*)v); } public static - void MultiTexCoord4(OpenTK.OpenGL.Enums.Version13 target, Single s, Single t, Single r, Single q) + void MultiTexCoord4(OpenTK.OpenGL.Enums.TextureUnit target, Single s, Single t, Single r, Single q) { - Delegates.glMultiTexCoord4f((OpenTK.OpenGL.Enums.Version13)target, (Single)s, (Single)t, (Single)r, (Single)q); + Delegates.glMultiTexCoord4f((OpenTK.OpenGL.Enums.TextureUnit)target, (Single)s, (Single)t, (Single)r, (Single)q); } public static - void MultiTexCoord4(OpenTK.OpenGL.Enums.Version13 target, Single[] v) + void MultiTexCoord4(OpenTK.OpenGL.Enums.TextureUnit target, Single[] v) { unsafe { fixed (Single* v_ptr = v) { - Delegates.glMultiTexCoord4fv((OpenTK.OpenGL.Enums.Version13)target, (Single*)v_ptr); + Delegates.glMultiTexCoord4fv((OpenTK.OpenGL.Enums.TextureUnit)target, (Single*)v_ptr); } } } public static - void MultiTexCoord4(OpenTK.OpenGL.Enums.Version13 target, ref Single v) + void MultiTexCoord4(OpenTK.OpenGL.Enums.TextureUnit target, ref Single v) { unsafe { fixed (Single* v_ptr = &v) { - Delegates.glMultiTexCoord4fv((OpenTK.OpenGL.Enums.Version13)target, (Single*)v_ptr); + Delegates.glMultiTexCoord4fv((OpenTK.OpenGL.Enums.TextureUnit)target, (Single*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord4(OpenTK.OpenGL.Enums.Version13 target, Single* v) + unsafe void MultiTexCoord4(OpenTK.OpenGL.Enums.TextureUnit target, Single* v) { - Delegates.glMultiTexCoord4fv((OpenTK.OpenGL.Enums.Version13)target, (Single*)v); + Delegates.glMultiTexCoord4fv((OpenTK.OpenGL.Enums.TextureUnit)target, (Single*)v); } public static - void MultiTexCoord4(OpenTK.OpenGL.Enums.Version13 target, Int32 s, Int32 t, Int32 r, Int32 q) + void MultiTexCoord4(OpenTK.OpenGL.Enums.TextureUnit target, Int32 s, Int32 t, Int32 r, Int32 q) { - Delegates.glMultiTexCoord4i((OpenTK.OpenGL.Enums.Version13)target, (Int32)s, (Int32)t, (Int32)r, (Int32)q); + Delegates.glMultiTexCoord4i((OpenTK.OpenGL.Enums.TextureUnit)target, (Int32)s, (Int32)t, (Int32)r, (Int32)q); } public static - void MultiTexCoord4(OpenTK.OpenGL.Enums.Version13 target, Int32[] v) + void MultiTexCoord4(OpenTK.OpenGL.Enums.TextureUnit target, Int32[] v) { unsafe { fixed (Int32* v_ptr = v) { - Delegates.glMultiTexCoord4iv((OpenTK.OpenGL.Enums.Version13)target, (Int32*)v_ptr); + Delegates.glMultiTexCoord4iv((OpenTK.OpenGL.Enums.TextureUnit)target, (Int32*)v_ptr); } } } public static - void MultiTexCoord4(OpenTK.OpenGL.Enums.Version13 target, ref Int32 v) + void MultiTexCoord4(OpenTK.OpenGL.Enums.TextureUnit target, ref Int32 v) { unsafe { fixed (Int32* v_ptr = &v) { - Delegates.glMultiTexCoord4iv((OpenTK.OpenGL.Enums.Version13)target, (Int32*)v_ptr); + Delegates.glMultiTexCoord4iv((OpenTK.OpenGL.Enums.TextureUnit)target, (Int32*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord4(OpenTK.OpenGL.Enums.Version13 target, Int32* v) + unsafe void MultiTexCoord4(OpenTK.OpenGL.Enums.TextureUnit target, Int32* v) { - Delegates.glMultiTexCoord4iv((OpenTK.OpenGL.Enums.Version13)target, (Int32*)v); + Delegates.glMultiTexCoord4iv((OpenTK.OpenGL.Enums.TextureUnit)target, (Int32*)v); } public static - void MultiTexCoord4(OpenTK.OpenGL.Enums.Version13 target, Int16 s, Int16 t, Int16 r, Int16 q) + void MultiTexCoord4(OpenTK.OpenGL.Enums.TextureUnit target, Int16 s, Int16 t, Int16 r, Int16 q) { - Delegates.glMultiTexCoord4s((OpenTK.OpenGL.Enums.Version13)target, (Int16)s, (Int16)t, (Int16)r, (Int16)q); + Delegates.glMultiTexCoord4s((OpenTK.OpenGL.Enums.TextureUnit)target, (Int16)s, (Int16)t, (Int16)r, (Int16)q); } public static - void MultiTexCoord4(OpenTK.OpenGL.Enums.Version13 target, Int16[] v) + void MultiTexCoord4(OpenTK.OpenGL.Enums.TextureUnit target, Int16[] v) { unsafe { fixed (Int16* v_ptr = v) { - Delegates.glMultiTexCoord4sv((OpenTK.OpenGL.Enums.Version13)target, (Int16*)v_ptr); + Delegates.glMultiTexCoord4sv((OpenTK.OpenGL.Enums.TextureUnit)target, (Int16*)v_ptr); } } } public static - void MultiTexCoord4(OpenTK.OpenGL.Enums.Version13 target, ref Int16 v) + void MultiTexCoord4(OpenTK.OpenGL.Enums.TextureUnit target, ref Int16 v) { unsafe { fixed (Int16* v_ptr = &v) { - Delegates.glMultiTexCoord4sv((OpenTK.OpenGL.Enums.Version13)target, (Int16*)v_ptr); + Delegates.glMultiTexCoord4sv((OpenTK.OpenGL.Enums.TextureUnit)target, (Int16*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord4(OpenTK.OpenGL.Enums.Version13 target, Int16* v) + unsafe void MultiTexCoord4(OpenTK.OpenGL.Enums.TextureUnit target, Int16* v) { - Delegates.glMultiTexCoord4sv((OpenTK.OpenGL.Enums.Version13)target, (Int16*)v); + Delegates.glMultiTexCoord4sv((OpenTK.OpenGL.Enums.TextureUnit)target, (Int16*)v); } public static @@ -8010,9 +7978,9 @@ namespace OpenTK.OpenGL } public static - void BlendFuncSeparate(OpenTK.OpenGL.Enums.Version14 sfactorRGB, OpenTK.OpenGL.Enums.Version14 dfactorRGB, OpenTK.OpenGL.Enums.Version14 sfactorAlpha, OpenTK.OpenGL.Enums.Version14 dfactorAlpha) + void BlendFuncSeparate(OpenTK.OpenGL.Enums.BlendingFactorSrc sfactorRGB, OpenTK.OpenGL.Enums.BlendingFactorDest dfactorRGB, OpenTK.OpenGL.Enums.BlendingFactorSrc sfactorAlpha, OpenTK.OpenGL.Enums.BlendingFactorDest dfactorAlpha) { - Delegates.glBlendFuncSeparate((OpenTK.OpenGL.Enums.Version14)sfactorRGB, (OpenTK.OpenGL.Enums.Version14)dfactorRGB, (OpenTK.OpenGL.Enums.Version14)sfactorAlpha, (OpenTK.OpenGL.Enums.Version14)dfactorAlpha); + Delegates.glBlendFuncSeparate((OpenTK.OpenGL.Enums.BlendingFactorSrc)sfactorRGB, (OpenTK.OpenGL.Enums.BlendingFactorDest)dfactorRGB, (OpenTK.OpenGL.Enums.BlendingFactorSrc)sfactorAlpha, (OpenTK.OpenGL.Enums.BlendingFactorDest)dfactorAlpha); } public static @@ -8090,23 +8058,23 @@ namespace OpenTK.OpenGL } public static - void FogCoordPointer(OpenTK.OpenGL.Enums.Version14 type, Int32 stride, IntPtr pointer) + void FogCoordPointer(OpenTK.OpenGL.Enums.FogPointerType type, Int32 stride, IntPtr pointer) { unsafe { - Delegates.glFogCoordPointer((OpenTK.OpenGL.Enums.Version14)type, (Int32)stride, (IntPtr)pointer); + Delegates.glFogCoordPointer((OpenTK.OpenGL.Enums.FogPointerType)type, (Int32)stride, (IntPtr)pointer); } } public static - void FogCoordPointer(OpenTK.OpenGL.Enums.Version14 type, Int32 stride, [In, Out] object pointer) + void FogCoordPointer(OpenTK.OpenGL.Enums.FogPointerType type, Int32 stride, [In, Out] object pointer) { unsafe { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glFogCoordPointer((OpenTK.OpenGL.Enums.Version14)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glFogCoordPointer((OpenTK.OpenGL.Enums.FogPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -8151,25 +8119,25 @@ namespace OpenTK.OpenGL } public static - void MultiDrawElements(OpenTK.OpenGL.Enums.BeginMode mode, Int32[] count, OpenTK.OpenGL.Enums.Version14 type, IntPtr indices, Int32 primcount) + void MultiDrawElements(OpenTK.OpenGL.Enums.BeginMode mode, Int32[] count, OpenTK.OpenGL.Enums.All type, IntPtr indices, Int32 primcount) { unsafe { fixed (Int32* count_ptr = count) { - Delegates.glMultiDrawElements((OpenTK.OpenGL.Enums.BeginMode)mode, (Int32*)count_ptr, (OpenTK.OpenGL.Enums.Version14)type, (IntPtr)indices, (Int32)primcount); + Delegates.glMultiDrawElements((OpenTK.OpenGL.Enums.BeginMode)mode, (Int32*)count_ptr, (OpenTK.OpenGL.Enums.All)type, (IntPtr)indices, (Int32)primcount); } } } [System.CLSCompliant(false)] public static - unsafe void MultiDrawElements(OpenTK.OpenGL.Enums.BeginMode mode, Int32* count, OpenTK.OpenGL.Enums.Version14 type, [In, Out] object indices, Int32 primcount) + unsafe void MultiDrawElements(OpenTK.OpenGL.Enums.BeginMode mode, Int32* count, OpenTK.OpenGL.Enums.All type, [In, Out] object indices, Int32 primcount) { System.Runtime.InteropServices.GCHandle indices_ptr = System.Runtime.InteropServices.GCHandle.Alloc(indices, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.OpenGL.Enums.BeginMode)mode, (Int32*)count, (OpenTK.OpenGL.Enums.Version14)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + Delegates.glMultiDrawElements((OpenTK.OpenGL.Enums.BeginMode)mode, (Int32*)count, (OpenTK.OpenGL.Enums.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -8178,7 +8146,7 @@ namespace OpenTK.OpenGL } public static - void MultiDrawElements(OpenTK.OpenGL.Enums.BeginMode mode, ref Int32 count, OpenTK.OpenGL.Enums.Version14 type, [In, Out] object indices, Int32 primcount) + void MultiDrawElements(OpenTK.OpenGL.Enums.BeginMode mode, ref Int32 count, OpenTK.OpenGL.Enums.All type, [In, Out] object indices, Int32 primcount) { unsafe { @@ -8187,7 +8155,7 @@ namespace OpenTK.OpenGL System.Runtime.InteropServices.GCHandle indices_ptr = System.Runtime.InteropServices.GCHandle.Alloc(indices, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.OpenGL.Enums.BeginMode)mode, (Int32*)count_ptr, (OpenTK.OpenGL.Enums.Version14)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + Delegates.glMultiDrawElements((OpenTK.OpenGL.Enums.BeginMode)mode, (Int32*)count_ptr, (OpenTK.OpenGL.Enums.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -8198,77 +8166,77 @@ namespace OpenTK.OpenGL } public static - void PointParameter(OpenTK.OpenGL.Enums.Version14 pname, Single param) + void PointParameter(OpenTK.OpenGL.Enums.PointParameterName pname, Single param) { - Delegates.glPointParameterf((OpenTK.OpenGL.Enums.Version14)pname, (Single)param); + Delegates.glPointParameterf((OpenTK.OpenGL.Enums.PointParameterName)pname, (Single)param); } public static - void PointParameterv(OpenTK.OpenGL.Enums.Version14 pname, Single[] @params) + void PointParameterv(OpenTK.OpenGL.Enums.PointParameterName pname, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glPointParameterfv((OpenTK.OpenGL.Enums.Version14)pname, (Single*)@params_ptr); + Delegates.glPointParameterfv((OpenTK.OpenGL.Enums.PointParameterName)pname, (Single*)@params_ptr); } } } public static - void PointParameterv(OpenTK.OpenGL.Enums.Version14 pname, ref Single @params) + void PointParameterv(OpenTK.OpenGL.Enums.PointParameterName pname, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glPointParameterfv((OpenTK.OpenGL.Enums.Version14)pname, (Single*)@params_ptr); + Delegates.glPointParameterfv((OpenTK.OpenGL.Enums.PointParameterName)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void PointParameterv(OpenTK.OpenGL.Enums.Version14 pname, Single* @params) + unsafe void PointParameterv(OpenTK.OpenGL.Enums.PointParameterName pname, Single* @params) { - Delegates.glPointParameterfv((OpenTK.OpenGL.Enums.Version14)pname, (Single*)@params); + Delegates.glPointParameterfv((OpenTK.OpenGL.Enums.PointParameterName)pname, (Single*)@params); } public static - void PointParameter(OpenTK.OpenGL.Enums.Version14 pname, Int32 param) + void PointParameter(OpenTK.OpenGL.Enums.PointParameterName pname, Int32 param) { - Delegates.glPointParameteri((OpenTK.OpenGL.Enums.Version14)pname, (Int32)param); + Delegates.glPointParameteri((OpenTK.OpenGL.Enums.PointParameterName)pname, (Int32)param); } public static - void PointParameterv(OpenTK.OpenGL.Enums.Version14 pname, Int32[] @params) + void PointParameterv(OpenTK.OpenGL.Enums.PointParameterName pname, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glPointParameteriv((OpenTK.OpenGL.Enums.Version14)pname, (Int32*)@params_ptr); + Delegates.glPointParameteriv((OpenTK.OpenGL.Enums.PointParameterName)pname, (Int32*)@params_ptr); } } } public static - void PointParameterv(OpenTK.OpenGL.Enums.Version14 pname, ref Int32 @params) + void PointParameterv(OpenTK.OpenGL.Enums.PointParameterName pname, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glPointParameteriv((OpenTK.OpenGL.Enums.Version14)pname, (Int32*)@params_ptr); + Delegates.glPointParameteriv((OpenTK.OpenGL.Enums.PointParameterName)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void PointParameterv(OpenTK.OpenGL.Enums.Version14 pname, Int32* @params) + unsafe void PointParameterv(OpenTK.OpenGL.Enums.PointParameterName pname, Int32* @params) { - Delegates.glPointParameteriv((OpenTK.OpenGL.Enums.Version14)pname, (Int32*)@params); + Delegates.glPointParameteriv((OpenTK.OpenGL.Enums.PointParameterName)pname, (Int32*)@params); } [System.CLSCompliant(false)] @@ -9043,43 +9011,43 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void BeginQuery(OpenTK.OpenGL.Enums.Version15 target, UInt32 id) + void BeginQuery(OpenTK.OpenGL.Enums.QueryTarget target, UInt32 id) { - Delegates.glBeginQuery((OpenTK.OpenGL.Enums.Version15)target, (UInt32)id); + Delegates.glBeginQuery((OpenTK.OpenGL.Enums.QueryTarget)target, (UInt32)id); } public static - void BeginQuery(OpenTK.OpenGL.Enums.Version15 target, Int32 id) + void BeginQuery(OpenTK.OpenGL.Enums.QueryTarget target, Int32 id) { - Delegates.glBeginQuery((OpenTK.OpenGL.Enums.Version15)target, (UInt32)id); + Delegates.glBeginQuery((OpenTK.OpenGL.Enums.QueryTarget)target, (UInt32)id); } public static - void EndQuery(OpenTK.OpenGL.Enums.Version15 target) + void EndQuery(OpenTK.OpenGL.Enums.QueryTarget target) { - Delegates.glEndQuery((OpenTK.OpenGL.Enums.Version15)target); + Delegates.glEndQuery((OpenTK.OpenGL.Enums.QueryTarget)target); } public static - void GetQuery(OpenTK.OpenGL.Enums.Version15 target, OpenTK.OpenGL.Enums.Version15 pname, [Out] Int32[] @params) + void GetQuery(OpenTK.OpenGL.Enums.QueryTarget target, OpenTK.OpenGL.Enums.GetQueryParam pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetQueryiv((OpenTK.OpenGL.Enums.Version15)target, (OpenTK.OpenGL.Enums.Version15)pname, (Int32*)@params_ptr); + Delegates.glGetQueryiv((OpenTK.OpenGL.Enums.QueryTarget)target, (OpenTK.OpenGL.Enums.GetQueryParam)pname, (Int32*)@params_ptr); } } } public static - void GetQuery(OpenTK.OpenGL.Enums.Version15 target, OpenTK.OpenGL.Enums.Version15 pname, [Out] out Int32 @params) + void GetQuery(OpenTK.OpenGL.Enums.QueryTarget target, OpenTK.OpenGL.Enums.GetQueryParam pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetQueryiv((OpenTK.OpenGL.Enums.Version15)target, (OpenTK.OpenGL.Enums.Version15)pname, (Int32*)@params_ptr); + Delegates.glGetQueryiv((OpenTK.OpenGL.Enums.QueryTarget)target, (OpenTK.OpenGL.Enums.GetQueryParam)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -9087,33 +9055,33 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetQuery(OpenTK.OpenGL.Enums.Version15 target, OpenTK.OpenGL.Enums.Version15 pname, [Out] Int32* @params) + unsafe void GetQuery(OpenTK.OpenGL.Enums.QueryTarget target, OpenTK.OpenGL.Enums.GetQueryParam pname, [Out] Int32* @params) { - Delegates.glGetQueryiv((OpenTK.OpenGL.Enums.Version15)target, (OpenTK.OpenGL.Enums.Version15)pname, (Int32*)@params); + Delegates.glGetQueryiv((OpenTK.OpenGL.Enums.QueryTarget)target, (OpenTK.OpenGL.Enums.GetQueryParam)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - void GetQueryObject(UInt32 id, OpenTK.OpenGL.Enums.Version15 pname, [Out] Int32[] @params) + void GetQueryObject(UInt32 id, OpenTK.OpenGL.Enums.GetQueryObjectParam pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetQueryObjectiv((UInt32)id, (OpenTK.OpenGL.Enums.Version15)pname, (Int32*)@params_ptr); + Delegates.glGetQueryObjectiv((UInt32)id, (OpenTK.OpenGL.Enums.GetQueryObjectParam)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetQueryObject(UInt32 id, OpenTK.OpenGL.Enums.Version15 pname, [Out] out Int32 @params) + void GetQueryObject(UInt32 id, OpenTK.OpenGL.Enums.GetQueryObjectParam pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetQueryObjectiv((UInt32)id, (OpenTK.OpenGL.Enums.Version15)pname, (Int32*)@params_ptr); + Delegates.glGetQueryObjectiv((UInt32)id, (OpenTK.OpenGL.Enums.GetQueryObjectParam)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -9121,58 +9089,58 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetQueryObject(UInt32 id, OpenTK.OpenGL.Enums.Version15 pname, [Out] Int32* @params) + unsafe void GetQueryObject(UInt32 id, OpenTK.OpenGL.Enums.GetQueryObjectParam pname, [Out] Int32* @params) { - Delegates.glGetQueryObjectiv((UInt32)id, (OpenTK.OpenGL.Enums.Version15)pname, (Int32*)@params); + Delegates.glGetQueryObjectiv((UInt32)id, (OpenTK.OpenGL.Enums.GetQueryObjectParam)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - void GetQueryObject(UInt32 id, OpenTK.OpenGL.Enums.Version15 pname, [Out] UInt32[] @params) + void GetQueryObject(UInt32 id, OpenTK.OpenGL.Enums.GetQueryObjectParam pname, [Out] UInt32[] @params) { unsafe { fixed (UInt32* @params_ptr = @params) { - Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.OpenGL.Enums.Version15)pname, (UInt32*)@params_ptr); + Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.OpenGL.Enums.GetQueryObjectParam)pname, (UInt32*)@params_ptr); } } } public static - void GetQueryObject(Int32 id, OpenTK.OpenGL.Enums.Version15 pname, [Out] Int32[] @params) + void GetQueryObject(Int32 id, OpenTK.OpenGL.Enums.GetQueryObjectParam pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.OpenGL.Enums.Version15)pname, (UInt32*)@params_ptr); + Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.OpenGL.Enums.GetQueryObjectParam)pname, (UInt32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetQueryObject(UInt32 id, OpenTK.OpenGL.Enums.Version15 pname, [Out] out UInt32 @params) + void GetQueryObject(UInt32 id, OpenTK.OpenGL.Enums.GetQueryObjectParam pname, [Out] out UInt32 @params) { unsafe { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.OpenGL.Enums.Version15)pname, (UInt32*)@params_ptr); + Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.OpenGL.Enums.GetQueryObjectParam)pname, (UInt32*)@params_ptr); @params = *@params_ptr; } } } public static - void GetQueryObject(Int32 id, OpenTK.OpenGL.Enums.Version15 pname, [Out] out Int32 @params) + void GetQueryObject(Int32 id, OpenTK.OpenGL.Enums.GetQueryObjectParam pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.OpenGL.Enums.Version15)pname, (UInt32*)@params_ptr); + Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.OpenGL.Enums.GetQueryObjectParam)pname, (UInt32*)@params_ptr); @params = *@params_ptr; } } @@ -9180,29 +9148,29 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetQueryObject(UInt32 id, OpenTK.OpenGL.Enums.Version15 pname, [Out] UInt32* @params) + unsafe void GetQueryObject(UInt32 id, OpenTK.OpenGL.Enums.GetQueryObjectParam pname, [Out] UInt32* @params) { - Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.OpenGL.Enums.Version15)pname, (UInt32*)@params); + Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.OpenGL.Enums.GetQueryObjectParam)pname, (UInt32*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetQueryObject(Int32 id, OpenTK.OpenGL.Enums.Version15 pname, [Out] Int32* @params) + unsafe void GetQueryObject(Int32 id, OpenTK.OpenGL.Enums.GetQueryObjectParam pname, [Out] Int32* @params) { - Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.OpenGL.Enums.Version15)pname, (UInt32*)@params); + Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.OpenGL.Enums.GetQueryObjectParam)pname, (UInt32*)@params); } [System.CLSCompliant(false)] public static - void BindBuffer(OpenTK.OpenGL.Enums.Version15 target, UInt32 buffer) + void BindBuffer(OpenTK.OpenGL.Enums.BufferTarget target, UInt32 buffer) { - Delegates.glBindBuffer((OpenTK.OpenGL.Enums.Version15)target, (UInt32)buffer); + Delegates.glBindBuffer((OpenTK.OpenGL.Enums.BufferTarget)target, (UInt32)buffer); } public static - void BindBuffer(OpenTK.OpenGL.Enums.Version15 target, Int32 buffer) + void BindBuffer(OpenTK.OpenGL.Enums.BufferTarget target, Int32 buffer) { - Delegates.glBindBuffer((OpenTK.OpenGL.Enums.Version15)target, (UInt32)buffer); + Delegates.glBindBuffer((OpenTK.OpenGL.Enums.BufferTarget)target, (UInt32)buffer); } [System.CLSCompliant(false)] @@ -9349,23 +9317,23 @@ namespace OpenTK.OpenGL } public static - void BufferData(OpenTK.OpenGL.Enums.Version15 target, IntPtr size, IntPtr data, OpenTK.OpenGL.Enums.Version15 usage) + void BufferData(OpenTK.OpenGL.Enums.BufferTarget target, IntPtr size, IntPtr data, OpenTK.OpenGL.Enums.BufferUsageHint usage) { unsafe { - Delegates.glBufferData((OpenTK.OpenGL.Enums.Version15)target, (IntPtr)size, (IntPtr)data, (OpenTK.OpenGL.Enums.Version15)usage); + Delegates.glBufferData((OpenTK.OpenGL.Enums.BufferTarget)target, (IntPtr)size, (IntPtr)data, (OpenTK.OpenGL.Enums.BufferUsageHint)usage); } } public static - void BufferData(OpenTK.OpenGL.Enums.Version15 target, IntPtr size, [In, Out] object data, OpenTK.OpenGL.Enums.Version15 usage) + void BufferData(OpenTK.OpenGL.Enums.BufferTarget target, IntPtr size, [In, Out] object data, OpenTK.OpenGL.Enums.BufferUsageHint usage) { unsafe { System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glBufferData((OpenTK.OpenGL.Enums.Version15)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.OpenGL.Enums.Version15)usage); + Delegates.glBufferData((OpenTK.OpenGL.Enums.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.OpenGL.Enums.BufferUsageHint)usage); } finally { @@ -9375,23 +9343,23 @@ namespace OpenTK.OpenGL } public static - void BufferSubData(OpenTK.OpenGL.Enums.Version15 target, IntPtr offset, IntPtr size, IntPtr data) + void BufferSubData(OpenTK.OpenGL.Enums.BufferTarget target, IntPtr offset, IntPtr size, IntPtr data) { unsafe { - Delegates.glBufferSubData((OpenTK.OpenGL.Enums.Version15)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data); + Delegates.glBufferSubData((OpenTK.OpenGL.Enums.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data); } } public static - void BufferSubData(OpenTK.OpenGL.Enums.Version15 target, IntPtr offset, IntPtr size, [In, Out] object data) + void BufferSubData(OpenTK.OpenGL.Enums.BufferTarget target, IntPtr offset, IntPtr size, [In, Out] object data) { unsafe { System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glBufferSubData((OpenTK.OpenGL.Enums.Version15)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + Delegates.glBufferSubData((OpenTK.OpenGL.Enums.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -9401,23 +9369,23 @@ namespace OpenTK.OpenGL } public static - void GetBufferSubData(OpenTK.OpenGL.Enums.Version15 target, IntPtr offset, IntPtr size, [Out] IntPtr data) + void GetBufferSubData(OpenTK.OpenGL.Enums.BufferTarget target, IntPtr offset, IntPtr size, [Out] IntPtr data) { unsafe { - Delegates.glGetBufferSubData((OpenTK.OpenGL.Enums.Version15)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data); + Delegates.glGetBufferSubData((OpenTK.OpenGL.Enums.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data); } } public static - void GetBufferSubData(OpenTK.OpenGL.Enums.Version15 target, IntPtr offset, IntPtr size, [In, Out] object data) + void GetBufferSubData(OpenTK.OpenGL.Enums.BufferTarget target, IntPtr offset, IntPtr size, [In, Out] object data) { unsafe { System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glGetBufferSubData((OpenTK.OpenGL.Enums.Version15)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + Delegates.glGetBufferSubData((OpenTK.OpenGL.Enums.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -9428,37 +9396,37 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe IntPtr MapBuffer(OpenTK.OpenGL.Enums.Version15 target, OpenTK.OpenGL.Enums.Version15 access) + unsafe IntPtr MapBuffer(OpenTK.OpenGL.Enums.BufferTarget target, OpenTK.OpenGL.Enums.BufferAccess access) { - return Delegates.glMapBuffer((OpenTK.OpenGL.Enums.Version15)target, (OpenTK.OpenGL.Enums.Version15)access); + return Delegates.glMapBuffer((OpenTK.OpenGL.Enums.BufferTarget)target, (OpenTK.OpenGL.Enums.BufferAccess)access); } public static - bool UnmapBuffer(OpenTK.OpenGL.Enums.Version15 target) + bool UnmapBuffer(OpenTK.OpenGL.Enums.BufferTarget target) { - return Delegates.glUnmapBuffer((OpenTK.OpenGL.Enums.Version15)target); + return Delegates.glUnmapBuffer((OpenTK.OpenGL.Enums.BufferTarget)target); } public static - void GetBufferParameter(OpenTK.OpenGL.Enums.Version15 target, OpenTK.OpenGL.Enums.Version15 pname, [Out] Int32[] @params) + void GetBufferParameter(OpenTK.OpenGL.Enums.BufferTarget target, OpenTK.OpenGL.Enums.BufferParameterName pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetBufferParameteriv((OpenTK.OpenGL.Enums.Version15)target, (OpenTK.OpenGL.Enums.Version15)pname, (Int32*)@params_ptr); + Delegates.glGetBufferParameteriv((OpenTK.OpenGL.Enums.BufferTarget)target, (OpenTK.OpenGL.Enums.BufferParameterName)pname, (Int32*)@params_ptr); } } } public static - void GetBufferParameter(OpenTK.OpenGL.Enums.Version15 target, OpenTK.OpenGL.Enums.Version15 pname, [Out] out Int32 @params) + void GetBufferParameter(OpenTK.OpenGL.Enums.BufferTarget target, OpenTK.OpenGL.Enums.BufferParameterName pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetBufferParameteriv((OpenTK.OpenGL.Enums.Version15)target, (OpenTK.OpenGL.Enums.Version15)pname, (Int32*)@params_ptr); + Delegates.glGetBufferParameteriv((OpenTK.OpenGL.Enums.BufferTarget)target, (OpenTK.OpenGL.Enums.BufferParameterName)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -9466,29 +9434,29 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetBufferParameter(OpenTK.OpenGL.Enums.Version15 target, OpenTK.OpenGL.Enums.Version15 pname, [Out] Int32* @params) + unsafe void GetBufferParameter(OpenTK.OpenGL.Enums.BufferTarget target, OpenTK.OpenGL.Enums.BufferParameterName pname, [Out] Int32* @params) { - Delegates.glGetBufferParameteriv((OpenTK.OpenGL.Enums.Version15)target, (OpenTK.OpenGL.Enums.Version15)pname, (Int32*)@params); + Delegates.glGetBufferParameteriv((OpenTK.OpenGL.Enums.BufferTarget)target, (OpenTK.OpenGL.Enums.BufferParameterName)pname, (Int32*)@params); } public static - void GetBufferPointer(OpenTK.OpenGL.Enums.Version15 target, OpenTK.OpenGL.Enums.Version15 pname, [Out] IntPtr @params) + void GetBufferPointer(OpenTK.OpenGL.Enums.BufferTarget target, OpenTK.OpenGL.Enums.BufferPointer pname, [Out] IntPtr @params) { unsafe { - Delegates.glGetBufferPointerv((OpenTK.OpenGL.Enums.Version15)target, (OpenTK.OpenGL.Enums.Version15)pname, (IntPtr)@params); + Delegates.glGetBufferPointerv((OpenTK.OpenGL.Enums.BufferTarget)target, (OpenTK.OpenGL.Enums.BufferPointer)pname, (IntPtr)@params); } } public static - void GetBufferPointer(OpenTK.OpenGL.Enums.Version15 target, OpenTK.OpenGL.Enums.Version15 pname, [In, Out] object @params) + void GetBufferPointer(OpenTK.OpenGL.Enums.BufferTarget target, OpenTK.OpenGL.Enums.BufferPointer pname, [In, Out] object @params) { unsafe { System.Runtime.InteropServices.GCHandle @params_ptr = System.Runtime.InteropServices.GCHandle.Alloc(@params, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glGetBufferPointerv((OpenTK.OpenGL.Enums.Version15)target, (OpenTK.OpenGL.Enums.Version15)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + Delegates.glGetBufferPointerv((OpenTK.OpenGL.Enums.BufferTarget)target, (OpenTK.OpenGL.Enums.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -9498,46 +9466,46 @@ namespace OpenTK.OpenGL } public static - void BlendEquationSeparate(OpenTK.OpenGL.Enums.BlendEquationModeExt modeRGB, OpenTK.OpenGL.Enums.BlendEquationModeExt modeAlpha) + void BlendEquationSeparate(OpenTK.OpenGL.Enums.All modeRGB, OpenTK.OpenGL.Enums.All modeAlpha) { - Delegates.glBlendEquationSeparate((OpenTK.OpenGL.Enums.BlendEquationModeExt)modeRGB, (OpenTK.OpenGL.Enums.BlendEquationModeExt)modeAlpha); + Delegates.glBlendEquationSeparate((OpenTK.OpenGL.Enums.All)modeRGB, (OpenTK.OpenGL.Enums.All)modeAlpha); } public static - void DrawBuffers(Int32 n, OpenTK.OpenGL.Enums.Version20[] bufs) + void DrawBuffers(Int32 n, OpenTK.OpenGL.Enums.DrawBuffersEnum[] bufs) { unsafe { - fixed (OpenTK.OpenGL.Enums.Version20* bufs_ptr = bufs) + fixed (OpenTK.OpenGL.Enums.DrawBuffersEnum* bufs_ptr = bufs) { - Delegates.glDrawBuffers((Int32)n, (OpenTK.OpenGL.Enums.Version20*)bufs_ptr); + Delegates.glDrawBuffers((Int32)n, (OpenTK.OpenGL.Enums.DrawBuffersEnum*)bufs_ptr); } } } public static - void DrawBuffers(Int32 n, ref OpenTK.OpenGL.Enums.Version20 bufs) + void DrawBuffers(Int32 n, ref OpenTK.OpenGL.Enums.DrawBuffersEnum bufs) { unsafe { - fixed (OpenTK.OpenGL.Enums.Version20* bufs_ptr = &bufs) + fixed (OpenTK.OpenGL.Enums.DrawBuffersEnum* bufs_ptr = &bufs) { - Delegates.glDrawBuffers((Int32)n, (OpenTK.OpenGL.Enums.Version20*)bufs_ptr); + Delegates.glDrawBuffers((Int32)n, (OpenTK.OpenGL.Enums.DrawBuffersEnum*)bufs_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void DrawBuffers(Int32 n, OpenTK.OpenGL.Enums.Version20* bufs) + unsafe void DrawBuffers(Int32 n, OpenTK.OpenGL.Enums.DrawBuffersEnum* bufs) { - Delegates.glDrawBuffers((Int32)n, (OpenTK.OpenGL.Enums.Version20*)bufs); + Delegates.glDrawBuffers((Int32)n, (OpenTK.OpenGL.Enums.DrawBuffersEnum*)bufs); } public static - void StencilOpSeparate(OpenTK.OpenGL.Enums.Version20 face, OpenTK.OpenGL.Enums.StencilOp sfail, OpenTK.OpenGL.Enums.StencilOp dpfail, OpenTK.OpenGL.Enums.StencilOp dppass) + void StencilOpSeparate(OpenTK.OpenGL.Enums.All face, OpenTK.OpenGL.Enums.StencilOp sfail, OpenTK.OpenGL.Enums.StencilOp dpfail, OpenTK.OpenGL.Enums.StencilOp dppass) { - Delegates.glStencilOpSeparate((OpenTK.OpenGL.Enums.Version20)face, (OpenTK.OpenGL.Enums.StencilOp)sfail, (OpenTK.OpenGL.Enums.StencilOp)dpfail, (OpenTK.OpenGL.Enums.StencilOp)dppass); + Delegates.glStencilOpSeparate((OpenTK.OpenGL.Enums.All)face, (OpenTK.OpenGL.Enums.StencilOp)sfail, (OpenTK.OpenGL.Enums.StencilOp)dpfail, (OpenTK.OpenGL.Enums.StencilOp)dppass); } [System.CLSCompliant(false)] @@ -9555,15 +9523,15 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void StencilMaskSeparate(OpenTK.OpenGL.Enums.Version20 face, UInt32 mask) + void StencilMaskSeparate(OpenTK.OpenGL.Enums.All face, UInt32 mask) { - Delegates.glStencilMaskSeparate((OpenTK.OpenGL.Enums.Version20)face, (UInt32)mask); + Delegates.glStencilMaskSeparate((OpenTK.OpenGL.Enums.All)face, (UInt32)mask); } public static - void StencilMaskSeparate(OpenTK.OpenGL.Enums.Version20 face, Int32 mask) + void StencilMaskSeparate(OpenTK.OpenGL.Enums.All face, Int32 mask) { - Delegates.glStencilMaskSeparate((OpenTK.OpenGL.Enums.Version20)face, (UInt32)mask); + Delegates.glStencilMaskSeparate((OpenTK.OpenGL.Enums.All)face, (UInt32)mask); } [System.CLSCompliant(false)] @@ -9612,9 +9580,9 @@ namespace OpenTK.OpenGL } public static - Int32 CreateShader(OpenTK.OpenGL.Enums.Version20 type) + Int32 CreateShader(OpenTK.OpenGL.Enums.ShaderType type) { - return Delegates.glCreateShader((OpenTK.OpenGL.Enums.Version20)type); + return Delegates.glCreateShader((OpenTK.OpenGL.Enums.ShaderType)type); } [System.CLSCompliant(false)] @@ -9684,44 +9652,44 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.OpenGL.Enums.Version20[] type, [Out] System.Text.StringBuilder name) + void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.OpenGL.Enums.ActiveAttribType[] type, [Out] System.Text.StringBuilder name) { unsafe { fixed (Int32* length_ptr = length) fixed (Int32* size_ptr = size) - fixed (OpenTK.OpenGL.Enums.Version20* type_ptr = type) + fixed (OpenTK.OpenGL.Enums.ActiveAttribType* type_ptr = type) { - Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.Version20*)type_ptr, (System.Text.StringBuilder)name); + Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.ActiveAttribType*)type_ptr, (System.Text.StringBuilder)name); } } } public static - void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.OpenGL.Enums.Version20[] type, [Out] System.Text.StringBuilder name) + void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.OpenGL.Enums.ActiveAttribType[] type, [Out] System.Text.StringBuilder name) { unsafe { fixed (Int32* length_ptr = length) fixed (Int32* size_ptr = size) - fixed (OpenTK.OpenGL.Enums.Version20* type_ptr = type) + fixed (OpenTK.OpenGL.Enums.ActiveAttribType* type_ptr = type) { - Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.Version20*)type_ptr, (System.Text.StringBuilder)name); + Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.ActiveAttribType*)type_ptr, (System.Text.StringBuilder)name); } } } [System.CLSCompliant(false)] public static - void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.OpenGL.Enums.Version20 type, [Out] System.Text.StringBuilder name) + void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.OpenGL.Enums.ActiveAttribType type, [Out] System.Text.StringBuilder name) { unsafe { fixed (Int32* length_ptr = &length) fixed (Int32* size_ptr = &size) - fixed (OpenTK.OpenGL.Enums.Version20* type_ptr = &type) + fixed (OpenTK.OpenGL.Enums.ActiveAttribType* type_ptr = &type) { - Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.Version20*)type_ptr, (System.Text.StringBuilder)name); + Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.ActiveAttribType*)type_ptr, (System.Text.StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -9730,15 +9698,15 @@ namespace OpenTK.OpenGL } public static - void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.OpenGL.Enums.Version20 type, [Out] System.Text.StringBuilder name) + void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.OpenGL.Enums.ActiveAttribType type, [Out] System.Text.StringBuilder name) { unsafe { fixed (Int32* length_ptr = &length) fixed (Int32* size_ptr = &size) - fixed (OpenTK.OpenGL.Enums.Version20* type_ptr = &type) + fixed (OpenTK.OpenGL.Enums.ActiveAttribType* type_ptr = &type) { - Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.Version20*)type_ptr, (System.Text.StringBuilder)name); + Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.ActiveAttribType*)type_ptr, (System.Text.StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -9748,58 +9716,58 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.OpenGL.Enums.Version20* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.OpenGL.Enums.ActiveAttribType* type, [Out] System.Text.StringBuilder name) { - Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.OpenGL.Enums.Version20*)type, (System.Text.StringBuilder)name); + Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.OpenGL.Enums.ActiveAttribType*)type, (System.Text.StringBuilder)name); } [System.CLSCompliant(false)] public static - unsafe void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.OpenGL.Enums.Version20* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.OpenGL.Enums.ActiveAttribType* type, [Out] System.Text.StringBuilder name) { - Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.OpenGL.Enums.Version20*)type, (System.Text.StringBuilder)name); + Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.OpenGL.Enums.ActiveAttribType*)type, (System.Text.StringBuilder)name); } [System.CLSCompliant(false)] public static - void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.OpenGL.Enums.Version20[] type, [Out] System.Text.StringBuilder name) + void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.OpenGL.Enums.ActiveUniformType[] type, [Out] System.Text.StringBuilder name) { unsafe { fixed (Int32* length_ptr = length) fixed (Int32* size_ptr = size) - fixed (OpenTK.OpenGL.Enums.Version20* type_ptr = type) + fixed (OpenTK.OpenGL.Enums.ActiveUniformType* type_ptr = type) { - Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.Version20*)type_ptr, (System.Text.StringBuilder)name); + Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.ActiveUniformType*)type_ptr, (System.Text.StringBuilder)name); } } } public static - void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.OpenGL.Enums.Version20[] type, [Out] System.Text.StringBuilder name) + void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.OpenGL.Enums.ActiveUniformType[] type, [Out] System.Text.StringBuilder name) { unsafe { fixed (Int32* length_ptr = length) fixed (Int32* size_ptr = size) - fixed (OpenTK.OpenGL.Enums.Version20* type_ptr = type) + fixed (OpenTK.OpenGL.Enums.ActiveUniformType* type_ptr = type) { - Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.Version20*)type_ptr, (System.Text.StringBuilder)name); + Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.ActiveUniformType*)type_ptr, (System.Text.StringBuilder)name); } } } [System.CLSCompliant(false)] public static - void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.OpenGL.Enums.Version20 type, [Out] System.Text.StringBuilder name) + void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.OpenGL.Enums.ActiveUniformType type, [Out] System.Text.StringBuilder name) { unsafe { fixed (Int32* length_ptr = &length) fixed (Int32* size_ptr = &size) - fixed (OpenTK.OpenGL.Enums.Version20* type_ptr = &type) + fixed (OpenTK.OpenGL.Enums.ActiveUniformType* type_ptr = &type) { - Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.Version20*)type_ptr, (System.Text.StringBuilder)name); + Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.ActiveUniformType*)type_ptr, (System.Text.StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -9808,15 +9776,15 @@ namespace OpenTK.OpenGL } public static - void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.OpenGL.Enums.Version20 type, [Out] System.Text.StringBuilder name) + void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.OpenGL.Enums.ActiveUniformType type, [Out] System.Text.StringBuilder name) { unsafe { fixed (Int32* length_ptr = &length) fixed (Int32* size_ptr = &size) - fixed (OpenTK.OpenGL.Enums.Version20* type_ptr = &type) + fixed (OpenTK.OpenGL.Enums.ActiveUniformType* type_ptr = &type) { - Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.Version20*)type_ptr, (System.Text.StringBuilder)name); + Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.ActiveUniformType*)type_ptr, (System.Text.StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -9826,16 +9794,16 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.OpenGL.Enums.Version20* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.OpenGL.Enums.ActiveUniformType* type, [Out] System.Text.StringBuilder name) { - Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.OpenGL.Enums.Version20*)type, (System.Text.StringBuilder)name); + Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.OpenGL.Enums.ActiveUniformType*)type, (System.Text.StringBuilder)name); } [System.CLSCompliant(false)] public static - unsafe void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.OpenGL.Enums.Version20* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.OpenGL.Enums.ActiveUniformType* type, [Out] System.Text.StringBuilder name) { - Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.OpenGL.Enums.Version20*)type, (System.Text.StringBuilder)name); + Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.OpenGL.Enums.ActiveUniformType*)type, (System.Text.StringBuilder)name); } [System.CLSCompliant(false)] @@ -9925,51 +9893,51 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetProgram(UInt32 program, OpenTK.OpenGL.Enums.Version20 pname, [Out] Int32[] @params) + void GetProgram(UInt32 program, OpenTK.OpenGL.Enums.ProgramParameter pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.OpenGL.Enums.Version20)pname, (Int32*)@params_ptr); + Delegates.glGetProgramiv((UInt32)program, (OpenTK.OpenGL.Enums.ProgramParameter)pname, (Int32*)@params_ptr); } } } public static - void GetProgram(Int32 program, OpenTK.OpenGL.Enums.Version20 pname, [Out] Int32[] @params) + void GetProgram(Int32 program, OpenTK.OpenGL.Enums.ProgramParameter pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.OpenGL.Enums.Version20)pname, (Int32*)@params_ptr); + Delegates.glGetProgramiv((UInt32)program, (OpenTK.OpenGL.Enums.ProgramParameter)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetProgram(UInt32 program, OpenTK.OpenGL.Enums.Version20 pname, [Out] out Int32 @params) + void GetProgram(UInt32 program, OpenTK.OpenGL.Enums.ProgramParameter pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.OpenGL.Enums.Version20)pname, (Int32*)@params_ptr); + Delegates.glGetProgramiv((UInt32)program, (OpenTK.OpenGL.Enums.ProgramParameter)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } } public static - void GetProgram(Int32 program, OpenTK.OpenGL.Enums.Version20 pname, [Out] out Int32 @params) + void GetProgram(Int32 program, OpenTK.OpenGL.Enums.ProgramParameter pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.OpenGL.Enums.Version20)pname, (Int32*)@params_ptr); + Delegates.glGetProgramiv((UInt32)program, (OpenTK.OpenGL.Enums.ProgramParameter)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -9977,16 +9945,16 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetProgram(UInt32 program, OpenTK.OpenGL.Enums.Version20 pname, [Out] Int32* @params) + unsafe void GetProgram(UInt32 program, OpenTK.OpenGL.Enums.ProgramParameter pname, [Out] Int32* @params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.OpenGL.Enums.Version20)pname, (Int32*)@params); + Delegates.glGetProgramiv((UInt32)program, (OpenTK.OpenGL.Enums.ProgramParameter)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetProgram(Int32 program, OpenTK.OpenGL.Enums.Version20 pname, [Out] Int32* @params) + unsafe void GetProgram(Int32 program, OpenTK.OpenGL.Enums.ProgramParameter pname, [Out] Int32* @params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.OpenGL.Enums.Version20)pname, (Int32*)@params); + Delegates.glGetProgramiv((UInt32)program, (OpenTK.OpenGL.Enums.ProgramParameter)pname, (Int32*)@params); } [System.CLSCompliant(false)] @@ -10057,51 +10025,51 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetShader(UInt32 shader, OpenTK.OpenGL.Enums.Version20 pname, [Out] Int32[] @params) + void GetShader(UInt32 shader, OpenTK.OpenGL.Enums.ShaderParameter pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.OpenGL.Enums.Version20)pname, (Int32*)@params_ptr); + Delegates.glGetShaderiv((UInt32)shader, (OpenTK.OpenGL.Enums.ShaderParameter)pname, (Int32*)@params_ptr); } } } public static - void GetShader(Int32 shader, OpenTK.OpenGL.Enums.Version20 pname, [Out] Int32[] @params) + void GetShader(Int32 shader, OpenTK.OpenGL.Enums.ShaderParameter pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.OpenGL.Enums.Version20)pname, (Int32*)@params_ptr); + Delegates.glGetShaderiv((UInt32)shader, (OpenTK.OpenGL.Enums.ShaderParameter)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetShader(UInt32 shader, OpenTK.OpenGL.Enums.Version20 pname, [Out] out Int32 @params) + void GetShader(UInt32 shader, OpenTK.OpenGL.Enums.ShaderParameter pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.OpenGL.Enums.Version20)pname, (Int32*)@params_ptr); + Delegates.glGetShaderiv((UInt32)shader, (OpenTK.OpenGL.Enums.ShaderParameter)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } } public static - void GetShader(Int32 shader, OpenTK.OpenGL.Enums.Version20 pname, [Out] out Int32 @params) + void GetShader(Int32 shader, OpenTK.OpenGL.Enums.ShaderParameter pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.OpenGL.Enums.Version20)pname, (Int32*)@params_ptr); + Delegates.glGetShaderiv((UInt32)shader, (OpenTK.OpenGL.Enums.ShaderParameter)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -10109,16 +10077,16 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetShader(UInt32 shader, OpenTK.OpenGL.Enums.Version20 pname, [Out] Int32* @params) + unsafe void GetShader(UInt32 shader, OpenTK.OpenGL.Enums.ShaderParameter pname, [Out] Int32* @params) { - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.OpenGL.Enums.Version20)pname, (Int32*)@params); + Delegates.glGetShaderiv((UInt32)shader, (OpenTK.OpenGL.Enums.ShaderParameter)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetShader(Int32 shader, OpenTK.OpenGL.Enums.Version20 pname, [Out] Int32* @params) + unsafe void GetShader(Int32 shader, OpenTK.OpenGL.Enums.ShaderParameter pname, [Out] Int32* @params) { - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.OpenGL.Enums.Version20)pname, (Int32*)@params); + Delegates.glGetShaderiv((UInt32)shader, (OpenTK.OpenGL.Enums.ShaderParameter)pname, (Int32*)@params); } [System.CLSCompliant(false)] @@ -10400,51 +10368,51 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.Version20 pname, [Out] Double[] @params) + void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.VertexAttribParameter pname, [Out] Double[] @params) { unsafe { fixed (Double* @params_ptr = @params) { - Delegates.glGetVertexAttribdv((UInt32)index, (OpenTK.OpenGL.Enums.Version20)pname, (Double*)@params_ptr); + Delegates.glGetVertexAttribdv((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribParameter)pname, (Double*)@params_ptr); } } } public static - void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.Version20 pname, [Out] Double[] @params) + void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.VertexAttribParameter pname, [Out] Double[] @params) { unsafe { fixed (Double* @params_ptr = @params) { - Delegates.glGetVertexAttribdv((UInt32)index, (OpenTK.OpenGL.Enums.Version20)pname, (Double*)@params_ptr); + Delegates.glGetVertexAttribdv((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribParameter)pname, (Double*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.Version20 pname, [Out] out Double @params) + void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.VertexAttribParameter pname, [Out] out Double @params) { unsafe { fixed (Double* @params_ptr = &@params) { - Delegates.glGetVertexAttribdv((UInt32)index, (OpenTK.OpenGL.Enums.Version20)pname, (Double*)@params_ptr); + Delegates.glGetVertexAttribdv((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribParameter)pname, (Double*)@params_ptr); @params = *@params_ptr; } } } public static - void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.Version20 pname, [Out] out Double @params) + void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.VertexAttribParameter pname, [Out] out Double @params) { unsafe { fixed (Double* @params_ptr = &@params) { - Delegates.glGetVertexAttribdv((UInt32)index, (OpenTK.OpenGL.Enums.Version20)pname, (Double*)@params_ptr); + Delegates.glGetVertexAttribdv((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribParameter)pname, (Double*)@params_ptr); @params = *@params_ptr; } } @@ -10452,65 +10420,65 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.Version20 pname, [Out] Double* @params) + unsafe void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.VertexAttribParameter pname, [Out] Double* @params) { - Delegates.glGetVertexAttribdv((UInt32)index, (OpenTK.OpenGL.Enums.Version20)pname, (Double*)@params); + Delegates.glGetVertexAttribdv((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribParameter)pname, (Double*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.Version20 pname, [Out] Double* @params) + unsafe void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.VertexAttribParameter pname, [Out] Double* @params) { - Delegates.glGetVertexAttribdv((UInt32)index, (OpenTK.OpenGL.Enums.Version20)pname, (Double*)@params); + Delegates.glGetVertexAttribdv((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribParameter)pname, (Double*)@params); } [System.CLSCompliant(false)] public static - void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.Version20 pname, [Out] Single[] @params) + void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.VertexAttribParameter pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.OpenGL.Enums.Version20)pname, (Single*)@params_ptr); + Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribParameter)pname, (Single*)@params_ptr); } } } public static - void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.Version20 pname, [Out] Single[] @params) + void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.VertexAttribParameter pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.OpenGL.Enums.Version20)pname, (Single*)@params_ptr); + Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribParameter)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.Version20 pname, [Out] out Single @params) + void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.VertexAttribParameter pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.OpenGL.Enums.Version20)pname, (Single*)@params_ptr); + Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribParameter)pname, (Single*)@params_ptr); @params = *@params_ptr; } } } public static - void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.Version20 pname, [Out] out Single @params) + void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.VertexAttribParameter pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.OpenGL.Enums.Version20)pname, (Single*)@params_ptr); + Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribParameter)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -10518,65 +10486,65 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.Version20 pname, [Out] Single* @params) + unsafe void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.VertexAttribParameter pname, [Out] Single* @params) { - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.OpenGL.Enums.Version20)pname, (Single*)@params); + Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribParameter)pname, (Single*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.Version20 pname, [Out] Single* @params) + unsafe void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.VertexAttribParameter pname, [Out] Single* @params) { - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.OpenGL.Enums.Version20)pname, (Single*)@params); + Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribParameter)pname, (Single*)@params); } [System.CLSCompliant(false)] public static - void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.Version20 pname, [Out] Int32[] @params) + void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.VertexAttribParameter pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.OpenGL.Enums.Version20)pname, (Int32*)@params_ptr); + Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribParameter)pname, (Int32*)@params_ptr); } } } public static - void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.Version20 pname, [Out] Int32[] @params) + void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.VertexAttribParameter pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.OpenGL.Enums.Version20)pname, (Int32*)@params_ptr); + Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribParameter)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.Version20 pname, [Out] out Int32 @params) + void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.VertexAttribParameter pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.OpenGL.Enums.Version20)pname, (Int32*)@params_ptr); + Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribParameter)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } } public static - void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.Version20 pname, [Out] out Int32 @params) + void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.VertexAttribParameter pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.OpenGL.Enums.Version20)pname, (Int32*)@params_ptr); + Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribParameter)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -10584,47 +10552,47 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.Version20 pname, [Out] Int32* @params) + unsafe void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.VertexAttribParameter pname, [Out] Int32* @params) { - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.OpenGL.Enums.Version20)pname, (Int32*)@params); + Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribParameter)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.Version20 pname, [Out] Int32* @params) + unsafe void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.VertexAttribParameter pname, [Out] Int32* @params) { - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.OpenGL.Enums.Version20)pname, (Int32*)@params); + Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribParameter)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - void GetVertexAttribPointer(UInt32 index, OpenTK.OpenGL.Enums.Version20 pname, [Out] IntPtr pointer) + void GetVertexAttribPointer(UInt32 index, OpenTK.OpenGL.Enums.VertexAttribPointerParameter pname, [Out] IntPtr pointer) { unsafe { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.OpenGL.Enums.Version20)pname, (IntPtr)pointer); + Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribPointerParameter)pname, (IntPtr)pointer); } } public static - void GetVertexAttribPointer(Int32 index, OpenTK.OpenGL.Enums.Version20 pname, [Out] IntPtr pointer) + void GetVertexAttribPointer(Int32 index, OpenTK.OpenGL.Enums.VertexAttribPointerParameter pname, [Out] IntPtr pointer) { unsafe { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.OpenGL.Enums.Version20)pname, (IntPtr)pointer); + Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribPointerParameter)pname, (IntPtr)pointer); } } [System.CLSCompliant(false)] public static - void GetVertexAttribPointer(UInt32 index, OpenTK.OpenGL.Enums.Version20 pname, [In, Out] object pointer) + void GetVertexAttribPointer(UInt32 index, OpenTK.OpenGL.Enums.VertexAttribPointerParameter pname, [In, Out] object pointer) { unsafe { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.OpenGL.Enums.Version20)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -10634,14 +10602,14 @@ namespace OpenTK.OpenGL } public static - void GetVertexAttribPointer(Int32 index, OpenTK.OpenGL.Enums.Version20 pname, [In, Out] object pointer) + void GetVertexAttribPointer(Int32 index, OpenTK.OpenGL.Enums.VertexAttribPointerParameter pname, [In, Out] object pointer) { unsafe { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.OpenGL.Enums.Version20)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -12625,33 +12593,33 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.OpenGL.Enums.Version20 type, bool normalized, Int32 stride, IntPtr pointer) + void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.OpenGL.Enums.VertexAttribPointerType type, bool normalized, Int32 stride, IntPtr pointer) { unsafe { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.OpenGL.Enums.Version20)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); + Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.OpenGL.Enums.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); } } public static - void VertexAttribPointer(Int32 index, Int32 size, OpenTK.OpenGL.Enums.Version20 type, bool normalized, Int32 stride, IntPtr pointer) + void VertexAttribPointer(Int32 index, Int32 size, OpenTK.OpenGL.Enums.VertexAttribPointerType type, bool normalized, Int32 stride, IntPtr pointer) { unsafe { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.OpenGL.Enums.Version20)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); + Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.OpenGL.Enums.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); } } [System.CLSCompliant(false)] public static - void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.OpenGL.Enums.Version20 type, bool normalized, Int32 stride, [In, Out] object pointer) + void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.OpenGL.Enums.VertexAttribPointerType type, bool normalized, Int32 stride, [In, Out] object pointer) { unsafe { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.OpenGL.Enums.Version20)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.OpenGL.Enums.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -12661,14 +12629,14 @@ namespace OpenTK.OpenGL } public static - void VertexAttribPointer(Int32 index, Int32 size, OpenTK.OpenGL.Enums.Version20 type, bool normalized, Int32 stride, [In, Out] object pointer) + void VertexAttribPointer(Int32 index, Int32 size, OpenTK.OpenGL.Enums.VertexAttribPointerType type, bool normalized, Int32 stride, [In, Out] object pointer) { unsafe { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.OpenGL.Enums.Version20)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.OpenGL.Enums.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -12863,16343 +12831,40 @@ namespace OpenTK.OpenGL Delegates.glUniformMatrix4x3fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value); } - public static partial class Arb - { - public static - void ActiveTexture(OpenTK.OpenGL.Enums.ArbMultitexture texture) - { - Delegates.glActiveTextureARB((OpenTK.OpenGL.Enums.ArbMultitexture)texture); - } - - public static - void ClientActiveTexture(OpenTK.OpenGL.Enums.ArbMultitexture texture) - { - Delegates.glClientActiveTextureARB((OpenTK.OpenGL.Enums.ArbMultitexture)texture); - } - - public static - void MultiTexCoord1(OpenTK.OpenGL.Enums.ArbMultitexture target, Double s) - { - Delegates.glMultiTexCoord1dARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Double)s); - } - - public static - void MultiTexCoord1v(OpenTK.OpenGL.Enums.ArbMultitexture target, Double[] v) - { - unsafe - { - fixed (Double* v_ptr = v) - { - Delegates.glMultiTexCoord1dvARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Double*)v_ptr); - } - } - } - - public static - void MultiTexCoord1v(OpenTK.OpenGL.Enums.ArbMultitexture target, ref Double v) - { - unsafe - { - fixed (Double* v_ptr = &v) - { - Delegates.glMultiTexCoord1dvARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Double*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void MultiTexCoord1v(OpenTK.OpenGL.Enums.ArbMultitexture target, Double* v) - { - Delegates.glMultiTexCoord1dvARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Double*)v); - } - - public static - void MultiTexCoord1(OpenTK.OpenGL.Enums.ArbMultitexture target, Single s) - { - Delegates.glMultiTexCoord1fARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Single)s); - } - - public static - void MultiTexCoord1v(OpenTK.OpenGL.Enums.ArbMultitexture target, Single[] v) - { - unsafe - { - fixed (Single* v_ptr = v) - { - Delegates.glMultiTexCoord1fvARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Single*)v_ptr); - } - } - } - - public static - void MultiTexCoord1v(OpenTK.OpenGL.Enums.ArbMultitexture target, ref Single v) - { - unsafe - { - fixed (Single* v_ptr = &v) - { - Delegates.glMultiTexCoord1fvARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void MultiTexCoord1v(OpenTK.OpenGL.Enums.ArbMultitexture target, Single* v) - { - Delegates.glMultiTexCoord1fvARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Single*)v); - } - - public static - void MultiTexCoord1(OpenTK.OpenGL.Enums.ArbMultitexture target, Int32 s) - { - Delegates.glMultiTexCoord1iARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Int32)s); - } - - public static - void MultiTexCoord1v(OpenTK.OpenGL.Enums.ArbMultitexture target, Int32[] v) - { - unsafe - { - fixed (Int32* v_ptr = v) - { - Delegates.glMultiTexCoord1ivARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Int32*)v_ptr); - } - } - } - - public static - void MultiTexCoord1v(OpenTK.OpenGL.Enums.ArbMultitexture target, ref Int32 v) - { - unsafe - { - fixed (Int32* v_ptr = &v) - { - Delegates.glMultiTexCoord1ivARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Int32*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void MultiTexCoord1v(OpenTK.OpenGL.Enums.ArbMultitexture target, Int32* v) - { - Delegates.glMultiTexCoord1ivARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Int32*)v); - } - - public static - void MultiTexCoord1(OpenTK.OpenGL.Enums.ArbMultitexture target, Int16 s) - { - Delegates.glMultiTexCoord1sARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Int16)s); - } - - public static - void MultiTexCoord1v(OpenTK.OpenGL.Enums.ArbMultitexture target, Int16[] v) - { - unsafe - { - fixed (Int16* v_ptr = v) - { - Delegates.glMultiTexCoord1svARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Int16*)v_ptr); - } - } - } - - public static - void MultiTexCoord1v(OpenTK.OpenGL.Enums.ArbMultitexture target, ref Int16 v) - { - unsafe - { - fixed (Int16* v_ptr = &v) - { - Delegates.glMultiTexCoord1svARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Int16*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void MultiTexCoord1v(OpenTK.OpenGL.Enums.ArbMultitexture target, Int16* v) - { - Delegates.glMultiTexCoord1svARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Int16*)v); - } - - public static - void MultiTexCoord2(OpenTK.OpenGL.Enums.ArbMultitexture target, Double s, Double t) - { - Delegates.glMultiTexCoord2dARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Double)s, (Double)t); - } - - public static - void MultiTexCoord2(OpenTK.OpenGL.Enums.ArbMultitexture target, Double[] v) - { - unsafe - { - fixed (Double* v_ptr = v) - { - Delegates.glMultiTexCoord2dvARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Double*)v_ptr); - } - } - } - - public static - void MultiTexCoord2(OpenTK.OpenGL.Enums.ArbMultitexture target, ref Double v) - { - unsafe - { - fixed (Double* v_ptr = &v) - { - Delegates.glMultiTexCoord2dvARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Double*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void MultiTexCoord2(OpenTK.OpenGL.Enums.ArbMultitexture target, Double* v) - { - Delegates.glMultiTexCoord2dvARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Double*)v); - } - - public static - void MultiTexCoord2(OpenTK.OpenGL.Enums.ArbMultitexture target, Single s, Single t) - { - Delegates.glMultiTexCoord2fARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Single)s, (Single)t); - } - - public static - void MultiTexCoord2(OpenTK.OpenGL.Enums.ArbMultitexture target, Single[] v) - { - unsafe - { - fixed (Single* v_ptr = v) - { - Delegates.glMultiTexCoord2fvARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Single*)v_ptr); - } - } - } - - public static - void MultiTexCoord2(OpenTK.OpenGL.Enums.ArbMultitexture target, ref Single v) - { - unsafe - { - fixed (Single* v_ptr = &v) - { - Delegates.glMultiTexCoord2fvARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void MultiTexCoord2(OpenTK.OpenGL.Enums.ArbMultitexture target, Single* v) - { - Delegates.glMultiTexCoord2fvARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Single*)v); - } - - public static - void MultiTexCoord2(OpenTK.OpenGL.Enums.ArbMultitexture target, Int32 s, Int32 t) - { - Delegates.glMultiTexCoord2iARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Int32)s, (Int32)t); - } - - public static - void MultiTexCoord2(OpenTK.OpenGL.Enums.ArbMultitexture target, Int32[] v) - { - unsafe - { - fixed (Int32* v_ptr = v) - { - Delegates.glMultiTexCoord2ivARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Int32*)v_ptr); - } - } - } - - public static - void MultiTexCoord2(OpenTK.OpenGL.Enums.ArbMultitexture target, ref Int32 v) - { - unsafe - { - fixed (Int32* v_ptr = &v) - { - Delegates.glMultiTexCoord2ivARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Int32*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void MultiTexCoord2(OpenTK.OpenGL.Enums.ArbMultitexture target, Int32* v) - { - Delegates.glMultiTexCoord2ivARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Int32*)v); - } - - public static - void MultiTexCoord2(OpenTK.OpenGL.Enums.ArbMultitexture target, Int16 s, Int16 t) - { - Delegates.glMultiTexCoord2sARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Int16)s, (Int16)t); - } - - public static - void MultiTexCoord2(OpenTK.OpenGL.Enums.ArbMultitexture target, Int16[] v) - { - unsafe - { - fixed (Int16* v_ptr = v) - { - Delegates.glMultiTexCoord2svARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Int16*)v_ptr); - } - } - } - - public static - void MultiTexCoord2(OpenTK.OpenGL.Enums.ArbMultitexture target, ref Int16 v) - { - unsafe - { - fixed (Int16* v_ptr = &v) - { - Delegates.glMultiTexCoord2svARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Int16*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void MultiTexCoord2(OpenTK.OpenGL.Enums.ArbMultitexture target, Int16* v) - { - Delegates.glMultiTexCoord2svARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Int16*)v); - } - - public static - void MultiTexCoord3(OpenTK.OpenGL.Enums.ArbMultitexture target, Double s, Double t, Double r) - { - Delegates.glMultiTexCoord3dARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Double)s, (Double)t, (Double)r); - } - - public static - void MultiTexCoord3(OpenTK.OpenGL.Enums.ArbMultitexture target, Double[] v) - { - unsafe - { - fixed (Double* v_ptr = v) - { - Delegates.glMultiTexCoord3dvARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Double*)v_ptr); - } - } - } - - public static - void MultiTexCoord3(OpenTK.OpenGL.Enums.ArbMultitexture target, ref Double v) - { - unsafe - { - fixed (Double* v_ptr = &v) - { - Delegates.glMultiTexCoord3dvARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Double*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void MultiTexCoord3(OpenTK.OpenGL.Enums.ArbMultitexture target, Double* v) - { - Delegates.glMultiTexCoord3dvARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Double*)v); - } - - public static - void MultiTexCoord3(OpenTK.OpenGL.Enums.ArbMultitexture target, Single s, Single t, Single r) - { - Delegates.glMultiTexCoord3fARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Single)s, (Single)t, (Single)r); - } - - public static - void MultiTexCoord3(OpenTK.OpenGL.Enums.ArbMultitexture target, Single[] v) - { - unsafe - { - fixed (Single* v_ptr = v) - { - Delegates.glMultiTexCoord3fvARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Single*)v_ptr); - } - } - } - - public static - void MultiTexCoord3(OpenTK.OpenGL.Enums.ArbMultitexture target, ref Single v) - { - unsafe - { - fixed (Single* v_ptr = &v) - { - Delegates.glMultiTexCoord3fvARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void MultiTexCoord3(OpenTK.OpenGL.Enums.ArbMultitexture target, Single* v) - { - Delegates.glMultiTexCoord3fvARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Single*)v); - } - - public static - void MultiTexCoord3(OpenTK.OpenGL.Enums.ArbMultitexture target, Int32 s, Int32 t, Int32 r) - { - Delegates.glMultiTexCoord3iARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Int32)s, (Int32)t, (Int32)r); - } - - public static - void MultiTexCoord3(OpenTK.OpenGL.Enums.ArbMultitexture target, Int32[] v) - { - unsafe - { - fixed (Int32* v_ptr = v) - { - Delegates.glMultiTexCoord3ivARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Int32*)v_ptr); - } - } - } - - public static - void MultiTexCoord3(OpenTK.OpenGL.Enums.ArbMultitexture target, ref Int32 v) - { - unsafe - { - fixed (Int32* v_ptr = &v) - { - Delegates.glMultiTexCoord3ivARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Int32*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void MultiTexCoord3(OpenTK.OpenGL.Enums.ArbMultitexture target, Int32* v) - { - Delegates.glMultiTexCoord3ivARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Int32*)v); - } - - public static - void MultiTexCoord3(OpenTK.OpenGL.Enums.ArbMultitexture target, Int16 s, Int16 t, Int16 r) - { - Delegates.glMultiTexCoord3sARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Int16)s, (Int16)t, (Int16)r); - } - - public static - void MultiTexCoord3(OpenTK.OpenGL.Enums.ArbMultitexture target, Int16[] v) - { - unsafe - { - fixed (Int16* v_ptr = v) - { - Delegates.glMultiTexCoord3svARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Int16*)v_ptr); - } - } - } - - public static - void MultiTexCoord3(OpenTK.OpenGL.Enums.ArbMultitexture target, ref Int16 v) - { - unsafe - { - fixed (Int16* v_ptr = &v) - { - Delegates.glMultiTexCoord3svARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Int16*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void MultiTexCoord3(OpenTK.OpenGL.Enums.ArbMultitexture target, Int16* v) - { - Delegates.glMultiTexCoord3svARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Int16*)v); - } - - public static - void MultiTexCoord4(OpenTK.OpenGL.Enums.ArbMultitexture target, Double s, Double t, Double r, Double q) - { - Delegates.glMultiTexCoord4dARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Double)s, (Double)t, (Double)r, (Double)q); - } - - public static - void MultiTexCoord4(OpenTK.OpenGL.Enums.ArbMultitexture target, Double[] v) - { - unsafe - { - fixed (Double* v_ptr = v) - { - Delegates.glMultiTexCoord4dvARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Double*)v_ptr); - } - } - } - - public static - void MultiTexCoord4(OpenTK.OpenGL.Enums.ArbMultitexture target, ref Double v) - { - unsafe - { - fixed (Double* v_ptr = &v) - { - Delegates.glMultiTexCoord4dvARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Double*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void MultiTexCoord4(OpenTK.OpenGL.Enums.ArbMultitexture target, Double* v) - { - Delegates.glMultiTexCoord4dvARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Double*)v); - } - - public static - void MultiTexCoord4(OpenTK.OpenGL.Enums.ArbMultitexture target, Single s, Single t, Single r, Single q) - { - Delegates.glMultiTexCoord4fARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Single)s, (Single)t, (Single)r, (Single)q); - } - - public static - void MultiTexCoord4(OpenTK.OpenGL.Enums.ArbMultitexture target, Single[] v) - { - unsafe - { - fixed (Single* v_ptr = v) - { - Delegates.glMultiTexCoord4fvARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Single*)v_ptr); - } - } - } - - public static - void MultiTexCoord4(OpenTK.OpenGL.Enums.ArbMultitexture target, ref Single v) - { - unsafe - { - fixed (Single* v_ptr = &v) - { - Delegates.glMultiTexCoord4fvARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void MultiTexCoord4(OpenTK.OpenGL.Enums.ArbMultitexture target, Single* v) - { - Delegates.glMultiTexCoord4fvARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Single*)v); - } - - public static - void MultiTexCoord4(OpenTK.OpenGL.Enums.ArbMultitexture target, Int32 s, Int32 t, Int32 r, Int32 q) - { - Delegates.glMultiTexCoord4iARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Int32)s, (Int32)t, (Int32)r, (Int32)q); - } - - public static - void MultiTexCoord4(OpenTK.OpenGL.Enums.ArbMultitexture target, Int32[] v) - { - unsafe - { - fixed (Int32* v_ptr = v) - { - Delegates.glMultiTexCoord4ivARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Int32*)v_ptr); - } - } - } - - public static - void MultiTexCoord4(OpenTK.OpenGL.Enums.ArbMultitexture target, ref Int32 v) - { - unsafe - { - fixed (Int32* v_ptr = &v) - { - Delegates.glMultiTexCoord4ivARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Int32*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void MultiTexCoord4(OpenTK.OpenGL.Enums.ArbMultitexture target, Int32* v) - { - Delegates.glMultiTexCoord4ivARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Int32*)v); - } - - public static - void MultiTexCoord4(OpenTK.OpenGL.Enums.ArbMultitexture target, Int16 s, Int16 t, Int16 r, Int16 q) - { - Delegates.glMultiTexCoord4sARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Int16)s, (Int16)t, (Int16)r, (Int16)q); - } - - public static - void MultiTexCoord4(OpenTK.OpenGL.Enums.ArbMultitexture target, Int16[] v) - { - unsafe - { - fixed (Int16* v_ptr = v) - { - Delegates.glMultiTexCoord4svARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Int16*)v_ptr); - } - } - } - - public static - void MultiTexCoord4(OpenTK.OpenGL.Enums.ArbMultitexture target, ref Int16 v) - { - unsafe - { - fixed (Int16* v_ptr = &v) - { - Delegates.glMultiTexCoord4svARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Int16*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void MultiTexCoord4(OpenTK.OpenGL.Enums.ArbMultitexture target, Int16* v) - { - Delegates.glMultiTexCoord4svARB((OpenTK.OpenGL.Enums.ArbMultitexture)target, (Int16*)v); - } - - public static - void LoadTransposeMatrix(Single[] m) - { - unsafe - { - fixed (Single* m_ptr = m) - { - Delegates.glLoadTransposeMatrixfARB((Single*)m_ptr); - } - } - } - - public static - void LoadTransposeMatrix(ref Single m) - { - unsafe - { - fixed (Single* m_ptr = &m) - { - Delegates.glLoadTransposeMatrixfARB((Single*)m_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void LoadTransposeMatrix(Single* m) - { - Delegates.glLoadTransposeMatrixfARB((Single*)m); - } - - public static - void LoadTransposeMatrix(Double[] m) - { - unsafe - { - fixed (Double* m_ptr = m) - { - Delegates.glLoadTransposeMatrixdARB((Double*)m_ptr); - } - } - } - - public static - void LoadTransposeMatrix(ref Double m) - { - unsafe - { - fixed (Double* m_ptr = &m) - { - Delegates.glLoadTransposeMatrixdARB((Double*)m_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void LoadTransposeMatrix(Double* m) - { - Delegates.glLoadTransposeMatrixdARB((Double*)m); - } - - public static - void MultTransposeMatrix(Single[] m) - { - unsafe - { - fixed (Single* m_ptr = m) - { - Delegates.glMultTransposeMatrixfARB((Single*)m_ptr); - } - } - } - - public static - void MultTransposeMatrix(ref Single m) - { - unsafe - { - fixed (Single* m_ptr = &m) - { - Delegates.glMultTransposeMatrixfARB((Single*)m_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void MultTransposeMatrix(Single* m) - { - Delegates.glMultTransposeMatrixfARB((Single*)m); - } - - public static - void MultTransposeMatrix(Double[] m) - { - unsafe - { - fixed (Double* m_ptr = m) - { - Delegates.glMultTransposeMatrixdARB((Double*)m_ptr); - } - } - } - - public static - void MultTransposeMatrix(ref Double m) - { - unsafe - { - fixed (Double* m_ptr = &m) - { - Delegates.glMultTransposeMatrixdARB((Double*)m_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void MultTransposeMatrix(Double* m) - { - Delegates.glMultTransposeMatrixdARB((Double*)m); - } - - public static - void SampleCoverage(Single value, bool invert) - { - Delegates.glSampleCoverageARB((Single)value, (bool)invert); - } - - public static - void CompressedTexImage3D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, IntPtr data) - { - unsafe - { - Delegates.glCompressedTexImage3DARB((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data); - } - } - - public static - void CompressedTexImage3D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [In, Out] object data) - { - unsafe - { - System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glCompressedTexImage3DARB((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); - } - finally - { - data_ptr.Free(); - } - } - } - - public static - void CompressedTexImage2D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, IntPtr data) - { - unsafe - { - Delegates.glCompressedTexImage2DARB((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data); - } - } - - public static - void CompressedTexImage2D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [In, Out] object data) - { - unsafe - { - System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glCompressedTexImage2DARB((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); - } - finally - { - data_ptr.Free(); - } - } - } - - public static - void CompressedTexImage1D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, IntPtr data) - { - unsafe - { - Delegates.glCompressedTexImage1DARB((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data); - } - } - - public static - void CompressedTexImage1D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [In, Out] object data) - { - unsafe - { - System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glCompressedTexImage1DARB((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); - } - finally - { - data_ptr.Free(); - } - } - } - - public static - void CompressedTexSubImage3D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.OpenGL.Enums.PixelFormat format, Int32 imageSize, IntPtr data) - { - unsafe - { - Delegates.glCompressedTexSubImage3DARB((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.OpenGL.Enums.PixelFormat)format, (Int32)imageSize, (IntPtr)data); - } - } - - public static - void CompressedTexSubImage3D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.OpenGL.Enums.PixelFormat format, Int32 imageSize, [In, Out] object data) - { - unsafe - { - System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glCompressedTexSubImage3DARB((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.OpenGL.Enums.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); - } - finally - { - data_ptr.Free(); - } - } - } - - public static - void CompressedTexSubImage2D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.OpenGL.Enums.PixelFormat format, Int32 imageSize, IntPtr data) - { - unsafe - { - Delegates.glCompressedTexSubImage2DARB((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.OpenGL.Enums.PixelFormat)format, (Int32)imageSize, (IntPtr)data); - } - } - - public static - void CompressedTexSubImage2D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.OpenGL.Enums.PixelFormat format, Int32 imageSize, [In, Out] object data) - { - unsafe - { - System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glCompressedTexSubImage2DARB((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.OpenGL.Enums.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); - } - finally - { - data_ptr.Free(); - } - } - } - - public static - void CompressedTexSubImage1D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, Int32 imageSize, IntPtr data) - { - unsafe - { - Delegates.glCompressedTexSubImage1DARB((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.OpenGL.Enums.PixelFormat)format, (Int32)imageSize, (IntPtr)data); - } - } - - public static - void CompressedTexSubImage1D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, Int32 imageSize, [In, Out] object data) - { - unsafe - { - System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glCompressedTexSubImage1DARB((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.OpenGL.Enums.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); - } - finally - { - data_ptr.Free(); - } - } - } - - public static - void GetCompressedTexImage(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, [Out] IntPtr img) - { - unsafe - { - Delegates.glGetCompressedTexImageARB((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (IntPtr)img); - } - } - - public static - void GetCompressedTexImage(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, [In, Out] object img) - { - unsafe - { - System.Runtime.InteropServices.GCHandle img_ptr = System.Runtime.InteropServices.GCHandle.Alloc(img, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glGetCompressedTexImageARB((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (IntPtr)img_ptr.AddrOfPinnedObject()); - } - finally - { - img_ptr.Free(); - } - } - } - - public static - void PointParameter(OpenTK.OpenGL.Enums.ArbPointParameters pname, Single param) - { - Delegates.glPointParameterfARB((OpenTK.OpenGL.Enums.ArbPointParameters)pname, (Single)param); - } - - public static - void PointParameterv(OpenTK.OpenGL.Enums.ArbPointParameters pname, Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glPointParameterfvARB((OpenTK.OpenGL.Enums.ArbPointParameters)pname, (Single*)@params_ptr); - } - } - } - - public static - void PointParameterv(OpenTK.OpenGL.Enums.ArbPointParameters pname, ref Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glPointParameterfvARB((OpenTK.OpenGL.Enums.ArbPointParameters)pname, (Single*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void PointParameterv(OpenTK.OpenGL.Enums.ArbPointParameters pname, Single* @params) - { - Delegates.glPointParameterfvARB((OpenTK.OpenGL.Enums.ArbPointParameters)pname, (Single*)@params); - } - - [System.CLSCompliant(false)] - public static - void Weight(Int32 size, SByte[] weights) - { - unsafe - { - fixed (SByte* weights_ptr = weights) - { - Delegates.glWeightbvARB((Int32)size, (SByte*)weights_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void Weight(Int32 size, ref SByte weights) - { - unsafe - { - fixed (SByte* weights_ptr = &weights) - { - Delegates.glWeightbvARB((Int32)size, (SByte*)weights_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Weight(Int32 size, SByte* weights) - { - Delegates.glWeightbvARB((Int32)size, (SByte*)weights); - } - - public static - void Weight(Int32 size, Single[] weights) - { - unsafe - { - fixed (Single* weights_ptr = weights) - { - Delegates.glWeightfvARB((Int32)size, (Single*)weights_ptr); - } - } - } - - public static - void Weight(Int32 size, ref Single weights) - { - unsafe - { - fixed (Single* weights_ptr = &weights) - { - Delegates.glWeightfvARB((Int32)size, (Single*)weights_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Weight(Int32 size, Single* weights) - { - Delegates.glWeightfvARB((Int32)size, (Single*)weights); - } - - public static - void Weight(Int32 size, Double[] weights) - { - unsafe - { - fixed (Double* weights_ptr = weights) - { - Delegates.glWeightdvARB((Int32)size, (Double*)weights_ptr); - } - } - } - - public static - void Weight(Int32 size, ref Double weights) - { - unsafe - { - fixed (Double* weights_ptr = &weights) - { - Delegates.glWeightdvARB((Int32)size, (Double*)weights_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Weight(Int32 size, Double* weights) - { - Delegates.glWeightdvARB((Int32)size, (Double*)weights); - } - - public static - void Weight(Int32 size, Byte[] weights) - { - unsafe - { - fixed (Byte* weights_ptr = weights) - { - Delegates.glWeightubvARB((Int32)size, (Byte*)weights_ptr); - } - } - } - - public static - void Weight(Int32 size, ref Byte weights) - { - unsafe - { - fixed (Byte* weights_ptr = &weights) - { - Delegates.glWeightubvARB((Int32)size, (Byte*)weights_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Weight(Int32 size, Byte* weights) - { - Delegates.glWeightubvARB((Int32)size, (Byte*)weights); - } - - [System.CLSCompliant(false)] - public static - void Weight(Int32 size, UInt16[] weights) - { - unsafe - { - fixed (UInt16* weights_ptr = weights) - { - Delegates.glWeightusvARB((Int32)size, (UInt16*)weights_ptr); - } - } - } - - public static - void Weight(Int32 size, Int16[] weights) - { - unsafe - { - fixed (Int16* weights_ptr = weights) - { - Delegates.glWeightusvARB((Int32)size, (UInt16*)weights_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void Weight(Int32 size, ref UInt16 weights) - { - unsafe - { - fixed (UInt16* weights_ptr = &weights) - { - Delegates.glWeightusvARB((Int32)size, (UInt16*)weights_ptr); - } - } - } - - public static - void Weight(Int32 size, ref Int16 weights) - { - unsafe - { - fixed (Int16* weights_ptr = &weights) - { - Delegates.glWeightusvARB((Int32)size, (UInt16*)weights_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Weight(Int32 size, UInt16* weights) - { - Delegates.glWeightusvARB((Int32)size, (UInt16*)weights); - } - - [System.CLSCompliant(false)] - public static - unsafe void Weight(Int32 size, Int16* weights) - { - Delegates.glWeightusvARB((Int32)size, (UInt16*)weights); - } - - [System.CLSCompliant(false)] - public static - void Weight(Int32 size, UInt32[] weights) - { - unsafe - { - fixed (UInt32* weights_ptr = weights) - { - Delegates.glWeightuivARB((Int32)size, (UInt32*)weights_ptr); - } - } - } - - public static - void Weight(Int32 size, Int32[] weights) - { - unsafe - { - fixed (Int32* weights_ptr = weights) - { - Delegates.glWeightuivARB((Int32)size, (UInt32*)weights_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void Weight(Int32 size, ref UInt32 weights) - { - unsafe - { - fixed (UInt32* weights_ptr = &weights) - { - Delegates.glWeightuivARB((Int32)size, (UInt32*)weights_ptr); - } - } - } - - public static - void Weight(Int32 size, ref Int32 weights) - { - unsafe - { - fixed (Int32* weights_ptr = &weights) - { - Delegates.glWeightuivARB((Int32)size, (UInt32*)weights_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Weight(Int32 size, UInt32* weights) - { - Delegates.glWeightuivARB((Int32)size, (UInt32*)weights); - } - - [System.CLSCompliant(false)] - public static - unsafe void Weight(Int32 size, Int32* weights) - { - Delegates.glWeightuivARB((Int32)size, (UInt32*)weights); - } - - public static - void WeightPointer(Int32 size, OpenTK.OpenGL.Enums.ArbVertexBlend type, Int32 stride, IntPtr pointer) - { - unsafe - { - Delegates.glWeightPointerARB((Int32)size, (OpenTK.OpenGL.Enums.ArbVertexBlend)type, (Int32)stride, (IntPtr)pointer); - } - } - - public static - void WeightPointer(Int32 size, OpenTK.OpenGL.Enums.ArbVertexBlend type, Int32 stride, [In, Out] object pointer) - { - unsafe - { - System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glWeightPointerARB((Int32)size, (OpenTK.OpenGL.Enums.ArbVertexBlend)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); - } - finally - { - pointer_ptr.Free(); - } - } - } - - public static - void VertexBlend(Int32 count) - { - Delegates.glVertexBlendARB((Int32)count); - } - - public static - void CurrentPaletteMatrix(Int32 index) - { - Delegates.glCurrentPaletteMatrixARB((Int32)index); - } - - public static - void MatrixIndex(Int32 size, Byte[] indices) - { - unsafe - { - fixed (Byte* indices_ptr = indices) - { - Delegates.glMatrixIndexubvARB((Int32)size, (Byte*)indices_ptr); - } - } - } - - public static - void MatrixIndex(Int32 size, ref Byte indices) - { - unsafe - { - fixed (Byte* indices_ptr = &indices) - { - Delegates.glMatrixIndexubvARB((Int32)size, (Byte*)indices_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void MatrixIndex(Int32 size, Byte* indices) - { - Delegates.glMatrixIndexubvARB((Int32)size, (Byte*)indices); - } - - [System.CLSCompliant(false)] - public static - void MatrixIndex(Int32 size, UInt16[] indices) - { - unsafe - { - fixed (UInt16* indices_ptr = indices) - { - Delegates.glMatrixIndexusvARB((Int32)size, (UInt16*)indices_ptr); - } - } - } - - public static - void MatrixIndex(Int32 size, Int16[] indices) - { - unsafe - { - fixed (Int16* indices_ptr = indices) - { - Delegates.glMatrixIndexusvARB((Int32)size, (UInt16*)indices_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void MatrixIndex(Int32 size, ref UInt16 indices) - { - unsafe - { - fixed (UInt16* indices_ptr = &indices) - { - Delegates.glMatrixIndexusvARB((Int32)size, (UInt16*)indices_ptr); - } - } - } - - public static - void MatrixIndex(Int32 size, ref Int16 indices) - { - unsafe - { - fixed (Int16* indices_ptr = &indices) - { - Delegates.glMatrixIndexusvARB((Int32)size, (UInt16*)indices_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void MatrixIndex(Int32 size, UInt16* indices) - { - Delegates.glMatrixIndexusvARB((Int32)size, (UInt16*)indices); - } - - [System.CLSCompliant(false)] - public static - unsafe void MatrixIndex(Int32 size, Int16* indices) - { - Delegates.glMatrixIndexusvARB((Int32)size, (UInt16*)indices); - } - - [System.CLSCompliant(false)] - public static - void MatrixIndex(Int32 size, UInt32[] indices) - { - unsafe - { - fixed (UInt32* indices_ptr = indices) - { - Delegates.glMatrixIndexuivARB((Int32)size, (UInt32*)indices_ptr); - } - } - } - - public static - void MatrixIndex(Int32 size, Int32[] indices) - { - unsafe - { - fixed (Int32* indices_ptr = indices) - { - Delegates.glMatrixIndexuivARB((Int32)size, (UInt32*)indices_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void MatrixIndex(Int32 size, ref UInt32 indices) - { - unsafe - { - fixed (UInt32* indices_ptr = &indices) - { - Delegates.glMatrixIndexuivARB((Int32)size, (UInt32*)indices_ptr); - } - } - } - - public static - void MatrixIndex(Int32 size, ref Int32 indices) - { - unsafe - { - fixed (Int32* indices_ptr = &indices) - { - Delegates.glMatrixIndexuivARB((Int32)size, (UInt32*)indices_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void MatrixIndex(Int32 size, UInt32* indices) - { - Delegates.glMatrixIndexuivARB((Int32)size, (UInt32*)indices); - } - - [System.CLSCompliant(false)] - public static - unsafe void MatrixIndex(Int32 size, Int32* indices) - { - Delegates.glMatrixIndexuivARB((Int32)size, (UInt32*)indices); - } - - public static - void MatrixIndexPointer(Int32 size, OpenTK.OpenGL.Enums.ArbMatrixPalette type, Int32 stride, IntPtr pointer) - { - unsafe - { - Delegates.glMatrixIndexPointerARB((Int32)size, (OpenTK.OpenGL.Enums.ArbMatrixPalette)type, (Int32)stride, (IntPtr)pointer); - } - } - - public static - void MatrixIndexPointer(Int32 size, OpenTK.OpenGL.Enums.ArbMatrixPalette type, Int32 stride, [In, Out] object pointer) - { - unsafe - { - System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glMatrixIndexPointerARB((Int32)size, (OpenTK.OpenGL.Enums.ArbMatrixPalette)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); - } - finally - { - pointer_ptr.Free(); - } - } - } - - public static - void WindowPos2(Double x, Double y) - { - Delegates.glWindowPos2dARB((Double)x, (Double)y); - } - - public static - void WindowPos2(Double[] v) - { - unsafe - { - fixed (Double* v_ptr = v) - { - Delegates.glWindowPos2dvARB((Double*)v_ptr); - } - } - } - - public static - void WindowPos2(ref Double v) - { - unsafe - { - fixed (Double* v_ptr = &v) - { - Delegates.glWindowPos2dvARB((Double*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void WindowPos2(Double* v) - { - Delegates.glWindowPos2dvARB((Double*)v); - } - - public static - void WindowPos2(Single x, Single y) - { - Delegates.glWindowPos2fARB((Single)x, (Single)y); - } - - public static - void WindowPos2(Single[] v) - { - unsafe - { - fixed (Single* v_ptr = v) - { - Delegates.glWindowPos2fvARB((Single*)v_ptr); - } - } - } - - public static - void WindowPos2(ref Single v) - { - unsafe - { - fixed (Single* v_ptr = &v) - { - Delegates.glWindowPos2fvARB((Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void WindowPos2(Single* v) - { - Delegates.glWindowPos2fvARB((Single*)v); - } - - public static - void WindowPos2(Int32 x, Int32 y) - { - Delegates.glWindowPos2iARB((Int32)x, (Int32)y); - } - - public static - void WindowPos2(Int32[] v) - { - unsafe - { - fixed (Int32* v_ptr = v) - { - Delegates.glWindowPos2ivARB((Int32*)v_ptr); - } - } - } - - public static - void WindowPos2(ref Int32 v) - { - unsafe - { - fixed (Int32* v_ptr = &v) - { - Delegates.glWindowPos2ivARB((Int32*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void WindowPos2(Int32* v) - { - Delegates.glWindowPos2ivARB((Int32*)v); - } - - public static - void WindowPos2(Int16 x, Int16 y) - { - Delegates.glWindowPos2sARB((Int16)x, (Int16)y); - } - - public static - void WindowPos2(Int16[] v) - { - unsafe - { - fixed (Int16* v_ptr = v) - { - Delegates.glWindowPos2svARB((Int16*)v_ptr); - } - } - } - - public static - void WindowPos2(ref Int16 v) - { - unsafe - { - fixed (Int16* v_ptr = &v) - { - Delegates.glWindowPos2svARB((Int16*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void WindowPos2(Int16* v) - { - Delegates.glWindowPos2svARB((Int16*)v); - } - - public static - void WindowPos3(Double x, Double y, Double z) - { - Delegates.glWindowPos3dARB((Double)x, (Double)y, (Double)z); - } - - public static - void WindowPos3(Double[] v) - { - unsafe - { - fixed (Double* v_ptr = v) - { - Delegates.glWindowPos3dvARB((Double*)v_ptr); - } - } - } - - public static - void WindowPos3(ref Double v) - { - unsafe - { - fixed (Double* v_ptr = &v) - { - Delegates.glWindowPos3dvARB((Double*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void WindowPos3(Double* v) - { - Delegates.glWindowPos3dvARB((Double*)v); - } - - public static - void WindowPos3(Single x, Single y, Single z) - { - Delegates.glWindowPos3fARB((Single)x, (Single)y, (Single)z); - } - - public static - void WindowPos3(Single[] v) - { - unsafe - { - fixed (Single* v_ptr = v) - { - Delegates.glWindowPos3fvARB((Single*)v_ptr); - } - } - } - - public static - void WindowPos3(ref Single v) - { - unsafe - { - fixed (Single* v_ptr = &v) - { - Delegates.glWindowPos3fvARB((Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void WindowPos3(Single* v) - { - Delegates.glWindowPos3fvARB((Single*)v); - } - - public static - void WindowPos3(Int32 x, Int32 y, Int32 z) - { - Delegates.glWindowPos3iARB((Int32)x, (Int32)y, (Int32)z); - } - - public static - void WindowPos3(Int32[] v) - { - unsafe - { - fixed (Int32* v_ptr = v) - { - Delegates.glWindowPos3ivARB((Int32*)v_ptr); - } - } - } - - public static - void WindowPos3(ref Int32 v) - { - unsafe - { - fixed (Int32* v_ptr = &v) - { - Delegates.glWindowPos3ivARB((Int32*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void WindowPos3(Int32* v) - { - Delegates.glWindowPos3ivARB((Int32*)v); - } - - public static - void WindowPos3(Int16 x, Int16 y, Int16 z) - { - Delegates.glWindowPos3sARB((Int16)x, (Int16)y, (Int16)z); - } - - public static - void WindowPos3(Int16[] v) - { - unsafe - { - fixed (Int16* v_ptr = v) - { - Delegates.glWindowPos3svARB((Int16*)v_ptr); - } - } - } - - public static - void WindowPos3(ref Int16 v) - { - unsafe - { - fixed (Int16* v_ptr = &v) - { - Delegates.glWindowPos3svARB((Int16*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void WindowPos3(Int16* v) - { - Delegates.glWindowPos3svARB((Int16*)v); - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib1(UInt32 index, Double x) - { - Delegates.glVertexAttrib1dARB((UInt32)index, (Double)x); - } - - public static - void VertexAttrib1(Int32 index, Double x) - { - Delegates.glVertexAttrib1dARB((UInt32)index, (Double)x); - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib1v(UInt32 index, Double[] v) - { - unsafe - { - fixed (Double* v_ptr = v) - { - Delegates.glVertexAttrib1dvARB((UInt32)index, (Double*)v_ptr); - } - } - } - - public static - void VertexAttrib1v(Int32 index, Double[] v) - { - unsafe - { - fixed (Double* v_ptr = v) - { - Delegates.glVertexAttrib1dvARB((UInt32)index, (Double*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib1v(UInt32 index, ref Double v) - { - unsafe - { - fixed (Double* v_ptr = &v) - { - Delegates.glVertexAttrib1dvARB((UInt32)index, (Double*)v_ptr); - } - } - } - - public static - void VertexAttrib1v(Int32 index, ref Double v) - { - unsafe - { - fixed (Double* v_ptr = &v) - { - Delegates.glVertexAttrib1dvARB((UInt32)index, (Double*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib1v(UInt32 index, Double* v) - { - Delegates.glVertexAttrib1dvARB((UInt32)index, (Double*)v); - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib1v(Int32 index, Double* v) - { - Delegates.glVertexAttrib1dvARB((UInt32)index, (Double*)v); - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib1(UInt32 index, Single x) - { - Delegates.glVertexAttrib1fARB((UInt32)index, (Single)x); - } - - public static - void VertexAttrib1(Int32 index, Single x) - { - Delegates.glVertexAttrib1fARB((UInt32)index, (Single)x); - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib1v(UInt32 index, Single[] v) - { - unsafe - { - fixed (Single* v_ptr = v) - { - Delegates.glVertexAttrib1fvARB((UInt32)index, (Single*)v_ptr); - } - } - } - - public static - void VertexAttrib1v(Int32 index, Single[] v) - { - unsafe - { - fixed (Single* v_ptr = v) - { - Delegates.glVertexAttrib1fvARB((UInt32)index, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib1v(UInt32 index, ref Single v) - { - unsafe - { - fixed (Single* v_ptr = &v) - { - Delegates.glVertexAttrib1fvARB((UInt32)index, (Single*)v_ptr); - } - } - } - - public static - void VertexAttrib1v(Int32 index, ref Single v) - { - unsafe - { - fixed (Single* v_ptr = &v) - { - Delegates.glVertexAttrib1fvARB((UInt32)index, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib1v(UInt32 index, Single* v) - { - Delegates.glVertexAttrib1fvARB((UInt32)index, (Single*)v); - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib1v(Int32 index, Single* v) - { - Delegates.glVertexAttrib1fvARB((UInt32)index, (Single*)v); - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib1(UInt32 index, Int16 x) - { - Delegates.glVertexAttrib1sARB((UInt32)index, (Int16)x); - } - - public static - void VertexAttrib1(Int32 index, Int16 x) - { - Delegates.glVertexAttrib1sARB((UInt32)index, (Int16)x); - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib1v(UInt32 index, Int16[] v) - { - unsafe - { - fixed (Int16* v_ptr = v) - { - Delegates.glVertexAttrib1svARB((UInt32)index, (Int16*)v_ptr); - } - } - } - - public static - void VertexAttrib1v(Int32 index, Int16[] v) - { - unsafe - { - fixed (Int16* v_ptr = v) - { - Delegates.glVertexAttrib1svARB((UInt32)index, (Int16*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib1v(UInt32 index, ref Int16 v) - { - unsafe - { - fixed (Int16* v_ptr = &v) - { - Delegates.glVertexAttrib1svARB((UInt32)index, (Int16*)v_ptr); - } - } - } - - public static - void VertexAttrib1v(Int32 index, ref Int16 v) - { - unsafe - { - fixed (Int16* v_ptr = &v) - { - Delegates.glVertexAttrib1svARB((UInt32)index, (Int16*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib1v(UInt32 index, Int16* v) - { - Delegates.glVertexAttrib1svARB((UInt32)index, (Int16*)v); - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib1v(Int32 index, Int16* v) - { - Delegates.glVertexAttrib1svARB((UInt32)index, (Int16*)v); - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib2(UInt32 index, Double x, Double y) - { - Delegates.glVertexAttrib2dARB((UInt32)index, (Double)x, (Double)y); - } - - public static - void VertexAttrib2(Int32 index, Double x, Double y) - { - Delegates.glVertexAttrib2dARB((UInt32)index, (Double)x, (Double)y); - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib2(UInt32 index, Double[] v) - { - unsafe - { - fixed (Double* v_ptr = v) - { - Delegates.glVertexAttrib2dvARB((UInt32)index, (Double*)v_ptr); - } - } - } - - public static - void VertexAttrib2(Int32 index, Double[] v) - { - unsafe - { - fixed (Double* v_ptr = v) - { - Delegates.glVertexAttrib2dvARB((UInt32)index, (Double*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib2(UInt32 index, ref Double v) - { - unsafe - { - fixed (Double* v_ptr = &v) - { - Delegates.glVertexAttrib2dvARB((UInt32)index, (Double*)v_ptr); - } - } - } - - public static - void VertexAttrib2(Int32 index, ref Double v) - { - unsafe - { - fixed (Double* v_ptr = &v) - { - Delegates.glVertexAttrib2dvARB((UInt32)index, (Double*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib2(UInt32 index, Double* v) - { - Delegates.glVertexAttrib2dvARB((UInt32)index, (Double*)v); - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib2(Int32 index, Double* v) - { - Delegates.glVertexAttrib2dvARB((UInt32)index, (Double*)v); - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib2(UInt32 index, Single x, Single y) - { - Delegates.glVertexAttrib2fARB((UInt32)index, (Single)x, (Single)y); - } - - public static - void VertexAttrib2(Int32 index, Single x, Single y) - { - Delegates.glVertexAttrib2fARB((UInt32)index, (Single)x, (Single)y); - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib2(UInt32 index, Single[] v) - { - unsafe - { - fixed (Single* v_ptr = v) - { - Delegates.glVertexAttrib2fvARB((UInt32)index, (Single*)v_ptr); - } - } - } - - public static - void VertexAttrib2(Int32 index, Single[] v) - { - unsafe - { - fixed (Single* v_ptr = v) - { - Delegates.glVertexAttrib2fvARB((UInt32)index, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib2(UInt32 index, ref Single v) - { - unsafe - { - fixed (Single* v_ptr = &v) - { - Delegates.glVertexAttrib2fvARB((UInt32)index, (Single*)v_ptr); - } - } - } - - public static - void VertexAttrib2(Int32 index, ref Single v) - { - unsafe - { - fixed (Single* v_ptr = &v) - { - Delegates.glVertexAttrib2fvARB((UInt32)index, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib2(UInt32 index, Single* v) - { - Delegates.glVertexAttrib2fvARB((UInt32)index, (Single*)v); - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib2(Int32 index, Single* v) - { - Delegates.glVertexAttrib2fvARB((UInt32)index, (Single*)v); - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib2(UInt32 index, Int16 x, Int16 y) - { - Delegates.glVertexAttrib2sARB((UInt32)index, (Int16)x, (Int16)y); - } - - public static - void VertexAttrib2(Int32 index, Int16 x, Int16 y) - { - Delegates.glVertexAttrib2sARB((UInt32)index, (Int16)x, (Int16)y); - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib2(UInt32 index, Int16[] v) - { - unsafe - { - fixed (Int16* v_ptr = v) - { - Delegates.glVertexAttrib2svARB((UInt32)index, (Int16*)v_ptr); - } - } - } - - public static - void VertexAttrib2(Int32 index, Int16[] v) - { - unsafe - { - fixed (Int16* v_ptr = v) - { - Delegates.glVertexAttrib2svARB((UInt32)index, (Int16*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib2(UInt32 index, ref Int16 v) - { - unsafe - { - fixed (Int16* v_ptr = &v) - { - Delegates.glVertexAttrib2svARB((UInt32)index, (Int16*)v_ptr); - } - } - } - - public static - void VertexAttrib2(Int32 index, ref Int16 v) - { - unsafe - { - fixed (Int16* v_ptr = &v) - { - Delegates.glVertexAttrib2svARB((UInt32)index, (Int16*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib2(UInt32 index, Int16* v) - { - Delegates.glVertexAttrib2svARB((UInt32)index, (Int16*)v); - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib2(Int32 index, Int16* v) - { - Delegates.glVertexAttrib2svARB((UInt32)index, (Int16*)v); - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib3(UInt32 index, Double x, Double y, Double z) - { - Delegates.glVertexAttrib3dARB((UInt32)index, (Double)x, (Double)y, (Double)z); - } - - public static - void VertexAttrib3(Int32 index, Double x, Double y, Double z) - { - Delegates.glVertexAttrib3dARB((UInt32)index, (Double)x, (Double)y, (Double)z); - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib3(UInt32 index, Double[] v) - { - unsafe - { - fixed (Double* v_ptr = v) - { - Delegates.glVertexAttrib3dvARB((UInt32)index, (Double*)v_ptr); - } - } - } - - public static - void VertexAttrib3(Int32 index, Double[] v) - { - unsafe - { - fixed (Double* v_ptr = v) - { - Delegates.glVertexAttrib3dvARB((UInt32)index, (Double*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib3(UInt32 index, ref Double v) - { - unsafe - { - fixed (Double* v_ptr = &v) - { - Delegates.glVertexAttrib3dvARB((UInt32)index, (Double*)v_ptr); - } - } - } - - public static - void VertexAttrib3(Int32 index, ref Double v) - { - unsafe - { - fixed (Double* v_ptr = &v) - { - Delegates.glVertexAttrib3dvARB((UInt32)index, (Double*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib3(UInt32 index, Double* v) - { - Delegates.glVertexAttrib3dvARB((UInt32)index, (Double*)v); - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib3(Int32 index, Double* v) - { - Delegates.glVertexAttrib3dvARB((UInt32)index, (Double*)v); - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib3(UInt32 index, Single x, Single y, Single z) - { - Delegates.glVertexAttrib3fARB((UInt32)index, (Single)x, (Single)y, (Single)z); - } - - public static - void VertexAttrib3(Int32 index, Single x, Single y, Single z) - { - Delegates.glVertexAttrib3fARB((UInt32)index, (Single)x, (Single)y, (Single)z); - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib3(UInt32 index, Single[] v) - { - unsafe - { - fixed (Single* v_ptr = v) - { - Delegates.glVertexAttrib3fvARB((UInt32)index, (Single*)v_ptr); - } - } - } - - public static - void VertexAttrib3(Int32 index, Single[] v) - { - unsafe - { - fixed (Single* v_ptr = v) - { - Delegates.glVertexAttrib3fvARB((UInt32)index, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib3(UInt32 index, ref Single v) - { - unsafe - { - fixed (Single* v_ptr = &v) - { - Delegates.glVertexAttrib3fvARB((UInt32)index, (Single*)v_ptr); - } - } - } - - public static - void VertexAttrib3(Int32 index, ref Single v) - { - unsafe - { - fixed (Single* v_ptr = &v) - { - Delegates.glVertexAttrib3fvARB((UInt32)index, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib3(UInt32 index, Single* v) - { - Delegates.glVertexAttrib3fvARB((UInt32)index, (Single*)v); - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib3(Int32 index, Single* v) - { - Delegates.glVertexAttrib3fvARB((UInt32)index, (Single*)v); - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib3(UInt32 index, Int16 x, Int16 y, Int16 z) - { - Delegates.glVertexAttrib3sARB((UInt32)index, (Int16)x, (Int16)y, (Int16)z); - } - - public static - void VertexAttrib3(Int32 index, Int16 x, Int16 y, Int16 z) - { - Delegates.glVertexAttrib3sARB((UInt32)index, (Int16)x, (Int16)y, (Int16)z); - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib3(UInt32 index, Int16[] v) - { - unsafe - { - fixed (Int16* v_ptr = v) - { - Delegates.glVertexAttrib3svARB((UInt32)index, (Int16*)v_ptr); - } - } - } - - public static - void VertexAttrib3(Int32 index, Int16[] v) - { - unsafe - { - fixed (Int16* v_ptr = v) - { - Delegates.glVertexAttrib3svARB((UInt32)index, (Int16*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib3(UInt32 index, ref Int16 v) - { - unsafe - { - fixed (Int16* v_ptr = &v) - { - Delegates.glVertexAttrib3svARB((UInt32)index, (Int16*)v_ptr); - } - } - } - - public static - void VertexAttrib3(Int32 index, ref Int16 v) - { - unsafe - { - fixed (Int16* v_ptr = &v) - { - Delegates.glVertexAttrib3svARB((UInt32)index, (Int16*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib3(UInt32 index, Int16* v) - { - Delegates.glVertexAttrib3svARB((UInt32)index, (Int16*)v); - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib3(Int32 index, Int16* v) - { - Delegates.glVertexAttrib3svARB((UInt32)index, (Int16*)v); - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib4N(UInt32 index, SByte[] v) - { - unsafe - { - fixed (SByte* v_ptr = v) - { - Delegates.glVertexAttrib4NbvARB((UInt32)index, (SByte*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib4N(UInt32 index, ref SByte v) - { - unsafe - { - fixed (SByte* v_ptr = &v) - { - Delegates.glVertexAttrib4NbvARB((UInt32)index, (SByte*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib4N(UInt32 index, SByte* v) - { - Delegates.glVertexAttrib4NbvARB((UInt32)index, (SByte*)v); - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib4N(UInt32 index, Int32[] v) - { - unsafe - { - fixed (Int32* v_ptr = v) - { - Delegates.glVertexAttrib4NivARB((UInt32)index, (Int32*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib4N(UInt32 index, ref Int32 v) - { - unsafe - { - fixed (Int32* v_ptr = &v) - { - Delegates.glVertexAttrib4NivARB((UInt32)index, (Int32*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib4N(UInt32 index, Int32* v) - { - Delegates.glVertexAttrib4NivARB((UInt32)index, (Int32*)v); - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib4N(UInt32 index, Int16[] v) - { - unsafe - { - fixed (Int16* v_ptr = v) - { - Delegates.glVertexAttrib4NsvARB((UInt32)index, (Int16*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib4N(UInt32 index, ref Int16 v) - { - unsafe - { - fixed (Int16* v_ptr = &v) - { - Delegates.glVertexAttrib4NsvARB((UInt32)index, (Int16*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib4N(UInt32 index, Int16* v) - { - Delegates.glVertexAttrib4NsvARB((UInt32)index, (Int16*)v); - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib4N(UInt32 index, Byte x, Byte y, Byte z, Byte w) - { - Delegates.glVertexAttrib4NubARB((UInt32)index, (Byte)x, (Byte)y, (Byte)z, (Byte)w); - } - - public static - void VertexAttrib4N(Int32 index, Byte x, Byte y, Byte z, Byte w) - { - Delegates.glVertexAttrib4NubARB((UInt32)index, (Byte)x, (Byte)y, (Byte)z, (Byte)w); - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib4N(UInt32 index, Byte[] v) - { - unsafe - { - fixed (Byte* v_ptr = v) - { - Delegates.glVertexAttrib4NubvARB((UInt32)index, (Byte*)v_ptr); - } - } - } - - public static - void VertexAttrib4N(Int32 index, Byte[] v) - { - unsafe - { - fixed (Byte* v_ptr = v) - { - Delegates.glVertexAttrib4NubvARB((UInt32)index, (Byte*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib4N(UInt32 index, ref Byte v) - { - unsafe - { - fixed (Byte* v_ptr = &v) - { - Delegates.glVertexAttrib4NubvARB((UInt32)index, (Byte*)v_ptr); - } - } - } - - public static - void VertexAttrib4N(Int32 index, ref Byte v) - { - unsafe - { - fixed (Byte* v_ptr = &v) - { - Delegates.glVertexAttrib4NubvARB((UInt32)index, (Byte*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib4N(UInt32 index, Byte* v) - { - Delegates.glVertexAttrib4NubvARB((UInt32)index, (Byte*)v); - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib4N(Int32 index, Byte* v) - { - Delegates.glVertexAttrib4NubvARB((UInt32)index, (Byte*)v); - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib4N(UInt32 index, UInt32[] v) - { - unsafe - { - fixed (UInt32* v_ptr = v) - { - Delegates.glVertexAttrib4NuivARB((UInt32)index, (UInt32*)v_ptr); - } - } - } - - public static - void VertexAttrib4N(Int32 index, Int32[] v) - { - unsafe - { - fixed (Int32* v_ptr = v) - { - Delegates.glVertexAttrib4NuivARB((UInt32)index, (UInt32*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib4N(UInt32 index, ref UInt32 v) - { - unsafe - { - fixed (UInt32* v_ptr = &v) - { - Delegates.glVertexAttrib4NuivARB((UInt32)index, (UInt32*)v_ptr); - } - } - } - - public static - void VertexAttrib4N(Int32 index, ref Int32 v) - { - unsafe - { - fixed (Int32* v_ptr = &v) - { - Delegates.glVertexAttrib4NuivARB((UInt32)index, (UInt32*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib4N(UInt32 index, UInt32* v) - { - Delegates.glVertexAttrib4NuivARB((UInt32)index, (UInt32*)v); - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib4N(Int32 index, Int32* v) - { - Delegates.glVertexAttrib4NuivARB((UInt32)index, (UInt32*)v); - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib4N(UInt32 index, UInt16[] v) - { - unsafe - { - fixed (UInt16* v_ptr = v) - { - Delegates.glVertexAttrib4NusvARB((UInt32)index, (UInt16*)v_ptr); - } - } - } - - public static - void VertexAttrib4N(Int32 index, Int16[] v) - { - unsafe - { - fixed (Int16* v_ptr = v) - { - Delegates.glVertexAttrib4NusvARB((UInt32)index, (UInt16*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib4N(UInt32 index, ref UInt16 v) - { - unsafe - { - fixed (UInt16* v_ptr = &v) - { - Delegates.glVertexAttrib4NusvARB((UInt32)index, (UInt16*)v_ptr); - } - } - } - - public static - void VertexAttrib4N(Int32 index, ref Int16 v) - { - unsafe - { - fixed (Int16* v_ptr = &v) - { - Delegates.glVertexAttrib4NusvARB((UInt32)index, (UInt16*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib4N(UInt32 index, UInt16* v) - { - Delegates.glVertexAttrib4NusvARB((UInt32)index, (UInt16*)v); - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib4N(Int32 index, Int16* v) - { - Delegates.glVertexAttrib4NusvARB((UInt32)index, (UInt16*)v); - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib4(UInt32 index, SByte[] v) - { - unsafe - { - fixed (SByte* v_ptr = v) - { - Delegates.glVertexAttrib4bvARB((UInt32)index, (SByte*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib4(UInt32 index, ref SByte v) - { - unsafe - { - fixed (SByte* v_ptr = &v) - { - Delegates.glVertexAttrib4bvARB((UInt32)index, (SByte*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib4(UInt32 index, SByte* v) - { - Delegates.glVertexAttrib4bvARB((UInt32)index, (SByte*)v); - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib4(UInt32 index, Double x, Double y, Double z, Double w) - { - Delegates.glVertexAttrib4dARB((UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); - } - - public static - void VertexAttrib4(Int32 index, Double x, Double y, Double z, Double w) - { - Delegates.glVertexAttrib4dARB((UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib4(UInt32 index, Double[] v) - { - unsafe - { - fixed (Double* v_ptr = v) - { - Delegates.glVertexAttrib4dvARB((UInt32)index, (Double*)v_ptr); - } - } - } - - public static - void VertexAttrib4(Int32 index, Double[] v) - { - unsafe - { - fixed (Double* v_ptr = v) - { - Delegates.glVertexAttrib4dvARB((UInt32)index, (Double*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib4(UInt32 index, ref Double v) - { - unsafe - { - fixed (Double* v_ptr = &v) - { - Delegates.glVertexAttrib4dvARB((UInt32)index, (Double*)v_ptr); - } - } - } - - public static - void VertexAttrib4(Int32 index, ref Double v) - { - unsafe - { - fixed (Double* v_ptr = &v) - { - Delegates.glVertexAttrib4dvARB((UInt32)index, (Double*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib4(UInt32 index, Double* v) - { - Delegates.glVertexAttrib4dvARB((UInt32)index, (Double*)v); - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib4(Int32 index, Double* v) - { - Delegates.glVertexAttrib4dvARB((UInt32)index, (Double*)v); - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib4(UInt32 index, Single x, Single y, Single z, Single w) - { - Delegates.glVertexAttrib4fARB((UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); - } - - public static - void VertexAttrib4(Int32 index, Single x, Single y, Single z, Single w) - { - Delegates.glVertexAttrib4fARB((UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib4(UInt32 index, Single[] v) - { - unsafe - { - fixed (Single* v_ptr = v) - { - Delegates.glVertexAttrib4fvARB((UInt32)index, (Single*)v_ptr); - } - } - } - - public static - void VertexAttrib4(Int32 index, Single[] v) - { - unsafe - { - fixed (Single* v_ptr = v) - { - Delegates.glVertexAttrib4fvARB((UInt32)index, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib4(UInt32 index, ref Single v) - { - unsafe - { - fixed (Single* v_ptr = &v) - { - Delegates.glVertexAttrib4fvARB((UInt32)index, (Single*)v_ptr); - } - } - } - - public static - void VertexAttrib4(Int32 index, ref Single v) - { - unsafe - { - fixed (Single* v_ptr = &v) - { - Delegates.glVertexAttrib4fvARB((UInt32)index, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib4(UInt32 index, Single* v) - { - Delegates.glVertexAttrib4fvARB((UInt32)index, (Single*)v); - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib4(Int32 index, Single* v) - { - Delegates.glVertexAttrib4fvARB((UInt32)index, (Single*)v); - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib4(UInt32 index, Int32[] v) - { - unsafe - { - fixed (Int32* v_ptr = v) - { - Delegates.glVertexAttrib4ivARB((UInt32)index, (Int32*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib4(UInt32 index, ref Int32 v) - { - unsafe - { - fixed (Int32* v_ptr = &v) - { - Delegates.glVertexAttrib4ivARB((UInt32)index, (Int32*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib4(UInt32 index, Int32* v) - { - Delegates.glVertexAttrib4ivARB((UInt32)index, (Int32*)v); - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib4(UInt32 index, Int16 x, Int16 y, Int16 z, Int16 w) - { - Delegates.glVertexAttrib4sARB((UInt32)index, (Int16)x, (Int16)y, (Int16)z, (Int16)w); - } - - public static - void VertexAttrib4(Int32 index, Int16 x, Int16 y, Int16 z, Int16 w) - { - Delegates.glVertexAttrib4sARB((UInt32)index, (Int16)x, (Int16)y, (Int16)z, (Int16)w); - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib4(UInt32 index, Int16[] v) - { - unsafe - { - fixed (Int16* v_ptr = v) - { - Delegates.glVertexAttrib4svARB((UInt32)index, (Int16*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib4(UInt32 index, ref Int16 v) - { - unsafe - { - fixed (Int16* v_ptr = &v) - { - Delegates.glVertexAttrib4svARB((UInt32)index, (Int16*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib4(UInt32 index, Int16* v) - { - Delegates.glVertexAttrib4svARB((UInt32)index, (Int16*)v); - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib4(UInt32 index, Byte[] v) - { - unsafe - { - fixed (Byte* v_ptr = v) - { - Delegates.glVertexAttrib4ubvARB((UInt32)index, (Byte*)v_ptr); - } - } - } - - public static - void VertexAttrib4(Int32 index, Byte[] v) - { - unsafe - { - fixed (Byte* v_ptr = v) - { - Delegates.glVertexAttrib4ubvARB((UInt32)index, (Byte*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib4(UInt32 index, ref Byte v) - { - unsafe - { - fixed (Byte* v_ptr = &v) - { - Delegates.glVertexAttrib4ubvARB((UInt32)index, (Byte*)v_ptr); - } - } - } - - public static - void VertexAttrib4(Int32 index, ref Byte v) - { - unsafe - { - fixed (Byte* v_ptr = &v) - { - Delegates.glVertexAttrib4ubvARB((UInt32)index, (Byte*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib4(UInt32 index, Byte* v) - { - Delegates.glVertexAttrib4ubvARB((UInt32)index, (Byte*)v); - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib4(Int32 index, Byte* v) - { - Delegates.glVertexAttrib4ubvARB((UInt32)index, (Byte*)v); - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib4(UInt32 index, UInt32[] v) - { - unsafe - { - fixed (UInt32* v_ptr = v) - { - Delegates.glVertexAttrib4uivARB((UInt32)index, (UInt32*)v_ptr); - } - } - } - - public static - void VertexAttrib4(Int32 index, Int32[] v) - { - unsafe - { - fixed (Int32* v_ptr = v) - { - Delegates.glVertexAttrib4uivARB((UInt32)index, (UInt32*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib4(UInt32 index, ref UInt32 v) - { - unsafe - { - fixed (UInt32* v_ptr = &v) - { - Delegates.glVertexAttrib4uivARB((UInt32)index, (UInt32*)v_ptr); - } - } - } - - public static - void VertexAttrib4(Int32 index, ref Int32 v) - { - unsafe - { - fixed (Int32* v_ptr = &v) - { - Delegates.glVertexAttrib4uivARB((UInt32)index, (UInt32*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib4(UInt32 index, UInt32* v) - { - Delegates.glVertexAttrib4uivARB((UInt32)index, (UInt32*)v); - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib4(Int32 index, Int32* v) - { - Delegates.glVertexAttrib4uivARB((UInt32)index, (UInt32*)v); - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib4(UInt32 index, UInt16[] v) - { - unsafe - { - fixed (UInt16* v_ptr = v) - { - Delegates.glVertexAttrib4usvARB((UInt32)index, (UInt16*)v_ptr); - } - } - } - - public static - void VertexAttrib4(Int32 index, Int16[] v) - { - unsafe - { - fixed (Int16* v_ptr = v) - { - Delegates.glVertexAttrib4usvARB((UInt32)index, (UInt16*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void VertexAttrib4(UInt32 index, ref UInt16 v) - { - unsafe - { - fixed (UInt16* v_ptr = &v) - { - Delegates.glVertexAttrib4usvARB((UInt32)index, (UInt16*)v_ptr); - } - } - } - - public static - void VertexAttrib4(Int32 index, ref Int16 v) - { - unsafe - { - fixed (Int16* v_ptr = &v) - { - Delegates.glVertexAttrib4usvARB((UInt32)index, (UInt16*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib4(UInt32 index, UInt16* v) - { - Delegates.glVertexAttrib4usvARB((UInt32)index, (UInt16*)v); - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttrib4(Int32 index, Int16* v) - { - Delegates.glVertexAttrib4usvARB((UInt32)index, (UInt16*)v); - } - - [System.CLSCompliant(false)] - public static - void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.OpenGL.Enums.ArbVertexProgram type, bool normalized, Int32 stride, IntPtr pointer) - { - unsafe - { - Delegates.glVertexAttribPointerARB((UInt32)index, (Int32)size, (OpenTK.OpenGL.Enums.ArbVertexProgram)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); - } - } - - public static - void VertexAttribPointer(Int32 index, Int32 size, OpenTK.OpenGL.Enums.ArbVertexProgram type, bool normalized, Int32 stride, IntPtr pointer) - { - unsafe - { - Delegates.glVertexAttribPointerARB((UInt32)index, (Int32)size, (OpenTK.OpenGL.Enums.ArbVertexProgram)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); - } - } - - [System.CLSCompliant(false)] - public static - void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.OpenGL.Enums.ArbVertexProgram type, bool normalized, Int32 stride, [In, Out] object pointer) - { - unsafe - { - System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glVertexAttribPointerARB((UInt32)index, (Int32)size, (OpenTK.OpenGL.Enums.ArbVertexProgram)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); - } - finally - { - pointer_ptr.Free(); - } - } - } - - public static - void VertexAttribPointer(Int32 index, Int32 size, OpenTK.OpenGL.Enums.ArbVertexProgram type, bool normalized, Int32 stride, [In, Out] object pointer) - { - unsafe - { - System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glVertexAttribPointerARB((UInt32)index, (Int32)size, (OpenTK.OpenGL.Enums.ArbVertexProgram)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); - } - finally - { - pointer_ptr.Free(); - } - } - } - - [System.CLSCompliant(false)] - public static - void EnableVertexAttribArray(UInt32 index) - { - Delegates.glEnableVertexAttribArrayARB((UInt32)index); - } - - public static - void EnableVertexAttribArray(Int32 index) - { - Delegates.glEnableVertexAttribArrayARB((UInt32)index); - } - - [System.CLSCompliant(false)] - public static - void DisableVertexAttribArray(UInt32 index) - { - Delegates.glDisableVertexAttribArrayARB((UInt32)index); - } - - public static - void DisableVertexAttribArray(Int32 index) - { - Delegates.glDisableVertexAttribArrayARB((UInt32)index); - } - - public static - void ProgramString(OpenTK.OpenGL.Enums.ArbVertexProgram target, OpenTK.OpenGL.Enums.ArbVertexProgram format, Int32 len, IntPtr @string) - { - unsafe - { - Delegates.glProgramStringARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (OpenTK.OpenGL.Enums.ArbVertexProgram)format, (Int32)len, (IntPtr)@string); - } - } - - public static - void ProgramString(OpenTK.OpenGL.Enums.ArbVertexProgram target, OpenTK.OpenGL.Enums.ArbVertexProgram format, Int32 len, [In, Out] object @string) - { - unsafe - { - System.Runtime.InteropServices.GCHandle @string_ptr = System.Runtime.InteropServices.GCHandle.Alloc(@string, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glProgramStringARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (OpenTK.OpenGL.Enums.ArbVertexProgram)format, (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); - } - finally - { - @string_ptr.Free(); - } - } - } - - [System.CLSCompliant(false)] - public static - void BindProgram(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 program) - { - Delegates.glBindProgramARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)program); - } - - public static - void BindProgram(OpenTK.OpenGL.Enums.ArbVertexProgram target, Int32 program) - { - Delegates.glBindProgramARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)program); - } - - [System.CLSCompliant(false)] - public static - void DeleteProgram(Int32 n, UInt32[] programs) - { - unsafe - { - fixed (UInt32* programs_ptr = programs) - { - Delegates.glDeleteProgramsARB((Int32)n, (UInt32*)programs_ptr); - } - } - } - - public static - void DeleteProgram(Int32 n, Int32[] programs) - { - unsafe - { - fixed (Int32* programs_ptr = programs) - { - Delegates.glDeleteProgramsARB((Int32)n, (UInt32*)programs_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void DeleteProgram(Int32 n, ref UInt32 programs) - { - unsafe - { - fixed (UInt32* programs_ptr = &programs) - { - Delegates.glDeleteProgramsARB((Int32)n, (UInt32*)programs_ptr); - } - } - } - - public static - void DeleteProgram(Int32 n, ref Int32 programs) - { - unsafe - { - fixed (Int32* programs_ptr = &programs) - { - Delegates.glDeleteProgramsARB((Int32)n, (UInt32*)programs_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void DeleteProgram(Int32 n, UInt32* programs) - { - Delegates.glDeleteProgramsARB((Int32)n, (UInt32*)programs); - } - - [System.CLSCompliant(false)] - public static - unsafe void DeleteProgram(Int32 n, Int32* programs) - { - Delegates.glDeleteProgramsARB((Int32)n, (UInt32*)programs); - } - - [System.CLSCompliant(false)] - public static - void GenProgram(Int32 n, [Out] UInt32[] programs) - { - unsafe - { - fixed (UInt32* programs_ptr = programs) - { - Delegates.glGenProgramsARB((Int32)n, (UInt32*)programs_ptr); - } - } - } - - public static - void GenProgram(Int32 n, [Out] Int32[] programs) - { - unsafe - { - fixed (Int32* programs_ptr = programs) - { - Delegates.glGenProgramsARB((Int32)n, (UInt32*)programs_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void GenProgram(Int32 n, [Out] out UInt32 programs) - { - unsafe - { - fixed (UInt32* programs_ptr = &programs) - { - Delegates.glGenProgramsARB((Int32)n, (UInt32*)programs_ptr); - programs = *programs_ptr; - } - } - } - - public static - void GenProgram(Int32 n, [Out] out Int32 programs) - { - unsafe - { - fixed (Int32* programs_ptr = &programs) - { - Delegates.glGenProgramsARB((Int32)n, (UInt32*)programs_ptr); - programs = *programs_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GenProgram(Int32 n, [Out] UInt32* programs) - { - Delegates.glGenProgramsARB((Int32)n, (UInt32*)programs); - } - - [System.CLSCompliant(false)] - public static - unsafe void GenProgram(Int32 n, [Out] Int32* programs) - { - Delegates.glGenProgramsARB((Int32)n, (UInt32*)programs); - } - - [System.CLSCompliant(false)] - public static - void ProgramEnvParameter4(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, Double x, Double y, Double z, Double w) - { - Delegates.glProgramEnvParameter4dARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); - } - - public static - void ProgramEnvParameter4(OpenTK.OpenGL.Enums.ArbVertexProgram target, Int32 index, Double x, Double y, Double z, Double w) - { - Delegates.glProgramEnvParameter4dARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); - } - - [System.CLSCompliant(false)] - public static - void ProgramEnvParameter4(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, Double[] @params) - { - unsafe - { - fixed (Double* @params_ptr = @params) - { - Delegates.glProgramEnvParameter4dvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Double*)@params_ptr); - } - } - } - - public static - void ProgramEnvParameter4(OpenTK.OpenGL.Enums.ArbVertexProgram target, Int32 index, Double[] @params) - { - unsafe - { - fixed (Double* @params_ptr = @params) - { - Delegates.glProgramEnvParameter4dvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Double*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void ProgramEnvParameter4(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, ref Double @params) - { - unsafe - { - fixed (Double* @params_ptr = &@params) - { - Delegates.glProgramEnvParameter4dvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Double*)@params_ptr); - } - } - } - - public static - void ProgramEnvParameter4(OpenTK.OpenGL.Enums.ArbVertexProgram target, Int32 index, ref Double @params) - { - unsafe - { - fixed (Double* @params_ptr = &@params) - { - Delegates.glProgramEnvParameter4dvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Double*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void ProgramEnvParameter4(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, Double* @params) - { - Delegates.glProgramEnvParameter4dvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Double*)@params); - } - - [System.CLSCompliant(false)] - public static - unsafe void ProgramEnvParameter4(OpenTK.OpenGL.Enums.ArbVertexProgram target, Int32 index, Double* @params) - { - Delegates.glProgramEnvParameter4dvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Double*)@params); - } - - [System.CLSCompliant(false)] - public static - void ProgramEnvParameter4(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, Single x, Single y, Single z, Single w) - { - Delegates.glProgramEnvParameter4fARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); - } - - public static - void ProgramEnvParameter4(OpenTK.OpenGL.Enums.ArbVertexProgram target, Int32 index, Single x, Single y, Single z, Single w) - { - Delegates.glProgramEnvParameter4fARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); - } - - [System.CLSCompliant(false)] - public static - void ProgramEnvParameter4(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glProgramEnvParameter4fvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Single*)@params_ptr); - } - } - } - - public static - void ProgramEnvParameter4(OpenTK.OpenGL.Enums.ArbVertexProgram target, Int32 index, Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glProgramEnvParameter4fvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Single*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void ProgramEnvParameter4(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, ref Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glProgramEnvParameter4fvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Single*)@params_ptr); - } - } - } - - public static - void ProgramEnvParameter4(OpenTK.OpenGL.Enums.ArbVertexProgram target, Int32 index, ref Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glProgramEnvParameter4fvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Single*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void ProgramEnvParameter4(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, Single* @params) - { - Delegates.glProgramEnvParameter4fvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Single*)@params); - } - - [System.CLSCompliant(false)] - public static - unsafe void ProgramEnvParameter4(OpenTK.OpenGL.Enums.ArbVertexProgram target, Int32 index, Single* @params) - { - Delegates.glProgramEnvParameter4fvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Single*)@params); - } - - [System.CLSCompliant(false)] - public static - void ProgramLocalParameter4(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, Double x, Double y, Double z, Double w) - { - Delegates.glProgramLocalParameter4dARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); - } - - public static - void ProgramLocalParameter4(OpenTK.OpenGL.Enums.ArbVertexProgram target, Int32 index, Double x, Double y, Double z, Double w) - { - Delegates.glProgramLocalParameter4dARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); - } - - [System.CLSCompliant(false)] - public static - void ProgramLocalParameter4(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, Double[] @params) - { - unsafe - { - fixed (Double* @params_ptr = @params) - { - Delegates.glProgramLocalParameter4dvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Double*)@params_ptr); - } - } - } - - public static - void ProgramLocalParameter4(OpenTK.OpenGL.Enums.ArbVertexProgram target, Int32 index, Double[] @params) - { - unsafe - { - fixed (Double* @params_ptr = @params) - { - Delegates.glProgramLocalParameter4dvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Double*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void ProgramLocalParameter4(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, ref Double @params) - { - unsafe - { - fixed (Double* @params_ptr = &@params) - { - Delegates.glProgramLocalParameter4dvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Double*)@params_ptr); - } - } - } - - public static - void ProgramLocalParameter4(OpenTK.OpenGL.Enums.ArbVertexProgram target, Int32 index, ref Double @params) - { - unsafe - { - fixed (Double* @params_ptr = &@params) - { - Delegates.glProgramLocalParameter4dvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Double*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void ProgramLocalParameter4(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, Double* @params) - { - Delegates.glProgramLocalParameter4dvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Double*)@params); - } - - [System.CLSCompliant(false)] - public static - unsafe void ProgramLocalParameter4(OpenTK.OpenGL.Enums.ArbVertexProgram target, Int32 index, Double* @params) - { - Delegates.glProgramLocalParameter4dvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Double*)@params); - } - - [System.CLSCompliant(false)] - public static - void ProgramLocalParameter4(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, Single x, Single y, Single z, Single w) - { - Delegates.glProgramLocalParameter4fARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); - } - - public static - void ProgramLocalParameter4(OpenTK.OpenGL.Enums.ArbVertexProgram target, Int32 index, Single x, Single y, Single z, Single w) - { - Delegates.glProgramLocalParameter4fARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); - } - - [System.CLSCompliant(false)] - public static - void ProgramLocalParameter4(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glProgramLocalParameter4fvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Single*)@params_ptr); - } - } - } - - public static - void ProgramLocalParameter4(OpenTK.OpenGL.Enums.ArbVertexProgram target, Int32 index, Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glProgramLocalParameter4fvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Single*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void ProgramLocalParameter4(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, ref Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glProgramLocalParameter4fvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Single*)@params_ptr); - } - } - } - - public static - void ProgramLocalParameter4(OpenTK.OpenGL.Enums.ArbVertexProgram target, Int32 index, ref Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glProgramLocalParameter4fvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Single*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void ProgramLocalParameter4(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, Single* @params) - { - Delegates.glProgramLocalParameter4fvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Single*)@params); - } - - [System.CLSCompliant(false)] - public static - unsafe void ProgramLocalParameter4(OpenTK.OpenGL.Enums.ArbVertexProgram target, Int32 index, Single* @params) - { - Delegates.glProgramLocalParameter4fvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Single*)@params); - } - - [System.CLSCompliant(false)] - public static - void GetProgramEnvParameter(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, [Out] Double[] @params) - { - unsafe - { - fixed (Double* @params_ptr = @params) - { - Delegates.glGetProgramEnvParameterdvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Double*)@params_ptr); - } - } - } - - public static - void GetProgramEnvParameter(OpenTK.OpenGL.Enums.ArbVertexProgram target, Int32 index, [Out] Double[] @params) - { - unsafe - { - fixed (Double* @params_ptr = @params) - { - Delegates.glGetProgramEnvParameterdvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Double*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetProgramEnvParameter(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, [Out] out Double @params) - { - unsafe - { - fixed (Double* @params_ptr = &@params) - { - Delegates.glGetProgramEnvParameterdvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Double*)@params_ptr); - @params = *@params_ptr; - } - } - } - - public static - void GetProgramEnvParameter(OpenTK.OpenGL.Enums.ArbVertexProgram target, Int32 index, [Out] out Double @params) - { - unsafe - { - fixed (Double* @params_ptr = &@params) - { - Delegates.glGetProgramEnvParameterdvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Double*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetProgramEnvParameter(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, [Out] Double* @params) - { - Delegates.glGetProgramEnvParameterdvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Double*)@params); - } - - [System.CLSCompliant(false)] - public static - unsafe void GetProgramEnvParameter(OpenTK.OpenGL.Enums.ArbVertexProgram target, Int32 index, [Out] Double* @params) - { - Delegates.glGetProgramEnvParameterdvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Double*)@params); - } - - [System.CLSCompliant(false)] - public static - void GetProgramEnvParameter(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, [Out] Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glGetProgramEnvParameterfvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Single*)@params_ptr); - } - } - } - - public static - void GetProgramEnvParameter(OpenTK.OpenGL.Enums.ArbVertexProgram target, Int32 index, [Out] Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glGetProgramEnvParameterfvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Single*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetProgramEnvParameter(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, [Out] out Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glGetProgramEnvParameterfvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Single*)@params_ptr); - @params = *@params_ptr; - } - } - } - - public static - void GetProgramEnvParameter(OpenTK.OpenGL.Enums.ArbVertexProgram target, Int32 index, [Out] out Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glGetProgramEnvParameterfvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Single*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetProgramEnvParameter(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, [Out] Single* @params) - { - Delegates.glGetProgramEnvParameterfvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Single*)@params); - } - - [System.CLSCompliant(false)] - public static - unsafe void GetProgramEnvParameter(OpenTK.OpenGL.Enums.ArbVertexProgram target, Int32 index, [Out] Single* @params) - { - Delegates.glGetProgramEnvParameterfvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Single*)@params); - } - - [System.CLSCompliant(false)] - public static - void GetProgramLocalParameter(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, [Out] Double[] @params) - { - unsafe - { - fixed (Double* @params_ptr = @params) - { - Delegates.glGetProgramLocalParameterdvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Double*)@params_ptr); - } - } - } - - public static - void GetProgramLocalParameter(OpenTK.OpenGL.Enums.ArbVertexProgram target, Int32 index, [Out] Double[] @params) - { - unsafe - { - fixed (Double* @params_ptr = @params) - { - Delegates.glGetProgramLocalParameterdvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Double*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetProgramLocalParameter(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, [Out] out Double @params) - { - unsafe - { - fixed (Double* @params_ptr = &@params) - { - Delegates.glGetProgramLocalParameterdvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Double*)@params_ptr); - @params = *@params_ptr; - } - } - } - - public static - void GetProgramLocalParameter(OpenTK.OpenGL.Enums.ArbVertexProgram target, Int32 index, [Out] out Double @params) - { - unsafe - { - fixed (Double* @params_ptr = &@params) - { - Delegates.glGetProgramLocalParameterdvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Double*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetProgramLocalParameter(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, [Out] Double* @params) - { - Delegates.glGetProgramLocalParameterdvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Double*)@params); - } - - [System.CLSCompliant(false)] - public static - unsafe void GetProgramLocalParameter(OpenTK.OpenGL.Enums.ArbVertexProgram target, Int32 index, [Out] Double* @params) - { - Delegates.glGetProgramLocalParameterdvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Double*)@params); - } - - [System.CLSCompliant(false)] - public static - void GetProgramLocalParameter(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, [Out] Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glGetProgramLocalParameterfvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Single*)@params_ptr); - } - } - } - - public static - void GetProgramLocalParameter(OpenTK.OpenGL.Enums.ArbVertexProgram target, Int32 index, [Out] Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glGetProgramLocalParameterfvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Single*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetProgramLocalParameter(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, [Out] out Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glGetProgramLocalParameterfvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Single*)@params_ptr); - @params = *@params_ptr; - } - } - } - - public static - void GetProgramLocalParameter(OpenTK.OpenGL.Enums.ArbVertexProgram target, Int32 index, [Out] out Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glGetProgramLocalParameterfvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Single*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetProgramLocalParameter(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, [Out] Single* @params) - { - Delegates.glGetProgramLocalParameterfvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Single*)@params); - } - - [System.CLSCompliant(false)] - public static - unsafe void GetProgramLocalParameter(OpenTK.OpenGL.Enums.ArbVertexProgram target, Int32 index, [Out] Single* @params) - { - Delegates.glGetProgramLocalParameterfvARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (UInt32)index, (Single*)@params); - } - - public static - void GetProgram(OpenTK.OpenGL.Enums.ArbVertexProgram target, OpenTK.OpenGL.Enums.ArbVertexProgram pname, [Out] Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glGetProgramivARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (OpenTK.OpenGL.Enums.ArbVertexProgram)pname, (Int32*)@params_ptr); - } - } - } - - public static - void GetProgram(OpenTK.OpenGL.Enums.ArbVertexProgram target, OpenTK.OpenGL.Enums.ArbVertexProgram pname, [Out] out Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glGetProgramivARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (OpenTK.OpenGL.Enums.ArbVertexProgram)pname, (Int32*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetProgram(OpenTK.OpenGL.Enums.ArbVertexProgram target, OpenTK.OpenGL.Enums.ArbVertexProgram pname, [Out] Int32* @params) - { - Delegates.glGetProgramivARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (OpenTK.OpenGL.Enums.ArbVertexProgram)pname, (Int32*)@params); - } - - public static - void GetProgramString(OpenTK.OpenGL.Enums.ArbVertexProgram target, OpenTK.OpenGL.Enums.ArbVertexProgram pname, [Out] IntPtr @string) - { - unsafe - { - Delegates.glGetProgramStringARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (OpenTK.OpenGL.Enums.ArbVertexProgram)pname, (IntPtr)@string); - } - } - - public static - void GetProgramString(OpenTK.OpenGL.Enums.ArbVertexProgram target, OpenTK.OpenGL.Enums.ArbVertexProgram pname, [In, Out] object @string) - { - unsafe - { - System.Runtime.InteropServices.GCHandle @string_ptr = System.Runtime.InteropServices.GCHandle.Alloc(@string, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glGetProgramStringARB((OpenTK.OpenGL.Enums.ArbVertexProgram)target, (OpenTK.OpenGL.Enums.ArbVertexProgram)pname, (IntPtr)@string_ptr.AddrOfPinnedObject()); - } - finally - { - @string_ptr.Free(); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.ArbVertexProgram pname, [Out] Double[] @params) - { - unsafe - { - fixed (Double* @params_ptr = @params) - { - Delegates.glGetVertexAttribdvARB((UInt32)index, (OpenTK.OpenGL.Enums.ArbVertexProgram)pname, (Double*)@params_ptr); - } - } - } - - public static - void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.ArbVertexProgram pname, [Out] Double[] @params) - { - unsafe - { - fixed (Double* @params_ptr = @params) - { - Delegates.glGetVertexAttribdvARB((UInt32)index, (OpenTK.OpenGL.Enums.ArbVertexProgram)pname, (Double*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.ArbVertexProgram pname, [Out] out Double @params) - { - unsafe - { - fixed (Double* @params_ptr = &@params) - { - Delegates.glGetVertexAttribdvARB((UInt32)index, (OpenTK.OpenGL.Enums.ArbVertexProgram)pname, (Double*)@params_ptr); - @params = *@params_ptr; - } - } - } - - public static - void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.ArbVertexProgram pname, [Out] out Double @params) - { - unsafe - { - fixed (Double* @params_ptr = &@params) - { - Delegates.glGetVertexAttribdvARB((UInt32)index, (OpenTK.OpenGL.Enums.ArbVertexProgram)pname, (Double*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.ArbVertexProgram pname, [Out] Double* @params) - { - Delegates.glGetVertexAttribdvARB((UInt32)index, (OpenTK.OpenGL.Enums.ArbVertexProgram)pname, (Double*)@params); - } - - [System.CLSCompliant(false)] - public static - unsafe void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.ArbVertexProgram pname, [Out] Double* @params) - { - Delegates.glGetVertexAttribdvARB((UInt32)index, (OpenTK.OpenGL.Enums.ArbVertexProgram)pname, (Double*)@params); - } - - [System.CLSCompliant(false)] - public static - void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.ArbVertexProgram pname, [Out] Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glGetVertexAttribfvARB((UInt32)index, (OpenTK.OpenGL.Enums.ArbVertexProgram)pname, (Single*)@params_ptr); - } - } - } - - public static - void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.ArbVertexProgram pname, [Out] Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glGetVertexAttribfvARB((UInt32)index, (OpenTK.OpenGL.Enums.ArbVertexProgram)pname, (Single*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.ArbVertexProgram pname, [Out] out Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glGetVertexAttribfvARB((UInt32)index, (OpenTK.OpenGL.Enums.ArbVertexProgram)pname, (Single*)@params_ptr); - @params = *@params_ptr; - } - } - } - - public static - void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.ArbVertexProgram pname, [Out] out Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glGetVertexAttribfvARB((UInt32)index, (OpenTK.OpenGL.Enums.ArbVertexProgram)pname, (Single*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.ArbVertexProgram pname, [Out] Single* @params) - { - Delegates.glGetVertexAttribfvARB((UInt32)index, (OpenTK.OpenGL.Enums.ArbVertexProgram)pname, (Single*)@params); - } - - [System.CLSCompliant(false)] - public static - unsafe void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.ArbVertexProgram pname, [Out] Single* @params) - { - Delegates.glGetVertexAttribfvARB((UInt32)index, (OpenTK.OpenGL.Enums.ArbVertexProgram)pname, (Single*)@params); - } - - [System.CLSCompliant(false)] - public static - void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.ArbVertexProgram pname, [Out] Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glGetVertexAttribivARB((UInt32)index, (OpenTK.OpenGL.Enums.ArbVertexProgram)pname, (Int32*)@params_ptr); - } - } - } - - public static - void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.ArbVertexProgram pname, [Out] Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glGetVertexAttribivARB((UInt32)index, (OpenTK.OpenGL.Enums.ArbVertexProgram)pname, (Int32*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.ArbVertexProgram pname, [Out] out Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glGetVertexAttribivARB((UInt32)index, (OpenTK.OpenGL.Enums.ArbVertexProgram)pname, (Int32*)@params_ptr); - @params = *@params_ptr; - } - } - } - - public static - void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.ArbVertexProgram pname, [Out] out Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glGetVertexAttribivARB((UInt32)index, (OpenTK.OpenGL.Enums.ArbVertexProgram)pname, (Int32*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.ArbVertexProgram pname, [Out] Int32* @params) - { - Delegates.glGetVertexAttribivARB((UInt32)index, (OpenTK.OpenGL.Enums.ArbVertexProgram)pname, (Int32*)@params); - } - - [System.CLSCompliant(false)] - public static - unsafe void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.ArbVertexProgram pname, [Out] Int32* @params) - { - Delegates.glGetVertexAttribivARB((UInt32)index, (OpenTK.OpenGL.Enums.ArbVertexProgram)pname, (Int32*)@params); - } - - [System.CLSCompliant(false)] - public static - void GetVertexAttribPointer(UInt32 index, OpenTK.OpenGL.Enums.ArbVertexProgram pname, [Out] IntPtr pointer) - { - unsafe - { - Delegates.glGetVertexAttribPointervARB((UInt32)index, (OpenTK.OpenGL.Enums.ArbVertexProgram)pname, (IntPtr)pointer); - } - } - - public static - void GetVertexAttribPointer(Int32 index, OpenTK.OpenGL.Enums.ArbVertexProgram pname, [Out] IntPtr pointer) - { - unsafe - { - Delegates.glGetVertexAttribPointervARB((UInt32)index, (OpenTK.OpenGL.Enums.ArbVertexProgram)pname, (IntPtr)pointer); - } - } - - [System.CLSCompliant(false)] - public static - void GetVertexAttribPointer(UInt32 index, OpenTK.OpenGL.Enums.ArbVertexProgram pname, [In, Out] object pointer) - { - unsafe - { - System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glGetVertexAttribPointervARB((UInt32)index, (OpenTK.OpenGL.Enums.ArbVertexProgram)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); - } - finally - { - pointer_ptr.Free(); - } - } - } - - public static - void GetVertexAttribPointer(Int32 index, OpenTK.OpenGL.Enums.ArbVertexProgram pname, [In, Out] object pointer) - { - unsafe - { - System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glGetVertexAttribPointervARB((UInt32)index, (OpenTK.OpenGL.Enums.ArbVertexProgram)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); - } - finally - { - pointer_ptr.Free(); - } - } - } - - [System.CLSCompliant(false)] - public static - bool IsProgram(UInt32 program) - { - return Delegates.glIsProgramARB((UInt32)program); - } - - public static - bool IsProgram(Int32 program) - { - return Delegates.glIsProgramARB((UInt32)program); - } - - [System.CLSCompliant(false)] - public static - void BindBuffer(OpenTK.OpenGL.Enums.ArbVertexBufferObject target, UInt32 buffer) - { - Delegates.glBindBufferARB((OpenTK.OpenGL.Enums.ArbVertexBufferObject)target, (UInt32)buffer); - } - - public static - void BindBuffer(OpenTK.OpenGL.Enums.ArbVertexBufferObject target, Int32 buffer) - { - Delegates.glBindBufferARB((OpenTK.OpenGL.Enums.ArbVertexBufferObject)target, (UInt32)buffer); - } - - [System.CLSCompliant(false)] - public static - void DeleteBuffers(Int32 n, UInt32[] buffers) - { - unsafe - { - fixed (UInt32* buffers_ptr = buffers) - { - Delegates.glDeleteBuffersARB((Int32)n, (UInt32*)buffers_ptr); - } - } - } - - public static - void DeleteBuffers(Int32 n, Int32[] buffers) - { - unsafe - { - fixed (Int32* buffers_ptr = buffers) - { - Delegates.glDeleteBuffersARB((Int32)n, (UInt32*)buffers_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void DeleteBuffers(Int32 n, ref UInt32 buffers) - { - unsafe - { - fixed (UInt32* buffers_ptr = &buffers) - { - Delegates.glDeleteBuffersARB((Int32)n, (UInt32*)buffers_ptr); - } - } - } - - public static - void DeleteBuffers(Int32 n, ref Int32 buffers) - { - unsafe - { - fixed (Int32* buffers_ptr = &buffers) - { - Delegates.glDeleteBuffersARB((Int32)n, (UInt32*)buffers_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void DeleteBuffers(Int32 n, UInt32* buffers) - { - Delegates.glDeleteBuffersARB((Int32)n, (UInt32*)buffers); - } - - [System.CLSCompliant(false)] - public static - unsafe void DeleteBuffers(Int32 n, Int32* buffers) - { - Delegates.glDeleteBuffersARB((Int32)n, (UInt32*)buffers); - } - - [System.CLSCompliant(false)] - public static - void GenBuffers(Int32 n, [Out] UInt32[] buffers) - { - unsafe - { - fixed (UInt32* buffers_ptr = buffers) - { - Delegates.glGenBuffersARB((Int32)n, (UInt32*)buffers_ptr); - } - } - } - - public static - void GenBuffers(Int32 n, [Out] Int32[] buffers) - { - unsafe - { - fixed (Int32* buffers_ptr = buffers) - { - Delegates.glGenBuffersARB((Int32)n, (UInt32*)buffers_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void GenBuffers(Int32 n, [Out] out UInt32 buffers) - { - unsafe - { - fixed (UInt32* buffers_ptr = &buffers) - { - Delegates.glGenBuffersARB((Int32)n, (UInt32*)buffers_ptr); - buffers = *buffers_ptr; - } - } - } - - public static - void GenBuffers(Int32 n, [Out] out Int32 buffers) - { - unsafe - { - fixed (Int32* buffers_ptr = &buffers) - { - Delegates.glGenBuffersARB((Int32)n, (UInt32*)buffers_ptr); - buffers = *buffers_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GenBuffers(Int32 n, [Out] UInt32* buffers) - { - Delegates.glGenBuffersARB((Int32)n, (UInt32*)buffers); - } - - [System.CLSCompliant(false)] - public static - unsafe void GenBuffers(Int32 n, [Out] Int32* buffers) - { - Delegates.glGenBuffersARB((Int32)n, (UInt32*)buffers); - } - - [System.CLSCompliant(false)] - public static - bool IsBuffer(UInt32 buffer) - { - return Delegates.glIsBufferARB((UInt32)buffer); - } - - public static - bool IsBuffer(Int32 buffer) - { - return Delegates.glIsBufferARB((UInt32)buffer); - } - - public static - void BufferData(OpenTK.OpenGL.Enums.ArbVertexBufferObject target, IntPtr size, IntPtr data, OpenTK.OpenGL.Enums.ArbVertexBufferObject usage) - { - unsafe - { - Delegates.glBufferDataARB((OpenTK.OpenGL.Enums.ArbVertexBufferObject)target, (IntPtr)size, (IntPtr)data, (OpenTK.OpenGL.Enums.ArbVertexBufferObject)usage); - } - } - - public static - void BufferData(OpenTK.OpenGL.Enums.ArbVertexBufferObject target, IntPtr size, [In, Out] object data, OpenTK.OpenGL.Enums.ArbVertexBufferObject usage) - { - unsafe - { - System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glBufferDataARB((OpenTK.OpenGL.Enums.ArbVertexBufferObject)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.OpenGL.Enums.ArbVertexBufferObject)usage); - } - finally - { - data_ptr.Free(); - } - } - } - - public static - void BufferSubData(OpenTK.OpenGL.Enums.ArbVertexBufferObject target, IntPtr offset, IntPtr size, IntPtr data) - { - unsafe - { - Delegates.glBufferSubDataARB((OpenTK.OpenGL.Enums.ArbVertexBufferObject)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data); - } - } - - public static - void BufferSubData(OpenTK.OpenGL.Enums.ArbVertexBufferObject target, IntPtr offset, IntPtr size, [In, Out] object data) - { - unsafe - { - System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glBufferSubDataARB((OpenTK.OpenGL.Enums.ArbVertexBufferObject)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); - } - finally - { - data_ptr.Free(); - } - } - } - - public static - void GetBufferSubData(OpenTK.OpenGL.Enums.ArbVertexBufferObject target, IntPtr offset, IntPtr size, [Out] IntPtr data) - { - unsafe - { - Delegates.glGetBufferSubDataARB((OpenTK.OpenGL.Enums.ArbVertexBufferObject)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data); - } - } - - public static - void GetBufferSubData(OpenTK.OpenGL.Enums.ArbVertexBufferObject target, IntPtr offset, IntPtr size, [In, Out] object data) - { - unsafe - { - System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glGetBufferSubDataARB((OpenTK.OpenGL.Enums.ArbVertexBufferObject)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); - } - finally - { - data_ptr.Free(); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe IntPtr MapBuffer(OpenTK.OpenGL.Enums.ArbVertexBufferObject target, OpenTK.OpenGL.Enums.ArbVertexBufferObject access) - { - return Delegates.glMapBufferARB((OpenTK.OpenGL.Enums.ArbVertexBufferObject)target, (OpenTK.OpenGL.Enums.ArbVertexBufferObject)access); - } - - public static - bool UnmapBuffer(OpenTK.OpenGL.Enums.ArbVertexBufferObject target) - { - return Delegates.glUnmapBufferARB((OpenTK.OpenGL.Enums.ArbVertexBufferObject)target); - } - - public static - void GetBufferParameter(OpenTK.OpenGL.Enums.ArbVertexBufferObject target, OpenTK.OpenGL.Enums.ArbVertexBufferObject pname, [Out] Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glGetBufferParameterivARB((OpenTK.OpenGL.Enums.ArbVertexBufferObject)target, (OpenTK.OpenGL.Enums.ArbVertexBufferObject)pname, (Int32*)@params_ptr); - } - } - } - - public static - void GetBufferParameter(OpenTK.OpenGL.Enums.ArbVertexBufferObject target, OpenTK.OpenGL.Enums.ArbVertexBufferObject pname, [Out] out Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glGetBufferParameterivARB((OpenTK.OpenGL.Enums.ArbVertexBufferObject)target, (OpenTK.OpenGL.Enums.ArbVertexBufferObject)pname, (Int32*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetBufferParameter(OpenTK.OpenGL.Enums.ArbVertexBufferObject target, OpenTK.OpenGL.Enums.ArbVertexBufferObject pname, [Out] Int32* @params) - { - Delegates.glGetBufferParameterivARB((OpenTK.OpenGL.Enums.ArbVertexBufferObject)target, (OpenTK.OpenGL.Enums.ArbVertexBufferObject)pname, (Int32*)@params); - } - - public static - void GetBufferPointer(OpenTK.OpenGL.Enums.ArbVertexBufferObject target, OpenTK.OpenGL.Enums.ArbVertexBufferObject pname, [Out] IntPtr @params) - { - unsafe - { - Delegates.glGetBufferPointervARB((OpenTK.OpenGL.Enums.ArbVertexBufferObject)target, (OpenTK.OpenGL.Enums.ArbVertexBufferObject)pname, (IntPtr)@params); - } - } - - public static - void GetBufferPointer(OpenTK.OpenGL.Enums.ArbVertexBufferObject target, OpenTK.OpenGL.Enums.ArbVertexBufferObject pname, [In, Out] object @params) - { - unsafe - { - System.Runtime.InteropServices.GCHandle @params_ptr = System.Runtime.InteropServices.GCHandle.Alloc(@params, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glGetBufferPointervARB((OpenTK.OpenGL.Enums.ArbVertexBufferObject)target, (OpenTK.OpenGL.Enums.ArbVertexBufferObject)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); - } - finally - { - @params_ptr.Free(); - } - } - } - - [System.CLSCompliant(false)] - public static - void GenQueries(Int32 n, [Out] UInt32[] ids) - { - unsafe - { - fixed (UInt32* ids_ptr = ids) - { - Delegates.glGenQueriesARB((Int32)n, (UInt32*)ids_ptr); - } - } - } - - public static - void GenQueries(Int32 n, [Out] Int32[] ids) - { - unsafe - { - fixed (Int32* ids_ptr = ids) - { - Delegates.glGenQueriesARB((Int32)n, (UInt32*)ids_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void GenQueries(Int32 n, [Out] out UInt32 ids) - { - unsafe - { - fixed (UInt32* ids_ptr = &ids) - { - Delegates.glGenQueriesARB((Int32)n, (UInt32*)ids_ptr); - ids = *ids_ptr; - } - } - } - - public static - void GenQueries(Int32 n, [Out] out Int32 ids) - { - unsafe - { - fixed (Int32* ids_ptr = &ids) - { - Delegates.glGenQueriesARB((Int32)n, (UInt32*)ids_ptr); - ids = *ids_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GenQueries(Int32 n, [Out] UInt32* ids) - { - Delegates.glGenQueriesARB((Int32)n, (UInt32*)ids); - } - - [System.CLSCompliant(false)] - public static - unsafe void GenQueries(Int32 n, [Out] Int32* ids) - { - Delegates.glGenQueriesARB((Int32)n, (UInt32*)ids); - } - - [System.CLSCompliant(false)] - public static - void DeleteQueries(Int32 n, UInt32[] ids) - { - unsafe - { - fixed (UInt32* ids_ptr = ids) - { - Delegates.glDeleteQueriesARB((Int32)n, (UInt32*)ids_ptr); - } - } - } - - public static - void DeleteQueries(Int32 n, Int32[] ids) - { - unsafe - { - fixed (Int32* ids_ptr = ids) - { - Delegates.glDeleteQueriesARB((Int32)n, (UInt32*)ids_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void DeleteQueries(Int32 n, ref UInt32 ids) - { - unsafe - { - fixed (UInt32* ids_ptr = &ids) - { - Delegates.glDeleteQueriesARB((Int32)n, (UInt32*)ids_ptr); - } - } - } - - public static - void DeleteQueries(Int32 n, ref Int32 ids) - { - unsafe - { - fixed (Int32* ids_ptr = &ids) - { - Delegates.glDeleteQueriesARB((Int32)n, (UInt32*)ids_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void DeleteQueries(Int32 n, UInt32* ids) - { - Delegates.glDeleteQueriesARB((Int32)n, (UInt32*)ids); - } - - [System.CLSCompliant(false)] - public static - unsafe void DeleteQueries(Int32 n, Int32* ids) - { - Delegates.glDeleteQueriesARB((Int32)n, (UInt32*)ids); - } - - [System.CLSCompliant(false)] - public static - bool IsQuery(UInt32 id) - { - return Delegates.glIsQueryARB((UInt32)id); - } - - public static - bool IsQuery(Int32 id) - { - return Delegates.glIsQueryARB((UInt32)id); - } - - [System.CLSCompliant(false)] - public static - void BeginQuery(OpenTK.OpenGL.Enums.ArbOcclusionQuery target, UInt32 id) - { - Delegates.glBeginQueryARB((OpenTK.OpenGL.Enums.ArbOcclusionQuery)target, (UInt32)id); - } - - public static - void BeginQuery(OpenTK.OpenGL.Enums.ArbOcclusionQuery target, Int32 id) - { - Delegates.glBeginQueryARB((OpenTK.OpenGL.Enums.ArbOcclusionQuery)target, (UInt32)id); - } - - public static - void EndQuery(OpenTK.OpenGL.Enums.ArbOcclusionQuery target) - { - Delegates.glEndQueryARB((OpenTK.OpenGL.Enums.ArbOcclusionQuery)target); - } - - public static - void GetQuery(OpenTK.OpenGL.Enums.ArbOcclusionQuery target, OpenTK.OpenGL.Enums.ArbOcclusionQuery pname, [Out] Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glGetQueryivARB((OpenTK.OpenGL.Enums.ArbOcclusionQuery)target, (OpenTK.OpenGL.Enums.ArbOcclusionQuery)pname, (Int32*)@params_ptr); - } - } - } - - public static - void GetQuery(OpenTK.OpenGL.Enums.ArbOcclusionQuery target, OpenTK.OpenGL.Enums.ArbOcclusionQuery pname, [Out] out Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glGetQueryivARB((OpenTK.OpenGL.Enums.ArbOcclusionQuery)target, (OpenTK.OpenGL.Enums.ArbOcclusionQuery)pname, (Int32*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetQuery(OpenTK.OpenGL.Enums.ArbOcclusionQuery target, OpenTK.OpenGL.Enums.ArbOcclusionQuery pname, [Out] Int32* @params) - { - Delegates.glGetQueryivARB((OpenTK.OpenGL.Enums.ArbOcclusionQuery)target, (OpenTK.OpenGL.Enums.ArbOcclusionQuery)pname, (Int32*)@params); - } - - [System.CLSCompliant(false)] - public static - void GetQueryObject(UInt32 id, OpenTK.OpenGL.Enums.ArbOcclusionQuery pname, [Out] Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glGetQueryObjectivARB((UInt32)id, (OpenTK.OpenGL.Enums.ArbOcclusionQuery)pname, (Int32*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetQueryObject(UInt32 id, OpenTK.OpenGL.Enums.ArbOcclusionQuery pname, [Out] out Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glGetQueryObjectivARB((UInt32)id, (OpenTK.OpenGL.Enums.ArbOcclusionQuery)pname, (Int32*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetQueryObject(UInt32 id, OpenTK.OpenGL.Enums.ArbOcclusionQuery pname, [Out] Int32* @params) - { - Delegates.glGetQueryObjectivARB((UInt32)id, (OpenTK.OpenGL.Enums.ArbOcclusionQuery)pname, (Int32*)@params); - } - - [System.CLSCompliant(false)] - public static - void GetQueryObject(UInt32 id, OpenTK.OpenGL.Enums.ArbOcclusionQuery pname, [Out] UInt32[] @params) - { - unsafe - { - fixed (UInt32* @params_ptr = @params) - { - Delegates.glGetQueryObjectuivARB((UInt32)id, (OpenTK.OpenGL.Enums.ArbOcclusionQuery)pname, (UInt32*)@params_ptr); - } - } - } - - public static - void GetQueryObject(Int32 id, OpenTK.OpenGL.Enums.ArbOcclusionQuery pname, [Out] Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glGetQueryObjectuivARB((UInt32)id, (OpenTK.OpenGL.Enums.ArbOcclusionQuery)pname, (UInt32*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetQueryObject(UInt32 id, OpenTK.OpenGL.Enums.ArbOcclusionQuery pname, [Out] out UInt32 @params) - { - unsafe - { - fixed (UInt32* @params_ptr = &@params) - { - Delegates.glGetQueryObjectuivARB((UInt32)id, (OpenTK.OpenGL.Enums.ArbOcclusionQuery)pname, (UInt32*)@params_ptr); - @params = *@params_ptr; - } - } - } - - public static - void GetQueryObject(Int32 id, OpenTK.OpenGL.Enums.ArbOcclusionQuery pname, [Out] out Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glGetQueryObjectuivARB((UInt32)id, (OpenTK.OpenGL.Enums.ArbOcclusionQuery)pname, (UInt32*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetQueryObject(UInt32 id, OpenTK.OpenGL.Enums.ArbOcclusionQuery pname, [Out] UInt32* @params) - { - Delegates.glGetQueryObjectuivARB((UInt32)id, (OpenTK.OpenGL.Enums.ArbOcclusionQuery)pname, (UInt32*)@params); - } - - [System.CLSCompliant(false)] - public static - unsafe void GetQueryObject(Int32 id, OpenTK.OpenGL.Enums.ArbOcclusionQuery pname, [Out] Int32* @params) - { - Delegates.glGetQueryObjectuivARB((UInt32)id, (OpenTK.OpenGL.Enums.ArbOcclusionQuery)pname, (UInt32*)@params); - } - - [System.CLSCompliant(false)] - public static - void DeleteObject(UInt32 obj) - { - Delegates.glDeleteObjectARB((UInt32)obj); - } - - public static - void DeleteObject(Int32 obj) - { - Delegates.glDeleteObjectARB((UInt32)obj); - } - - public static - Int32 GetHandle(OpenTK.OpenGL.Enums.ArbShaderObjects pname) - { - return Delegates.glGetHandleARB((OpenTK.OpenGL.Enums.ArbShaderObjects)pname); - } - - [System.CLSCompliant(false)] - public static - void DetachObject(UInt32 containerObj, UInt32 attachedObj) - { - Delegates.glDetachObjectARB((UInt32)containerObj, (UInt32)attachedObj); - } - - public static - void DetachObject(Int32 containerObj, Int32 attachedObj) - { - Delegates.glDetachObjectARB((UInt32)containerObj, (UInt32)attachedObj); - } - - public static - Int32 CreateShaderObject(OpenTK.OpenGL.Enums.ArbShaderObjects shaderType) - { - return Delegates.glCreateShaderObjectARB((OpenTK.OpenGL.Enums.ArbShaderObjects)shaderType); - } - - [System.CLSCompliant(false)] - public static - void ShaderSource(UInt32 shaderObj, Int32 count, System.String[] @string, Int32[] length) - { - unsafe - { - fixed (Int32* length_ptr = length) - { - Delegates.glShaderSourceARB((UInt32)shaderObj, (Int32)count, (System.String[])@string, (Int32*)length_ptr); - } - } - } - - public static - void ShaderSource(Int32 shaderObj, Int32 count, System.String[] @string, Int32[] length) - { - unsafe - { - fixed (Int32* length_ptr = length) - { - Delegates.glShaderSourceARB((UInt32)shaderObj, (Int32)count, (System.String[])@string, (Int32*)length_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void ShaderSource(UInt32 shaderObj, Int32 count, System.String[] @string, ref Int32 length) - { - unsafe - { - fixed (Int32* length_ptr = &length) - { - Delegates.glShaderSourceARB((UInt32)shaderObj, (Int32)count, (System.String[])@string, (Int32*)length_ptr); - } - } - } - - public static - void ShaderSource(Int32 shaderObj, Int32 count, System.String[] @string, ref Int32 length) - { - unsafe - { - fixed (Int32* length_ptr = &length) - { - Delegates.glShaderSourceARB((UInt32)shaderObj, (Int32)count, (System.String[])@string, (Int32*)length_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void ShaderSource(UInt32 shaderObj, Int32 count, System.String[] @string, Int32* length) - { - Delegates.glShaderSourceARB((UInt32)shaderObj, (Int32)count, (System.String[])@string, (Int32*)length); - } - - [System.CLSCompliant(false)] - public static - unsafe void ShaderSource(Int32 shaderObj, Int32 count, System.String[] @string, Int32* length) - { - Delegates.glShaderSourceARB((UInt32)shaderObj, (Int32)count, (System.String[])@string, (Int32*)length); - } - - [System.CLSCompliant(false)] - public static - void CompileShader(UInt32 shaderObj) - { - Delegates.glCompileShaderARB((UInt32)shaderObj); - } - - public static - void CompileShader(Int32 shaderObj) - { - Delegates.glCompileShaderARB((UInt32)shaderObj); - } - - public static - Int32 CreateProgramObject() - { - return Delegates.glCreateProgramObjectARB(); - } - - [System.CLSCompliant(false)] - public static - void AttachObject(UInt32 containerObj, UInt32 obj) - { - Delegates.glAttachObjectARB((UInt32)containerObj, (UInt32)obj); - } - - public static - void AttachObject(Int32 containerObj, Int32 obj) - { - Delegates.glAttachObjectARB((UInt32)containerObj, (UInt32)obj); - } - - [System.CLSCompliant(false)] - public static - void LinkProgram(UInt32 programObj) - { - Delegates.glLinkProgramARB((UInt32)programObj); - } - - public static - void LinkProgram(Int32 programObj) - { - Delegates.glLinkProgramARB((UInt32)programObj); - } - - [System.CLSCompliant(false)] - public static - void UseProgramObject(UInt32 programObj) - { - Delegates.glUseProgramObjectARB((UInt32)programObj); - } - - public static - void UseProgramObject(Int32 programObj) - { - Delegates.glUseProgramObjectARB((UInt32)programObj); - } - - [System.CLSCompliant(false)] - public static - void ValidateProgram(UInt32 programObj) - { - Delegates.glValidateProgramARB((UInt32)programObj); - } - - public static - void ValidateProgram(Int32 programObj) - { - Delegates.glValidateProgramARB((UInt32)programObj); - } - - public static - void Uniform1(Int32 location, Single v0) - { - Delegates.glUniform1fARB((Int32)location, (Single)v0); - } - - public static - void Uniform2(Int32 location, Single v0, Single v1) - { - Delegates.glUniform2fARB((Int32)location, (Single)v0, (Single)v1); - } - - public static - void Uniform3(Int32 location, Single v0, Single v1, Single v2) - { - Delegates.glUniform3fARB((Int32)location, (Single)v0, (Single)v1, (Single)v2); - } - - public static - void Uniform4(Int32 location, Single v0, Single v1, Single v2, Single v3) - { - Delegates.glUniform4fARB((Int32)location, (Single)v0, (Single)v1, (Single)v2, (Single)v3); - } - - public static - void Uniform1(Int32 location, Int32 v0) - { - Delegates.glUniform1iARB((Int32)location, (Int32)v0); - } - - public static - void Uniform2(Int32 location, Int32 v0, Int32 v1) - { - Delegates.glUniform2iARB((Int32)location, (Int32)v0, (Int32)v1); - } - - public static - void Uniform3(Int32 location, Int32 v0, Int32 v1, Int32 v2) - { - Delegates.glUniform3iARB((Int32)location, (Int32)v0, (Int32)v1, (Int32)v2); - } - - public static - void Uniform4(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) - { - Delegates.glUniform4iARB((Int32)location, (Int32)v0, (Int32)v1, (Int32)v2, (Int32)v3); - } - - public static - void Uniform1(Int32 location, Int32 count, Single[] value) - { - unsafe - { - fixed (Single* value_ptr = value) - { - Delegates.glUniform1fvARB((Int32)location, (Int32)count, (Single*)value_ptr); - } - } - } - - public static - void Uniform1(Int32 location, Int32 count, ref Single value) - { - unsafe - { - fixed (Single* value_ptr = &value) - { - Delegates.glUniform1fvARB((Int32)location, (Int32)count, (Single*)value_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Uniform1(Int32 location, Int32 count, Single* value) - { - Delegates.glUniform1fvARB((Int32)location, (Int32)count, (Single*)value); - } - - public static - void Uniform2v(Int32 location, Int32 count, Single[] value) - { - unsafe - { - fixed (Single* value_ptr = value) - { - Delegates.glUniform2fvARB((Int32)location, (Int32)count, (Single*)value_ptr); - } - } - } - - public static - void Uniform2v(Int32 location, Int32 count, ref Single value) - { - unsafe - { - fixed (Single* value_ptr = &value) - { - Delegates.glUniform2fvARB((Int32)location, (Int32)count, (Single*)value_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Uniform2v(Int32 location, Int32 count, Single* value) - { - Delegates.glUniform2fvARB((Int32)location, (Int32)count, (Single*)value); - } - - public static - void Uniform3(Int32 location, Int32 count, Single[] value) - { - unsafe - { - fixed (Single* value_ptr = value) - { - Delegates.glUniform3fvARB((Int32)location, (Int32)count, (Single*)value_ptr); - } - } - } - - public static - void Uniform3(Int32 location, Int32 count, ref Single value) - { - unsafe - { - fixed (Single* value_ptr = &value) - { - Delegates.glUniform3fvARB((Int32)location, (Int32)count, (Single*)value_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Uniform3(Int32 location, Int32 count, Single* value) - { - Delegates.glUniform3fvARB((Int32)location, (Int32)count, (Single*)value); - } - - public static - void Uniform4(Int32 location, Int32 count, Single[] value) - { - unsafe - { - fixed (Single* value_ptr = value) - { - Delegates.glUniform4fvARB((Int32)location, (Int32)count, (Single*)value_ptr); - } - } - } - - public static - void Uniform4(Int32 location, Int32 count, ref Single value) - { - unsafe - { - fixed (Single* value_ptr = &value) - { - Delegates.glUniform4fvARB((Int32)location, (Int32)count, (Single*)value_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Uniform4(Int32 location, Int32 count, Single* value) - { - Delegates.glUniform4fvARB((Int32)location, (Int32)count, (Single*)value); - } - - public static - void Uniform1(Int32 location, Int32 count, Int32[] value) - { - unsafe - { - fixed (Int32* value_ptr = value) - { - Delegates.glUniform1ivARB((Int32)location, (Int32)count, (Int32*)value_ptr); - } - } - } - - public static - void Uniform1(Int32 location, Int32 count, ref Int32 value) - { - unsafe - { - fixed (Int32* value_ptr = &value) - { - Delegates.glUniform1ivARB((Int32)location, (Int32)count, (Int32*)value_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Uniform1(Int32 location, Int32 count, Int32* value) - { - Delegates.glUniform1ivARB((Int32)location, (Int32)count, (Int32*)value); - } - - public static - void Uniform2v(Int32 location, Int32 count, Int32[] value) - { - unsafe - { - fixed (Int32* value_ptr = value) - { - Delegates.glUniform2ivARB((Int32)location, (Int32)count, (Int32*)value_ptr); - } - } - } - - public static - void Uniform2v(Int32 location, Int32 count, ref Int32 value) - { - unsafe - { - fixed (Int32* value_ptr = &value) - { - Delegates.glUniform2ivARB((Int32)location, (Int32)count, (Int32*)value_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Uniform2v(Int32 location, Int32 count, Int32* value) - { - Delegates.glUniform2ivARB((Int32)location, (Int32)count, (Int32*)value); - } - - public static - void Uniform3(Int32 location, Int32 count, Int32[] value) - { - unsafe - { - fixed (Int32* value_ptr = value) - { - Delegates.glUniform3ivARB((Int32)location, (Int32)count, (Int32*)value_ptr); - } - } - } - - public static - void Uniform3(Int32 location, Int32 count, ref Int32 value) - { - unsafe - { - fixed (Int32* value_ptr = &value) - { - Delegates.glUniform3ivARB((Int32)location, (Int32)count, (Int32*)value_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Uniform3(Int32 location, Int32 count, Int32* value) - { - Delegates.glUniform3ivARB((Int32)location, (Int32)count, (Int32*)value); - } - - public static - void Uniform4(Int32 location, Int32 count, Int32[] value) - { - unsafe - { - fixed (Int32* value_ptr = value) - { - Delegates.glUniform4ivARB((Int32)location, (Int32)count, (Int32*)value_ptr); - } - } - } - - public static - void Uniform4(Int32 location, Int32 count, ref Int32 value) - { - unsafe - { - fixed (Int32* value_ptr = &value) - { - Delegates.glUniform4ivARB((Int32)location, (Int32)count, (Int32*)value_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Uniform4(Int32 location, Int32 count, Int32* value) - { - Delegates.glUniform4ivARB((Int32)location, (Int32)count, (Int32*)value); - } - - public static - void UniformMatrix2(Int32 location, Int32 count, bool transpose, Single[] value) - { - unsafe - { - fixed (Single* value_ptr = value) - { - Delegates.glUniformMatrix2fvARB((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); - } - } - } - - public static - void UniformMatrix2(Int32 location, Int32 count, bool transpose, ref Single value) - { - unsafe - { - fixed (Single* value_ptr = &value) - { - Delegates.glUniformMatrix2fvARB((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, Single* value) - { - Delegates.glUniformMatrix2fvARB((Int32)location, (Int32)count, (bool)transpose, (Single*)value); - } - - public static - void UniformMatrix3(Int32 location, Int32 count, bool transpose, Single[] value) - { - unsafe - { - fixed (Single* value_ptr = value) - { - Delegates.glUniformMatrix3fvARB((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); - } - } - } - - public static - void UniformMatrix3(Int32 location, Int32 count, bool transpose, ref Single value) - { - unsafe - { - fixed (Single* value_ptr = &value) - { - Delegates.glUniformMatrix3fvARB((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, Single* value) - { - Delegates.glUniformMatrix3fvARB((Int32)location, (Int32)count, (bool)transpose, (Single*)value); - } - - public static - void UniformMatrix4(Int32 location, Int32 count, bool transpose, Single[] value) - { - unsafe - { - fixed (Single* value_ptr = value) - { - Delegates.glUniformMatrix4fvARB((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); - } - } - } - - public static - void UniformMatrix4(Int32 location, Int32 count, bool transpose, ref Single value) - { - unsafe - { - fixed (Single* value_ptr = &value) - { - Delegates.glUniformMatrix4fvARB((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, Single* value) - { - Delegates.glUniformMatrix4fvARB((Int32)location, (Int32)count, (bool)transpose, (Single*)value); - } - - [System.CLSCompliant(false)] - public static - void GetObjectParameter(UInt32 obj, OpenTK.OpenGL.Enums.ArbShaderObjects pname, [Out] Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.OpenGL.Enums.ArbShaderObjects)pname, (Single*)@params_ptr); - } - } - } - - public static - void GetObjectParameter(Int32 obj, OpenTK.OpenGL.Enums.ArbShaderObjects pname, [Out] Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.OpenGL.Enums.ArbShaderObjects)pname, (Single*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetObjectParameter(UInt32 obj, OpenTK.OpenGL.Enums.ArbShaderObjects pname, [Out] out Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.OpenGL.Enums.ArbShaderObjects)pname, (Single*)@params_ptr); - @params = *@params_ptr; - } - } - } - - public static - void GetObjectParameter(Int32 obj, OpenTK.OpenGL.Enums.ArbShaderObjects pname, [Out] out Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.OpenGL.Enums.ArbShaderObjects)pname, (Single*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetObjectParameter(UInt32 obj, OpenTK.OpenGL.Enums.ArbShaderObjects pname, [Out] Single* @params) - { - Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.OpenGL.Enums.ArbShaderObjects)pname, (Single*)@params); - } - - [System.CLSCompliant(false)] - public static - unsafe void GetObjectParameter(Int32 obj, OpenTK.OpenGL.Enums.ArbShaderObjects pname, [Out] Single* @params) - { - Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.OpenGL.Enums.ArbShaderObjects)pname, (Single*)@params); - } - - [System.CLSCompliant(false)] - public static - void GetObjectParameter(UInt32 obj, OpenTK.OpenGL.Enums.ArbShaderObjects pname, [Out] Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.OpenGL.Enums.ArbShaderObjects)pname, (Int32*)@params_ptr); - } - } - } - - public static - void GetObjectParameter(Int32 obj, OpenTK.OpenGL.Enums.ArbShaderObjects pname, [Out] Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.OpenGL.Enums.ArbShaderObjects)pname, (Int32*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetObjectParameter(UInt32 obj, OpenTK.OpenGL.Enums.ArbShaderObjects pname, [Out] out Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.OpenGL.Enums.ArbShaderObjects)pname, (Int32*)@params_ptr); - @params = *@params_ptr; - } - } - } - - public static - void GetObjectParameter(Int32 obj, OpenTK.OpenGL.Enums.ArbShaderObjects pname, [Out] out Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.OpenGL.Enums.ArbShaderObjects)pname, (Int32*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetObjectParameter(UInt32 obj, OpenTK.OpenGL.Enums.ArbShaderObjects pname, [Out] Int32* @params) - { - Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.OpenGL.Enums.ArbShaderObjects)pname, (Int32*)@params); - } - - [System.CLSCompliant(false)] - public static - unsafe void GetObjectParameter(Int32 obj, OpenTK.OpenGL.Enums.ArbShaderObjects pname, [Out] Int32* @params) - { - Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.OpenGL.Enums.ArbShaderObjects)pname, (Int32*)@params); - } - - [System.CLSCompliant(false)] - public static - void GetInfoLog(UInt32 obj, Int32 maxLength, [Out] Int32[] length, [Out] System.Text.StringBuilder infoLog) - { - unsafe - { - fixed (Int32* length_ptr = length) - { - Delegates.glGetInfoLogARB((UInt32)obj, (Int32)maxLength, (Int32*)length_ptr, (System.Text.StringBuilder)infoLog); - } - } - } - - public static - void GetInfoLog(Int32 obj, Int32 maxLength, [Out] Int32[] length, [Out] System.Text.StringBuilder infoLog) - { - unsafe - { - fixed (Int32* length_ptr = length) - { - Delegates.glGetInfoLogARB((UInt32)obj, (Int32)maxLength, (Int32*)length_ptr, (System.Text.StringBuilder)infoLog); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetInfoLog(UInt32 obj, Int32 maxLength, [Out] out Int32 length, [Out] System.Text.StringBuilder infoLog) - { - unsafe - { - fixed (Int32* length_ptr = &length) - { - Delegates.glGetInfoLogARB((UInt32)obj, (Int32)maxLength, (Int32*)length_ptr, (System.Text.StringBuilder)infoLog); - length = *length_ptr; - } - } - } - - public static - void GetInfoLog(Int32 obj, Int32 maxLength, [Out] out Int32 length, [Out] System.Text.StringBuilder infoLog) - { - unsafe - { - fixed (Int32* length_ptr = &length) - { - Delegates.glGetInfoLogARB((UInt32)obj, (Int32)maxLength, (Int32*)length_ptr, (System.Text.StringBuilder)infoLog); - length = *length_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetInfoLog(UInt32 obj, Int32 maxLength, [Out] Int32* length, [Out] System.Text.StringBuilder infoLog) - { - Delegates.glGetInfoLogARB((UInt32)obj, (Int32)maxLength, (Int32*)length, (System.Text.StringBuilder)infoLog); - } - - [System.CLSCompliant(false)] - public static - unsafe void GetInfoLog(Int32 obj, Int32 maxLength, [Out] Int32* length, [Out] System.Text.StringBuilder infoLog) - { - Delegates.glGetInfoLogARB((UInt32)obj, (Int32)maxLength, (Int32*)length, (System.Text.StringBuilder)infoLog); - } - - [System.CLSCompliant(false)] - public static - void GetAttachedObjects(UInt32 containerObj, Int32 maxCount, [Out] Int32[] count, [Out] UInt32[] obj) - { - unsafe - { - fixed (Int32* count_ptr = count) - fixed (UInt32* obj_ptr = obj) - { - Delegates.glGetAttachedObjectsARB((UInt32)containerObj, (Int32)maxCount, (Int32*)count_ptr, (UInt32*)obj_ptr); - } - } - } - - public static - void GetAttachedObjects(Int32 containerObj, Int32 maxCount, [Out] Int32[] count, [Out] Int32[] obj) - { - unsafe - { - fixed (Int32* count_ptr = count) - fixed (Int32* obj_ptr = obj) - { - Delegates.glGetAttachedObjectsARB((UInt32)containerObj, (Int32)maxCount, (Int32*)count_ptr, (UInt32*)obj_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetAttachedObjects(UInt32 containerObj, Int32 maxCount, [Out] out Int32 count, [Out] out UInt32 obj) - { - unsafe - { - fixed (Int32* count_ptr = &count) - fixed (UInt32* obj_ptr = &obj) - { - Delegates.glGetAttachedObjectsARB((UInt32)containerObj, (Int32)maxCount, (Int32*)count_ptr, (UInt32*)obj_ptr); - count = *count_ptr; - obj = *obj_ptr; - } - } - } - - public static - void GetAttachedObjects(Int32 containerObj, Int32 maxCount, [Out] out Int32 count, [Out] out Int32 obj) - { - unsafe - { - fixed (Int32* count_ptr = &count) - fixed (Int32* obj_ptr = &obj) - { - Delegates.glGetAttachedObjectsARB((UInt32)containerObj, (Int32)maxCount, (Int32*)count_ptr, (UInt32*)obj_ptr); - count = *count_ptr; - obj = *obj_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetAttachedObjects(UInt32 containerObj, Int32 maxCount, [Out] Int32* count, [Out] UInt32* obj) - { - Delegates.glGetAttachedObjectsARB((UInt32)containerObj, (Int32)maxCount, (Int32*)count, (UInt32*)obj); - } - - [System.CLSCompliant(false)] - public static - unsafe void GetAttachedObjects(Int32 containerObj, Int32 maxCount, [Out] Int32* count, [Out] Int32* obj) - { - Delegates.glGetAttachedObjectsARB((UInt32)containerObj, (Int32)maxCount, (Int32*)count, (UInt32*)obj); - } - - [System.CLSCompliant(false)] - public static - Int32 GetUniformLocation(UInt32 programObj, System.String name) - { - return Delegates.glGetUniformLocationARB((UInt32)programObj, (System.String)name); - } - - public static - Int32 GetUniformLocation(Int32 programObj, System.String name) - { - return Delegates.glGetUniformLocationARB((UInt32)programObj, (System.String)name); - } - - [System.CLSCompliant(false)] - public static - void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.OpenGL.Enums.ArbShaderObjects[] type, [Out] System.Text.StringBuilder name) - { - unsafe - { - fixed (Int32* length_ptr = length) - fixed (Int32* size_ptr = size) - fixed (OpenTK.OpenGL.Enums.ArbShaderObjects* type_ptr = type) - { - Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.ArbShaderObjects*)type_ptr, (System.Text.StringBuilder)name); - } - } - } - - public static - void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.OpenGL.Enums.ArbShaderObjects[] type, [Out] System.Text.StringBuilder name) - { - unsafe - { - fixed (Int32* length_ptr = length) - fixed (Int32* size_ptr = size) - fixed (OpenTK.OpenGL.Enums.ArbShaderObjects* type_ptr = type) - { - Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.ArbShaderObjects*)type_ptr, (System.Text.StringBuilder)name); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.OpenGL.Enums.ArbShaderObjects type, [Out] System.Text.StringBuilder name) - { - unsafe - { - fixed (Int32* length_ptr = &length) - fixed (Int32* size_ptr = &size) - fixed (OpenTK.OpenGL.Enums.ArbShaderObjects* type_ptr = &type) - { - Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.ArbShaderObjects*)type_ptr, (System.Text.StringBuilder)name); - length = *length_ptr; - size = *size_ptr; - type = *type_ptr; - } - } - } - - public static - void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.OpenGL.Enums.ArbShaderObjects type, [Out] System.Text.StringBuilder name) - { - unsafe - { - fixed (Int32* length_ptr = &length) - fixed (Int32* size_ptr = &size) - fixed (OpenTK.OpenGL.Enums.ArbShaderObjects* type_ptr = &type) - { - Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.ArbShaderObjects*)type_ptr, (System.Text.StringBuilder)name); - length = *length_ptr; - size = *size_ptr; - type = *type_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.OpenGL.Enums.ArbShaderObjects* type, [Out] System.Text.StringBuilder name) - { - Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length, (Int32*)size, (OpenTK.OpenGL.Enums.ArbShaderObjects*)type, (System.Text.StringBuilder)name); - } - - [System.CLSCompliant(false)] - public static - unsafe void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.OpenGL.Enums.ArbShaderObjects* type, [Out] System.Text.StringBuilder name) - { - Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length, (Int32*)size, (OpenTK.OpenGL.Enums.ArbShaderObjects*)type, (System.Text.StringBuilder)name); - } - - [System.CLSCompliant(false)] - public static - void GetUniform(UInt32 programObj, Int32 location, [Out] Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glGetUniformfvARB((UInt32)programObj, (Int32)location, (Single*)@params_ptr); - } - } - } - - public static - void GetUniform(Int32 programObj, Int32 location, [Out] Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glGetUniformfvARB((UInt32)programObj, (Int32)location, (Single*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetUniform(UInt32 programObj, Int32 location, [Out] out Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glGetUniformfvARB((UInt32)programObj, (Int32)location, (Single*)@params_ptr); - @params = *@params_ptr; - } - } - } - - public static - void GetUniform(Int32 programObj, Int32 location, [Out] out Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glGetUniformfvARB((UInt32)programObj, (Int32)location, (Single*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetUniform(UInt32 programObj, Int32 location, [Out] Single* @params) - { - Delegates.glGetUniformfvARB((UInt32)programObj, (Int32)location, (Single*)@params); - } - - [System.CLSCompliant(false)] - public static - unsafe void GetUniform(Int32 programObj, Int32 location, [Out] Single* @params) - { - Delegates.glGetUniformfvARB((UInt32)programObj, (Int32)location, (Single*)@params); - } - - [System.CLSCompliant(false)] - public static - void GetUniform(UInt32 programObj, Int32 location, [Out] Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glGetUniformivARB((UInt32)programObj, (Int32)location, (Int32*)@params_ptr); - } - } - } - - public static - void GetUniform(Int32 programObj, Int32 location, [Out] Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glGetUniformivARB((UInt32)programObj, (Int32)location, (Int32*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetUniform(UInt32 programObj, Int32 location, [Out] out Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glGetUniformivARB((UInt32)programObj, (Int32)location, (Int32*)@params_ptr); - @params = *@params_ptr; - } - } - } - - public static - void GetUniform(Int32 programObj, Int32 location, [Out] out Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glGetUniformivARB((UInt32)programObj, (Int32)location, (Int32*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetUniform(UInt32 programObj, Int32 location, [Out] Int32* @params) - { - Delegates.glGetUniformivARB((UInt32)programObj, (Int32)location, (Int32*)@params); - } - - [System.CLSCompliant(false)] - public static - unsafe void GetUniform(Int32 programObj, Int32 location, [Out] Int32* @params) - { - Delegates.glGetUniformivARB((UInt32)programObj, (Int32)location, (Int32*)@params); - } - - [System.CLSCompliant(false)] - public static - void GetShaderSource(UInt32 obj, Int32 maxLength, [Out] Int32[] length, [Out] System.Text.StringBuilder[] source) - { - unsafe - { - fixed (Int32* length_ptr = length) - { - Delegates.glGetShaderSourceARB((UInt32)obj, (Int32)maxLength, (Int32*)length_ptr, (System.Text.StringBuilder[])source); - } - } - } - - public static - void GetShaderSource(Int32 obj, Int32 maxLength, [Out] Int32[] length, [Out] System.Text.StringBuilder[] source) - { - unsafe - { - fixed (Int32* length_ptr = length) - { - Delegates.glGetShaderSourceARB((UInt32)obj, (Int32)maxLength, (Int32*)length_ptr, (System.Text.StringBuilder[])source); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetShaderSource(UInt32 obj, Int32 maxLength, [Out] out Int32 length, [Out] System.Text.StringBuilder[] source) - { - unsafe - { - fixed (Int32* length_ptr = &length) - { - Delegates.glGetShaderSourceARB((UInt32)obj, (Int32)maxLength, (Int32*)length_ptr, (System.Text.StringBuilder[])source); - length = *length_ptr; - } - } - } - - public static - void GetShaderSource(Int32 obj, Int32 maxLength, [Out] out Int32 length, [Out] System.Text.StringBuilder[] source) - { - unsafe - { - fixed (Int32* length_ptr = &length) - { - Delegates.glGetShaderSourceARB((UInt32)obj, (Int32)maxLength, (Int32*)length_ptr, (System.Text.StringBuilder[])source); - length = *length_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetShaderSource(UInt32 obj, Int32 maxLength, [Out] Int32* length, [Out] System.Text.StringBuilder[] source) - { - Delegates.glGetShaderSourceARB((UInt32)obj, (Int32)maxLength, (Int32*)length, (System.Text.StringBuilder[])source); - } - - [System.CLSCompliant(false)] - public static - unsafe void GetShaderSource(Int32 obj, Int32 maxLength, [Out] Int32* length, [Out] System.Text.StringBuilder[] source) - { - Delegates.glGetShaderSourceARB((UInt32)obj, (Int32)maxLength, (Int32*)length, (System.Text.StringBuilder[])source); - } - - [System.CLSCompliant(false)] - public static - void BindAttribLocation(UInt32 programObj, UInt32 index, System.String name) - { - Delegates.glBindAttribLocationARB((UInt32)programObj, (UInt32)index, (System.String)name); - } - - public static - void BindAttribLocation(Int32 programObj, Int32 index, System.String name) - { - Delegates.glBindAttribLocationARB((UInt32)programObj, (UInt32)index, (System.String)name); - } - - [System.CLSCompliant(false)] - public static - void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.OpenGL.Enums.ArbVertexShader[] type, [Out] System.Text.StringBuilder name) - { - unsafe - { - fixed (Int32* length_ptr = length) - fixed (Int32* size_ptr = size) - fixed (OpenTK.OpenGL.Enums.ArbVertexShader* type_ptr = type) - { - Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.ArbVertexShader*)type_ptr, (System.Text.StringBuilder)name); - } - } - } - - public static - void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.OpenGL.Enums.ArbVertexShader[] type, [Out] System.Text.StringBuilder name) - { - unsafe - { - fixed (Int32* length_ptr = length) - fixed (Int32* size_ptr = size) - fixed (OpenTK.OpenGL.Enums.ArbVertexShader* type_ptr = type) - { - Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.ArbVertexShader*)type_ptr, (System.Text.StringBuilder)name); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.OpenGL.Enums.ArbVertexShader type, [Out] System.Text.StringBuilder name) - { - unsafe - { - fixed (Int32* length_ptr = &length) - fixed (Int32* size_ptr = &size) - fixed (OpenTK.OpenGL.Enums.ArbVertexShader* type_ptr = &type) - { - Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.ArbVertexShader*)type_ptr, (System.Text.StringBuilder)name); - length = *length_ptr; - size = *size_ptr; - type = *type_ptr; - } - } - } - - public static - void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.OpenGL.Enums.ArbVertexShader type, [Out] System.Text.StringBuilder name) - { - unsafe - { - fixed (Int32* length_ptr = &length) - fixed (Int32* size_ptr = &size) - fixed (OpenTK.OpenGL.Enums.ArbVertexShader* type_ptr = &type) - { - Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.ArbVertexShader*)type_ptr, (System.Text.StringBuilder)name); - length = *length_ptr; - size = *size_ptr; - type = *type_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.OpenGL.Enums.ArbVertexShader* type, [Out] System.Text.StringBuilder name) - { - Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length, (Int32*)size, (OpenTK.OpenGL.Enums.ArbVertexShader*)type, (System.Text.StringBuilder)name); - } - - [System.CLSCompliant(false)] - public static - unsafe void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.OpenGL.Enums.ArbVertexShader* type, [Out] System.Text.StringBuilder name) - { - Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length, (Int32*)size, (OpenTK.OpenGL.Enums.ArbVertexShader*)type, (System.Text.StringBuilder)name); - } - - [System.CLSCompliant(false)] - public static - Int32 GetAttribLocation(UInt32 programObj, System.String name) - { - return Delegates.glGetAttribLocationARB((UInt32)programObj, (System.String)name); - } - - public static - Int32 GetAttribLocation(Int32 programObj, System.String name) - { - return Delegates.glGetAttribLocationARB((UInt32)programObj, (System.String)name); - } - - public static - void DrawBuffers(Int32 n, OpenTK.OpenGL.Enums.ArbDrawBuffers[] bufs) - { - unsafe - { - fixed (OpenTK.OpenGL.Enums.ArbDrawBuffers* bufs_ptr = bufs) - { - Delegates.glDrawBuffersARB((Int32)n, (OpenTK.OpenGL.Enums.ArbDrawBuffers*)bufs_ptr); - } - } - } - - public static - void DrawBuffers(Int32 n, ref OpenTK.OpenGL.Enums.ArbDrawBuffers bufs) - { - unsafe - { - fixed (OpenTK.OpenGL.Enums.ArbDrawBuffers* bufs_ptr = &bufs) - { - Delegates.glDrawBuffersARB((Int32)n, (OpenTK.OpenGL.Enums.ArbDrawBuffers*)bufs_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void DrawBuffers(Int32 n, OpenTK.OpenGL.Enums.ArbDrawBuffers* bufs) - { - Delegates.glDrawBuffersARB((Int32)n, (OpenTK.OpenGL.Enums.ArbDrawBuffers*)bufs); - } - - public static - void ClampColor(OpenTK.OpenGL.Enums.ArbColorBufferFloat target, OpenTK.OpenGL.Enums.ArbColorBufferFloat clamp) - { - Delegates.glClampColorARB((OpenTK.OpenGL.Enums.ArbColorBufferFloat)target, (OpenTK.OpenGL.Enums.ArbColorBufferFloat)clamp); - } - - } - - public static partial class Ext - { - public static - void BlendColor(Single red, Single green, Single blue, Single alpha) - { - Delegates.glBlendColorEXT((Single)red, (Single)green, (Single)blue, (Single)alpha); - } - - public static - void PolygonOffset(Single factor, Single bias) - { - Delegates.glPolygonOffsetEXT((Single)factor, (Single)bias); - } - - public static - void TexImage3D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr pixels) - { - unsafe - { - Delegates.glTexImage3DEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)pixels); - } - } - - public static - void TexImage3D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object pixels) - { - unsafe - { - System.Runtime.InteropServices.GCHandle pixels_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pixels, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glTexImage3DEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); - } - finally - { - pixels_ptr.Free(); - } - } - } - - public static - void TexSubImage3D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr pixels) - { - unsafe - { - Delegates.glTexSubImage3DEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)pixels); - } - } - - public static - void TexSubImage3D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object pixels) - { - unsafe - { - System.Runtime.InteropServices.GCHandle pixels_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pixels, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glTexSubImage3DEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); - } - finally - { - pixels_ptr.Free(); - } - } - } - - public static - void TexSubImage1D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr pixels) - { - unsafe - { - Delegates.glTexSubImage1DEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)pixels); - } - } - - public static - void TexSubImage1D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object pixels) - { - unsafe - { - System.Runtime.InteropServices.GCHandle pixels_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pixels, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glTexSubImage1DEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); - } - finally - { - pixels_ptr.Free(); - } - } - } - - public static - void TexSubImage2D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr pixels) - { - unsafe - { - Delegates.glTexSubImage2DEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)pixels); - } - } - - public static - void TexSubImage2D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object pixels) - { - unsafe - { - System.Runtime.InteropServices.GCHandle pixels_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pixels, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glTexSubImage2DEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); - } - finally - { - pixels_ptr.Free(); - } - } - } - - public static - void CopyTexImage1D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border) - { - Delegates.glCopyTexImage1DEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)border); - } - - public static - void CopyTexImage2D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) - { - Delegates.glCopyTexImage2DEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border); - } - - public static - void CopyTexSubImage1D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) - { - Delegates.glCopyTexSubImage1DEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)x, (Int32)y, (Int32)width); - } - - public static - void CopyTexSubImage2D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) - { - Delegates.glCopyTexSubImage2DEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); - } - - public static - void CopyTexSubImage3D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) - { - Delegates.glCopyTexSubImage3DEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); - } - - public static - void GetHistogram(OpenTK.OpenGL.Enums.HistogramTargetExt target, bool reset, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr values) - { - unsafe - { - Delegates.glGetHistogramEXT((OpenTK.OpenGL.Enums.HistogramTargetExt)target, (bool)reset, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)values); - } - } - - public static - void GetHistogram(OpenTK.OpenGL.Enums.HistogramTargetExt target, bool reset, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object values) - { - unsafe - { - System.Runtime.InteropServices.GCHandle values_ptr = System.Runtime.InteropServices.GCHandle.Alloc(values, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glGetHistogramEXT((OpenTK.OpenGL.Enums.HistogramTargetExt)target, (bool)reset, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); - } - finally - { - values_ptr.Free(); - } - } - } - - public static - void GetHistogramParameter(OpenTK.OpenGL.Enums.HistogramTargetExt target, OpenTK.OpenGL.Enums.GetHistogramParameterPNameExt pname, [Out] Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glGetHistogramParameterfvEXT((OpenTK.OpenGL.Enums.HistogramTargetExt)target, (OpenTK.OpenGL.Enums.GetHistogramParameterPNameExt)pname, (Single*)@params_ptr); - } - } - } - - public static - void GetHistogramParameter(OpenTK.OpenGL.Enums.HistogramTargetExt target, OpenTK.OpenGL.Enums.GetHistogramParameterPNameExt pname, [Out] out Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glGetHistogramParameterfvEXT((OpenTK.OpenGL.Enums.HistogramTargetExt)target, (OpenTK.OpenGL.Enums.GetHistogramParameterPNameExt)pname, (Single*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetHistogramParameter(OpenTK.OpenGL.Enums.HistogramTargetExt target, OpenTK.OpenGL.Enums.GetHistogramParameterPNameExt pname, [Out] Single* @params) - { - Delegates.glGetHistogramParameterfvEXT((OpenTK.OpenGL.Enums.HistogramTargetExt)target, (OpenTK.OpenGL.Enums.GetHistogramParameterPNameExt)pname, (Single*)@params); - } - - public static - void GetHistogramParameter(OpenTK.OpenGL.Enums.HistogramTargetExt target, OpenTK.OpenGL.Enums.GetHistogramParameterPNameExt pname, [Out] Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glGetHistogramParameterivEXT((OpenTK.OpenGL.Enums.HistogramTargetExt)target, (OpenTK.OpenGL.Enums.GetHistogramParameterPNameExt)pname, (Int32*)@params_ptr); - } - } - } - - public static - void GetHistogramParameter(OpenTK.OpenGL.Enums.HistogramTargetExt target, OpenTK.OpenGL.Enums.GetHistogramParameterPNameExt pname, [Out] out Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glGetHistogramParameterivEXT((OpenTK.OpenGL.Enums.HistogramTargetExt)target, (OpenTK.OpenGL.Enums.GetHistogramParameterPNameExt)pname, (Int32*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetHistogramParameter(OpenTK.OpenGL.Enums.HistogramTargetExt target, OpenTK.OpenGL.Enums.GetHistogramParameterPNameExt pname, [Out] Int32* @params) - { - Delegates.glGetHistogramParameterivEXT((OpenTK.OpenGL.Enums.HistogramTargetExt)target, (OpenTK.OpenGL.Enums.GetHistogramParameterPNameExt)pname, (Int32*)@params); - } - - public static - void GetMinmax(OpenTK.OpenGL.Enums.MinmaxTargetExt target, bool reset, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr values) - { - unsafe - { - Delegates.glGetMinmaxEXT((OpenTK.OpenGL.Enums.MinmaxTargetExt)target, (bool)reset, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)values); - } - } - - public static - void GetMinmax(OpenTK.OpenGL.Enums.MinmaxTargetExt target, bool reset, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object values) - { - unsafe - { - System.Runtime.InteropServices.GCHandle values_ptr = System.Runtime.InteropServices.GCHandle.Alloc(values, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glGetMinmaxEXT((OpenTK.OpenGL.Enums.MinmaxTargetExt)target, (bool)reset, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); - } - finally - { - values_ptr.Free(); - } - } - } - - public static - void GetMinmaxParameter(OpenTK.OpenGL.Enums.MinmaxTargetExt target, OpenTK.OpenGL.Enums.GetMinmaxParameterPNameExt pname, [Out] Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glGetMinmaxParameterfvEXT((OpenTK.OpenGL.Enums.MinmaxTargetExt)target, (OpenTK.OpenGL.Enums.GetMinmaxParameterPNameExt)pname, (Single*)@params_ptr); - } - } - } - - public static - void GetMinmaxParameter(OpenTK.OpenGL.Enums.MinmaxTargetExt target, OpenTK.OpenGL.Enums.GetMinmaxParameterPNameExt pname, [Out] out Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glGetMinmaxParameterfvEXT((OpenTK.OpenGL.Enums.MinmaxTargetExt)target, (OpenTK.OpenGL.Enums.GetMinmaxParameterPNameExt)pname, (Single*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetMinmaxParameter(OpenTK.OpenGL.Enums.MinmaxTargetExt target, OpenTK.OpenGL.Enums.GetMinmaxParameterPNameExt pname, [Out] Single* @params) - { - Delegates.glGetMinmaxParameterfvEXT((OpenTK.OpenGL.Enums.MinmaxTargetExt)target, (OpenTK.OpenGL.Enums.GetMinmaxParameterPNameExt)pname, (Single*)@params); - } - - public static - void GetMinmaxParameter(OpenTK.OpenGL.Enums.MinmaxTargetExt target, OpenTK.OpenGL.Enums.GetMinmaxParameterPNameExt pname, [Out] Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glGetMinmaxParameterivEXT((OpenTK.OpenGL.Enums.MinmaxTargetExt)target, (OpenTK.OpenGL.Enums.GetMinmaxParameterPNameExt)pname, (Int32*)@params_ptr); - } - } - } - - public static - void GetMinmaxParameter(OpenTK.OpenGL.Enums.MinmaxTargetExt target, OpenTK.OpenGL.Enums.GetMinmaxParameterPNameExt pname, [Out] out Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glGetMinmaxParameterivEXT((OpenTK.OpenGL.Enums.MinmaxTargetExt)target, (OpenTK.OpenGL.Enums.GetMinmaxParameterPNameExt)pname, (Int32*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetMinmaxParameter(OpenTK.OpenGL.Enums.MinmaxTargetExt target, OpenTK.OpenGL.Enums.GetMinmaxParameterPNameExt pname, [Out] Int32* @params) - { - Delegates.glGetMinmaxParameterivEXT((OpenTK.OpenGL.Enums.MinmaxTargetExt)target, (OpenTK.OpenGL.Enums.GetMinmaxParameterPNameExt)pname, (Int32*)@params); - } - - public static - void Histogram(OpenTK.OpenGL.Enums.HistogramTargetExt target, Int32 width, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, bool sink) - { - Delegates.glHistogramEXT((OpenTK.OpenGL.Enums.HistogramTargetExt)target, (Int32)width, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (bool)sink); - } - - public static - void Minmax(OpenTK.OpenGL.Enums.MinmaxTargetExt target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, bool sink) - { - Delegates.glMinmaxEXT((OpenTK.OpenGL.Enums.MinmaxTargetExt)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (bool)sink); - } - - public static - void ResetHistogram(OpenTK.OpenGL.Enums.HistogramTargetExt target) - { - Delegates.glResetHistogramEXT((OpenTK.OpenGL.Enums.HistogramTargetExt)target); - } - - public static - void ResetMinmax(OpenTK.OpenGL.Enums.MinmaxTargetExt target) - { - Delegates.glResetMinmaxEXT((OpenTK.OpenGL.Enums.MinmaxTargetExt)target); - } - - public static - void ConvolutionFilter1D(OpenTK.OpenGL.Enums.ConvolutionTargetExt target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr image) - { - unsafe - { - Delegates.glConvolutionFilter1DEXT((OpenTK.OpenGL.Enums.ConvolutionTargetExt)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)image); - } - } - - public static - void ConvolutionFilter1D(OpenTK.OpenGL.Enums.ConvolutionTargetExt target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object image) - { - unsafe - { - System.Runtime.InteropServices.GCHandle image_ptr = System.Runtime.InteropServices.GCHandle.Alloc(image, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glConvolutionFilter1DEXT((OpenTK.OpenGL.Enums.ConvolutionTargetExt)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); - } - finally - { - image_ptr.Free(); - } - } - } - - public static - void ConvolutionFilter2D(OpenTK.OpenGL.Enums.ConvolutionTargetExt target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr image) - { - unsafe - { - Delegates.glConvolutionFilter2DEXT((OpenTK.OpenGL.Enums.ConvolutionTargetExt)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)image); - } - } - - public static - void ConvolutionFilter2D(OpenTK.OpenGL.Enums.ConvolutionTargetExt target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object image) - { - unsafe - { - System.Runtime.InteropServices.GCHandle image_ptr = System.Runtime.InteropServices.GCHandle.Alloc(image, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glConvolutionFilter2DEXT((OpenTK.OpenGL.Enums.ConvolutionTargetExt)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); - } - finally - { - image_ptr.Free(); - } - } - } - - public static - void ConvolutionParameter(OpenTK.OpenGL.Enums.ConvolutionTargetExt target, OpenTK.OpenGL.Enums.ConvolutionParameterExt pname, Single @params) - { - Delegates.glConvolutionParameterfEXT((OpenTK.OpenGL.Enums.ConvolutionTargetExt)target, (OpenTK.OpenGL.Enums.ConvolutionParameterExt)pname, (Single)@params); - } - - public static - void ConvolutionParameterv(OpenTK.OpenGL.Enums.ConvolutionTargetExt target, OpenTK.OpenGL.Enums.ConvolutionParameterExt pname, Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glConvolutionParameterfvEXT((OpenTK.OpenGL.Enums.ConvolutionTargetExt)target, (OpenTK.OpenGL.Enums.ConvolutionParameterExt)pname, (Single*)@params_ptr); - } - } - } - - public static - void ConvolutionParameterv(OpenTK.OpenGL.Enums.ConvolutionTargetExt target, OpenTK.OpenGL.Enums.ConvolutionParameterExt pname, ref Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glConvolutionParameterfvEXT((OpenTK.OpenGL.Enums.ConvolutionTargetExt)target, (OpenTK.OpenGL.Enums.ConvolutionParameterExt)pname, (Single*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void ConvolutionParameterv(OpenTK.OpenGL.Enums.ConvolutionTargetExt target, OpenTK.OpenGL.Enums.ConvolutionParameterExt pname, Single* @params) - { - Delegates.glConvolutionParameterfvEXT((OpenTK.OpenGL.Enums.ConvolutionTargetExt)target, (OpenTK.OpenGL.Enums.ConvolutionParameterExt)pname, (Single*)@params); - } - - public static - void ConvolutionParameter(OpenTK.OpenGL.Enums.ConvolutionTargetExt target, OpenTK.OpenGL.Enums.ConvolutionParameterExt pname, Int32 @params) - { - Delegates.glConvolutionParameteriEXT((OpenTK.OpenGL.Enums.ConvolutionTargetExt)target, (OpenTK.OpenGL.Enums.ConvolutionParameterExt)pname, (Int32)@params); - } - - public static - void ConvolutionParameterv(OpenTK.OpenGL.Enums.ConvolutionTargetExt target, OpenTK.OpenGL.Enums.ConvolutionParameterExt pname, Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glConvolutionParameterivEXT((OpenTK.OpenGL.Enums.ConvolutionTargetExt)target, (OpenTK.OpenGL.Enums.ConvolutionParameterExt)pname, (Int32*)@params_ptr); - } - } - } - - public static - void ConvolutionParameterv(OpenTK.OpenGL.Enums.ConvolutionTargetExt target, OpenTK.OpenGL.Enums.ConvolutionParameterExt pname, ref Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glConvolutionParameterivEXT((OpenTK.OpenGL.Enums.ConvolutionTargetExt)target, (OpenTK.OpenGL.Enums.ConvolutionParameterExt)pname, (Int32*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void ConvolutionParameterv(OpenTK.OpenGL.Enums.ConvolutionTargetExt target, OpenTK.OpenGL.Enums.ConvolutionParameterExt pname, Int32* @params) - { - Delegates.glConvolutionParameterivEXT((OpenTK.OpenGL.Enums.ConvolutionTargetExt)target, (OpenTK.OpenGL.Enums.ConvolutionParameterExt)pname, (Int32*)@params); - } - - public static - void CopyConvolutionFilter1D(OpenTK.OpenGL.Enums.ConvolutionTargetExt target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) - { - Delegates.glCopyConvolutionFilter1DEXT((OpenTK.OpenGL.Enums.ConvolutionTargetExt)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width); - } - - public static - void CopyConvolutionFilter2D(OpenTK.OpenGL.Enums.ConvolutionTargetExt target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height) - { - Delegates.glCopyConvolutionFilter2DEXT((OpenTK.OpenGL.Enums.ConvolutionTargetExt)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height); - } - - public static - void GetConvolutionFilter(OpenTK.OpenGL.Enums.ConvolutionTargetExt target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr image) - { - unsafe - { - Delegates.glGetConvolutionFilterEXT((OpenTK.OpenGL.Enums.ConvolutionTargetExt)target, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)image); - } - } - - public static - void GetConvolutionFilter(OpenTK.OpenGL.Enums.ConvolutionTargetExt target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object image) - { - unsafe - { - System.Runtime.InteropServices.GCHandle image_ptr = System.Runtime.InteropServices.GCHandle.Alloc(image, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glGetConvolutionFilterEXT((OpenTK.OpenGL.Enums.ConvolutionTargetExt)target, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); - } - finally - { - image_ptr.Free(); - } - } - } - - public static - void GetConvolutionParameter(OpenTK.OpenGL.Enums.ConvolutionTargetExt target, OpenTK.OpenGL.Enums.ConvolutionParameterExt pname, [Out] Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glGetConvolutionParameterfvEXT((OpenTK.OpenGL.Enums.ConvolutionTargetExt)target, (OpenTK.OpenGL.Enums.ConvolutionParameterExt)pname, (Single*)@params_ptr); - } - } - } - - public static - void GetConvolutionParameter(OpenTK.OpenGL.Enums.ConvolutionTargetExt target, OpenTK.OpenGL.Enums.ConvolutionParameterExt pname, [Out] out Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glGetConvolutionParameterfvEXT((OpenTK.OpenGL.Enums.ConvolutionTargetExt)target, (OpenTK.OpenGL.Enums.ConvolutionParameterExt)pname, (Single*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetConvolutionParameter(OpenTK.OpenGL.Enums.ConvolutionTargetExt target, OpenTK.OpenGL.Enums.ConvolutionParameterExt pname, [Out] Single* @params) - { - Delegates.glGetConvolutionParameterfvEXT((OpenTK.OpenGL.Enums.ConvolutionTargetExt)target, (OpenTK.OpenGL.Enums.ConvolutionParameterExt)pname, (Single*)@params); - } - - public static - void GetConvolutionParameter(OpenTK.OpenGL.Enums.ConvolutionTargetExt target, OpenTK.OpenGL.Enums.ConvolutionParameterExt pname, [Out] Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glGetConvolutionParameterivEXT((OpenTK.OpenGL.Enums.ConvolutionTargetExt)target, (OpenTK.OpenGL.Enums.ConvolutionParameterExt)pname, (Int32*)@params_ptr); - } - } - } - - public static - void GetConvolutionParameter(OpenTK.OpenGL.Enums.ConvolutionTargetExt target, OpenTK.OpenGL.Enums.ConvolutionParameterExt pname, [Out] out Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glGetConvolutionParameterivEXT((OpenTK.OpenGL.Enums.ConvolutionTargetExt)target, (OpenTK.OpenGL.Enums.ConvolutionParameterExt)pname, (Int32*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetConvolutionParameter(OpenTK.OpenGL.Enums.ConvolutionTargetExt target, OpenTK.OpenGL.Enums.ConvolutionParameterExt pname, [Out] Int32* @params) - { - Delegates.glGetConvolutionParameterivEXT((OpenTK.OpenGL.Enums.ConvolutionTargetExt)target, (OpenTK.OpenGL.Enums.ConvolutionParameterExt)pname, (Int32*)@params); - } - - public static - void GetSeparableFilter(OpenTK.OpenGL.Enums.SeparableTargetExt target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr row, [Out] IntPtr column, [Out] IntPtr span) - { - unsafe - { - Delegates.glGetSeparableFilterEXT((OpenTK.OpenGL.Enums.SeparableTargetExt)target, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)row, (IntPtr)column, (IntPtr)span); - } - } - - public static - void GetSeparableFilter(OpenTK.OpenGL.Enums.SeparableTargetExt target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object row, [In, Out] object column, [In, Out] object span) - { - unsafe - { - System.Runtime.InteropServices.GCHandle row_ptr = System.Runtime.InteropServices.GCHandle.Alloc(row, System.Runtime.InteropServices.GCHandleType.Pinned); - System.Runtime.InteropServices.GCHandle column_ptr = System.Runtime.InteropServices.GCHandle.Alloc(column, System.Runtime.InteropServices.GCHandleType.Pinned); - System.Runtime.InteropServices.GCHandle span_ptr = System.Runtime.InteropServices.GCHandle.Alloc(span, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glGetSeparableFilterEXT((OpenTK.OpenGL.Enums.SeparableTargetExt)target, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); - } - finally - { - row_ptr.Free(); - column_ptr.Free(); - span_ptr.Free(); - } - } - } - - public static - void GetSeparableFilter(OpenTK.OpenGL.Enums.SeparableTargetExt target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr row, [In, Out] object column, [In, Out] object span) - { - unsafe - { - System.Runtime.InteropServices.GCHandle column_ptr = System.Runtime.InteropServices.GCHandle.Alloc(column, System.Runtime.InteropServices.GCHandleType.Pinned); - System.Runtime.InteropServices.GCHandle span_ptr = System.Runtime.InteropServices.GCHandle.Alloc(span, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glGetSeparableFilterEXT((OpenTK.OpenGL.Enums.SeparableTargetExt)target, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)row, (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); - } - finally - { - column_ptr.Free(); - span_ptr.Free(); - } - } - } - - public static - void SeparableFilter2D(OpenTK.OpenGL.Enums.SeparableTargetExt target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr row, IntPtr column) - { - unsafe - { - Delegates.glSeparableFilter2DEXT((OpenTK.OpenGL.Enums.SeparableTargetExt)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)row, (IntPtr)column); - } - } - - public static - void SeparableFilter2D(OpenTK.OpenGL.Enums.SeparableTargetExt target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object row, [In, Out] object column) - { - unsafe - { - System.Runtime.InteropServices.GCHandle row_ptr = System.Runtime.InteropServices.GCHandle.Alloc(row, System.Runtime.InteropServices.GCHandleType.Pinned); - System.Runtime.InteropServices.GCHandle column_ptr = System.Runtime.InteropServices.GCHandle.Alloc(column, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glSeparableFilter2DEXT((OpenTK.OpenGL.Enums.SeparableTargetExt)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject()); - } - finally - { - row_ptr.Free(); - column_ptr.Free(); - } - } - } - - [System.CLSCompliant(false)] - public static - bool AreTexturesResident(Int32 n, UInt32[] textures, [Out] bool[] residences) - { - unsafe - { - fixed (UInt32* textures_ptr = textures) - fixed (bool* residences_ptr = residences) - { - return Delegates.glAreTexturesResidentEXT((Int32)n, (UInt32*)textures_ptr, (bool*)residences_ptr); - } - } - } - - public static - bool AreTexturesResident(Int32 n, Int32[] textures, [Out] bool[] residences) - { - unsafe - { - fixed (Int32* textures_ptr = textures) - fixed (bool* residences_ptr = residences) - { - return Delegates.glAreTexturesResidentEXT((Int32)n, (UInt32*)textures_ptr, (bool*)residences_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - bool AreTexturesResident(Int32 n, ref UInt32 textures, [Out] out bool residences) - { - unsafe - { - fixed (UInt32* textures_ptr = &textures) - fixed (bool* residences_ptr = &residences) - { - bool retval = Delegates.glAreTexturesResidentEXT((Int32)n, (UInt32*)textures_ptr, (bool*)residences_ptr); - residences = *residences_ptr; - return retval; - } - } - } - - public static - bool AreTexturesResident(Int32 n, ref Int32 textures, [Out] out bool residences) - { - unsafe - { - fixed (Int32* textures_ptr = &textures) - fixed (bool* residences_ptr = &residences) - { - bool retval = Delegates.glAreTexturesResidentEXT((Int32)n, (UInt32*)textures_ptr, (bool*)residences_ptr); - residences = *residences_ptr; - return retval; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe bool AreTexturesResident(Int32 n, UInt32* textures, [Out] bool* residences) - { - return Delegates.glAreTexturesResidentEXT((Int32)n, (UInt32*)textures, (bool*)residences); - } - - [System.CLSCompliant(false)] - public static - unsafe bool AreTexturesResident(Int32 n, Int32* textures, [Out] bool* residences) - { - return Delegates.glAreTexturesResidentEXT((Int32)n, (UInt32*)textures, (bool*)residences); - } - - [System.CLSCompliant(false)] - public static - void BindTexture(OpenTK.OpenGL.Enums.TextureTarget target, UInt32 texture) - { - Delegates.glBindTextureEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (UInt32)texture); - } - - public static - void BindTexture(OpenTK.OpenGL.Enums.TextureTarget target, Int32 texture) - { - Delegates.glBindTextureEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (UInt32)texture); - } - - [System.CLSCompliant(false)] - public static - void DeleteTextures(Int32 n, UInt32[] textures) - { - unsafe - { - fixed (UInt32* textures_ptr = textures) - { - Delegates.glDeleteTexturesEXT((Int32)n, (UInt32*)textures_ptr); - } - } - } - - public static - void DeleteTextures(Int32 n, Int32[] textures) - { - unsafe - { - fixed (Int32* textures_ptr = textures) - { - Delegates.glDeleteTexturesEXT((Int32)n, (UInt32*)textures_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void DeleteTextures(Int32 n, ref UInt32 textures) - { - unsafe - { - fixed (UInt32* textures_ptr = &textures) - { - Delegates.glDeleteTexturesEXT((Int32)n, (UInt32*)textures_ptr); - } - } - } - - public static - void DeleteTextures(Int32 n, ref Int32 textures) - { - unsafe - { - fixed (Int32* textures_ptr = &textures) - { - Delegates.glDeleteTexturesEXT((Int32)n, (UInt32*)textures_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void DeleteTextures(Int32 n, UInt32* textures) - { - Delegates.glDeleteTexturesEXT((Int32)n, (UInt32*)textures); - } - - [System.CLSCompliant(false)] - public static - unsafe void DeleteTextures(Int32 n, Int32* textures) - { - Delegates.glDeleteTexturesEXT((Int32)n, (UInt32*)textures); - } - - [System.CLSCompliant(false)] - public static - void GenTextures(Int32 n, [Out] UInt32[] textures) - { - unsafe - { - fixed (UInt32* textures_ptr = textures) - { - Delegates.glGenTexturesEXT((Int32)n, (UInt32*)textures_ptr); - } - } - } - - public static - void GenTextures(Int32 n, [Out] Int32[] textures) - { - unsafe - { - fixed (Int32* textures_ptr = textures) - { - Delegates.glGenTexturesEXT((Int32)n, (UInt32*)textures_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void GenTextures(Int32 n, [Out] out UInt32 textures) - { - unsafe - { - fixed (UInt32* textures_ptr = &textures) - { - Delegates.glGenTexturesEXT((Int32)n, (UInt32*)textures_ptr); - textures = *textures_ptr; - } - } - } - - public static - void GenTextures(Int32 n, [Out] out Int32 textures) - { - unsafe - { - fixed (Int32* textures_ptr = &textures) - { - Delegates.glGenTexturesEXT((Int32)n, (UInt32*)textures_ptr); - textures = *textures_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GenTextures(Int32 n, [Out] UInt32* textures) - { - Delegates.glGenTexturesEXT((Int32)n, (UInt32*)textures); - } - - [System.CLSCompliant(false)] - public static - unsafe void GenTextures(Int32 n, [Out] Int32* textures) - { - Delegates.glGenTexturesEXT((Int32)n, (UInt32*)textures); - } - - [System.CLSCompliant(false)] - public static - bool IsTexture(UInt32 texture) - { - return Delegates.glIsTextureEXT((UInt32)texture); - } - - public static - bool IsTexture(Int32 texture) - { - return Delegates.glIsTextureEXT((UInt32)texture); - } - - [System.CLSCompliant(false)] - public static - void PrioritizeTextures(Int32 n, UInt32[] textures, Single[] priorities) - { - unsafe - { - fixed (UInt32* textures_ptr = textures) - fixed (Single* priorities_ptr = priorities) - { - Delegates.glPrioritizeTexturesEXT((Int32)n, (UInt32*)textures_ptr, (Single*)priorities_ptr); - } - } - } - - public static - void PrioritizeTextures(Int32 n, Int32[] textures, Single[] priorities) - { - unsafe - { - fixed (Int32* textures_ptr = textures) - fixed (Single* priorities_ptr = priorities) - { - Delegates.glPrioritizeTexturesEXT((Int32)n, (UInt32*)textures_ptr, (Single*)priorities_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void PrioritizeTextures(Int32 n, ref UInt32 textures, ref Single priorities) - { - unsafe - { - fixed (UInt32* textures_ptr = &textures) - fixed (Single* priorities_ptr = &priorities) - { - Delegates.glPrioritizeTexturesEXT((Int32)n, (UInt32*)textures_ptr, (Single*)priorities_ptr); - } - } - } - - public static - void PrioritizeTextures(Int32 n, ref Int32 textures, ref Single priorities) - { - unsafe - { - fixed (Int32* textures_ptr = &textures) - fixed (Single* priorities_ptr = &priorities) - { - Delegates.glPrioritizeTexturesEXT((Int32)n, (UInt32*)textures_ptr, (Single*)priorities_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void PrioritizeTextures(Int32 n, UInt32* textures, Single* priorities) - { - Delegates.glPrioritizeTexturesEXT((Int32)n, (UInt32*)textures, (Single*)priorities); - } - - [System.CLSCompliant(false)] - public static - unsafe void PrioritizeTextures(Int32 n, Int32* textures, Single* priorities) - { - Delegates.glPrioritizeTexturesEXT((Int32)n, (UInt32*)textures, (Single*)priorities); - } - - public static - void ArrayElement(Int32 i) - { - Delegates.glArrayElementEXT((Int32)i); - } - - public static - void ColorPointer(Int32 size, OpenTK.OpenGL.Enums.ColorPointerType type, Int32 stride, Int32 count, IntPtr pointer) - { - unsafe - { - Delegates.glColorPointerEXT((Int32)size, (OpenTK.OpenGL.Enums.ColorPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer); - } - } - - public static - void ColorPointer(Int32 size, OpenTK.OpenGL.Enums.ColorPointerType type, Int32 stride, Int32 count, [In, Out] object pointer) - { - unsafe - { - System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glColorPointerEXT((Int32)size, (OpenTK.OpenGL.Enums.ColorPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); - } - finally - { - pointer_ptr.Free(); - } - } - } - - public static - void DrawArrays(OpenTK.OpenGL.Enums.BeginMode mode, Int32 first, Int32 count) - { - Delegates.glDrawArraysEXT((OpenTK.OpenGL.Enums.BeginMode)mode, (Int32)first, (Int32)count); - } - - public static - void EdgeFlagPointer(Int32 stride, Int32 count, bool[] pointer) - { - unsafe - { - fixed (bool* pointer_ptr = pointer) - { - Delegates.glEdgeFlagPointerEXT((Int32)stride, (Int32)count, (bool*)pointer_ptr); - } - } - } - - public static - void EdgeFlagPointer(Int32 stride, Int32 count, ref bool pointer) - { - unsafe - { - fixed (bool* pointer_ptr = &pointer) - { - Delegates.glEdgeFlagPointerEXT((Int32)stride, (Int32)count, (bool*)pointer_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void EdgeFlagPointer(Int32 stride, Int32 count, bool* pointer) - { - Delegates.glEdgeFlagPointerEXT((Int32)stride, (Int32)count, (bool*)pointer); - } - - public static - void GetPointer(OpenTK.OpenGL.Enums.GetPointervPName pname, [Out] IntPtr @params) - { - unsafe - { - Delegates.glGetPointervEXT((OpenTK.OpenGL.Enums.GetPointervPName)pname, (IntPtr)@params); - } - } - - public static - void GetPointer(OpenTK.OpenGL.Enums.GetPointervPName pname, [In, Out] object @params) - { - unsafe - { - System.Runtime.InteropServices.GCHandle @params_ptr = System.Runtime.InteropServices.GCHandle.Alloc(@params, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glGetPointervEXT((OpenTK.OpenGL.Enums.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); - } - finally - { - @params_ptr.Free(); - } - } - } - - public static - void IndexPointer(OpenTK.OpenGL.Enums.IndexPointerType type, Int32 stride, Int32 count, IntPtr pointer) - { - unsafe - { - Delegates.glIndexPointerEXT((OpenTK.OpenGL.Enums.IndexPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer); - } - } - - public static - void IndexPointer(OpenTK.OpenGL.Enums.IndexPointerType type, Int32 stride, Int32 count, [In, Out] object pointer) - { - unsafe - { - System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glIndexPointerEXT((OpenTK.OpenGL.Enums.IndexPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); - } - finally - { - pointer_ptr.Free(); - } - } - } - - public static - void NormalPointer(OpenTK.OpenGL.Enums.NormalPointerType type, Int32 stride, Int32 count, IntPtr pointer) - { - unsafe - { - Delegates.glNormalPointerEXT((OpenTK.OpenGL.Enums.NormalPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer); - } - } - - public static - void NormalPointer(OpenTK.OpenGL.Enums.NormalPointerType type, Int32 stride, Int32 count, [In, Out] object pointer) - { - unsafe - { - System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glNormalPointerEXT((OpenTK.OpenGL.Enums.NormalPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); - } - finally - { - pointer_ptr.Free(); - } - } - } - - public static - void TexCoordPointer(Int32 size, OpenTK.OpenGL.Enums.TexCoordPointerType type, Int32 stride, Int32 count, IntPtr pointer) - { - unsafe - { - Delegates.glTexCoordPointerEXT((Int32)size, (OpenTK.OpenGL.Enums.TexCoordPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer); - } - } - - public static - void TexCoordPointer(Int32 size, OpenTK.OpenGL.Enums.TexCoordPointerType type, Int32 stride, Int32 count, [In, Out] object pointer) - { - unsafe - { - System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glTexCoordPointerEXT((Int32)size, (OpenTK.OpenGL.Enums.TexCoordPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); - } - finally - { - pointer_ptr.Free(); - } - } - } - - public static - void VertexPointer(Int32 size, OpenTK.OpenGL.Enums.VertexPointerType type, Int32 stride, Int32 count, IntPtr pointer) - { - unsafe - { - Delegates.glVertexPointerEXT((Int32)size, (OpenTK.OpenGL.Enums.VertexPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer); - } - } - - public static - void VertexPointer(Int32 size, OpenTK.OpenGL.Enums.VertexPointerType type, Int32 stride, Int32 count, [In, Out] object pointer) - { - unsafe - { - System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glVertexPointerEXT((Int32)size, (OpenTK.OpenGL.Enums.VertexPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); - } - finally - { - pointer_ptr.Free(); - } - } - } - - public static - void BlendEquation(OpenTK.OpenGL.Enums.BlendEquationModeExt mode) - { - Delegates.glBlendEquationEXT((OpenTK.OpenGL.Enums.BlendEquationModeExt)mode); - } - - public static - void PointParameter(OpenTK.OpenGL.Enums.ExtPointParameters pname, Single param) - { - Delegates.glPointParameterfEXT((OpenTK.OpenGL.Enums.ExtPointParameters)pname, (Single)param); - } - - public static - void PointParameterv(OpenTK.OpenGL.Enums.ExtPointParameters pname, Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glPointParameterfvEXT((OpenTK.OpenGL.Enums.ExtPointParameters)pname, (Single*)@params_ptr); - } - } - } - - public static - void PointParameterv(OpenTK.OpenGL.Enums.ExtPointParameters pname, ref Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glPointParameterfvEXT((OpenTK.OpenGL.Enums.ExtPointParameters)pname, (Single*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void PointParameterv(OpenTK.OpenGL.Enums.ExtPointParameters pname, Single* @params) - { - Delegates.glPointParameterfvEXT((OpenTK.OpenGL.Enums.ExtPointParameters)pname, (Single*)@params); - } - - public static - void ColorSubTable(OpenTK.OpenGL.Enums.ExtColorSubtable target, Int32 start, Int32 count, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr data) - { - unsafe - { - Delegates.glColorSubTableEXT((OpenTK.OpenGL.Enums.ExtColorSubtable)target, (Int32)start, (Int32)count, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)data); - } - } - - public static - void ColorSubTable(OpenTK.OpenGL.Enums.ExtColorSubtable target, Int32 start, Int32 count, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object data) - { - unsafe - { - System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glColorSubTableEXT((OpenTK.OpenGL.Enums.ExtColorSubtable)target, (Int32)start, (Int32)count, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); - } - finally - { - data_ptr.Free(); - } - } - } - - public static - void CopyColorSubTable(OpenTK.OpenGL.Enums.ExtColorSubtable target, Int32 start, Int32 x, Int32 y, Int32 width) - { - Delegates.glCopyColorSubTableEXT((OpenTK.OpenGL.Enums.ExtColorSubtable)target, (Int32)start, (Int32)x, (Int32)y, (Int32)width); - } - - public static - void ColorTable(OpenTK.OpenGL.Enums.ExtPalettedTexture target, OpenTK.OpenGL.Enums.PixelInternalFormat internalFormat, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr table) - { - unsafe - { - Delegates.glColorTableEXT((OpenTK.OpenGL.Enums.ExtPalettedTexture)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalFormat, (Int32)width, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)table); - } - } - - public static - void ColorTable(OpenTK.OpenGL.Enums.ExtPalettedTexture target, OpenTK.OpenGL.Enums.PixelInternalFormat internalFormat, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object table) - { - unsafe - { - System.Runtime.InteropServices.GCHandle table_ptr = System.Runtime.InteropServices.GCHandle.Alloc(table, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glColorTableEXT((OpenTK.OpenGL.Enums.ExtPalettedTexture)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalFormat, (Int32)width, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); - } - finally - { - table_ptr.Free(); - } - } - } - - public static - void GetColorTable(OpenTK.OpenGL.Enums.ExtPalettedTexture target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr data) - { - unsafe - { - Delegates.glGetColorTableEXT((OpenTK.OpenGL.Enums.ExtPalettedTexture)target, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)data); - } - } - - public static - void GetColorTable(OpenTK.OpenGL.Enums.ExtPalettedTexture target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object data) - { - unsafe - { - System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glGetColorTableEXT((OpenTK.OpenGL.Enums.ExtPalettedTexture)target, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); - } - finally - { - data_ptr.Free(); - } - } - } - - public static - void GetColorTableParameter(OpenTK.OpenGL.Enums.ExtPalettedTexture target, OpenTK.OpenGL.Enums.ExtPalettedTexture pname, [Out] Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glGetColorTableParameterivEXT((OpenTK.OpenGL.Enums.ExtPalettedTexture)target, (OpenTK.OpenGL.Enums.ExtPalettedTexture)pname, (Int32*)@params_ptr); - } - } - } - - public static - void GetColorTableParameter(OpenTK.OpenGL.Enums.ExtPalettedTexture target, OpenTK.OpenGL.Enums.ExtPalettedTexture pname, [Out] out Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glGetColorTableParameterivEXT((OpenTK.OpenGL.Enums.ExtPalettedTexture)target, (OpenTK.OpenGL.Enums.ExtPalettedTexture)pname, (Int32*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetColorTableParameter(OpenTK.OpenGL.Enums.ExtPalettedTexture target, OpenTK.OpenGL.Enums.ExtPalettedTexture pname, [Out] Int32* @params) - { - Delegates.glGetColorTableParameterivEXT((OpenTK.OpenGL.Enums.ExtPalettedTexture)target, (OpenTK.OpenGL.Enums.ExtPalettedTexture)pname, (Int32*)@params); - } - - public static - void GetColorTableParameter(OpenTK.OpenGL.Enums.ExtPalettedTexture target, OpenTK.OpenGL.Enums.ExtPalettedTexture pname, [Out] Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glGetColorTableParameterfvEXT((OpenTK.OpenGL.Enums.ExtPalettedTexture)target, (OpenTK.OpenGL.Enums.ExtPalettedTexture)pname, (Single*)@params_ptr); - } - } - } - - public static - void GetColorTableParameter(OpenTK.OpenGL.Enums.ExtPalettedTexture target, OpenTK.OpenGL.Enums.ExtPalettedTexture pname, [Out] out Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glGetColorTableParameterfvEXT((OpenTK.OpenGL.Enums.ExtPalettedTexture)target, (OpenTK.OpenGL.Enums.ExtPalettedTexture)pname, (Single*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetColorTableParameter(OpenTK.OpenGL.Enums.ExtPalettedTexture target, OpenTK.OpenGL.Enums.ExtPalettedTexture pname, [Out] Single* @params) - { - Delegates.glGetColorTableParameterfvEXT((OpenTK.OpenGL.Enums.ExtPalettedTexture)target, (OpenTK.OpenGL.Enums.ExtPalettedTexture)pname, (Single*)@params); - } - - public static - void IndexMaterial(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.ExtIndexMaterial mode) - { - Delegates.glIndexMaterialEXT((OpenTK.OpenGL.Enums.MaterialFace)face, (OpenTK.OpenGL.Enums.ExtIndexMaterial)mode); - } - - public static - void IndexFunc(OpenTK.OpenGL.Enums.ExtIndexFunc func, Single @ref) - { - Delegates.glIndexFuncEXT((OpenTK.OpenGL.Enums.ExtIndexFunc)func, (Single)@ref); - } - - public static - void LockArrays(Int32 first, Int32 count) - { - Delegates.glLockArraysEXT((Int32)first, (Int32)count); - } - - public static - void UnlockArrays() - { - Delegates.glUnlockArraysEXT(); - } - - public static - void CullParameter(OpenTK.OpenGL.Enums.ExtCullVertex pname, [Out] Double[] @params) - { - unsafe - { - fixed (Double* @params_ptr = @params) - { - Delegates.glCullParameterdvEXT((OpenTK.OpenGL.Enums.ExtCullVertex)pname, (Double*)@params_ptr); - } - } - } - - public static - void CullParameter(OpenTK.OpenGL.Enums.ExtCullVertex pname, [Out] out Double @params) - { - unsafe - { - fixed (Double* @params_ptr = &@params) - { - Delegates.glCullParameterdvEXT((OpenTK.OpenGL.Enums.ExtCullVertex)pname, (Double*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void CullParameter(OpenTK.OpenGL.Enums.ExtCullVertex pname, [Out] Double* @params) - { - Delegates.glCullParameterdvEXT((OpenTK.OpenGL.Enums.ExtCullVertex)pname, (Double*)@params); - } - - public static - void CullParameter(OpenTK.OpenGL.Enums.ExtCullVertex pname, [Out] Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glCullParameterfvEXT((OpenTK.OpenGL.Enums.ExtCullVertex)pname, (Single*)@params_ptr); - } - } - } - - public static - void CullParameter(OpenTK.OpenGL.Enums.ExtCullVertex pname, [Out] out Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glCullParameterfvEXT((OpenTK.OpenGL.Enums.ExtCullVertex)pname, (Single*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void CullParameter(OpenTK.OpenGL.Enums.ExtCullVertex pname, [Out] Single* @params) - { - Delegates.glCullParameterfvEXT((OpenTK.OpenGL.Enums.ExtCullVertex)pname, (Single*)@params); - } - - [System.CLSCompliant(false)] - public static - void DrawRangeElements(OpenTK.OpenGL.Enums.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.OpenGL.Enums.ExtDrawRangeElements type, IntPtr indices) - { - unsafe - { - Delegates.glDrawRangeElementsEXT((OpenTK.OpenGL.Enums.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.OpenGL.Enums.ExtDrawRangeElements)type, (IntPtr)indices); - } - } - - public static - void DrawRangeElements(OpenTK.OpenGL.Enums.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.OpenGL.Enums.ExtDrawRangeElements type, IntPtr indices) - { - unsafe - { - Delegates.glDrawRangeElementsEXT((OpenTK.OpenGL.Enums.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.OpenGL.Enums.ExtDrawRangeElements)type, (IntPtr)indices); - } - } - - [System.CLSCompliant(false)] - public static - void DrawRangeElements(OpenTK.OpenGL.Enums.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.OpenGL.Enums.ExtDrawRangeElements type, [In, Out] object indices) - { - unsafe - { - System.Runtime.InteropServices.GCHandle indices_ptr = System.Runtime.InteropServices.GCHandle.Alloc(indices, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glDrawRangeElementsEXT((OpenTK.OpenGL.Enums.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.OpenGL.Enums.ExtDrawRangeElements)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); - } - finally - { - indices_ptr.Free(); - } - } - } - - public static - void DrawRangeElements(OpenTK.OpenGL.Enums.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.OpenGL.Enums.ExtDrawRangeElements type, [In, Out] object indices) - { - unsafe - { - System.Runtime.InteropServices.GCHandle indices_ptr = System.Runtime.InteropServices.GCHandle.Alloc(indices, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glDrawRangeElementsEXT((OpenTK.OpenGL.Enums.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.OpenGL.Enums.ExtDrawRangeElements)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); - } - finally - { - indices_ptr.Free(); - } - } - } - - public static - void ApplyTexture(OpenTK.OpenGL.Enums.ExtLightTexture mode) - { - Delegates.glApplyTextureEXT((OpenTK.OpenGL.Enums.ExtLightTexture)mode); - } - - public static - void TextureLight(OpenTK.OpenGL.Enums.ExtLightTexture pname) - { - Delegates.glTextureLightEXT((OpenTK.OpenGL.Enums.ExtLightTexture)pname); - } - - public static - void TextureMaterial(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter mode) - { - Delegates.glTextureMaterialEXT((OpenTK.OpenGL.Enums.MaterialFace)face, (OpenTK.OpenGL.Enums.MaterialParameter)mode); - } - - public static - void PixelTransformParameter(OpenTK.OpenGL.Enums.ExtPixelTransform target, OpenTK.OpenGL.Enums.ExtPixelTransform pname, Int32 param) - { - Delegates.glPixelTransformParameteriEXT((OpenTK.OpenGL.Enums.ExtPixelTransform)target, (OpenTK.OpenGL.Enums.ExtPixelTransform)pname, (Int32)param); - } - - public static - void PixelTransformParameter(OpenTK.OpenGL.Enums.ExtPixelTransform target, OpenTK.OpenGL.Enums.ExtPixelTransform pname, Single param) - { - Delegates.glPixelTransformParameterfEXT((OpenTK.OpenGL.Enums.ExtPixelTransform)target, (OpenTK.OpenGL.Enums.ExtPixelTransform)pname, (Single)param); - } - - public static - void PixelTransformParameterv(OpenTK.OpenGL.Enums.ExtPixelTransform target, OpenTK.OpenGL.Enums.ExtPixelTransform pname, Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glPixelTransformParameterivEXT((OpenTK.OpenGL.Enums.ExtPixelTransform)target, (OpenTK.OpenGL.Enums.ExtPixelTransform)pname, (Int32*)@params_ptr); - } - } - } - - public static - void PixelTransformParameterv(OpenTK.OpenGL.Enums.ExtPixelTransform target, OpenTK.OpenGL.Enums.ExtPixelTransform pname, ref Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glPixelTransformParameterivEXT((OpenTK.OpenGL.Enums.ExtPixelTransform)target, (OpenTK.OpenGL.Enums.ExtPixelTransform)pname, (Int32*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void PixelTransformParameterv(OpenTK.OpenGL.Enums.ExtPixelTransform target, OpenTK.OpenGL.Enums.ExtPixelTransform pname, Int32* @params) - { - Delegates.glPixelTransformParameterivEXT((OpenTK.OpenGL.Enums.ExtPixelTransform)target, (OpenTK.OpenGL.Enums.ExtPixelTransform)pname, (Int32*)@params); - } - - public static - void PixelTransformParameterv(OpenTK.OpenGL.Enums.ExtPixelTransform target, OpenTK.OpenGL.Enums.ExtPixelTransform pname, Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glPixelTransformParameterfvEXT((OpenTK.OpenGL.Enums.ExtPixelTransform)target, (OpenTK.OpenGL.Enums.ExtPixelTransform)pname, (Single*)@params_ptr); - } - } - } - - public static - void PixelTransformParameterv(OpenTK.OpenGL.Enums.ExtPixelTransform target, OpenTK.OpenGL.Enums.ExtPixelTransform pname, ref Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glPixelTransformParameterfvEXT((OpenTK.OpenGL.Enums.ExtPixelTransform)target, (OpenTK.OpenGL.Enums.ExtPixelTransform)pname, (Single*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void PixelTransformParameterv(OpenTK.OpenGL.Enums.ExtPixelTransform target, OpenTK.OpenGL.Enums.ExtPixelTransform pname, Single* @params) - { - Delegates.glPixelTransformParameterfvEXT((OpenTK.OpenGL.Enums.ExtPixelTransform)target, (OpenTK.OpenGL.Enums.ExtPixelTransform)pname, (Single*)@params); - } - - [System.CLSCompliant(false)] - public static - void SecondaryColor3(SByte red, SByte green, SByte blue) - { - Delegates.glSecondaryColor3bEXT((SByte)red, (SByte)green, (SByte)blue); - } - - [System.CLSCompliant(false)] - public static - void SecondaryColor3(SByte[] v) - { - unsafe - { - fixed (SByte* v_ptr = v) - { - Delegates.glSecondaryColor3bvEXT((SByte*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void SecondaryColor3(ref SByte v) - { - unsafe - { - fixed (SByte* v_ptr = &v) - { - Delegates.glSecondaryColor3bvEXT((SByte*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void SecondaryColor3(SByte* v) - { - Delegates.glSecondaryColor3bvEXT((SByte*)v); - } - - public static - void SecondaryColor3(Double red, Double green, Double blue) - { - Delegates.glSecondaryColor3dEXT((Double)red, (Double)green, (Double)blue); - } - - public static - void SecondaryColor3(Double[] v) - { - unsafe - { - fixed (Double* v_ptr = v) - { - Delegates.glSecondaryColor3dvEXT((Double*)v_ptr); - } - } - } - - public static - void SecondaryColor3(ref Double v) - { - unsafe - { - fixed (Double* v_ptr = &v) - { - Delegates.glSecondaryColor3dvEXT((Double*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void SecondaryColor3(Double* v) - { - Delegates.glSecondaryColor3dvEXT((Double*)v); - } - - public static - void SecondaryColor3(Single red, Single green, Single blue) - { - Delegates.glSecondaryColor3fEXT((Single)red, (Single)green, (Single)blue); - } - - public static - void SecondaryColor3(Single[] v) - { - unsafe - { - fixed (Single* v_ptr = v) - { - Delegates.glSecondaryColor3fvEXT((Single*)v_ptr); - } - } - } - - public static - void SecondaryColor3(ref Single v) - { - unsafe - { - fixed (Single* v_ptr = &v) - { - Delegates.glSecondaryColor3fvEXT((Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void SecondaryColor3(Single* v) - { - Delegates.glSecondaryColor3fvEXT((Single*)v); - } - - public static - void SecondaryColor3(Byte red, Byte green, Byte blue) - { - Delegates.glSecondaryColor3ubEXT((Byte)red, (Byte)green, (Byte)blue); - } - - public static - void SecondaryColor3(Byte[] v) - { - unsafe - { - fixed (Byte* v_ptr = v) - { - Delegates.glSecondaryColor3ubvEXT((Byte*)v_ptr); - } - } - } - - public static - void SecondaryColor3(ref Byte v) - { - unsafe - { - fixed (Byte* v_ptr = &v) - { - Delegates.glSecondaryColor3ubvEXT((Byte*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void SecondaryColor3(Byte* v) - { - Delegates.glSecondaryColor3ubvEXT((Byte*)v); - } - - [System.CLSCompliant(false)] - public static - void SecondaryColor3(UInt32 red, UInt32 green, UInt32 blue) - { - Delegates.glSecondaryColor3uiEXT((UInt32)red, (UInt32)green, (UInt32)blue); - } - - public static - void SecondaryColor3(Int32 red, Int32 green, Int32 blue) - { - Delegates.glSecondaryColor3uiEXT((UInt32)red, (UInt32)green, (UInt32)blue); - } - - [System.CLSCompliant(false)] - public static - void SecondaryColor3(UInt32[] v) - { - unsafe - { - fixed (UInt32* v_ptr = v) - { - Delegates.glSecondaryColor3uivEXT((UInt32*)v_ptr); - } - } - } - - public static - void SecondaryColor3(Int32[] v) - { - unsafe - { - fixed (Int32* v_ptr = v) - { - Delegates.glSecondaryColor3uivEXT((UInt32*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void SecondaryColor3(ref UInt32 v) - { - unsafe - { - fixed (UInt32* v_ptr = &v) - { - Delegates.glSecondaryColor3uivEXT((UInt32*)v_ptr); - } - } - } - - public static - void SecondaryColor3(ref Int32 v) - { - unsafe - { - fixed (Int32* v_ptr = &v) - { - Delegates.glSecondaryColor3uivEXT((UInt32*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void SecondaryColor3(UInt32* v) - { - Delegates.glSecondaryColor3uivEXT((UInt32*)v); - } - - [System.CLSCompliant(false)] - public static - unsafe void SecondaryColor3(Int32* v) - { - Delegates.glSecondaryColor3uivEXT((UInt32*)v); - } - - [System.CLSCompliant(false)] - public static - void SecondaryColor3(UInt16 red, UInt16 green, UInt16 blue) - { - Delegates.glSecondaryColor3usEXT((UInt16)red, (UInt16)green, (UInt16)blue); - } - - public static - void SecondaryColor3(Int16 red, Int16 green, Int16 blue) - { - Delegates.glSecondaryColor3usEXT((UInt16)red, (UInt16)green, (UInt16)blue); - } - - [System.CLSCompliant(false)] - public static - void SecondaryColor3(UInt16[] v) - { - unsafe - { - fixed (UInt16* v_ptr = v) - { - Delegates.glSecondaryColor3usvEXT((UInt16*)v_ptr); - } - } - } - - public static - void SecondaryColor3(Int16[] v) - { - unsafe - { - fixed (Int16* v_ptr = v) - { - Delegates.glSecondaryColor3usvEXT((UInt16*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void SecondaryColor3(ref UInt16 v) - { - unsafe - { - fixed (UInt16* v_ptr = &v) - { - Delegates.glSecondaryColor3usvEXT((UInt16*)v_ptr); - } - } - } - - public static - void SecondaryColor3(ref Int16 v) - { - unsafe - { - fixed (Int16* v_ptr = &v) - { - Delegates.glSecondaryColor3usvEXT((UInt16*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void SecondaryColor3(UInt16* v) - { - Delegates.glSecondaryColor3usvEXT((UInt16*)v); - } - - [System.CLSCompliant(false)] - public static - unsafe void SecondaryColor3(Int16* v) - { - Delegates.glSecondaryColor3usvEXT((UInt16*)v); - } - - public static - void SecondaryColorPointer(Int32 size, OpenTK.OpenGL.Enums.ColorPointerType type, Int32 stride, IntPtr pointer) - { - unsafe - { - Delegates.glSecondaryColorPointerEXT((Int32)size, (OpenTK.OpenGL.Enums.ColorPointerType)type, (Int32)stride, (IntPtr)pointer); - } - } - - public static - void SecondaryColorPointer(Int32 size, OpenTK.OpenGL.Enums.ColorPointerType type, Int32 stride, [In, Out] object pointer) - { - unsafe - { - System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glSecondaryColorPointerEXT((Int32)size, (OpenTK.OpenGL.Enums.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); - } - finally - { - pointer_ptr.Free(); - } - } - } - - public static - void TextureNormal(OpenTK.OpenGL.Enums.ExtTexturePerturbNormal mode) - { - Delegates.glTextureNormalEXT((OpenTK.OpenGL.Enums.ExtTexturePerturbNormal)mode); - } - - public static - void MultiDrawArrays(OpenTK.OpenGL.Enums.BeginMode mode, [Out] Int32[] first, [Out] Int32[] count, Int32 primcount) - { - unsafe - { - fixed (Int32* first_ptr = first) - fixed (Int32* count_ptr = count) - { - Delegates.glMultiDrawArraysEXT((OpenTK.OpenGL.Enums.BeginMode)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); - } - } - } - - public static - void MultiDrawArrays(OpenTK.OpenGL.Enums.BeginMode mode, [Out] out Int32 first, [Out] out Int32 count, Int32 primcount) - { - unsafe - { - fixed (Int32* first_ptr = &first) - fixed (Int32* count_ptr = &count) - { - Delegates.glMultiDrawArraysEXT((OpenTK.OpenGL.Enums.BeginMode)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); - first = *first_ptr; - count = *count_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void MultiDrawArrays(OpenTK.OpenGL.Enums.BeginMode mode, [Out] Int32* first, [Out] Int32* count, Int32 primcount) - { - Delegates.glMultiDrawArraysEXT((OpenTK.OpenGL.Enums.BeginMode)mode, (Int32*)first, (Int32*)count, (Int32)primcount); - } - - public static - void MultiDrawElements(OpenTK.OpenGL.Enums.BeginMode mode, Int32[] count, OpenTK.OpenGL.Enums.ExtMultiDrawArrays type, IntPtr indices, Int32 primcount) - { - unsafe - { - fixed (Int32* count_ptr = count) - { - Delegates.glMultiDrawElementsEXT((OpenTK.OpenGL.Enums.BeginMode)mode, (Int32*)count_ptr, (OpenTK.OpenGL.Enums.ExtMultiDrawArrays)type, (IntPtr)indices, (Int32)primcount); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void MultiDrawElements(OpenTK.OpenGL.Enums.BeginMode mode, Int32* count, OpenTK.OpenGL.Enums.ExtMultiDrawArrays type, [In, Out] object indices, Int32 primcount) - { - System.Runtime.InteropServices.GCHandle indices_ptr = System.Runtime.InteropServices.GCHandle.Alloc(indices, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glMultiDrawElementsEXT((OpenTK.OpenGL.Enums.BeginMode)mode, (Int32*)count, (OpenTK.OpenGL.Enums.ExtMultiDrawArrays)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); - } - finally - { - indices_ptr.Free(); - } - } - - public static - void MultiDrawElements(OpenTK.OpenGL.Enums.BeginMode mode, ref Int32 count, OpenTK.OpenGL.Enums.ExtMultiDrawArrays type, [In, Out] object indices, Int32 primcount) - { - unsafe - { - fixed (Int32* count_ptr = &count) - { - System.Runtime.InteropServices.GCHandle indices_ptr = System.Runtime.InteropServices.GCHandle.Alloc(indices, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glMultiDrawElementsEXT((OpenTK.OpenGL.Enums.BeginMode)mode, (Int32*)count_ptr, (OpenTK.OpenGL.Enums.ExtMultiDrawArrays)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); - } - finally - { - indices_ptr.Free(); - } - } - } - } - - public static - void FogCoord(Single coord) - { - Delegates.glFogCoordfEXT((Single)coord); - } - - public static - void FogCoordv(Single[] coord) - { - unsafe - { - fixed (Single* coord_ptr = coord) - { - Delegates.glFogCoordfvEXT((Single*)coord_ptr); - } - } - } - - public static - void FogCoordv(ref Single coord) - { - unsafe - { - fixed (Single* coord_ptr = &coord) - { - Delegates.glFogCoordfvEXT((Single*)coord_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void FogCoordv(Single* coord) - { - Delegates.glFogCoordfvEXT((Single*)coord); - } - - public static - void FogCoord(Double coord) - { - Delegates.glFogCoorddEXT((Double)coord); - } - - public static - void FogCoordv(Double[] coord) - { - unsafe - { - fixed (Double* coord_ptr = coord) - { - Delegates.glFogCoorddvEXT((Double*)coord_ptr); - } - } - } - - public static - void FogCoordv(ref Double coord) - { - unsafe - { - fixed (Double* coord_ptr = &coord) - { - Delegates.glFogCoorddvEXT((Double*)coord_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void FogCoordv(Double* coord) - { - Delegates.glFogCoorddvEXT((Double*)coord); - } - - public static - void FogCoordPointer(OpenTK.OpenGL.Enums.ExtFogCoord type, Int32 stride, IntPtr pointer) - { - unsafe - { - Delegates.glFogCoordPointerEXT((OpenTK.OpenGL.Enums.ExtFogCoord)type, (Int32)stride, (IntPtr)pointer); - } - } - - public static - void FogCoordPointer(OpenTK.OpenGL.Enums.ExtFogCoord type, Int32 stride, [In, Out] object pointer) - { - unsafe - { - System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glFogCoordPointerEXT((OpenTK.OpenGL.Enums.ExtFogCoord)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); - } - finally - { - pointer_ptr.Free(); - } - } - } - - [System.CLSCompliant(false)] - public static - void Tangent3(SByte tx, SByte ty, SByte tz) - { - Delegates.glTangent3bEXT((SByte)tx, (SByte)ty, (SByte)tz); - } - - public static - void Tangent3(Byte tx, Byte ty, Byte tz) - { - Delegates.glTangent3bEXT((SByte)tx, (SByte)ty, (SByte)tz); - } - - [System.CLSCompliant(false)] - public static - void Tangent3(SByte[] v) - { - unsafe - { - fixed (SByte* v_ptr = v) - { - Delegates.glTangent3bvEXT((SByte*)v_ptr); - } - } - } - - public static - void Tangent3(Byte[] v) - { - unsafe - { - fixed (Byte* v_ptr = v) - { - Delegates.glTangent3bvEXT((SByte*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void Tangent3(ref SByte v) - { - unsafe - { - fixed (SByte* v_ptr = &v) - { - Delegates.glTangent3bvEXT((SByte*)v_ptr); - } - } - } - - public static - void Tangent3(ref Byte v) - { - unsafe - { - fixed (Byte* v_ptr = &v) - { - Delegates.glTangent3bvEXT((SByte*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Tangent3(SByte* v) - { - Delegates.glTangent3bvEXT((SByte*)v); - } - - [System.CLSCompliant(false)] - public static - unsafe void Tangent3(Byte* v) - { - Delegates.glTangent3bvEXT((SByte*)v); - } - - public static - void Tangent3(Double tx, Double ty, Double tz) - { - Delegates.glTangent3dEXT((Double)tx, (Double)ty, (Double)tz); - } - - public static - void Tangent3(Double[] v) - { - unsafe - { - fixed (Double* v_ptr = v) - { - Delegates.glTangent3dvEXT((Double*)v_ptr); - } - } - } - - public static - void Tangent3(ref Double v) - { - unsafe - { - fixed (Double* v_ptr = &v) - { - Delegates.glTangent3dvEXT((Double*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Tangent3(Double* v) - { - Delegates.glTangent3dvEXT((Double*)v); - } - - public static - void Tangent3(Single tx, Single ty, Single tz) - { - Delegates.glTangent3fEXT((Single)tx, (Single)ty, (Single)tz); - } - - public static - void Tangent3(Single[] v) - { - unsafe - { - fixed (Single* v_ptr = v) - { - Delegates.glTangent3fvEXT((Single*)v_ptr); - } - } - } - - public static - void Tangent3(ref Single v) - { - unsafe - { - fixed (Single* v_ptr = &v) - { - Delegates.glTangent3fvEXT((Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Tangent3(Single* v) - { - Delegates.glTangent3fvEXT((Single*)v); - } - - public static - void Tangent3(Int32 tx, Int32 ty, Int32 tz) - { - Delegates.glTangent3iEXT((Int32)tx, (Int32)ty, (Int32)tz); - } - - public static - void Tangent3(Int32[] v) - { - unsafe - { - fixed (Int32* v_ptr = v) - { - Delegates.glTangent3ivEXT((Int32*)v_ptr); - } - } - } - - public static - void Tangent3(ref Int32 v) - { - unsafe - { - fixed (Int32* v_ptr = &v) - { - Delegates.glTangent3ivEXT((Int32*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Tangent3(Int32* v) - { - Delegates.glTangent3ivEXT((Int32*)v); - } - - public static - void Tangent3(Int16 tx, Int16 ty, Int16 tz) - { - Delegates.glTangent3sEXT((Int16)tx, (Int16)ty, (Int16)tz); - } - - public static - void Tangent3(Int16[] v) - { - unsafe - { - fixed (Int16* v_ptr = v) - { - Delegates.glTangent3svEXT((Int16*)v_ptr); - } - } - } - - public static - void Tangent3(ref Int16 v) - { - unsafe - { - fixed (Int16* v_ptr = &v) - { - Delegates.glTangent3svEXT((Int16*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Tangent3(Int16* v) - { - Delegates.glTangent3svEXT((Int16*)v); - } - - [System.CLSCompliant(false)] - public static - void Binormal3(SByte bx, SByte by, SByte bz) - { - Delegates.glBinormal3bEXT((SByte)bx, (SByte)by, (SByte)bz); - } - - public static - void Binormal3(Byte bx, Byte by, Byte bz) - { - Delegates.glBinormal3bEXT((SByte)bx, (SByte)by, (SByte)bz); - } - - [System.CLSCompliant(false)] - public static - void Binormal3(SByte[] v) - { - unsafe - { - fixed (SByte* v_ptr = v) - { - Delegates.glBinormal3bvEXT((SByte*)v_ptr); - } - } - } - - public static - void Binormal3(Byte[] v) - { - unsafe - { - fixed (Byte* v_ptr = v) - { - Delegates.glBinormal3bvEXT((SByte*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void Binormal3(ref SByte v) - { - unsafe - { - fixed (SByte* v_ptr = &v) - { - Delegates.glBinormal3bvEXT((SByte*)v_ptr); - } - } - } - - public static - void Binormal3(ref Byte v) - { - unsafe - { - fixed (Byte* v_ptr = &v) - { - Delegates.glBinormal3bvEXT((SByte*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Binormal3(SByte* v) - { - Delegates.glBinormal3bvEXT((SByte*)v); - } - - [System.CLSCompliant(false)] - public static - unsafe void Binormal3(Byte* v) - { - Delegates.glBinormal3bvEXT((SByte*)v); - } - - public static - void Binormal3(Double bx, Double by, Double bz) - { - Delegates.glBinormal3dEXT((Double)bx, (Double)by, (Double)bz); - } - - public static - void Binormal3(Double[] v) - { - unsafe - { - fixed (Double* v_ptr = v) - { - Delegates.glBinormal3dvEXT((Double*)v_ptr); - } - } - } - - public static - void Binormal3(ref Double v) - { - unsafe - { - fixed (Double* v_ptr = &v) - { - Delegates.glBinormal3dvEXT((Double*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Binormal3(Double* v) - { - Delegates.glBinormal3dvEXT((Double*)v); - } - - public static - void Binormal3(Single bx, Single by, Single bz) - { - Delegates.glBinormal3fEXT((Single)bx, (Single)by, (Single)bz); - } - - public static - void Binormal3(Single[] v) - { - unsafe - { - fixed (Single* v_ptr = v) - { - Delegates.glBinormal3fvEXT((Single*)v_ptr); - } - } - } - - public static - void Binormal3(ref Single v) - { - unsafe - { - fixed (Single* v_ptr = &v) - { - Delegates.glBinormal3fvEXT((Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Binormal3(Single* v) - { - Delegates.glBinormal3fvEXT((Single*)v); - } - - public static - void Binormal3(Int32 bx, Int32 by, Int32 bz) - { - Delegates.glBinormal3iEXT((Int32)bx, (Int32)by, (Int32)bz); - } - - public static - void Binormal3(Int32[] v) - { - unsafe - { - fixed (Int32* v_ptr = v) - { - Delegates.glBinormal3ivEXT((Int32*)v_ptr); - } - } - } - - public static - void Binormal3(ref Int32 v) - { - unsafe - { - fixed (Int32* v_ptr = &v) - { - Delegates.glBinormal3ivEXT((Int32*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Binormal3(Int32* v) - { - Delegates.glBinormal3ivEXT((Int32*)v); - } - - public static - void Binormal3(Int16 bx, Int16 by, Int16 bz) - { - Delegates.glBinormal3sEXT((Int16)bx, (Int16)by, (Int16)bz); - } - - public static - void Binormal3(Int16[] v) - { - unsafe - { - fixed (Int16* v_ptr = v) - { - Delegates.glBinormal3svEXT((Int16*)v_ptr); - } - } - } - - public static - void Binormal3(ref Int16 v) - { - unsafe - { - fixed (Int16* v_ptr = &v) - { - Delegates.glBinormal3svEXT((Int16*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Binormal3(Int16* v) - { - Delegates.glBinormal3svEXT((Int16*)v); - } - - public static - void TangentPointer(OpenTK.OpenGL.Enums.ExtCoordinateFrame type, Int32 stride, IntPtr pointer) - { - unsafe - { - Delegates.glTangentPointerEXT((OpenTK.OpenGL.Enums.ExtCoordinateFrame)type, (Int32)stride, (IntPtr)pointer); - } - } - - public static - void TangentPointer(OpenTK.OpenGL.Enums.ExtCoordinateFrame type, Int32 stride, [In, Out] object pointer) - { - unsafe - { - System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glTangentPointerEXT((OpenTK.OpenGL.Enums.ExtCoordinateFrame)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); - } - finally - { - pointer_ptr.Free(); - } - } - } - - public static - void BinormalPointer(OpenTK.OpenGL.Enums.ExtCoordinateFrame type, Int32 stride, IntPtr pointer) - { - unsafe - { - Delegates.glBinormalPointerEXT((OpenTK.OpenGL.Enums.ExtCoordinateFrame)type, (Int32)stride, (IntPtr)pointer); - } - } - - public static - void BinormalPointer(OpenTK.OpenGL.Enums.ExtCoordinateFrame type, Int32 stride, [In, Out] object pointer) - { - unsafe - { - System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glBinormalPointerEXT((OpenTK.OpenGL.Enums.ExtCoordinateFrame)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); - } - finally - { - pointer_ptr.Free(); - } - } - } - - public static - void BlendFuncSeparate(OpenTK.OpenGL.Enums.ExtBlendFuncSeparate sfactorRGB, OpenTK.OpenGL.Enums.ExtBlendFuncSeparate dfactorRGB, OpenTK.OpenGL.Enums.ExtBlendFuncSeparate sfactorAlpha, OpenTK.OpenGL.Enums.ExtBlendFuncSeparate dfactorAlpha) - { - Delegates.glBlendFuncSeparateEXT((OpenTK.OpenGL.Enums.ExtBlendFuncSeparate)sfactorRGB, (OpenTK.OpenGL.Enums.ExtBlendFuncSeparate)dfactorRGB, (OpenTK.OpenGL.Enums.ExtBlendFuncSeparate)sfactorAlpha, (OpenTK.OpenGL.Enums.ExtBlendFuncSeparate)dfactorAlpha); - } - - public static - void VertexWeight(Single weight) - { - Delegates.glVertexWeightfEXT((Single)weight); - } - - public static - void VertexWeightv(Single[] weight) - { - unsafe - { - fixed (Single* weight_ptr = weight) - { - Delegates.glVertexWeightfvEXT((Single*)weight_ptr); - } - } - } - - public static - void VertexWeightv(ref Single weight) - { - unsafe - { - fixed (Single* weight_ptr = &weight) - { - Delegates.glVertexWeightfvEXT((Single*)weight_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexWeightv(Single* weight) - { - Delegates.glVertexWeightfvEXT((Single*)weight); - } - - public static - void VertexWeightPointer(Int32 size, OpenTK.OpenGL.Enums.ExtVertexWeighting type, Int32 stride, IntPtr pointer) - { - unsafe - { - Delegates.glVertexWeightPointerEXT((Int32)size, (OpenTK.OpenGL.Enums.ExtVertexWeighting)type, (Int32)stride, (IntPtr)pointer); - } - } - - public static - void VertexWeightPointer(Int32 size, OpenTK.OpenGL.Enums.ExtVertexWeighting type, Int32 stride, [In, Out] object pointer) - { - unsafe - { - System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glVertexWeightPointerEXT((Int32)size, (OpenTK.OpenGL.Enums.ExtVertexWeighting)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); - } - finally - { - pointer_ptr.Free(); - } - } - } - - public static - void SampleMask(Single value, bool invert) - { - Delegates.glSampleMaskEXT((Single)value, (bool)invert); - } - - public static - void SamplePattern(OpenTK.OpenGL.Enums.ExtMultisample pattern) - { - Delegates.glSamplePatternEXT((OpenTK.OpenGL.Enums.ExtMultisample)pattern); - } - - public static - void BeginVertexShader() - { - Delegates.glBeginVertexShaderEXT(); - } - - public static - void EndVertexShader() - { - Delegates.glEndVertexShaderEXT(); - } - - [System.CLSCompliant(false)] - public static - void BindVertexShader(UInt32 id) - { - Delegates.glBindVertexShaderEXT((UInt32)id); - } - - public static - void BindVertexShader(Int32 id) - { - Delegates.glBindVertexShaderEXT((UInt32)id); - } - - [System.CLSCompliant(false)] - public static - Int32 GenVertexShaders(UInt32 range) - { - return Delegates.glGenVertexShadersEXT((UInt32)range); - } - - public static - Int32 GenVertexShaders(Int32 range) - { - return Delegates.glGenVertexShadersEXT((UInt32)range); - } - - [System.CLSCompliant(false)] - public static - void DeleteVertexShader(UInt32 id) - { - Delegates.glDeleteVertexShaderEXT((UInt32)id); - } - - public static - void DeleteVertexShader(Int32 id) - { - Delegates.glDeleteVertexShaderEXT((UInt32)id); - } - - [System.CLSCompliant(false)] - public static - void ShaderOp1(OpenTK.OpenGL.Enums.ExtVertexShader op, UInt32 res, UInt32 arg1) - { - Delegates.glShaderOp1EXT((OpenTK.OpenGL.Enums.ExtVertexShader)op, (UInt32)res, (UInt32)arg1); - } - - public static - void ShaderOp1(OpenTK.OpenGL.Enums.ExtVertexShader op, Int32 res, Int32 arg1) - { - Delegates.glShaderOp1EXT((OpenTK.OpenGL.Enums.ExtVertexShader)op, (UInt32)res, (UInt32)arg1); - } - - [System.CLSCompliant(false)] - public static - void ShaderOp2(OpenTK.OpenGL.Enums.ExtVertexShader op, UInt32 res, UInt32 arg1, UInt32 arg2) - { - Delegates.glShaderOp2EXT((OpenTK.OpenGL.Enums.ExtVertexShader)op, (UInt32)res, (UInt32)arg1, (UInt32)arg2); - } - - public static - void ShaderOp2(OpenTK.OpenGL.Enums.ExtVertexShader op, Int32 res, Int32 arg1, Int32 arg2) - { - Delegates.glShaderOp2EXT((OpenTK.OpenGL.Enums.ExtVertexShader)op, (UInt32)res, (UInt32)arg1, (UInt32)arg2); - } - - [System.CLSCompliant(false)] - public static - void ShaderOp3(OpenTK.OpenGL.Enums.ExtVertexShader op, UInt32 res, UInt32 arg1, UInt32 arg2, UInt32 arg3) - { - Delegates.glShaderOp3EXT((OpenTK.OpenGL.Enums.ExtVertexShader)op, (UInt32)res, (UInt32)arg1, (UInt32)arg2, (UInt32)arg3); - } - - public static - void ShaderOp3(OpenTK.OpenGL.Enums.ExtVertexShader op, Int32 res, Int32 arg1, Int32 arg2, Int32 arg3) - { - Delegates.glShaderOp3EXT((OpenTK.OpenGL.Enums.ExtVertexShader)op, (UInt32)res, (UInt32)arg1, (UInt32)arg2, (UInt32)arg3); - } - - [System.CLSCompliant(false)] - public static - void Swizzle(UInt32 res, UInt32 @in, OpenTK.OpenGL.Enums.ExtVertexShader outX, OpenTK.OpenGL.Enums.ExtVertexShader outY, OpenTK.OpenGL.Enums.ExtVertexShader outZ, OpenTK.OpenGL.Enums.ExtVertexShader outW) - { - Delegates.glSwizzleEXT((UInt32)res, (UInt32)@in, (OpenTK.OpenGL.Enums.ExtVertexShader)outX, (OpenTK.OpenGL.Enums.ExtVertexShader)outY, (OpenTK.OpenGL.Enums.ExtVertexShader)outZ, (OpenTK.OpenGL.Enums.ExtVertexShader)outW); - } - - public static - void Swizzle(Int32 res, Int32 @in, OpenTK.OpenGL.Enums.ExtVertexShader outX, OpenTK.OpenGL.Enums.ExtVertexShader outY, OpenTK.OpenGL.Enums.ExtVertexShader outZ, OpenTK.OpenGL.Enums.ExtVertexShader outW) - { - Delegates.glSwizzleEXT((UInt32)res, (UInt32)@in, (OpenTK.OpenGL.Enums.ExtVertexShader)outX, (OpenTK.OpenGL.Enums.ExtVertexShader)outY, (OpenTK.OpenGL.Enums.ExtVertexShader)outZ, (OpenTK.OpenGL.Enums.ExtVertexShader)outW); - } - - [System.CLSCompliant(false)] - public static - void WriteMask(UInt32 res, UInt32 @in, OpenTK.OpenGL.Enums.ExtVertexShader outX, OpenTK.OpenGL.Enums.ExtVertexShader outY, OpenTK.OpenGL.Enums.ExtVertexShader outZ, OpenTK.OpenGL.Enums.ExtVertexShader outW) - { - Delegates.glWriteMaskEXT((UInt32)res, (UInt32)@in, (OpenTK.OpenGL.Enums.ExtVertexShader)outX, (OpenTK.OpenGL.Enums.ExtVertexShader)outY, (OpenTK.OpenGL.Enums.ExtVertexShader)outZ, (OpenTK.OpenGL.Enums.ExtVertexShader)outW); - } - - public static - void WriteMask(Int32 res, Int32 @in, OpenTK.OpenGL.Enums.ExtVertexShader outX, OpenTK.OpenGL.Enums.ExtVertexShader outY, OpenTK.OpenGL.Enums.ExtVertexShader outZ, OpenTK.OpenGL.Enums.ExtVertexShader outW) - { - Delegates.glWriteMaskEXT((UInt32)res, (UInt32)@in, (OpenTK.OpenGL.Enums.ExtVertexShader)outX, (OpenTK.OpenGL.Enums.ExtVertexShader)outY, (OpenTK.OpenGL.Enums.ExtVertexShader)outZ, (OpenTK.OpenGL.Enums.ExtVertexShader)outW); - } - - [System.CLSCompliant(false)] - public static - void InsertComponent(UInt32 res, UInt32 src, UInt32 num) - { - Delegates.glInsertComponentEXT((UInt32)res, (UInt32)src, (UInt32)num); - } - - public static - void InsertComponent(Int32 res, Int32 src, Int32 num) - { - Delegates.glInsertComponentEXT((UInt32)res, (UInt32)src, (UInt32)num); - } - - [System.CLSCompliant(false)] - public static - void ExtractComponent(UInt32 res, UInt32 src, UInt32 num) - { - Delegates.glExtractComponentEXT((UInt32)res, (UInt32)src, (UInt32)num); - } - - public static - void ExtractComponent(Int32 res, Int32 src, Int32 num) - { - Delegates.glExtractComponentEXT((UInt32)res, (UInt32)src, (UInt32)num); - } - - [System.CLSCompliant(false)] - public static - Int32 GenSymbol(OpenTK.OpenGL.Enums.ExtVertexShader datatype, OpenTK.OpenGL.Enums.ExtVertexShader storagetype, OpenTK.OpenGL.Enums.ExtVertexShader range, UInt32 components) - { - return Delegates.glGenSymbolsEXT((OpenTK.OpenGL.Enums.ExtVertexShader)datatype, (OpenTK.OpenGL.Enums.ExtVertexShader)storagetype, (OpenTK.OpenGL.Enums.ExtVertexShader)range, (UInt32)components); - } - - public static - Int32 GenSymbol(OpenTK.OpenGL.Enums.ExtVertexShader datatype, OpenTK.OpenGL.Enums.ExtVertexShader storagetype, OpenTK.OpenGL.Enums.ExtVertexShader range, Int32 components) - { - return Delegates.glGenSymbolsEXT((OpenTK.OpenGL.Enums.ExtVertexShader)datatype, (OpenTK.OpenGL.Enums.ExtVertexShader)storagetype, (OpenTK.OpenGL.Enums.ExtVertexShader)range, (UInt32)components); - } - - [System.CLSCompliant(false)] - public static - void SetInvariant(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader type, IntPtr addr) - { - unsafe - { - Delegates.glSetInvariantEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)type, (IntPtr)addr); - } - } - - public static - void SetInvariant(Int32 id, OpenTK.OpenGL.Enums.ExtVertexShader type, IntPtr addr) - { - unsafe - { - Delegates.glSetInvariantEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)type, (IntPtr)addr); - } - } - - [System.CLSCompliant(false)] - public static - void SetInvariant(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader type, [In, Out] object addr) - { - unsafe - { - System.Runtime.InteropServices.GCHandle addr_ptr = System.Runtime.InteropServices.GCHandle.Alloc(addr, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glSetInvariantEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); - } - finally - { - addr_ptr.Free(); - } - } - } - - public static - void SetInvariant(Int32 id, OpenTK.OpenGL.Enums.ExtVertexShader type, [In, Out] object addr) - { - unsafe - { - System.Runtime.InteropServices.GCHandle addr_ptr = System.Runtime.InteropServices.GCHandle.Alloc(addr, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glSetInvariantEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); - } - finally - { - addr_ptr.Free(); - } - } - } - - [System.CLSCompliant(false)] - public static - void SetLocalConstant(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader type, IntPtr addr) - { - unsafe - { - Delegates.glSetLocalConstantEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)type, (IntPtr)addr); - } - } - - public static - void SetLocalConstant(Int32 id, OpenTK.OpenGL.Enums.ExtVertexShader type, IntPtr addr) - { - unsafe - { - Delegates.glSetLocalConstantEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)type, (IntPtr)addr); - } - } - - [System.CLSCompliant(false)] - public static - void SetLocalConstant(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader type, [In, Out] object addr) - { - unsafe - { - System.Runtime.InteropServices.GCHandle addr_ptr = System.Runtime.InteropServices.GCHandle.Alloc(addr, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glSetLocalConstantEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); - } - finally - { - addr_ptr.Free(); - } - } - } - - public static - void SetLocalConstant(Int32 id, OpenTK.OpenGL.Enums.ExtVertexShader type, [In, Out] object addr) - { - unsafe - { - System.Runtime.InteropServices.GCHandle addr_ptr = System.Runtime.InteropServices.GCHandle.Alloc(addr, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glSetLocalConstantEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); - } - finally - { - addr_ptr.Free(); - } - } - } - - [System.CLSCompliant(false)] - public static - void Variant(UInt32 id, SByte[] addr) - { - unsafe - { - fixed (SByte* addr_ptr = addr) - { - Delegates.glVariantbvEXT((UInt32)id, (SByte*)addr_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void Variant(UInt32 id, ref SByte addr) - { - unsafe - { - fixed (SByte* addr_ptr = &addr) - { - Delegates.glVariantbvEXT((UInt32)id, (SByte*)addr_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Variant(UInt32 id, SByte* addr) - { - Delegates.glVariantbvEXT((UInt32)id, (SByte*)addr); - } - - [System.CLSCompliant(false)] - public static - void Variant(UInt32 id, Int16[] addr) - { - unsafe - { - fixed (Int16* addr_ptr = addr) - { - Delegates.glVariantsvEXT((UInt32)id, (Int16*)addr_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void Variant(UInt32 id, ref Int16 addr) - { - unsafe - { - fixed (Int16* addr_ptr = &addr) - { - Delegates.glVariantsvEXT((UInt32)id, (Int16*)addr_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Variant(UInt32 id, Int16* addr) - { - Delegates.glVariantsvEXT((UInt32)id, (Int16*)addr); - } - - [System.CLSCompliant(false)] - public static - void Variant(UInt32 id, Int32[] addr) - { - unsafe - { - fixed (Int32* addr_ptr = addr) - { - Delegates.glVariantivEXT((UInt32)id, (Int32*)addr_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void Variant(UInt32 id, ref Int32 addr) - { - unsafe - { - fixed (Int32* addr_ptr = &addr) - { - Delegates.glVariantivEXT((UInt32)id, (Int32*)addr_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Variant(UInt32 id, Int32* addr) - { - Delegates.glVariantivEXT((UInt32)id, (Int32*)addr); - } - - [System.CLSCompliant(false)] - public static - void Variant(UInt32 id, Single[] addr) - { - unsafe - { - fixed (Single* addr_ptr = addr) - { - Delegates.glVariantfvEXT((UInt32)id, (Single*)addr_ptr); - } - } - } - - public static - void Variant(Int32 id, Single[] addr) - { - unsafe - { - fixed (Single* addr_ptr = addr) - { - Delegates.glVariantfvEXT((UInt32)id, (Single*)addr_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void Variant(UInt32 id, ref Single addr) - { - unsafe - { - fixed (Single* addr_ptr = &addr) - { - Delegates.glVariantfvEXT((UInt32)id, (Single*)addr_ptr); - } - } - } - - public static - void Variant(Int32 id, ref Single addr) - { - unsafe - { - fixed (Single* addr_ptr = &addr) - { - Delegates.glVariantfvEXT((UInt32)id, (Single*)addr_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Variant(UInt32 id, Single* addr) - { - Delegates.glVariantfvEXT((UInt32)id, (Single*)addr); - } - - [System.CLSCompliant(false)] - public static - unsafe void Variant(Int32 id, Single* addr) - { - Delegates.glVariantfvEXT((UInt32)id, (Single*)addr); - } - - [System.CLSCompliant(false)] - public static - void Variant(UInt32 id, Double[] addr) - { - unsafe - { - fixed (Double* addr_ptr = addr) - { - Delegates.glVariantdvEXT((UInt32)id, (Double*)addr_ptr); - } - } - } - - public static - void Variant(Int32 id, Double[] addr) - { - unsafe - { - fixed (Double* addr_ptr = addr) - { - Delegates.glVariantdvEXT((UInt32)id, (Double*)addr_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void Variant(UInt32 id, ref Double addr) - { - unsafe - { - fixed (Double* addr_ptr = &addr) - { - Delegates.glVariantdvEXT((UInt32)id, (Double*)addr_ptr); - } - } - } - - public static - void Variant(Int32 id, ref Double addr) - { - unsafe - { - fixed (Double* addr_ptr = &addr) - { - Delegates.glVariantdvEXT((UInt32)id, (Double*)addr_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Variant(UInt32 id, Double* addr) - { - Delegates.glVariantdvEXT((UInt32)id, (Double*)addr); - } - - [System.CLSCompliant(false)] - public static - unsafe void Variant(Int32 id, Double* addr) - { - Delegates.glVariantdvEXT((UInt32)id, (Double*)addr); - } - - [System.CLSCompliant(false)] - public static - void Variant(UInt32 id, Byte[] addr) - { - unsafe - { - fixed (Byte* addr_ptr = addr) - { - Delegates.glVariantubvEXT((UInt32)id, (Byte*)addr_ptr); - } - } - } - - public static - void Variant(Int32 id, Byte[] addr) - { - unsafe - { - fixed (Byte* addr_ptr = addr) - { - Delegates.glVariantubvEXT((UInt32)id, (Byte*)addr_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void Variant(UInt32 id, ref Byte addr) - { - unsafe - { - fixed (Byte* addr_ptr = &addr) - { - Delegates.glVariantubvEXT((UInt32)id, (Byte*)addr_ptr); - } - } - } - - public static - void Variant(Int32 id, ref Byte addr) - { - unsafe - { - fixed (Byte* addr_ptr = &addr) - { - Delegates.glVariantubvEXT((UInt32)id, (Byte*)addr_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Variant(UInt32 id, Byte* addr) - { - Delegates.glVariantubvEXT((UInt32)id, (Byte*)addr); - } - - [System.CLSCompliant(false)] - public static - unsafe void Variant(Int32 id, Byte* addr) - { - Delegates.glVariantubvEXT((UInt32)id, (Byte*)addr); - } - - [System.CLSCompliant(false)] - public static - void Variant(UInt32 id, UInt16[] addr) - { - unsafe - { - fixed (UInt16* addr_ptr = addr) - { - Delegates.glVariantusvEXT((UInt32)id, (UInt16*)addr_ptr); - } - } - } - - public static - void Variant(Int32 id, Int16[] addr) - { - unsafe - { - fixed (Int16* addr_ptr = addr) - { - Delegates.glVariantusvEXT((UInt32)id, (UInt16*)addr_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void Variant(UInt32 id, ref UInt16 addr) - { - unsafe - { - fixed (UInt16* addr_ptr = &addr) - { - Delegates.glVariantusvEXT((UInt32)id, (UInt16*)addr_ptr); - } - } - } - - public static - void Variant(Int32 id, ref Int16 addr) - { - unsafe - { - fixed (Int16* addr_ptr = &addr) - { - Delegates.glVariantusvEXT((UInt32)id, (UInt16*)addr_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Variant(UInt32 id, UInt16* addr) - { - Delegates.glVariantusvEXT((UInt32)id, (UInt16*)addr); - } - - [System.CLSCompliant(false)] - public static - unsafe void Variant(Int32 id, Int16* addr) - { - Delegates.glVariantusvEXT((UInt32)id, (UInt16*)addr); - } - - [System.CLSCompliant(false)] - public static - void Variant(UInt32 id, UInt32[] addr) - { - unsafe - { - fixed (UInt32* addr_ptr = addr) - { - Delegates.glVariantuivEXT((UInt32)id, (UInt32*)addr_ptr); - } - } - } - - public static - void Variant(Int32 id, Int32[] addr) - { - unsafe - { - fixed (Int32* addr_ptr = addr) - { - Delegates.glVariantuivEXT((UInt32)id, (UInt32*)addr_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void Variant(UInt32 id, ref UInt32 addr) - { - unsafe - { - fixed (UInt32* addr_ptr = &addr) - { - Delegates.glVariantuivEXT((UInt32)id, (UInt32*)addr_ptr); - } - } - } - - public static - void Variant(Int32 id, ref Int32 addr) - { - unsafe - { - fixed (Int32* addr_ptr = &addr) - { - Delegates.glVariantuivEXT((UInt32)id, (UInt32*)addr_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Variant(UInt32 id, UInt32* addr) - { - Delegates.glVariantuivEXT((UInt32)id, (UInt32*)addr); - } - - [System.CLSCompliant(false)] - public static - unsafe void Variant(Int32 id, Int32* addr) - { - Delegates.glVariantuivEXT((UInt32)id, (UInt32*)addr); - } - - [System.CLSCompliant(false)] - public static - void VariantPointer(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader type, UInt32 stride, IntPtr addr) - { - unsafe - { - Delegates.glVariantPointerEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)type, (UInt32)stride, (IntPtr)addr); - } - } - - public static - void VariantPointer(Int32 id, OpenTK.OpenGL.Enums.ExtVertexShader type, Int32 stride, IntPtr addr) - { - unsafe - { - Delegates.glVariantPointerEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)type, (UInt32)stride, (IntPtr)addr); - } - } - - [System.CLSCompliant(false)] - public static - void VariantPointer(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader type, UInt32 stride, [In, Out] object addr) - { - unsafe - { - System.Runtime.InteropServices.GCHandle addr_ptr = System.Runtime.InteropServices.GCHandle.Alloc(addr, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glVariantPointerEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)type, (UInt32)stride, (IntPtr)addr_ptr.AddrOfPinnedObject()); - } - finally - { - addr_ptr.Free(); - } - } - } - - public static - void VariantPointer(Int32 id, OpenTK.OpenGL.Enums.ExtVertexShader type, Int32 stride, [In, Out] object addr) - { - unsafe - { - System.Runtime.InteropServices.GCHandle addr_ptr = System.Runtime.InteropServices.GCHandle.Alloc(addr, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glVariantPointerEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)type, (UInt32)stride, (IntPtr)addr_ptr.AddrOfPinnedObject()); - } - finally - { - addr_ptr.Free(); - } - } - } - - [System.CLSCompliant(false)] - public static - void EnableVariantClientState(UInt32 id) - { - Delegates.glEnableVariantClientStateEXT((UInt32)id); - } - - public static - void EnableVariantClientState(Int32 id) - { - Delegates.glEnableVariantClientStateEXT((UInt32)id); - } - - [System.CLSCompliant(false)] - public static - void DisableVariantClientState(UInt32 id) - { - Delegates.glDisableVariantClientStateEXT((UInt32)id); - } - - public static - void DisableVariantClientState(Int32 id) - { - Delegates.glDisableVariantClientStateEXT((UInt32)id); - } - - public static - Int32 BindLightParameter(OpenTK.OpenGL.Enums.LightName light, OpenTK.OpenGL.Enums.LightParameter value) - { - return Delegates.glBindLightParameterEXT((OpenTK.OpenGL.Enums.LightName)light, (OpenTK.OpenGL.Enums.LightParameter)value); - } - - public static - Int32 BindMaterialParameter(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter value) - { - return Delegates.glBindMaterialParameterEXT((OpenTK.OpenGL.Enums.MaterialFace)face, (OpenTK.OpenGL.Enums.MaterialParameter)value); - } - - public static - Int32 BindTexGenParameter(OpenTK.OpenGL.Enums.ExtVertexShader unit, OpenTK.OpenGL.Enums.TextureCoordName coord, OpenTK.OpenGL.Enums.TextureGenParameter value) - { - return Delegates.glBindTexGenParameterEXT((OpenTK.OpenGL.Enums.ExtVertexShader)unit, (OpenTK.OpenGL.Enums.TextureCoordName)coord, (OpenTK.OpenGL.Enums.TextureGenParameter)value); - } - - public static - Int32 BindTextureUnitParameter(OpenTK.OpenGL.Enums.ExtVertexShader unit, OpenTK.OpenGL.Enums.ExtVertexShader value) - { - return Delegates.glBindTextureUnitParameterEXT((OpenTK.OpenGL.Enums.ExtVertexShader)unit, (OpenTK.OpenGL.Enums.ExtVertexShader)value); - } - - public static - Int32 BindParameter(OpenTK.OpenGL.Enums.ExtVertexShader value) - { - return Delegates.glBindParameterEXT((OpenTK.OpenGL.Enums.ExtVertexShader)value); - } - - [System.CLSCompliant(false)] - public static - bool IsVariantEnabled(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader cap) - { - return Delegates.glIsVariantEnabledEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)cap); - } - - public static - bool IsVariantEnabled(Int32 id, OpenTK.OpenGL.Enums.ExtVertexShader cap) - { - return Delegates.glIsVariantEnabledEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)cap); - } - - [System.CLSCompliant(false)] - public static - void GetVariantBoolean(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] bool[] data) - { - unsafe - { - fixed (bool* data_ptr = data) - { - Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (bool*)data_ptr); - } - } - } - - public static - void GetVariantBoolean(Int32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] bool[] data) - { - unsafe - { - fixed (bool* data_ptr = data) - { - Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (bool*)data_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetVariantBoolean(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] out bool data) - { - unsafe - { - fixed (bool* data_ptr = &data) - { - Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (bool*)data_ptr); - data = *data_ptr; - } - } - } - - public static - void GetVariantBoolean(Int32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] out bool data) - { - unsafe - { - fixed (bool* data_ptr = &data) - { - Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (bool*)data_ptr); - data = *data_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetVariantBoolean(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] bool* data) - { - Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (bool*)data); - } - - [System.CLSCompliant(false)] - public static - unsafe void GetVariantBoolean(Int32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] bool* data) - { - Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (bool*)data); - } - - [System.CLSCompliant(false)] - public static - void GetVariantInteger(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] Int32[] data) - { - unsafe - { - fixed (Int32* data_ptr = data) - { - Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (Int32*)data_ptr); - } - } - } - - public static - void GetVariantInteger(Int32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] Int32[] data) - { - unsafe - { - fixed (Int32* data_ptr = data) - { - Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (Int32*)data_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetVariantInteger(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] out Int32 data) - { - unsafe - { - fixed (Int32* data_ptr = &data) - { - Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (Int32*)data_ptr); - data = *data_ptr; - } - } - } - - public static - void GetVariantInteger(Int32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] out Int32 data) - { - unsafe - { - fixed (Int32* data_ptr = &data) - { - Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (Int32*)data_ptr); - data = *data_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetVariantInteger(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] Int32* data) - { - Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (Int32*)data); - } - - [System.CLSCompliant(false)] - public static - unsafe void GetVariantInteger(Int32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] Int32* data) - { - Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (Int32*)data); - } - - [System.CLSCompliant(false)] - public static - void GetVariantFloat(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] Single[] data) - { - unsafe - { - fixed (Single* data_ptr = data) - { - Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (Single*)data_ptr); - } - } - } - - public static - void GetVariantFloat(Int32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] Single[] data) - { - unsafe - { - fixed (Single* data_ptr = data) - { - Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (Single*)data_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetVariantFloat(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] out Single data) - { - unsafe - { - fixed (Single* data_ptr = &data) - { - Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (Single*)data_ptr); - data = *data_ptr; - } - } - } - - public static - void GetVariantFloat(Int32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] out Single data) - { - unsafe - { - fixed (Single* data_ptr = &data) - { - Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (Single*)data_ptr); - data = *data_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetVariantFloat(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] Single* data) - { - Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (Single*)data); - } - - [System.CLSCompliant(false)] - public static - unsafe void GetVariantFloat(Int32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] Single* data) - { - Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (Single*)data); - } - - [System.CLSCompliant(false)] - public static - void GetVariantPointer(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] IntPtr data) - { - unsafe - { - Delegates.glGetVariantPointervEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (IntPtr)data); - } - } - - public static - void GetVariantPointer(Int32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] IntPtr data) - { - unsafe - { - Delegates.glGetVariantPointervEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (IntPtr)data); - } - } - - [System.CLSCompliant(false)] - public static - void GetVariantPointer(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [In, Out] object data) - { - unsafe - { - System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glGetVariantPointervEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (IntPtr)data_ptr.AddrOfPinnedObject()); - } - finally - { - data_ptr.Free(); - } - } - } - - public static - void GetVariantPointer(Int32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [In, Out] object data) - { - unsafe - { - System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glGetVariantPointervEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (IntPtr)data_ptr.AddrOfPinnedObject()); - } - finally - { - data_ptr.Free(); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetInvariantBoolean(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] bool[] data) - { - unsafe - { - fixed (bool* data_ptr = data) - { - Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (bool*)data_ptr); - } - } - } - - public static - void GetInvariantBoolean(Int32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] bool[] data) - { - unsafe - { - fixed (bool* data_ptr = data) - { - Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (bool*)data_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetInvariantBoolean(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] out bool data) - { - unsafe - { - fixed (bool* data_ptr = &data) - { - Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (bool*)data_ptr); - data = *data_ptr; - } - } - } - - public static - void GetInvariantBoolean(Int32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] out bool data) - { - unsafe - { - fixed (bool* data_ptr = &data) - { - Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (bool*)data_ptr); - data = *data_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetInvariantBoolean(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] bool* data) - { - Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (bool*)data); - } - - [System.CLSCompliant(false)] - public static - unsafe void GetInvariantBoolean(Int32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] bool* data) - { - Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (bool*)data); - } - - [System.CLSCompliant(false)] - public static - void GetInvariantInteger(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] Int32[] data) - { - unsafe - { - fixed (Int32* data_ptr = data) - { - Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (Int32*)data_ptr); - } - } - } - - public static - void GetInvariantInteger(Int32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] Int32[] data) - { - unsafe - { - fixed (Int32* data_ptr = data) - { - Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (Int32*)data_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetInvariantInteger(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] out Int32 data) - { - unsafe - { - fixed (Int32* data_ptr = &data) - { - Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (Int32*)data_ptr); - data = *data_ptr; - } - } - } - - public static - void GetInvariantInteger(Int32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] out Int32 data) - { - unsafe - { - fixed (Int32* data_ptr = &data) - { - Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (Int32*)data_ptr); - data = *data_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetInvariantInteger(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] Int32* data) - { - Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (Int32*)data); - } - - [System.CLSCompliant(false)] - public static - unsafe void GetInvariantInteger(Int32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] Int32* data) - { - Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (Int32*)data); - } - - [System.CLSCompliant(false)] - public static - void GetInvariantFloat(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] Single[] data) - { - unsafe - { - fixed (Single* data_ptr = data) - { - Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (Single*)data_ptr); - } - } - } - - public static - void GetInvariantFloat(Int32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] Single[] data) - { - unsafe - { - fixed (Single* data_ptr = data) - { - Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (Single*)data_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetInvariantFloat(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] out Single data) - { - unsafe - { - fixed (Single* data_ptr = &data) - { - Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (Single*)data_ptr); - data = *data_ptr; - } - } - } - - public static - void GetInvariantFloat(Int32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] out Single data) - { - unsafe - { - fixed (Single* data_ptr = &data) - { - Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (Single*)data_ptr); - data = *data_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetInvariantFloat(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] Single* data) - { - Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (Single*)data); - } - - [System.CLSCompliant(false)] - public static - unsafe void GetInvariantFloat(Int32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] Single* data) - { - Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (Single*)data); - } - - [System.CLSCompliant(false)] - public static - void GetLocalConstantBoolean(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] bool[] data) - { - unsafe - { - fixed (bool* data_ptr = data) - { - Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (bool*)data_ptr); - } - } - } - - public static - void GetLocalConstantBoolean(Int32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] bool[] data) - { - unsafe - { - fixed (bool* data_ptr = data) - { - Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (bool*)data_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetLocalConstantBoolean(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] out bool data) - { - unsafe - { - fixed (bool* data_ptr = &data) - { - Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (bool*)data_ptr); - data = *data_ptr; - } - } - } - - public static - void GetLocalConstantBoolean(Int32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] out bool data) - { - unsafe - { - fixed (bool* data_ptr = &data) - { - Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (bool*)data_ptr); - data = *data_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetLocalConstantBoolean(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] bool* data) - { - Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (bool*)data); - } - - [System.CLSCompliant(false)] - public static - unsafe void GetLocalConstantBoolean(Int32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] bool* data) - { - Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (bool*)data); - } - - [System.CLSCompliant(false)] - public static - void GetLocalConstantInteger(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] Int32[] data) - { - unsafe - { - fixed (Int32* data_ptr = data) - { - Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (Int32*)data_ptr); - } - } - } - - public static - void GetLocalConstantInteger(Int32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] Int32[] data) - { - unsafe - { - fixed (Int32* data_ptr = data) - { - Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (Int32*)data_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetLocalConstantInteger(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] out Int32 data) - { - unsafe - { - fixed (Int32* data_ptr = &data) - { - Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (Int32*)data_ptr); - data = *data_ptr; - } - } - } - - public static - void GetLocalConstantInteger(Int32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] out Int32 data) - { - unsafe - { - fixed (Int32* data_ptr = &data) - { - Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (Int32*)data_ptr); - data = *data_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetLocalConstantInteger(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] Int32* data) - { - Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (Int32*)data); - } - - [System.CLSCompliant(false)] - public static - unsafe void GetLocalConstantInteger(Int32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] Int32* data) - { - Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (Int32*)data); - } - - [System.CLSCompliant(false)] - public static - void GetLocalConstantFloat(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] Single[] data) - { - unsafe - { - fixed (Single* data_ptr = data) - { - Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (Single*)data_ptr); - } - } - } - - public static - void GetLocalConstantFloat(Int32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] Single[] data) - { - unsafe - { - fixed (Single* data_ptr = data) - { - Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (Single*)data_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetLocalConstantFloat(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] out Single data) - { - unsafe - { - fixed (Single* data_ptr = &data) - { - Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (Single*)data_ptr); - data = *data_ptr; - } - } - } - - public static - void GetLocalConstantFloat(Int32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] out Single data) - { - unsafe - { - fixed (Single* data_ptr = &data) - { - Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (Single*)data_ptr); - data = *data_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetLocalConstantFloat(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] Single* data) - { - Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (Single*)data); - } - - [System.CLSCompliant(false)] - public static - unsafe void GetLocalConstantFloat(Int32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] Single* data) - { - Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtVertexShader)value, (Single*)data); - } - - public static - void ActiveStencilFace(OpenTK.OpenGL.Enums.ExtStencilTwoSide face) - { - Delegates.glActiveStencilFaceEXT((OpenTK.OpenGL.Enums.ExtStencilTwoSide)face); - } - - public static - void DepthBounds(Double zmin, Double zmax) - { - Delegates.glDepthBoundsEXT((Double)zmin, (Double)zmax); - } - - public static - void BlendEquationSeparate(OpenTK.OpenGL.Enums.BlendEquationModeExt modeRGB, OpenTK.OpenGL.Enums.BlendEquationModeExt modeAlpha) - { - Delegates.glBlendEquationSeparateEXT((OpenTK.OpenGL.Enums.BlendEquationModeExt)modeRGB, (OpenTK.OpenGL.Enums.BlendEquationModeExt)modeAlpha); - } - - [System.CLSCompliant(false)] - public static - bool IsRenderbuffer(UInt32 renderbuffer) - { - return Delegates.glIsRenderbufferEXT((UInt32)renderbuffer); - } - - public static - bool IsRenderbuffer(Int32 renderbuffer) - { - return Delegates.glIsRenderbufferEXT((UInt32)renderbuffer); - } - - [System.CLSCompliant(false)] - public static - void BindRenderbuffer(OpenTK.OpenGL.Enums.ExtFramebufferObject target, UInt32 renderbuffer) - { - Delegates.glBindRenderbufferEXT((OpenTK.OpenGL.Enums.ExtFramebufferObject)target, (UInt32)renderbuffer); - } - - public static - void BindRenderbuffer(OpenTK.OpenGL.Enums.ExtFramebufferObject target, Int32 renderbuffer) - { - Delegates.glBindRenderbufferEXT((OpenTK.OpenGL.Enums.ExtFramebufferObject)target, (UInt32)renderbuffer); - } - - [System.CLSCompliant(false)] - public static - void DeleteRenderbuffers(Int32 n, UInt32[] renderbuffers) - { - unsafe - { - fixed (UInt32* renderbuffers_ptr = renderbuffers) - { - Delegates.glDeleteRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers_ptr); - } - } - } - - public static - void DeleteRenderbuffers(Int32 n, Int32[] renderbuffers) - { - unsafe - { - fixed (Int32* renderbuffers_ptr = renderbuffers) - { - Delegates.glDeleteRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void DeleteRenderbuffers(Int32 n, ref UInt32 renderbuffers) - { - unsafe - { - fixed (UInt32* renderbuffers_ptr = &renderbuffers) - { - Delegates.glDeleteRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers_ptr); - } - } - } - - public static - void DeleteRenderbuffers(Int32 n, ref Int32 renderbuffers) - { - unsafe - { - fixed (Int32* renderbuffers_ptr = &renderbuffers) - { - Delegates.glDeleteRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void DeleteRenderbuffers(Int32 n, UInt32* renderbuffers) - { - Delegates.glDeleteRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers); - } - - [System.CLSCompliant(false)] - public static - unsafe void DeleteRenderbuffers(Int32 n, Int32* renderbuffers) - { - Delegates.glDeleteRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers); - } - - [System.CLSCompliant(false)] - public static - void GenRenderbuffers(Int32 n, [Out] UInt32[] renderbuffers) - { - unsafe - { - fixed (UInt32* renderbuffers_ptr = renderbuffers) - { - Delegates.glGenRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers_ptr); - } - } - } - - public static - void GenRenderbuffers(Int32 n, [Out] Int32[] renderbuffers) - { - unsafe - { - fixed (Int32* renderbuffers_ptr = renderbuffers) - { - Delegates.glGenRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void GenRenderbuffers(Int32 n, [Out] out UInt32 renderbuffers) - { - unsafe - { - fixed (UInt32* renderbuffers_ptr = &renderbuffers) - { - Delegates.glGenRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers_ptr); - renderbuffers = *renderbuffers_ptr; - } - } - } - - public static - void GenRenderbuffers(Int32 n, [Out] out Int32 renderbuffers) - { - unsafe - { - fixed (Int32* renderbuffers_ptr = &renderbuffers) - { - Delegates.glGenRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers_ptr); - renderbuffers = *renderbuffers_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GenRenderbuffers(Int32 n, [Out] UInt32* renderbuffers) - { - Delegates.glGenRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers); - } - - [System.CLSCompliant(false)] - public static - unsafe void GenRenderbuffers(Int32 n, [Out] Int32* renderbuffers) - { - Delegates.glGenRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers); - } - - public static - void RenderbufferStorage(OpenTK.OpenGL.Enums.ExtFramebufferObject target, OpenTK.OpenGL.Enums.ExtFramebufferObject internalformat, Int32 width, Int32 height) - { - Delegates.glRenderbufferStorageEXT((OpenTK.OpenGL.Enums.ExtFramebufferObject)target, (OpenTK.OpenGL.Enums.ExtFramebufferObject)internalformat, (Int32)width, (Int32)height); - } - - public static - void GetRenderbufferParameter(OpenTK.OpenGL.Enums.ExtFramebufferObject target, OpenTK.OpenGL.Enums.ExtFramebufferObject pname, [Out] Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glGetRenderbufferParameterivEXT((OpenTK.OpenGL.Enums.ExtFramebufferObject)target, (OpenTK.OpenGL.Enums.ExtFramebufferObject)pname, (Int32*)@params_ptr); - } - } - } - - public static - void GetRenderbufferParameter(OpenTK.OpenGL.Enums.ExtFramebufferObject target, OpenTK.OpenGL.Enums.ExtFramebufferObject pname, [Out] out Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glGetRenderbufferParameterivEXT((OpenTK.OpenGL.Enums.ExtFramebufferObject)target, (OpenTK.OpenGL.Enums.ExtFramebufferObject)pname, (Int32*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetRenderbufferParameter(OpenTK.OpenGL.Enums.ExtFramebufferObject target, OpenTK.OpenGL.Enums.ExtFramebufferObject pname, [Out] Int32* @params) - { - Delegates.glGetRenderbufferParameterivEXT((OpenTK.OpenGL.Enums.ExtFramebufferObject)target, (OpenTK.OpenGL.Enums.ExtFramebufferObject)pname, (Int32*)@params); - } - - [System.CLSCompliant(false)] - public static - bool IsFramebuffer(UInt32 framebuffer) - { - return Delegates.glIsFramebufferEXT((UInt32)framebuffer); - } - - public static - bool IsFramebuffer(Int32 framebuffer) - { - return Delegates.glIsFramebufferEXT((UInt32)framebuffer); - } - - [System.CLSCompliant(false)] - public static - void BindFramebuffer(OpenTK.OpenGL.Enums.ExtFramebufferObject target, UInt32 framebuffer) - { - Delegates.glBindFramebufferEXT((OpenTK.OpenGL.Enums.ExtFramebufferObject)target, (UInt32)framebuffer); - } - - public static - void BindFramebuffer(OpenTK.OpenGL.Enums.ExtFramebufferObject target, Int32 framebuffer) - { - Delegates.glBindFramebufferEXT((OpenTK.OpenGL.Enums.ExtFramebufferObject)target, (UInt32)framebuffer); - } - - [System.CLSCompliant(false)] - public static - void DeleteFramebuffers(Int32 n, UInt32[] framebuffers) - { - unsafe - { - fixed (UInt32* framebuffers_ptr = framebuffers) - { - Delegates.glDeleteFramebuffersEXT((Int32)n, (UInt32*)framebuffers_ptr); - } - } - } - - public static - void DeleteFramebuffers(Int32 n, Int32[] framebuffers) - { - unsafe - { - fixed (Int32* framebuffers_ptr = framebuffers) - { - Delegates.glDeleteFramebuffersEXT((Int32)n, (UInt32*)framebuffers_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void DeleteFramebuffers(Int32 n, ref UInt32 framebuffers) - { - unsafe - { - fixed (UInt32* framebuffers_ptr = &framebuffers) - { - Delegates.glDeleteFramebuffersEXT((Int32)n, (UInt32*)framebuffers_ptr); - } - } - } - - public static - void DeleteFramebuffers(Int32 n, ref Int32 framebuffers) - { - unsafe - { - fixed (Int32* framebuffers_ptr = &framebuffers) - { - Delegates.glDeleteFramebuffersEXT((Int32)n, (UInt32*)framebuffers_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void DeleteFramebuffers(Int32 n, UInt32* framebuffers) - { - Delegates.glDeleteFramebuffersEXT((Int32)n, (UInt32*)framebuffers); - } - - [System.CLSCompliant(false)] - public static - unsafe void DeleteFramebuffers(Int32 n, Int32* framebuffers) - { - Delegates.glDeleteFramebuffersEXT((Int32)n, (UInt32*)framebuffers); - } - - [System.CLSCompliant(false)] - public static - void GenFramebuffers(Int32 n, [Out] UInt32[] framebuffers) - { - unsafe - { - fixed (UInt32* framebuffers_ptr = framebuffers) - { - Delegates.glGenFramebuffersEXT((Int32)n, (UInt32*)framebuffers_ptr); - } - } - } - - public static - void GenFramebuffers(Int32 n, [Out] Int32[] framebuffers) - { - unsafe - { - fixed (Int32* framebuffers_ptr = framebuffers) - { - Delegates.glGenFramebuffersEXT((Int32)n, (UInt32*)framebuffers_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void GenFramebuffers(Int32 n, [Out] out UInt32 framebuffers) - { - unsafe - { - fixed (UInt32* framebuffers_ptr = &framebuffers) - { - Delegates.glGenFramebuffersEXT((Int32)n, (UInt32*)framebuffers_ptr); - framebuffers = *framebuffers_ptr; - } - } - } - - public static - void GenFramebuffers(Int32 n, [Out] out Int32 framebuffers) - { - unsafe - { - fixed (Int32* framebuffers_ptr = &framebuffers) - { - Delegates.glGenFramebuffersEXT((Int32)n, (UInt32*)framebuffers_ptr); - framebuffers = *framebuffers_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GenFramebuffers(Int32 n, [Out] UInt32* framebuffers) - { - Delegates.glGenFramebuffersEXT((Int32)n, (UInt32*)framebuffers); - } - - [System.CLSCompliant(false)] - public static - unsafe void GenFramebuffers(Int32 n, [Out] Int32* framebuffers) - { - Delegates.glGenFramebuffersEXT((Int32)n, (UInt32*)framebuffers); - } - - public static - IntPtr CheckFramebufferStat(OpenTK.OpenGL.Enums.ExtFramebufferObject target) - { - unsafe - { - return Delegates.glCheckFramebufferStatusEXT((OpenTK.OpenGL.Enums.ExtFramebufferObject)target); - } - } - - [System.CLSCompliant(false)] - public static - void FramebufferTexture1D(OpenTK.OpenGL.Enums.ExtFramebufferObject target, OpenTK.OpenGL.Enums.ExtFramebufferObject attachment, OpenTK.OpenGL.Enums.ExtFramebufferObject textarget, UInt32 texture, Int32 level) - { - Delegates.glFramebufferTexture1DEXT((OpenTK.OpenGL.Enums.ExtFramebufferObject)target, (OpenTK.OpenGL.Enums.ExtFramebufferObject)attachment, (OpenTK.OpenGL.Enums.ExtFramebufferObject)textarget, (UInt32)texture, (Int32)level); - } - - public static - void FramebufferTexture1D(OpenTK.OpenGL.Enums.ExtFramebufferObject target, OpenTK.OpenGL.Enums.ExtFramebufferObject attachment, OpenTK.OpenGL.Enums.ExtFramebufferObject textarget, Int32 texture, Int32 level) - { - Delegates.glFramebufferTexture1DEXT((OpenTK.OpenGL.Enums.ExtFramebufferObject)target, (OpenTK.OpenGL.Enums.ExtFramebufferObject)attachment, (OpenTK.OpenGL.Enums.ExtFramebufferObject)textarget, (UInt32)texture, (Int32)level); - } - - [System.CLSCompliant(false)] - public static - void FramebufferTexture2D(OpenTK.OpenGL.Enums.ExtFramebufferObject target, OpenTK.OpenGL.Enums.ExtFramebufferObject attachment, OpenTK.OpenGL.Enums.ExtFramebufferObject textarget, UInt32 texture, Int32 level) - { - Delegates.glFramebufferTexture2DEXT((OpenTK.OpenGL.Enums.ExtFramebufferObject)target, (OpenTK.OpenGL.Enums.ExtFramebufferObject)attachment, (OpenTK.OpenGL.Enums.ExtFramebufferObject)textarget, (UInt32)texture, (Int32)level); - } - - public static - void FramebufferTexture2D(OpenTK.OpenGL.Enums.ExtFramebufferObject target, OpenTK.OpenGL.Enums.ExtFramebufferObject attachment, OpenTK.OpenGL.Enums.ExtFramebufferObject textarget, Int32 texture, Int32 level) - { - Delegates.glFramebufferTexture2DEXT((OpenTK.OpenGL.Enums.ExtFramebufferObject)target, (OpenTK.OpenGL.Enums.ExtFramebufferObject)attachment, (OpenTK.OpenGL.Enums.ExtFramebufferObject)textarget, (UInt32)texture, (Int32)level); - } - - [System.CLSCompliant(false)] - public static - void FramebufferTexture3D(OpenTK.OpenGL.Enums.ExtFramebufferObject target, OpenTK.OpenGL.Enums.ExtFramebufferObject attachment, OpenTK.OpenGL.Enums.ExtFramebufferObject textarget, UInt32 texture, Int32 level, Int32 zoffset) - { - Delegates.glFramebufferTexture3DEXT((OpenTK.OpenGL.Enums.ExtFramebufferObject)target, (OpenTK.OpenGL.Enums.ExtFramebufferObject)attachment, (OpenTK.OpenGL.Enums.ExtFramebufferObject)textarget, (UInt32)texture, (Int32)level, (Int32)zoffset); - } - - public static - void FramebufferTexture3D(OpenTK.OpenGL.Enums.ExtFramebufferObject target, OpenTK.OpenGL.Enums.ExtFramebufferObject attachment, OpenTK.OpenGL.Enums.ExtFramebufferObject textarget, Int32 texture, Int32 level, Int32 zoffset) - { - Delegates.glFramebufferTexture3DEXT((OpenTK.OpenGL.Enums.ExtFramebufferObject)target, (OpenTK.OpenGL.Enums.ExtFramebufferObject)attachment, (OpenTK.OpenGL.Enums.ExtFramebufferObject)textarget, (UInt32)texture, (Int32)level, (Int32)zoffset); - } - - [System.CLSCompliant(false)] - public static - void FramebufferRenderbuffer(OpenTK.OpenGL.Enums.ExtFramebufferObject target, OpenTK.OpenGL.Enums.ExtFramebufferObject attachment, OpenTK.OpenGL.Enums.ExtFramebufferObject renderbuffertarget, UInt32 renderbuffer) - { - Delegates.glFramebufferRenderbufferEXT((OpenTK.OpenGL.Enums.ExtFramebufferObject)target, (OpenTK.OpenGL.Enums.ExtFramebufferObject)attachment, (OpenTK.OpenGL.Enums.ExtFramebufferObject)renderbuffertarget, (UInt32)renderbuffer); - } - - public static - void FramebufferRenderbuffer(OpenTK.OpenGL.Enums.ExtFramebufferObject target, OpenTK.OpenGL.Enums.ExtFramebufferObject attachment, OpenTK.OpenGL.Enums.ExtFramebufferObject renderbuffertarget, Int32 renderbuffer) - { - Delegates.glFramebufferRenderbufferEXT((OpenTK.OpenGL.Enums.ExtFramebufferObject)target, (OpenTK.OpenGL.Enums.ExtFramebufferObject)attachment, (OpenTK.OpenGL.Enums.ExtFramebufferObject)renderbuffertarget, (UInt32)renderbuffer); - } - - public static - void GetFramebufferAttachmentParameter(OpenTK.OpenGL.Enums.ExtFramebufferObject target, OpenTK.OpenGL.Enums.ExtFramebufferObject attachment, OpenTK.OpenGL.Enums.ExtFramebufferObject pname, [Out] Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glGetFramebufferAttachmentParameterivEXT((OpenTK.OpenGL.Enums.ExtFramebufferObject)target, (OpenTK.OpenGL.Enums.ExtFramebufferObject)attachment, (OpenTK.OpenGL.Enums.ExtFramebufferObject)pname, (Int32*)@params_ptr); - } - } - } - - public static - void GetFramebufferAttachmentParameter(OpenTK.OpenGL.Enums.ExtFramebufferObject target, OpenTK.OpenGL.Enums.ExtFramebufferObject attachment, OpenTK.OpenGL.Enums.ExtFramebufferObject pname, [Out] out Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glGetFramebufferAttachmentParameterivEXT((OpenTK.OpenGL.Enums.ExtFramebufferObject)target, (OpenTK.OpenGL.Enums.ExtFramebufferObject)attachment, (OpenTK.OpenGL.Enums.ExtFramebufferObject)pname, (Int32*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetFramebufferAttachmentParameter(OpenTK.OpenGL.Enums.ExtFramebufferObject target, OpenTK.OpenGL.Enums.ExtFramebufferObject attachment, OpenTK.OpenGL.Enums.ExtFramebufferObject pname, [Out] Int32* @params) - { - Delegates.glGetFramebufferAttachmentParameterivEXT((OpenTK.OpenGL.Enums.ExtFramebufferObject)target, (OpenTK.OpenGL.Enums.ExtFramebufferObject)attachment, (OpenTK.OpenGL.Enums.ExtFramebufferObject)pname, (Int32*)@params); - } - - public static - void GenerateMipmap(OpenTK.OpenGL.Enums.ExtFramebufferObject target) - { - Delegates.glGenerateMipmapEXT((OpenTK.OpenGL.Enums.ExtFramebufferObject)target); - } - - [System.CLSCompliant(false)] - public static - void StencilClearTag(Int32 stencilTagBits, UInt32 stencilClearTag) - { - Delegates.glStencilClearTagEXT((Int32)stencilTagBits, (UInt32)stencilClearTag); - } - - public static - void StencilClearTag(Int32 stencilTagBits, Int32 stencilClearTag) - { - Delegates.glStencilClearTagEXT((Int32)stencilTagBits, (UInt32)stencilClearTag); - } - - public static - void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.OpenGL.Enums.ClearBufferMask mask, OpenTK.OpenGL.Enums.ExtFramebufferBlit filter) - { - Delegates.glBlitFramebufferEXT((Int32)srcX0, (Int32)srcY0, (Int32)srcX1, (Int32)srcY1, (Int32)dstX0, (Int32)dstY0, (Int32)dstX1, (Int32)dstY1, (OpenTK.OpenGL.Enums.ClearBufferMask)mask, (OpenTK.OpenGL.Enums.ExtFramebufferBlit)filter); - } - - public static - void RenderbufferStorageMultisample(OpenTK.OpenGL.Enums.ExtFramebufferMultisample target, Int32 samples, OpenTK.OpenGL.Enums.ExtFramebufferMultisample internalformat, Int32 width, Int32 height) - { - Delegates.glRenderbufferStorageMultisampleEXT((OpenTK.OpenGL.Enums.ExtFramebufferMultisample)target, (Int32)samples, (OpenTK.OpenGL.Enums.ExtFramebufferMultisample)internalformat, (Int32)width, (Int32)height); - } - - [System.CLSCompliant(false)] - public static - void GetQueryObjecti64(UInt32 id, OpenTK.OpenGL.Enums.ExtTimerQuery pname, [Out] Int64[] @params) - { - unsafe - { - fixed (Int64* @params_ptr = @params) - { - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtTimerQuery)pname, (Int64*)@params_ptr); - } - } - } - - public static - void GetQueryObjecti64(Int32 id, OpenTK.OpenGL.Enums.ExtTimerQuery pname, [Out] Int64[] @params) - { - unsafe - { - fixed (Int64* @params_ptr = @params) - { - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtTimerQuery)pname, (Int64*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetQueryObjecti64(UInt32 id, OpenTK.OpenGL.Enums.ExtTimerQuery pname, [Out] out Int64 @params) - { - unsafe - { - fixed (Int64* @params_ptr = &@params) - { - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtTimerQuery)pname, (Int64*)@params_ptr); - @params = *@params_ptr; - } - } - } - - public static - void GetQueryObjecti64(Int32 id, OpenTK.OpenGL.Enums.ExtTimerQuery pname, [Out] out Int64 @params) - { - unsafe - { - fixed (Int64* @params_ptr = &@params) - { - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtTimerQuery)pname, (Int64*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetQueryObjecti64(UInt32 id, OpenTK.OpenGL.Enums.ExtTimerQuery pname, [Out] Int64* @params) - { - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtTimerQuery)pname, (Int64*)@params); - } - - [System.CLSCompliant(false)] - public static - unsafe void GetQueryObjecti64(Int32 id, OpenTK.OpenGL.Enums.ExtTimerQuery pname, [Out] Int64* @params) - { - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtTimerQuery)pname, (Int64*)@params); - } - - [System.CLSCompliant(false)] - public static - void GetQueryObjectui64(UInt32 id, OpenTK.OpenGL.Enums.ExtTimerQuery pname, [Out] UInt64[] @params) - { - unsafe - { - fixed (UInt64* @params_ptr = @params) - { - Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtTimerQuery)pname, (UInt64*)@params_ptr); - } - } - } - - public static - void GetQueryObjectui64(Int32 id, OpenTK.OpenGL.Enums.ExtTimerQuery pname, [Out] Int64[] @params) - { - unsafe - { - fixed (Int64* @params_ptr = @params) - { - Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtTimerQuery)pname, (UInt64*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetQueryObjectui64(UInt32 id, OpenTK.OpenGL.Enums.ExtTimerQuery pname, [Out] out UInt64 @params) - { - unsafe - { - fixed (UInt64* @params_ptr = &@params) - { - Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtTimerQuery)pname, (UInt64*)@params_ptr); - @params = *@params_ptr; - } - } - } - - public static - void GetQueryObjectui64(Int32 id, OpenTK.OpenGL.Enums.ExtTimerQuery pname, [Out] out Int64 @params) - { - unsafe - { - fixed (Int64* @params_ptr = &@params) - { - Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtTimerQuery)pname, (UInt64*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetQueryObjectui64(UInt32 id, OpenTK.OpenGL.Enums.ExtTimerQuery pname, [Out] UInt64* @params) - { - Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtTimerQuery)pname, (UInt64*)@params); - } - - [System.CLSCompliant(false)] - public static - unsafe void GetQueryObjectui64(Int32 id, OpenTK.OpenGL.Enums.ExtTimerQuery pname, [Out] Int64* @params) - { - Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.OpenGL.Enums.ExtTimerQuery)pname, (UInt64*)@params); - } - - [System.CLSCompliant(false)] - public static - void ProgramEnvParameters4(OpenTK.OpenGL.Enums.ExtGpuProgramParameters target, UInt32 index, Int32 count, Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glProgramEnvParameters4fvEXT((OpenTK.OpenGL.Enums.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); - } - } - } - - public static - void ProgramEnvParameters4(OpenTK.OpenGL.Enums.ExtGpuProgramParameters target, Int32 index, Int32 count, Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glProgramEnvParameters4fvEXT((OpenTK.OpenGL.Enums.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void ProgramEnvParameters4(OpenTK.OpenGL.Enums.ExtGpuProgramParameters target, UInt32 index, Int32 count, ref Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glProgramEnvParameters4fvEXT((OpenTK.OpenGL.Enums.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); - } - } - } - - public static - void ProgramEnvParameters4(OpenTK.OpenGL.Enums.ExtGpuProgramParameters target, Int32 index, Int32 count, ref Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glProgramEnvParameters4fvEXT((OpenTK.OpenGL.Enums.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void ProgramEnvParameters4(OpenTK.OpenGL.Enums.ExtGpuProgramParameters target, UInt32 index, Int32 count, Single* @params) - { - Delegates.glProgramEnvParameters4fvEXT((OpenTK.OpenGL.Enums.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (Single*)@params); - } - - [System.CLSCompliant(false)] - public static - unsafe void ProgramEnvParameters4(OpenTK.OpenGL.Enums.ExtGpuProgramParameters target, Int32 index, Int32 count, Single* @params) - { - Delegates.glProgramEnvParameters4fvEXT((OpenTK.OpenGL.Enums.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (Single*)@params); - } - - [System.CLSCompliant(false)] - public static - void ProgramLocalParameters4(OpenTK.OpenGL.Enums.ExtGpuProgramParameters target, UInt32 index, Int32 count, Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glProgramLocalParameters4fvEXT((OpenTK.OpenGL.Enums.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); - } - } - } - - public static - void ProgramLocalParameters4(OpenTK.OpenGL.Enums.ExtGpuProgramParameters target, Int32 index, Int32 count, Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glProgramLocalParameters4fvEXT((OpenTK.OpenGL.Enums.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void ProgramLocalParameters4(OpenTK.OpenGL.Enums.ExtGpuProgramParameters target, UInt32 index, Int32 count, ref Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glProgramLocalParameters4fvEXT((OpenTK.OpenGL.Enums.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); - } - } - } - - public static - void ProgramLocalParameters4(OpenTK.OpenGL.Enums.ExtGpuProgramParameters target, Int32 index, Int32 count, ref Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glProgramLocalParameters4fvEXT((OpenTK.OpenGL.Enums.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void ProgramLocalParameters4(OpenTK.OpenGL.Enums.ExtGpuProgramParameters target, UInt32 index, Int32 count, Single* @params) - { - Delegates.glProgramLocalParameters4fvEXT((OpenTK.OpenGL.Enums.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (Single*)@params); - } - - [System.CLSCompliant(false)] - public static - unsafe void ProgramLocalParameters4(OpenTK.OpenGL.Enums.ExtGpuProgramParameters target, Int32 index, Int32 count, Single* @params) - { - Delegates.glProgramLocalParameters4fvEXT((OpenTK.OpenGL.Enums.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (Single*)@params); - } - - [System.CLSCompliant(false)] - public static - void FramebufferTexture(OpenTK.OpenGL.Enums.NvGeometryProgram4 target, OpenTK.OpenGL.Enums.NvGeometryProgram4 attachment, UInt32 texture, Int32 level) - { - Delegates.glFramebufferTextureEXT((OpenTK.OpenGL.Enums.NvGeometryProgram4)target, (OpenTK.OpenGL.Enums.NvGeometryProgram4)attachment, (UInt32)texture, (Int32)level); - } - - public static - void FramebufferTexture(OpenTK.OpenGL.Enums.NvGeometryProgram4 target, OpenTK.OpenGL.Enums.NvGeometryProgram4 attachment, Int32 texture, Int32 level) - { - Delegates.glFramebufferTextureEXT((OpenTK.OpenGL.Enums.NvGeometryProgram4)target, (OpenTK.OpenGL.Enums.NvGeometryProgram4)attachment, (UInt32)texture, (Int32)level); - } - - [System.CLSCompliant(false)] - public static - void FramebufferTextureLayer(OpenTK.OpenGL.Enums.NvGeometryProgram4 target, OpenTK.OpenGL.Enums.NvGeometryProgram4 attachment, UInt32 texture, Int32 level, Int32 layer) - { - Delegates.glFramebufferTextureLayerEXT((OpenTK.OpenGL.Enums.NvGeometryProgram4)target, (OpenTK.OpenGL.Enums.NvGeometryProgram4)attachment, (UInt32)texture, (Int32)level, (Int32)layer); - } - - public static - void FramebufferTextureLayer(OpenTK.OpenGL.Enums.NvGeometryProgram4 target, OpenTK.OpenGL.Enums.NvGeometryProgram4 attachment, Int32 texture, Int32 level, Int32 layer) - { - Delegates.glFramebufferTextureLayerEXT((OpenTK.OpenGL.Enums.NvGeometryProgram4)target, (OpenTK.OpenGL.Enums.NvGeometryProgram4)attachment, (UInt32)texture, (Int32)level, (Int32)layer); - } - - [System.CLSCompliant(false)] - public static - void FramebufferTextureFace(OpenTK.OpenGL.Enums.NvGeometryProgram4 target, OpenTK.OpenGL.Enums.NvGeometryProgram4 attachment, UInt32 texture, Int32 level, OpenTK.OpenGL.Enums.TextureTarget face) - { - Delegates.glFramebufferTextureFaceEXT((OpenTK.OpenGL.Enums.NvGeometryProgram4)target, (OpenTK.OpenGL.Enums.NvGeometryProgram4)attachment, (UInt32)texture, (Int32)level, (OpenTK.OpenGL.Enums.TextureTarget)face); - } - - public static - void FramebufferTextureFace(OpenTK.OpenGL.Enums.NvGeometryProgram4 target, OpenTK.OpenGL.Enums.NvGeometryProgram4 attachment, Int32 texture, Int32 level, OpenTK.OpenGL.Enums.TextureTarget face) - { - Delegates.glFramebufferTextureFaceEXT((OpenTK.OpenGL.Enums.NvGeometryProgram4)target, (OpenTK.OpenGL.Enums.NvGeometryProgram4)attachment, (UInt32)texture, (Int32)level, (OpenTK.OpenGL.Enums.TextureTarget)face); - } - - [System.CLSCompliant(false)] - public static - void ProgramParameter(UInt32 program, OpenTK.OpenGL.Enums.ExtGeometryShader4 pname, Int32 value) - { - Delegates.glProgramParameteriEXT((UInt32)program, (OpenTK.OpenGL.Enums.ExtGeometryShader4)pname, (Int32)value); - } - - public static - void ProgramParameter(Int32 program, OpenTK.OpenGL.Enums.ExtGeometryShader4 pname, Int32 value) - { - Delegates.glProgramParameteriEXT((UInt32)program, (OpenTK.OpenGL.Enums.ExtGeometryShader4)pname, (Int32)value); - } - - [System.CLSCompliant(false)] - public static - void VertexAttribI1(UInt32 index, Int32 x) - { - Delegates.glVertexAttribI1iEXT((UInt32)index, (Int32)x); - } - - [System.CLSCompliant(false)] - public static - void VertexAttribI2(UInt32 index, Int32 x, Int32 y) - { - Delegates.glVertexAttribI2iEXT((UInt32)index, (Int32)x, (Int32)y); - } - - [System.CLSCompliant(false)] - public static - void VertexAttribI3(UInt32 index, Int32 x, Int32 y, Int32 z) - { - Delegates.glVertexAttribI3iEXT((UInt32)index, (Int32)x, (Int32)y, (Int32)z); - } - - [System.CLSCompliant(false)] - public static - void VertexAttribI4(UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) - { - Delegates.glVertexAttribI4iEXT((UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); - } - - [System.CLSCompliant(false)] - public static - void VertexAttribI1(UInt32 index, UInt32 x) - { - Delegates.glVertexAttribI1uiEXT((UInt32)index, (UInt32)x); - } - - public static - void VertexAttribI1(Int32 index, Int32 x) - { - Delegates.glVertexAttribI1uiEXT((UInt32)index, (UInt32)x); - } - - [System.CLSCompliant(false)] - public static - void VertexAttribI2(UInt32 index, UInt32 x, UInt32 y) - { - Delegates.glVertexAttribI2uiEXT((UInt32)index, (UInt32)x, (UInt32)y); - } - - public static - void VertexAttribI2(Int32 index, Int32 x, Int32 y) - { - Delegates.glVertexAttribI2uiEXT((UInt32)index, (UInt32)x, (UInt32)y); - } - - [System.CLSCompliant(false)] - public static - void VertexAttribI3(UInt32 index, UInt32 x, UInt32 y, UInt32 z) - { - Delegates.glVertexAttribI3uiEXT((UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z); - } - - public static - void VertexAttribI3(Int32 index, Int32 x, Int32 y, Int32 z) - { - Delegates.glVertexAttribI3uiEXT((UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z); - } - - [System.CLSCompliant(false)] - public static - void VertexAttribI4(UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) - { - Delegates.glVertexAttribI4uiEXT((UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w); - } - - public static - void VertexAttribI4(Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) - { - Delegates.glVertexAttribI4uiEXT((UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w); - } - - [System.CLSCompliant(false)] - public static - void VertexAttribI1v(UInt32 index, Int32[] v) - { - unsafe - { - fixed (Int32* v_ptr = v) - { - Delegates.glVertexAttribI1ivEXT((UInt32)index, (Int32*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void VertexAttribI1v(UInt32 index, ref Int32 v) - { - unsafe - { - fixed (Int32* v_ptr = &v) - { - Delegates.glVertexAttribI1ivEXT((UInt32)index, (Int32*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttribI1v(UInt32 index, Int32* v) - { - Delegates.glVertexAttribI1ivEXT((UInt32)index, (Int32*)v); - } - - [System.CLSCompliant(false)] - public static - void VertexAttribI2(UInt32 index, Int32[] v) - { - unsafe - { - fixed (Int32* v_ptr = v) - { - Delegates.glVertexAttribI2ivEXT((UInt32)index, (Int32*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void VertexAttribI2(UInt32 index, ref Int32 v) - { - unsafe - { - fixed (Int32* v_ptr = &v) - { - Delegates.glVertexAttribI2ivEXT((UInt32)index, (Int32*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttribI2(UInt32 index, Int32* v) - { - Delegates.glVertexAttribI2ivEXT((UInt32)index, (Int32*)v); - } - - [System.CLSCompliant(false)] - public static - void VertexAttribI3(UInt32 index, Int32[] v) - { - unsafe - { - fixed (Int32* v_ptr = v) - { - Delegates.glVertexAttribI3ivEXT((UInt32)index, (Int32*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void VertexAttribI3(UInt32 index, ref Int32 v) - { - unsafe - { - fixed (Int32* v_ptr = &v) - { - Delegates.glVertexAttribI3ivEXT((UInt32)index, (Int32*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttribI3(UInt32 index, Int32* v) - { - Delegates.glVertexAttribI3ivEXT((UInt32)index, (Int32*)v); - } - - [System.CLSCompliant(false)] - public static - void VertexAttribI4(UInt32 index, Int32[] v) - { - unsafe - { - fixed (Int32* v_ptr = v) - { - Delegates.glVertexAttribI4ivEXT((UInt32)index, (Int32*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void VertexAttribI4(UInt32 index, ref Int32 v) - { - unsafe - { - fixed (Int32* v_ptr = &v) - { - Delegates.glVertexAttribI4ivEXT((UInt32)index, (Int32*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttribI4(UInt32 index, Int32* v) - { - Delegates.glVertexAttribI4ivEXT((UInt32)index, (Int32*)v); - } - - [System.CLSCompliant(false)] - public static - void VertexAttribI1v(UInt32 index, UInt32[] v) - { - unsafe - { - fixed (UInt32* v_ptr = v) - { - Delegates.glVertexAttribI1uivEXT((UInt32)index, (UInt32*)v_ptr); - } - } - } - - public static - void VertexAttribI1v(Int32 index, Int32[] v) - { - unsafe - { - fixed (Int32* v_ptr = v) - { - Delegates.glVertexAttribI1uivEXT((UInt32)index, (UInt32*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void VertexAttribI1v(UInt32 index, ref UInt32 v) - { - unsafe - { - fixed (UInt32* v_ptr = &v) - { - Delegates.glVertexAttribI1uivEXT((UInt32)index, (UInt32*)v_ptr); - } - } - } - - public static - void VertexAttribI1v(Int32 index, ref Int32 v) - { - unsafe - { - fixed (Int32* v_ptr = &v) - { - Delegates.glVertexAttribI1uivEXT((UInt32)index, (UInt32*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttribI1v(UInt32 index, UInt32* v) - { - Delegates.glVertexAttribI1uivEXT((UInt32)index, (UInt32*)v); - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttribI1v(Int32 index, Int32* v) - { - Delegates.glVertexAttribI1uivEXT((UInt32)index, (UInt32*)v); - } - - [System.CLSCompliant(false)] - public static - void VertexAttribI2(UInt32 index, UInt32[] v) - { - unsafe - { - fixed (UInt32* v_ptr = v) - { - Delegates.glVertexAttribI2uivEXT((UInt32)index, (UInt32*)v_ptr); - } - } - } - - public static - void VertexAttribI2(Int32 index, Int32[] v) - { - unsafe - { - fixed (Int32* v_ptr = v) - { - Delegates.glVertexAttribI2uivEXT((UInt32)index, (UInt32*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void VertexAttribI2(UInt32 index, ref UInt32 v) - { - unsafe - { - fixed (UInt32* v_ptr = &v) - { - Delegates.glVertexAttribI2uivEXT((UInt32)index, (UInt32*)v_ptr); - } - } - } - - public static - void VertexAttribI2(Int32 index, ref Int32 v) - { - unsafe - { - fixed (Int32* v_ptr = &v) - { - Delegates.glVertexAttribI2uivEXT((UInt32)index, (UInt32*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttribI2(UInt32 index, UInt32* v) - { - Delegates.glVertexAttribI2uivEXT((UInt32)index, (UInt32*)v); - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttribI2(Int32 index, Int32* v) - { - Delegates.glVertexAttribI2uivEXT((UInt32)index, (UInt32*)v); - } - - [System.CLSCompliant(false)] - public static - void VertexAttribI3(UInt32 index, UInt32[] v) - { - unsafe - { - fixed (UInt32* v_ptr = v) - { - Delegates.glVertexAttribI3uivEXT((UInt32)index, (UInt32*)v_ptr); - } - } - } - - public static - void VertexAttribI3(Int32 index, Int32[] v) - { - unsafe - { - fixed (Int32* v_ptr = v) - { - Delegates.glVertexAttribI3uivEXT((UInt32)index, (UInt32*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void VertexAttribI3(UInt32 index, ref UInt32 v) - { - unsafe - { - fixed (UInt32* v_ptr = &v) - { - Delegates.glVertexAttribI3uivEXT((UInt32)index, (UInt32*)v_ptr); - } - } - } - - public static - void VertexAttribI3(Int32 index, ref Int32 v) - { - unsafe - { - fixed (Int32* v_ptr = &v) - { - Delegates.glVertexAttribI3uivEXT((UInt32)index, (UInt32*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttribI3(UInt32 index, UInt32* v) - { - Delegates.glVertexAttribI3uivEXT((UInt32)index, (UInt32*)v); - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttribI3(Int32 index, Int32* v) - { - Delegates.glVertexAttribI3uivEXT((UInt32)index, (UInt32*)v); - } - - [System.CLSCompliant(false)] - public static - void VertexAttribI4(UInt32 index, UInt32[] v) - { - unsafe - { - fixed (UInt32* v_ptr = v) - { - Delegates.glVertexAttribI4uivEXT((UInt32)index, (UInt32*)v_ptr); - } - } - } - - public static - void VertexAttribI4(Int32 index, Int32[] v) - { - unsafe - { - fixed (Int32* v_ptr = v) - { - Delegates.glVertexAttribI4uivEXT((UInt32)index, (UInt32*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void VertexAttribI4(UInt32 index, ref UInt32 v) - { - unsafe - { - fixed (UInt32* v_ptr = &v) - { - Delegates.glVertexAttribI4uivEXT((UInt32)index, (UInt32*)v_ptr); - } - } - } - - public static - void VertexAttribI4(Int32 index, ref Int32 v) - { - unsafe - { - fixed (Int32* v_ptr = &v) - { - Delegates.glVertexAttribI4uivEXT((UInt32)index, (UInt32*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttribI4(UInt32 index, UInt32* v) - { - Delegates.glVertexAttribI4uivEXT((UInt32)index, (UInt32*)v); - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttribI4(Int32 index, Int32* v) - { - Delegates.glVertexAttribI4uivEXT((UInt32)index, (UInt32*)v); - } - - [System.CLSCompliant(false)] - public static - void VertexAttribI4(UInt32 index, SByte[] v) - { - unsafe - { - fixed (SByte* v_ptr = v) - { - Delegates.glVertexAttribI4bvEXT((UInt32)index, (SByte*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void VertexAttribI4(UInt32 index, ref SByte v) - { - unsafe - { - fixed (SByte* v_ptr = &v) - { - Delegates.glVertexAttribI4bvEXT((UInt32)index, (SByte*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttribI4(UInt32 index, SByte* v) - { - Delegates.glVertexAttribI4bvEXT((UInt32)index, (SByte*)v); - } - - [System.CLSCompliant(false)] - public static - void VertexAttribI4(UInt32 index, Int16[] v) - { - unsafe - { - fixed (Int16* v_ptr = v) - { - Delegates.glVertexAttribI4svEXT((UInt32)index, (Int16*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void VertexAttribI4(UInt32 index, ref Int16 v) - { - unsafe - { - fixed (Int16* v_ptr = &v) - { - Delegates.glVertexAttribI4svEXT((UInt32)index, (Int16*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttribI4(UInt32 index, Int16* v) - { - Delegates.glVertexAttribI4svEXT((UInt32)index, (Int16*)v); - } - - [System.CLSCompliant(false)] - public static - void VertexAttribI4(UInt32 index, Byte[] v) - { - unsafe - { - fixed (Byte* v_ptr = v) - { - Delegates.glVertexAttribI4ubvEXT((UInt32)index, (Byte*)v_ptr); - } - } - } - - public static - void VertexAttribI4(Int32 index, Byte[] v) - { - unsafe - { - fixed (Byte* v_ptr = v) - { - Delegates.glVertexAttribI4ubvEXT((UInt32)index, (Byte*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void VertexAttribI4(UInt32 index, ref Byte v) - { - unsafe - { - fixed (Byte* v_ptr = &v) - { - Delegates.glVertexAttribI4ubvEXT((UInt32)index, (Byte*)v_ptr); - } - } - } - - public static - void VertexAttribI4(Int32 index, ref Byte v) - { - unsafe - { - fixed (Byte* v_ptr = &v) - { - Delegates.glVertexAttribI4ubvEXT((UInt32)index, (Byte*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttribI4(UInt32 index, Byte* v) - { - Delegates.glVertexAttribI4ubvEXT((UInt32)index, (Byte*)v); - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttribI4(Int32 index, Byte* v) - { - Delegates.glVertexAttribI4ubvEXT((UInt32)index, (Byte*)v); - } - - [System.CLSCompliant(false)] - public static - void VertexAttribI4(UInt32 index, UInt16[] v) - { - unsafe - { - fixed (UInt16* v_ptr = v) - { - Delegates.glVertexAttribI4usvEXT((UInt32)index, (UInt16*)v_ptr); - } - } - } - - public static - void VertexAttribI4(Int32 index, Int16[] v) - { - unsafe - { - fixed (Int16* v_ptr = v) - { - Delegates.glVertexAttribI4usvEXT((UInt32)index, (UInt16*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void VertexAttribI4(UInt32 index, ref UInt16 v) - { - unsafe - { - fixed (UInt16* v_ptr = &v) - { - Delegates.glVertexAttribI4usvEXT((UInt32)index, (UInt16*)v_ptr); - } - } - } - - public static - void VertexAttribI4(Int32 index, ref Int16 v) - { - unsafe - { - fixed (Int16* v_ptr = &v) - { - Delegates.glVertexAttribI4usvEXT((UInt32)index, (UInt16*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttribI4(UInt32 index, UInt16* v) - { - Delegates.glVertexAttribI4usvEXT((UInt32)index, (UInt16*)v); - } - - [System.CLSCompliant(false)] - public static - unsafe void VertexAttribI4(Int32 index, Int16* v) - { - Delegates.glVertexAttribI4usvEXT((UInt32)index, (UInt16*)v); - } - - [System.CLSCompliant(false)] - public static - void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.OpenGL.Enums.NvVertexProgram4 type, Int32 stride, IntPtr pointer) - { - unsafe - { - Delegates.glVertexAttribIPointerEXT((UInt32)index, (Int32)size, (OpenTK.OpenGL.Enums.NvVertexProgram4)type, (Int32)stride, (IntPtr)pointer); - } - } - - public static - void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.OpenGL.Enums.NvVertexProgram4 type, Int32 stride, IntPtr pointer) - { - unsafe - { - Delegates.glVertexAttribIPointerEXT((UInt32)index, (Int32)size, (OpenTK.OpenGL.Enums.NvVertexProgram4)type, (Int32)stride, (IntPtr)pointer); - } - } - - [System.CLSCompliant(false)] - public static - void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.OpenGL.Enums.NvVertexProgram4 type, Int32 stride, [In, Out] object pointer) - { - unsafe - { - System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glVertexAttribIPointerEXT((UInt32)index, (Int32)size, (OpenTK.OpenGL.Enums.NvVertexProgram4)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); - } - finally - { - pointer_ptr.Free(); - } - } - } - - public static - void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.OpenGL.Enums.NvVertexProgram4 type, Int32 stride, [In, Out] object pointer) - { - unsafe - { - System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glVertexAttribIPointerEXT((UInt32)index, (Int32)size, (OpenTK.OpenGL.Enums.NvVertexProgram4)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); - } - finally - { - pointer_ptr.Free(); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetVertexAttribI(UInt32 index, OpenTK.OpenGL.Enums.NvVertexProgram4 pname, [Out] Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glGetVertexAttribIivEXT((UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram4)pname, (Int32*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetVertexAttribI(UInt32 index, OpenTK.OpenGL.Enums.NvVertexProgram4 pname, [Out] out Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glGetVertexAttribIivEXT((UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram4)pname, (Int32*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetVertexAttribI(UInt32 index, OpenTK.OpenGL.Enums.NvVertexProgram4 pname, [Out] Int32* @params) - { - Delegates.glGetVertexAttribIivEXT((UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram4)pname, (Int32*)@params); - } - - [System.CLSCompliant(false)] - public static - void GetVertexAttribI(UInt32 index, OpenTK.OpenGL.Enums.NvVertexProgram4 pname, [Out] UInt32[] @params) - { - unsafe - { - fixed (UInt32* @params_ptr = @params) - { - Delegates.glGetVertexAttribIuivEXT((UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram4)pname, (UInt32*)@params_ptr); - } - } - } - - public static - void GetVertexAttribI(Int32 index, OpenTK.OpenGL.Enums.NvVertexProgram4 pname, [Out] Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glGetVertexAttribIuivEXT((UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram4)pname, (UInt32*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetVertexAttribI(UInt32 index, OpenTK.OpenGL.Enums.NvVertexProgram4 pname, [Out] out UInt32 @params) - { - unsafe - { - fixed (UInt32* @params_ptr = &@params) - { - Delegates.glGetVertexAttribIuivEXT((UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram4)pname, (UInt32*)@params_ptr); - @params = *@params_ptr; - } - } - } - - public static - void GetVertexAttribI(Int32 index, OpenTK.OpenGL.Enums.NvVertexProgram4 pname, [Out] out Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glGetVertexAttribIuivEXT((UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram4)pname, (UInt32*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetVertexAttribI(UInt32 index, OpenTK.OpenGL.Enums.NvVertexProgram4 pname, [Out] UInt32* @params) - { - Delegates.glGetVertexAttribIuivEXT((UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram4)pname, (UInt32*)@params); - } - - [System.CLSCompliant(false)] - public static - unsafe void GetVertexAttribI(Int32 index, OpenTK.OpenGL.Enums.NvVertexProgram4 pname, [Out] Int32* @params) - { - Delegates.glGetVertexAttribIuivEXT((UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram4)pname, (UInt32*)@params); - } - - [System.CLSCompliant(false)] - public static - void GetUniform(UInt32 program, Int32 location, [Out] UInt32[] @params) - { - unsafe - { - fixed (UInt32* @params_ptr = @params) - { - Delegates.glGetUniformuivEXT((UInt32)program, (Int32)location, (UInt32*)@params_ptr); - } - } - } - - public static - void GetUniform(Int32 program, Int32 location, [Out] Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glGetUniformuivEXT((UInt32)program, (Int32)location, (UInt32*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetUniform(UInt32 program, Int32 location, [Out] out UInt32 @params) - { - unsafe - { - fixed (UInt32* @params_ptr = &@params) - { - Delegates.glGetUniformuivEXT((UInt32)program, (Int32)location, (UInt32*)@params_ptr); - @params = *@params_ptr; - } - } - } - - public static - void GetUniform(Int32 program, Int32 location, [Out] out Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glGetUniformuivEXT((UInt32)program, (Int32)location, (UInt32*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetUniform(UInt32 program, Int32 location, [Out] UInt32* @params) - { - Delegates.glGetUniformuivEXT((UInt32)program, (Int32)location, (UInt32*)@params); - } - - [System.CLSCompliant(false)] - public static - unsafe void GetUniform(Int32 program, Int32 location, [Out] Int32* @params) - { - Delegates.glGetUniformuivEXT((UInt32)program, (Int32)location, (UInt32*)@params); - } - - [System.CLSCompliant(false)] - public static - void BindFragDataLocation(UInt32 program, UInt32 color, System.String name) - { - Delegates.glBindFragDataLocationEXT((UInt32)program, (UInt32)color, (System.String)name); - } - - public static - void BindFragDataLocation(Int32 program, Int32 color, System.String name) - { - Delegates.glBindFragDataLocationEXT((UInt32)program, (UInt32)color, (System.String)name); - } - - [System.CLSCompliant(false)] - public static - Int32 GetFragDataLocation(UInt32 program, System.String name) - { - return Delegates.glGetFragDataLocationEXT((UInt32)program, (System.String)name); - } - - public static - Int32 GetFragDataLocation(Int32 program, System.String name) - { - return Delegates.glGetFragDataLocationEXT((UInt32)program, (System.String)name); - } - - [System.CLSCompliant(false)] - public static - void Uniform1(Int32 location, UInt32 v0) - { - Delegates.glUniform1uiEXT((Int32)location, (UInt32)v0); - } - - public static - void Uniform1(Int32 location, Int32 v0) - { - Delegates.glUniform1uiEXT((Int32)location, (UInt32)v0); - } - - [System.CLSCompliant(false)] - public static - void Uniform2(Int32 location, UInt32 v0, UInt32 v1) - { - Delegates.glUniform2uiEXT((Int32)location, (UInt32)v0, (UInt32)v1); - } - - public static - void Uniform2(Int32 location, Int32 v0, Int32 v1) - { - Delegates.glUniform2uiEXT((Int32)location, (UInt32)v0, (UInt32)v1); - } - - [System.CLSCompliant(false)] - public static - void Uniform3(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) - { - Delegates.glUniform3uiEXT((Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2); - } - - public static - void Uniform3(Int32 location, Int32 v0, Int32 v1, Int32 v2) - { - Delegates.glUniform3uiEXT((Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2); - } - - [System.CLSCompliant(false)] - public static - void Uniform4(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) - { - Delegates.glUniform4uiEXT((Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2, (UInt32)v3); - } - - public static - void Uniform4(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) - { - Delegates.glUniform4uiEXT((Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2, (UInt32)v3); - } - - [System.CLSCompliant(false)] - public static - void Uniform1(Int32 location, Int32 count, UInt32[] value) - { - unsafe - { - fixed (UInt32* value_ptr = value) - { - Delegates.glUniform1uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); - } - } - } - - public static - void Uniform1(Int32 location, Int32 count, Int32[] value) - { - unsafe - { - fixed (Int32* value_ptr = value) - { - Delegates.glUniform1uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void Uniform1(Int32 location, Int32 count, ref UInt32 value) - { - unsafe - { - fixed (UInt32* value_ptr = &value) - { - Delegates.glUniform1uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); - } - } - } - - public static - void Uniform1(Int32 location, Int32 count, ref Int32 value) - { - unsafe - { - fixed (Int32* value_ptr = &value) - { - Delegates.glUniform1uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Uniform1(Int32 location, Int32 count, UInt32* value) - { - Delegates.glUniform1uivEXT((Int32)location, (Int32)count, (UInt32*)value); - } - - [System.CLSCompliant(false)] - public static - unsafe void Uniform1(Int32 location, Int32 count, Int32* value) - { - Delegates.glUniform1uivEXT((Int32)location, (Int32)count, (UInt32*)value); - } - - [System.CLSCompliant(false)] - public static - void Uniform2v(Int32 location, Int32 count, UInt32[] value) - { - unsafe - { - fixed (UInt32* value_ptr = value) - { - Delegates.glUniform2uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); - } - } - } - - public static - void Uniform2v(Int32 location, Int32 count, Int32[] value) - { - unsafe - { - fixed (Int32* value_ptr = value) - { - Delegates.glUniform2uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void Uniform2v(Int32 location, Int32 count, ref UInt32 value) - { - unsafe - { - fixed (UInt32* value_ptr = &value) - { - Delegates.glUniform2uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); - } - } - } - - public static - void Uniform2v(Int32 location, Int32 count, ref Int32 value) - { - unsafe - { - fixed (Int32* value_ptr = &value) - { - Delegates.glUniform2uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Uniform2v(Int32 location, Int32 count, UInt32* value) - { - Delegates.glUniform2uivEXT((Int32)location, (Int32)count, (UInt32*)value); - } - - [System.CLSCompliant(false)] - public static - unsafe void Uniform2v(Int32 location, Int32 count, Int32* value) - { - Delegates.glUniform2uivEXT((Int32)location, (Int32)count, (UInt32*)value); - } - - [System.CLSCompliant(false)] - public static - void Uniform3(Int32 location, Int32 count, UInt32[] value) - { - unsafe - { - fixed (UInt32* value_ptr = value) - { - Delegates.glUniform3uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); - } - } - } - - public static - void Uniform3(Int32 location, Int32 count, Int32[] value) - { - unsafe - { - fixed (Int32* value_ptr = value) - { - Delegates.glUniform3uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void Uniform3(Int32 location, Int32 count, ref UInt32 value) - { - unsafe - { - fixed (UInt32* value_ptr = &value) - { - Delegates.glUniform3uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); - } - } - } - - public static - void Uniform3(Int32 location, Int32 count, ref Int32 value) - { - unsafe - { - fixed (Int32* value_ptr = &value) - { - Delegates.glUniform3uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Uniform3(Int32 location, Int32 count, UInt32* value) - { - Delegates.glUniform3uivEXT((Int32)location, (Int32)count, (UInt32*)value); - } - - [System.CLSCompliant(false)] - public static - unsafe void Uniform3(Int32 location, Int32 count, Int32* value) - { - Delegates.glUniform3uivEXT((Int32)location, (Int32)count, (UInt32*)value); - } - - [System.CLSCompliant(false)] - public static - void Uniform4(Int32 location, Int32 count, UInt32[] value) - { - unsafe - { - fixed (UInt32* value_ptr = value) - { - Delegates.glUniform4uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); - } - } - } - - public static - void Uniform4(Int32 location, Int32 count, Int32[] value) - { - unsafe - { - fixed (Int32* value_ptr = value) - { - Delegates.glUniform4uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void Uniform4(Int32 location, Int32 count, ref UInt32 value) - { - unsafe - { - fixed (UInt32* value_ptr = &value) - { - Delegates.glUniform4uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); - } - } - } - - public static - void Uniform4(Int32 location, Int32 count, ref Int32 value) - { - unsafe - { - fixed (Int32* value_ptr = &value) - { - Delegates.glUniform4uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Uniform4(Int32 location, Int32 count, UInt32* value) - { - Delegates.glUniform4uivEXT((Int32)location, (Int32)count, (UInt32*)value); - } - - [System.CLSCompliant(false)] - public static - unsafe void Uniform4(Int32 location, Int32 count, Int32* value) - { - Delegates.glUniform4uivEXT((Int32)location, (Int32)count, (UInt32*)value); - } - - public static - void DrawArraysInstance(OpenTK.OpenGL.Enums.BeginMode mode, Int32 start, Int32 count, Int32 primcount) - { - Delegates.glDrawArraysInstancedEXT((OpenTK.OpenGL.Enums.BeginMode)mode, (Int32)start, (Int32)count, (Int32)primcount); - } - - public static - void DrawElementsInstance(OpenTK.OpenGL.Enums.BeginMode mode, Int32 count, OpenTK.OpenGL.Enums.ExtDrawInstanced type, IntPtr indices, Int32 primcount) - { - unsafe - { - Delegates.glDrawElementsInstancedEXT((OpenTK.OpenGL.Enums.BeginMode)mode, (Int32)count, (OpenTK.OpenGL.Enums.ExtDrawInstanced)type, (IntPtr)indices, (Int32)primcount); - } - } - - public static - void DrawElementsInstance(OpenTK.OpenGL.Enums.BeginMode mode, Int32 count, OpenTK.OpenGL.Enums.ExtDrawInstanced type, [In, Out] object indices, Int32 primcount) - { - unsafe - { - System.Runtime.InteropServices.GCHandle indices_ptr = System.Runtime.InteropServices.GCHandle.Alloc(indices, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glDrawElementsInstancedEXT((OpenTK.OpenGL.Enums.BeginMode)mode, (Int32)count, (OpenTK.OpenGL.Enums.ExtDrawInstanced)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); - } - finally - { - indices_ptr.Free(); - } - } - } - - [System.CLSCompliant(false)] - public static - void TexBuffer(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.ExtTextureBufferObject internalformat, UInt32 buffer) - { - Delegates.glTexBufferEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.ExtTextureBufferObject)internalformat, (UInt32)buffer); - } - - public static - void TexBuffer(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.ExtTextureBufferObject internalformat, Int32 buffer) - { - Delegates.glTexBufferEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.ExtTextureBufferObject)internalformat, (UInt32)buffer); - } - - [System.CLSCompliant(false)] - public static - void ColorMaskIndexe(UInt32 index, bool r, bool g, bool b, bool a) - { - Delegates.glColorMaskIndexedEXT((UInt32)index, (bool)r, (bool)g, (bool)b, (bool)a); - } - - public static - void ColorMaskIndexe(Int32 index, bool r, bool g, bool b, bool a) - { - Delegates.glColorMaskIndexedEXT((UInt32)index, (bool)r, (bool)g, (bool)b, (bool)a); - } - - [System.CLSCompliant(false)] - public static - void GetBooleanIndexed(OpenTK.OpenGL.Enums.ExtDrawBuffers2 target, UInt32 index, [Out] bool[] data) - { - unsafe - { - fixed (bool* data_ptr = data) - { - Delegates.glGetBooleanIndexedvEXT((OpenTK.OpenGL.Enums.ExtDrawBuffers2)target, (UInt32)index, (bool*)data_ptr); - } - } - } - - public static - void GetBooleanIndexed(OpenTK.OpenGL.Enums.ExtDrawBuffers2 target, Int32 index, [Out] bool[] data) - { - unsafe - { - fixed (bool* data_ptr = data) - { - Delegates.glGetBooleanIndexedvEXT((OpenTK.OpenGL.Enums.ExtDrawBuffers2)target, (UInt32)index, (bool*)data_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetBooleanIndexed(OpenTK.OpenGL.Enums.ExtDrawBuffers2 target, UInt32 index, [Out] out bool data) - { - unsafe - { - fixed (bool* data_ptr = &data) - { - Delegates.glGetBooleanIndexedvEXT((OpenTK.OpenGL.Enums.ExtDrawBuffers2)target, (UInt32)index, (bool*)data_ptr); - data = *data_ptr; - } - } - } - - public static - void GetBooleanIndexed(OpenTK.OpenGL.Enums.ExtDrawBuffers2 target, Int32 index, [Out] out bool data) - { - unsafe - { - fixed (bool* data_ptr = &data) - { - Delegates.glGetBooleanIndexedvEXT((OpenTK.OpenGL.Enums.ExtDrawBuffers2)target, (UInt32)index, (bool*)data_ptr); - data = *data_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetBooleanIndexed(OpenTK.OpenGL.Enums.ExtDrawBuffers2 target, UInt32 index, [Out] bool* data) - { - Delegates.glGetBooleanIndexedvEXT((OpenTK.OpenGL.Enums.ExtDrawBuffers2)target, (UInt32)index, (bool*)data); - } - - [System.CLSCompliant(false)] - public static - unsafe void GetBooleanIndexed(OpenTK.OpenGL.Enums.ExtDrawBuffers2 target, Int32 index, [Out] bool* data) - { - Delegates.glGetBooleanIndexedvEXT((OpenTK.OpenGL.Enums.ExtDrawBuffers2)target, (UInt32)index, (bool*)data); - } - - [System.CLSCompliant(false)] - public static - void GetIntegerIndexed(OpenTK.OpenGL.Enums.ExtDrawBuffers2 target, UInt32 index, [Out] Int32[] data) - { - unsafe - { - fixed (Int32* data_ptr = data) - { - Delegates.glGetIntegerIndexedvEXT((OpenTK.OpenGL.Enums.ExtDrawBuffers2)target, (UInt32)index, (Int32*)data_ptr); - } - } - } - - public static - void GetIntegerIndexed(OpenTK.OpenGL.Enums.ExtDrawBuffers2 target, Int32 index, [Out] Int32[] data) - { - unsafe - { - fixed (Int32* data_ptr = data) - { - Delegates.glGetIntegerIndexedvEXT((OpenTK.OpenGL.Enums.ExtDrawBuffers2)target, (UInt32)index, (Int32*)data_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetIntegerIndexed(OpenTK.OpenGL.Enums.ExtDrawBuffers2 target, UInt32 index, [Out] out Int32 data) - { - unsafe - { - fixed (Int32* data_ptr = &data) - { - Delegates.glGetIntegerIndexedvEXT((OpenTK.OpenGL.Enums.ExtDrawBuffers2)target, (UInt32)index, (Int32*)data_ptr); - data = *data_ptr; - } - } - } - - public static - void GetIntegerIndexed(OpenTK.OpenGL.Enums.ExtDrawBuffers2 target, Int32 index, [Out] out Int32 data) - { - unsafe - { - fixed (Int32* data_ptr = &data) - { - Delegates.glGetIntegerIndexedvEXT((OpenTK.OpenGL.Enums.ExtDrawBuffers2)target, (UInt32)index, (Int32*)data_ptr); - data = *data_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetIntegerIndexed(OpenTK.OpenGL.Enums.ExtDrawBuffers2 target, UInt32 index, [Out] Int32* data) - { - Delegates.glGetIntegerIndexedvEXT((OpenTK.OpenGL.Enums.ExtDrawBuffers2)target, (UInt32)index, (Int32*)data); - } - - [System.CLSCompliant(false)] - public static - unsafe void GetIntegerIndexed(OpenTK.OpenGL.Enums.ExtDrawBuffers2 target, Int32 index, [Out] Int32* data) - { - Delegates.glGetIntegerIndexedvEXT((OpenTK.OpenGL.Enums.ExtDrawBuffers2)target, (UInt32)index, (Int32*)data); - } - - [System.CLSCompliant(false)] - public static - void EnableIndexe(OpenTK.OpenGL.Enums.ExtDrawBuffers2 target, UInt32 index) - { - Delegates.glEnableIndexedEXT((OpenTK.OpenGL.Enums.ExtDrawBuffers2)target, (UInt32)index); - } - - public static - void EnableIndexe(OpenTK.OpenGL.Enums.ExtDrawBuffers2 target, Int32 index) - { - Delegates.glEnableIndexedEXT((OpenTK.OpenGL.Enums.ExtDrawBuffers2)target, (UInt32)index); - } - - [System.CLSCompliant(false)] - public static - void DisableIndexe(OpenTK.OpenGL.Enums.ExtDrawBuffers2 target, UInt32 index) - { - Delegates.glDisableIndexedEXT((OpenTK.OpenGL.Enums.ExtDrawBuffers2)target, (UInt32)index); - } - - public static - void DisableIndexe(OpenTK.OpenGL.Enums.ExtDrawBuffers2 target, Int32 index) - { - Delegates.glDisableIndexedEXT((OpenTK.OpenGL.Enums.ExtDrawBuffers2)target, (UInt32)index); - } - - [System.CLSCompliant(false)] - public static - bool IsEnabledIndexe(OpenTK.OpenGL.Enums.ExtDrawBuffers2 target, UInt32 index) - { - return Delegates.glIsEnabledIndexedEXT((OpenTK.OpenGL.Enums.ExtDrawBuffers2)target, (UInt32)index); - } - - public static - bool IsEnabledIndexe(OpenTK.OpenGL.Enums.ExtDrawBuffers2 target, Int32 index) - { - return Delegates.glIsEnabledIndexedEXT((OpenTK.OpenGL.Enums.ExtDrawBuffers2)target, (UInt32)index); - } - - [System.CLSCompliant(false)] - public static - void UniformBuffer(UInt32 program, Int32 location, UInt32 buffer) - { - Delegates.glUniformBufferEXT((UInt32)program, (Int32)location, (UInt32)buffer); - } - - public static - void UniformBuffer(Int32 program, Int32 location, Int32 buffer) - { - Delegates.glUniformBufferEXT((UInt32)program, (Int32)location, (UInt32)buffer); - } - - [System.CLSCompliant(false)] - public static - Int32 GetUniformBufferSize(UInt32 program, Int32 location) - { - return Delegates.glGetUniformBufferSizeEXT((UInt32)program, (Int32)location); - } - - public static - Int32 GetUniformBufferSize(Int32 program, Int32 location) - { - return Delegates.glGetUniformBufferSizeEXT((UInt32)program, (Int32)location); - } - - [System.CLSCompliant(false)] - public static - IntPtr GetUniformOffset(UInt32 program, Int32 location) - { - return Delegates.glGetUniformOffsetEXT((UInt32)program, (Int32)location); - } - - public static - IntPtr GetUniformOffset(Int32 program, Int32 location) - { - return Delegates.glGetUniformOffsetEXT((UInt32)program, (Int32)location); - } - - [System.CLSCompliant(false)] - public static - void TexParameterIv(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.TextureParameterName pname, UInt32[] @params) - { - unsafe - { - fixed (UInt32* @params_ptr = @params) - { - Delegates.glTexParameterIuivEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.TextureParameterName)pname, (UInt32*)@params_ptr); - } - } - } - - public static - void TexParameterIv(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.TextureParameterName pname, Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glTexParameterIuivEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.TextureParameterName)pname, (UInt32*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void TexParameterIv(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.TextureParameterName pname, ref UInt32 @params) - { - unsafe - { - fixed (UInt32* @params_ptr = &@params) - { - Delegates.glTexParameterIuivEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.TextureParameterName)pname, (UInt32*)@params_ptr); - } - } - } - - public static - void TexParameterIv(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.TextureParameterName pname, ref Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glTexParameterIuivEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.TextureParameterName)pname, (UInt32*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void TexParameterIv(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.TextureParameterName pname, UInt32* @params) - { - Delegates.glTexParameterIuivEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.TextureParameterName)pname, (UInt32*)@params); - } - - [System.CLSCompliant(false)] - public static - unsafe void TexParameterIv(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.TextureParameterName pname, Int32* @params) - { - Delegates.glTexParameterIuivEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.TextureParameterName)pname, (UInt32*)@params); - } - - [System.CLSCompliant(false)] - public static - void GetTexParameterI(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.GetTextureParameter pname, [Out] UInt32[] @params) - { - unsafe - { - fixed (UInt32* @params_ptr = @params) - { - Delegates.glGetTexParameterIuivEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.GetTextureParameter)pname, (UInt32*)@params_ptr); - } - } - } - - public static - void GetTexParameterI(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.GetTextureParameter pname, [Out] Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glGetTexParameterIuivEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.GetTextureParameter)pname, (UInt32*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetTexParameterI(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.GetTextureParameter pname, [Out] out UInt32 @params) - { - unsafe - { - fixed (UInt32* @params_ptr = &@params) - { - Delegates.glGetTexParameterIuivEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.GetTextureParameter)pname, (UInt32*)@params_ptr); - @params = *@params_ptr; - } - } - } - - public static - void GetTexParameterI(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.GetTextureParameter pname, [Out] out Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glGetTexParameterIuivEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.GetTextureParameter)pname, (UInt32*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetTexParameterI(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.GetTextureParameter pname, [Out] UInt32* @params) - { - Delegates.glGetTexParameterIuivEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.GetTextureParameter)pname, (UInt32*)@params); - } - - [System.CLSCompliant(false)] - public static - unsafe void GetTexParameterI(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.GetTextureParameter pname, [Out] Int32* @params) - { - Delegates.glGetTexParameterIuivEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.GetTextureParameter)pname, (UInt32*)@params); - } - - [System.CLSCompliant(false)] - public static - void ClearColorI(UInt32 red, UInt32 green, UInt32 blue, UInt32 alpha) - { - Delegates.glClearColorIuiEXT((UInt32)red, (UInt32)green, (UInt32)blue, (UInt32)alpha); - } - - public static - void ClearColorI(Int32 red, Int32 green, Int32 blue, Int32 alpha) - { - Delegates.glClearColorIuiEXT((UInt32)red, (UInt32)green, (UInt32)blue, (UInt32)alpha); - } - - } - - public static partial class Sgis - { - public static - void GetTexFilterFunc(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.SgisTextureFilter4 filter, [Out] Single[] weights) - { - unsafe - { - fixed (Single* weights_ptr = weights) - { - Delegates.glGetTexFilterFuncSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.SgisTextureFilter4)filter, (Single*)weights_ptr); - } - } - } - - public static - void GetTexFilterFunc(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.SgisTextureFilter4 filter, [Out] out Single weights) - { - unsafe - { - fixed (Single* weights_ptr = &weights) - { - Delegates.glGetTexFilterFuncSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.SgisTextureFilter4)filter, (Single*)weights_ptr); - weights = *weights_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetTexFilterFunc(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.SgisTextureFilter4 filter, [Out] Single* weights) - { - Delegates.glGetTexFilterFuncSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.SgisTextureFilter4)filter, (Single*)weights); - } - - public static - void TexFilterFunc(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.SgisTextureFilter4 filter, Int32 n, Single[] weights) - { - unsafe - { - fixed (Single* weights_ptr = weights) - { - Delegates.glTexFilterFuncSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.SgisTextureFilter4)filter, (Int32)n, (Single*)weights_ptr); - } - } - } - - public static - void TexFilterFunc(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.SgisTextureFilter4 filter, Int32 n, ref Single weights) - { - unsafe - { - fixed (Single* weights_ptr = &weights) - { - Delegates.glTexFilterFuncSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.SgisTextureFilter4)filter, (Int32)n, (Single*)weights_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void TexFilterFunc(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.SgisTextureFilter4 filter, Int32 n, Single* weights) - { - Delegates.glTexFilterFuncSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.SgisTextureFilter4)filter, (Int32)n, (Single*)weights); - } - - public static - void PixelTexGenParameter(OpenTK.OpenGL.Enums.PixelTexGenParameterNameSgis pname, Int32 param) - { - Delegates.glPixelTexGenParameteriSGIS((OpenTK.OpenGL.Enums.PixelTexGenParameterNameSgis)pname, (Int32)param); - } - - public static - void PixelTexGenParameterv(OpenTK.OpenGL.Enums.PixelTexGenParameterNameSgis pname, Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glPixelTexGenParameterivSGIS((OpenTK.OpenGL.Enums.PixelTexGenParameterNameSgis)pname, (Int32*)@params_ptr); - } - } - } - - public static - void PixelTexGenParameterv(OpenTK.OpenGL.Enums.PixelTexGenParameterNameSgis pname, ref Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glPixelTexGenParameterivSGIS((OpenTK.OpenGL.Enums.PixelTexGenParameterNameSgis)pname, (Int32*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void PixelTexGenParameterv(OpenTK.OpenGL.Enums.PixelTexGenParameterNameSgis pname, Int32* @params) - { - Delegates.glPixelTexGenParameterivSGIS((OpenTK.OpenGL.Enums.PixelTexGenParameterNameSgis)pname, (Int32*)@params); - } - - public static - void PixelTexGenParameter(OpenTK.OpenGL.Enums.PixelTexGenParameterNameSgis pname, Single param) - { - Delegates.glPixelTexGenParameterfSGIS((OpenTK.OpenGL.Enums.PixelTexGenParameterNameSgis)pname, (Single)param); - } - - public static - void PixelTexGenParameterv(OpenTK.OpenGL.Enums.PixelTexGenParameterNameSgis pname, Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glPixelTexGenParameterfvSGIS((OpenTK.OpenGL.Enums.PixelTexGenParameterNameSgis)pname, (Single*)@params_ptr); - } - } - } - - public static - void PixelTexGenParameterv(OpenTK.OpenGL.Enums.PixelTexGenParameterNameSgis pname, ref Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glPixelTexGenParameterfvSGIS((OpenTK.OpenGL.Enums.PixelTexGenParameterNameSgis)pname, (Single*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void PixelTexGenParameterv(OpenTK.OpenGL.Enums.PixelTexGenParameterNameSgis pname, Single* @params) - { - Delegates.glPixelTexGenParameterfvSGIS((OpenTK.OpenGL.Enums.PixelTexGenParameterNameSgis)pname, (Single*)@params); - } - - public static - void GetPixelTexGenParameter(OpenTK.OpenGL.Enums.PixelTexGenParameterNameSgis pname, [Out] Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glGetPixelTexGenParameterivSGIS((OpenTK.OpenGL.Enums.PixelTexGenParameterNameSgis)pname, (Int32*)@params_ptr); - } - } - } - - public static - void GetPixelTexGenParameter(OpenTK.OpenGL.Enums.PixelTexGenParameterNameSgis pname, [Out] out Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glGetPixelTexGenParameterivSGIS((OpenTK.OpenGL.Enums.PixelTexGenParameterNameSgis)pname, (Int32*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetPixelTexGenParameter(OpenTK.OpenGL.Enums.PixelTexGenParameterNameSgis pname, [Out] Int32* @params) - { - Delegates.glGetPixelTexGenParameterivSGIS((OpenTK.OpenGL.Enums.PixelTexGenParameterNameSgis)pname, (Int32*)@params); - } - - public static - void GetPixelTexGenParameter(OpenTK.OpenGL.Enums.PixelTexGenParameterNameSgis pname, [Out] Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glGetPixelTexGenParameterfvSGIS((OpenTK.OpenGL.Enums.PixelTexGenParameterNameSgis)pname, (Single*)@params_ptr); - } - } - } - - public static - void GetPixelTexGenParameter(OpenTK.OpenGL.Enums.PixelTexGenParameterNameSgis pname, [Out] out Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glGetPixelTexGenParameterfvSGIS((OpenTK.OpenGL.Enums.PixelTexGenParameterNameSgis)pname, (Single*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetPixelTexGenParameter(OpenTK.OpenGL.Enums.PixelTexGenParameterNameSgis pname, [Out] Single* @params) - { - Delegates.glGetPixelTexGenParameterfvSGIS((OpenTK.OpenGL.Enums.PixelTexGenParameterNameSgis)pname, (Single*)@params); - } - - public static - void TexImage4D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 size4d, Int32 border, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr pixels) - { - unsafe - { - Delegates.glTexImage4DSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)size4d, (Int32)border, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)pixels); - } - } - - public static - void TexImage4D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 size4d, Int32 border, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object pixels) - { - unsafe - { - System.Runtime.InteropServices.GCHandle pixels_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pixels, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glTexImage4DSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)size4d, (Int32)border, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); - } - finally - { - pixels_ptr.Free(); - } - } - } - - public static - void TexSubImage4D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 woffset, Int32 width, Int32 height, Int32 depth, Int32 size4d, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr pixels) - { - unsafe - { - Delegates.glTexSubImage4DSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)woffset, (Int32)width, (Int32)height, (Int32)depth, (Int32)size4d, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)pixels); - } - } - - public static - void TexSubImage4D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 woffset, Int32 width, Int32 height, Int32 depth, Int32 size4d, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object pixels) - { - unsafe - { - System.Runtime.InteropServices.GCHandle pixels_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pixels, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glTexSubImage4DSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)woffset, (Int32)width, (Int32)height, (Int32)depth, (Int32)size4d, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); - } - finally - { - pixels_ptr.Free(); - } - } - } - - public static - void DetailTexFunc(OpenTK.OpenGL.Enums.TextureTarget target, Int32 n, Single[] points) - { - unsafe - { - fixed (Single* points_ptr = points) - { - Delegates.glDetailTexFuncSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)n, (Single*)points_ptr); - } - } - } - - public static - void DetailTexFunc(OpenTK.OpenGL.Enums.TextureTarget target, Int32 n, ref Single points) - { - unsafe - { - fixed (Single* points_ptr = &points) - { - Delegates.glDetailTexFuncSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)n, (Single*)points_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void DetailTexFunc(OpenTK.OpenGL.Enums.TextureTarget target, Int32 n, Single* points) - { - Delegates.glDetailTexFuncSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)n, (Single*)points); - } - - public static - void GetDetailTexFunc(OpenTK.OpenGL.Enums.TextureTarget target, [Out] Single[] points) - { - unsafe - { - fixed (Single* points_ptr = points) - { - Delegates.glGetDetailTexFuncSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (Single*)points_ptr); - } - } - } - - public static - void GetDetailTexFunc(OpenTK.OpenGL.Enums.TextureTarget target, [Out] out Single points) - { - unsafe - { - fixed (Single* points_ptr = &points) - { - Delegates.glGetDetailTexFuncSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (Single*)points_ptr); - points = *points_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetDetailTexFunc(OpenTK.OpenGL.Enums.TextureTarget target, [Out] Single* points) - { - Delegates.glGetDetailTexFuncSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (Single*)points); - } - - public static - void SharpenTexFunc(OpenTK.OpenGL.Enums.TextureTarget target, Int32 n, Single[] points) - { - unsafe - { - fixed (Single* points_ptr = points) - { - Delegates.glSharpenTexFuncSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)n, (Single*)points_ptr); - } - } - } - - public static - void SharpenTexFunc(OpenTK.OpenGL.Enums.TextureTarget target, Int32 n, ref Single points) - { - unsafe - { - fixed (Single* points_ptr = &points) - { - Delegates.glSharpenTexFuncSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)n, (Single*)points_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void SharpenTexFunc(OpenTK.OpenGL.Enums.TextureTarget target, Int32 n, Single* points) - { - Delegates.glSharpenTexFuncSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)n, (Single*)points); - } - - public static - void GetSharpenTexFunc(OpenTK.OpenGL.Enums.TextureTarget target, [Out] Single[] points) - { - unsafe - { - fixed (Single* points_ptr = points) - { - Delegates.glGetSharpenTexFuncSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (Single*)points_ptr); - } - } - } - - public static - void GetSharpenTexFunc(OpenTK.OpenGL.Enums.TextureTarget target, [Out] out Single points) - { - unsafe - { - fixed (Single* points_ptr = &points) - { - Delegates.glGetSharpenTexFuncSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (Single*)points_ptr); - points = *points_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetSharpenTexFunc(OpenTK.OpenGL.Enums.TextureTarget target, [Out] Single* points) - { - Delegates.glGetSharpenTexFuncSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (Single*)points); - } - - public static - void SampleMask(Single value, bool invert) - { - Delegates.glSampleMaskSGIS((Single)value, (bool)invert); - } - - public static - void SamplePattern(OpenTK.OpenGL.Enums.SamplePatternSgis pattern) - { - Delegates.glSamplePatternSGIS((OpenTK.OpenGL.Enums.SamplePatternSgis)pattern); - } - - public static - void PointParameter(OpenTK.OpenGL.Enums.SgisPointParameters pname, Single param) - { - Delegates.glPointParameterfSGIS((OpenTK.OpenGL.Enums.SgisPointParameters)pname, (Single)param); - } - - public static - void PointParameterv(OpenTK.OpenGL.Enums.SgisPointParameters pname, Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glPointParameterfvSGIS((OpenTK.OpenGL.Enums.SgisPointParameters)pname, (Single*)@params_ptr); - } - } - } - - public static - void PointParameterv(OpenTK.OpenGL.Enums.SgisPointParameters pname, ref Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glPointParameterfvSGIS((OpenTK.OpenGL.Enums.SgisPointParameters)pname, (Single*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void PointParameterv(OpenTK.OpenGL.Enums.SgisPointParameters pname, Single* @params) - { - Delegates.glPointParameterfvSGIS((OpenTK.OpenGL.Enums.SgisPointParameters)pname, (Single*)@params); - } - - public static - void FogFunc(Int32 n, Single[] points) - { - unsafe - { - fixed (Single* points_ptr = points) - { - Delegates.glFogFuncSGIS((Int32)n, (Single*)points_ptr); - } - } - } - - public static - void FogFunc(Int32 n, ref Single points) - { - unsafe - { - fixed (Single* points_ptr = &points) - { - Delegates.glFogFuncSGIS((Int32)n, (Single*)points_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void FogFunc(Int32 n, Single* points) - { - Delegates.glFogFuncSGIS((Int32)n, (Single*)points); - } - - public static - void GetFogFunc([Out] Single[] points) - { - unsafe - { - fixed (Single* points_ptr = points) - { - Delegates.glGetFogFuncSGIS((Single*)points_ptr); - } - } - } - - public static - void GetFogFunc([Out] out Single points) - { - unsafe - { - fixed (Single* points_ptr = &points) - { - Delegates.glGetFogFuncSGIS((Single*)points_ptr); - points = *points_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetFogFunc([Out] Single* points) - { - Delegates.glGetFogFuncSGIS((Single*)points); - } - - public static - void TextureColorMask(bool red, bool green, bool blue, bool alpha) - { - Delegates.glTextureColorMaskSGIS((bool)red, (bool)green, (bool)blue, (bool)alpha); - } - - } - - public static partial class Sgi - { - public static - void ColorTable(OpenTK.OpenGL.Enums.ColorTableTargetSgi target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr table) - { - unsafe - { - Delegates.glColorTableSGI((OpenTK.OpenGL.Enums.ColorTableTargetSgi)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)table); - } - } - - public static - void ColorTable(OpenTK.OpenGL.Enums.ColorTableTargetSgi target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object table) - { - unsafe - { - System.Runtime.InteropServices.GCHandle table_ptr = System.Runtime.InteropServices.GCHandle.Alloc(table, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glColorTableSGI((OpenTK.OpenGL.Enums.ColorTableTargetSgi)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); - } - finally - { - table_ptr.Free(); - } - } - } - - public static - void ColorTableParameter(OpenTK.OpenGL.Enums.ColorTableTargetSgi target, OpenTK.OpenGL.Enums.ColorTableParameterPNameSgi pname, Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glColorTableParameterfvSGI((OpenTK.OpenGL.Enums.ColorTableTargetSgi)target, (OpenTK.OpenGL.Enums.ColorTableParameterPNameSgi)pname, (Single*)@params_ptr); - } - } - } - - public static - void ColorTableParameter(OpenTK.OpenGL.Enums.ColorTableTargetSgi target, OpenTK.OpenGL.Enums.ColorTableParameterPNameSgi pname, ref Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glColorTableParameterfvSGI((OpenTK.OpenGL.Enums.ColorTableTargetSgi)target, (OpenTK.OpenGL.Enums.ColorTableParameterPNameSgi)pname, (Single*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void ColorTableParameter(OpenTK.OpenGL.Enums.ColorTableTargetSgi target, OpenTK.OpenGL.Enums.ColorTableParameterPNameSgi pname, Single* @params) - { - Delegates.glColorTableParameterfvSGI((OpenTK.OpenGL.Enums.ColorTableTargetSgi)target, (OpenTK.OpenGL.Enums.ColorTableParameterPNameSgi)pname, (Single*)@params); - } - - public static - void ColorTableParameter(OpenTK.OpenGL.Enums.ColorTableTargetSgi target, OpenTK.OpenGL.Enums.ColorTableParameterPNameSgi pname, Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glColorTableParameterivSGI((OpenTK.OpenGL.Enums.ColorTableTargetSgi)target, (OpenTK.OpenGL.Enums.ColorTableParameterPNameSgi)pname, (Int32*)@params_ptr); - } - } - } - - public static - void ColorTableParameter(OpenTK.OpenGL.Enums.ColorTableTargetSgi target, OpenTK.OpenGL.Enums.ColorTableParameterPNameSgi pname, ref Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glColorTableParameterivSGI((OpenTK.OpenGL.Enums.ColorTableTargetSgi)target, (OpenTK.OpenGL.Enums.ColorTableParameterPNameSgi)pname, (Int32*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void ColorTableParameter(OpenTK.OpenGL.Enums.ColorTableTargetSgi target, OpenTK.OpenGL.Enums.ColorTableParameterPNameSgi pname, Int32* @params) - { - Delegates.glColorTableParameterivSGI((OpenTK.OpenGL.Enums.ColorTableTargetSgi)target, (OpenTK.OpenGL.Enums.ColorTableParameterPNameSgi)pname, (Int32*)@params); - } - - public static - void CopyColorTable(OpenTK.OpenGL.Enums.ColorTableTargetSgi target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) - { - Delegates.glCopyColorTableSGI((OpenTK.OpenGL.Enums.ColorTableTargetSgi)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width); - } - - public static - void GetColorTable(OpenTK.OpenGL.Enums.ColorTableTargetSgi target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr table) - { - unsafe - { - Delegates.glGetColorTableSGI((OpenTK.OpenGL.Enums.ColorTableTargetSgi)target, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)table); - } - } - - public static - void GetColorTable(OpenTK.OpenGL.Enums.ColorTableTargetSgi target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object table) - { - unsafe - { - System.Runtime.InteropServices.GCHandle table_ptr = System.Runtime.InteropServices.GCHandle.Alloc(table, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glGetColorTableSGI((OpenTK.OpenGL.Enums.ColorTableTargetSgi)target, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); - } - finally - { - table_ptr.Free(); - } - } - } - - public static - void GetColorTableParameter(OpenTK.OpenGL.Enums.ColorTableTargetSgi target, OpenTK.OpenGL.Enums.GetColorTableParameterPNameSgi pname, [Out] Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glGetColorTableParameterfvSGI((OpenTK.OpenGL.Enums.ColorTableTargetSgi)target, (OpenTK.OpenGL.Enums.GetColorTableParameterPNameSgi)pname, (Single*)@params_ptr); - } - } - } - - public static - void GetColorTableParameter(OpenTK.OpenGL.Enums.ColorTableTargetSgi target, OpenTK.OpenGL.Enums.GetColorTableParameterPNameSgi pname, [Out] out Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glGetColorTableParameterfvSGI((OpenTK.OpenGL.Enums.ColorTableTargetSgi)target, (OpenTK.OpenGL.Enums.GetColorTableParameterPNameSgi)pname, (Single*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetColorTableParameter(OpenTK.OpenGL.Enums.ColorTableTargetSgi target, OpenTK.OpenGL.Enums.GetColorTableParameterPNameSgi pname, [Out] Single* @params) - { - Delegates.glGetColorTableParameterfvSGI((OpenTK.OpenGL.Enums.ColorTableTargetSgi)target, (OpenTK.OpenGL.Enums.GetColorTableParameterPNameSgi)pname, (Single*)@params); - } - - public static - void GetColorTableParameter(OpenTK.OpenGL.Enums.ColorTableTargetSgi target, OpenTK.OpenGL.Enums.GetColorTableParameterPNameSgi pname, [Out] Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glGetColorTableParameterivSGI((OpenTK.OpenGL.Enums.ColorTableTargetSgi)target, (OpenTK.OpenGL.Enums.GetColorTableParameterPNameSgi)pname, (Int32*)@params_ptr); - } - } - } - - public static - void GetColorTableParameter(OpenTK.OpenGL.Enums.ColorTableTargetSgi target, OpenTK.OpenGL.Enums.GetColorTableParameterPNameSgi pname, [Out] out Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glGetColorTableParameterivSGI((OpenTK.OpenGL.Enums.ColorTableTargetSgi)target, (OpenTK.OpenGL.Enums.GetColorTableParameterPNameSgi)pname, (Int32*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetColorTableParameter(OpenTK.OpenGL.Enums.ColorTableTargetSgi target, OpenTK.OpenGL.Enums.GetColorTableParameterPNameSgi pname, [Out] Int32* @params) - { - Delegates.glGetColorTableParameterivSGI((OpenTK.OpenGL.Enums.ColorTableTargetSgi)target, (OpenTK.OpenGL.Enums.GetColorTableParameterPNameSgi)pname, (Int32*)@params); - } - - } - - public static partial class Sgix - { - public static - void PixelTexGen(OpenTK.OpenGL.Enums.SgixPixelTexture mode) - { - Delegates.glPixelTexGenSGIX((OpenTK.OpenGL.Enums.SgixPixelTexture)mode); - } - - public static - void SpriteParameter(OpenTK.OpenGL.Enums.SgixSprite pname, Single param) - { - Delegates.glSpriteParameterfSGIX((OpenTK.OpenGL.Enums.SgixSprite)pname, (Single)param); - } - - public static - void SpriteParameterv(OpenTK.OpenGL.Enums.SgixSprite pname, Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glSpriteParameterfvSGIX((OpenTK.OpenGL.Enums.SgixSprite)pname, (Single*)@params_ptr); - } - } - } - - public static - void SpriteParameterv(OpenTK.OpenGL.Enums.SgixSprite pname, ref Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glSpriteParameterfvSGIX((OpenTK.OpenGL.Enums.SgixSprite)pname, (Single*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void SpriteParameterv(OpenTK.OpenGL.Enums.SgixSprite pname, Single* @params) - { - Delegates.glSpriteParameterfvSGIX((OpenTK.OpenGL.Enums.SgixSprite)pname, (Single*)@params); - } - - public static - void SpriteParameter(OpenTK.OpenGL.Enums.SgixSprite pname, Int32 param) - { - Delegates.glSpriteParameteriSGIX((OpenTK.OpenGL.Enums.SgixSprite)pname, (Int32)param); - } - - public static - void SpriteParameterv(OpenTK.OpenGL.Enums.SgixSprite pname, Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glSpriteParameterivSGIX((OpenTK.OpenGL.Enums.SgixSprite)pname, (Int32*)@params_ptr); - } - } - } - - public static - void SpriteParameterv(OpenTK.OpenGL.Enums.SgixSprite pname, ref Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glSpriteParameterivSGIX((OpenTK.OpenGL.Enums.SgixSprite)pname, (Int32*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void SpriteParameterv(OpenTK.OpenGL.Enums.SgixSprite pname, Int32* @params) - { - Delegates.glSpriteParameterivSGIX((OpenTK.OpenGL.Enums.SgixSprite)pname, (Int32*)@params); - } - - public static - Int32 GetInstruments() - { - return Delegates.glGetInstrumentsSGIX(); - } - - public static - void InstrumentsBuffer(Int32 size, [Out] Int32[] buffer) - { - unsafe - { - fixed (Int32* buffer_ptr = buffer) - { - Delegates.glInstrumentsBufferSGIX((Int32)size, (Int32*)buffer_ptr); - } - } - } - - public static - void InstrumentsBuffer(Int32 size, [Out] out Int32 buffer) - { - unsafe - { - fixed (Int32* buffer_ptr = &buffer) - { - Delegates.glInstrumentsBufferSGIX((Int32)size, (Int32*)buffer_ptr); - buffer = *buffer_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void InstrumentsBuffer(Int32 size, [Out] Int32* buffer) - { - Delegates.glInstrumentsBufferSGIX((Int32)size, (Int32*)buffer); - } - - public static - Int32 PollInstruments([Out] Int32[] marker_p) - { - unsafe - { - fixed (Int32* marker_p_ptr = marker_p) - { - return Delegates.glPollInstrumentsSGIX((Int32*)marker_p_ptr); - } - } - } - - public static - Int32 PollInstruments([Out] out Int32 marker_p) - { - unsafe - { - fixed (Int32* marker_p_ptr = &marker_p) - { - Int32 retval = Delegates.glPollInstrumentsSGIX((Int32*)marker_p_ptr); - marker_p = *marker_p_ptr; - return retval; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe Int32 PollInstruments([Out] Int32* marker_p) - { - return Delegates.glPollInstrumentsSGIX((Int32*)marker_p); - } - - public static - void ReadInstruments(Int32 marker) - { - Delegates.glReadInstrumentsSGIX((Int32)marker); - } - - public static - void StartInstruments() - { - Delegates.glStartInstrumentsSGIX(); - } - - public static - void StopInstruments(Int32 marker) - { - Delegates.glStopInstrumentsSGIX((Int32)marker); - } - - public static - void FrameZoom(Int32 factor) - { - Delegates.glFrameZoomSGIX((Int32)factor); - } - - public static - void TagSampleBuffer() - { - Delegates.glTagSampleBufferSGIX(); - } - - public static - void DeformationMap3(OpenTK.OpenGL.Enums.FfdTargetSgix target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double w1, Double w2, Int32 wstride, Int32 worder, Double[] points) - { - unsafe - { - fixed (Double* points_ptr = points) - { - Delegates.glDeformationMap3dSGIX((OpenTK.OpenGL.Enums.FfdTargetSgix)target, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (Double)w1, (Double)w2, (Int32)wstride, (Int32)worder, (Double*)points_ptr); - } - } - } - - public static - void DeformationMap3(OpenTK.OpenGL.Enums.FfdTargetSgix target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double w1, Double w2, Int32 wstride, Int32 worder, ref Double points) - { - unsafe - { - fixed (Double* points_ptr = &points) - { - Delegates.glDeformationMap3dSGIX((OpenTK.OpenGL.Enums.FfdTargetSgix)target, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (Double)w1, (Double)w2, (Int32)wstride, (Int32)worder, (Double*)points_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void DeformationMap3(OpenTK.OpenGL.Enums.FfdTargetSgix target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double w1, Double w2, Int32 wstride, Int32 worder, Double* points) - { - Delegates.glDeformationMap3dSGIX((OpenTK.OpenGL.Enums.FfdTargetSgix)target, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (Double)w1, (Double)w2, (Int32)wstride, (Int32)worder, (Double*)points); - } - - public static - void DeformationMap3(OpenTK.OpenGL.Enums.FfdTargetSgix target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single w1, Single w2, Int32 wstride, Int32 worder, Single[] points) - { - unsafe - { - fixed (Single* points_ptr = points) - { - Delegates.glDeformationMap3fSGIX((OpenTK.OpenGL.Enums.FfdTargetSgix)target, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (Single)w1, (Single)w2, (Int32)wstride, (Int32)worder, (Single*)points_ptr); - } - } - } - - public static - void DeformationMap3(OpenTK.OpenGL.Enums.FfdTargetSgix target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single w1, Single w2, Int32 wstride, Int32 worder, ref Single points) - { - unsafe - { - fixed (Single* points_ptr = &points) - { - Delegates.glDeformationMap3fSGIX((OpenTK.OpenGL.Enums.FfdTargetSgix)target, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (Single)w1, (Single)w2, (Int32)wstride, (Int32)worder, (Single*)points_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void DeformationMap3(OpenTK.OpenGL.Enums.FfdTargetSgix target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single w1, Single w2, Int32 wstride, Int32 worder, Single* points) - { - Delegates.glDeformationMap3fSGIX((OpenTK.OpenGL.Enums.FfdTargetSgix)target, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (Single)w1, (Single)w2, (Int32)wstride, (Int32)worder, (Single*)points); - } - - public static - void Deform(OpenTK.OpenGL.Enums.FfdMaskSgix mask) - { - Delegates.glDeformSGIX((OpenTK.OpenGL.Enums.FfdMaskSgix)mask); - } - - public static - void LoadIdentityDeformationMap(OpenTK.OpenGL.Enums.FfdMaskSgix mask) - { - Delegates.glLoadIdentityDeformationMapSGIX((OpenTK.OpenGL.Enums.FfdMaskSgix)mask); - } - - public static - void ReferencePlane(Double[] equation) - { - unsafe - { - fixed (Double* equation_ptr = equation) - { - Delegates.glReferencePlaneSGIX((Double*)equation_ptr); - } - } - } - - public static - void ReferencePlane(ref Double equation) - { - unsafe - { - fixed (Double* equation_ptr = &equation) - { - Delegates.glReferencePlaneSGIX((Double*)equation_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void ReferencePlane(Double* equation) - { - Delegates.glReferencePlaneSGIX((Double*)equation); - } - - public static - void FlushRaster() - { - Delegates.glFlushRasterSGIX(); - } - - [System.CLSCompliant(false)] - public static - void GetListParameter(UInt32 list, OpenTK.OpenGL.Enums.ListParameterName pname, [Out] Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glGetListParameterfvSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Single*)@params_ptr); - } - } - } - - public static - void GetListParameter(Int32 list, OpenTK.OpenGL.Enums.ListParameterName pname, [Out] Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glGetListParameterfvSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Single*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetListParameter(UInt32 list, OpenTK.OpenGL.Enums.ListParameterName pname, [Out] out Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glGetListParameterfvSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Single*)@params_ptr); - @params = *@params_ptr; - } - } - } - - public static - void GetListParameter(Int32 list, OpenTK.OpenGL.Enums.ListParameterName pname, [Out] out Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glGetListParameterfvSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Single*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetListParameter(UInt32 list, OpenTK.OpenGL.Enums.ListParameterName pname, [Out] Single* @params) - { - Delegates.glGetListParameterfvSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Single*)@params); - } - - [System.CLSCompliant(false)] - public static - unsafe void GetListParameter(Int32 list, OpenTK.OpenGL.Enums.ListParameterName pname, [Out] Single* @params) - { - Delegates.glGetListParameterfvSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Single*)@params); - } - - [System.CLSCompliant(false)] - public static - void GetListParameter(UInt32 list, OpenTK.OpenGL.Enums.ListParameterName pname, [Out] Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glGetListParameterivSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Int32*)@params_ptr); - } - } - } - - public static - void GetListParameter(Int32 list, OpenTK.OpenGL.Enums.ListParameterName pname, [Out] Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glGetListParameterivSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Int32*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void GetListParameter(UInt32 list, OpenTK.OpenGL.Enums.ListParameterName pname, [Out] out Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glGetListParameterivSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Int32*)@params_ptr); - @params = *@params_ptr; - } - } - } - - public static - void GetListParameter(Int32 list, OpenTK.OpenGL.Enums.ListParameterName pname, [Out] out Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glGetListParameterivSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Int32*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetListParameter(UInt32 list, OpenTK.OpenGL.Enums.ListParameterName pname, [Out] Int32* @params) - { - Delegates.glGetListParameterivSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Int32*)@params); - } - - [System.CLSCompliant(false)] - public static - unsafe void GetListParameter(Int32 list, OpenTK.OpenGL.Enums.ListParameterName pname, [Out] Int32* @params) - { - Delegates.glGetListParameterivSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Int32*)@params); - } - - [System.CLSCompliant(false)] - public static - void ListParameter(UInt32 list, OpenTK.OpenGL.Enums.ListParameterName pname, Single param) - { - Delegates.glListParameterfSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Single)param); - } - - public static - void ListParameter(Int32 list, OpenTK.OpenGL.Enums.ListParameterName pname, Single param) - { - Delegates.glListParameterfSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Single)param); - } - - [System.CLSCompliant(false)] - public static - void ListParameterv(UInt32 list, OpenTK.OpenGL.Enums.ListParameterName pname, Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glListParameterfvSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Single*)@params_ptr); - } - } - } - - public static - void ListParameterv(Int32 list, OpenTK.OpenGL.Enums.ListParameterName pname, Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glListParameterfvSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Single*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void ListParameterv(UInt32 list, OpenTK.OpenGL.Enums.ListParameterName pname, ref Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glListParameterfvSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Single*)@params_ptr); - } - } - } - - public static - void ListParameterv(Int32 list, OpenTK.OpenGL.Enums.ListParameterName pname, ref Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glListParameterfvSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Single*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void ListParameterv(UInt32 list, OpenTK.OpenGL.Enums.ListParameterName pname, Single* @params) - { - Delegates.glListParameterfvSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Single*)@params); - } - - [System.CLSCompliant(false)] - public static - unsafe void ListParameterv(Int32 list, OpenTK.OpenGL.Enums.ListParameterName pname, Single* @params) - { - Delegates.glListParameterfvSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Single*)@params); - } - - [System.CLSCompliant(false)] - public static - void ListParameter(UInt32 list, OpenTK.OpenGL.Enums.ListParameterName pname, Int32 param) - { - Delegates.glListParameteriSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Int32)param); - } - - public static - void ListParameter(Int32 list, OpenTK.OpenGL.Enums.ListParameterName pname, Int32 param) - { - Delegates.glListParameteriSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Int32)param); - } - - [System.CLSCompliant(false)] - public static - void ListParameterv(UInt32 list, OpenTK.OpenGL.Enums.ListParameterName pname, Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glListParameterivSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Int32*)@params_ptr); - } - } - } - - public static - void ListParameterv(Int32 list, OpenTK.OpenGL.Enums.ListParameterName pname, Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glListParameterivSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Int32*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void ListParameterv(UInt32 list, OpenTK.OpenGL.Enums.ListParameterName pname, ref Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glListParameterivSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Int32*)@params_ptr); - } - } - } - - public static - void ListParameterv(Int32 list, OpenTK.OpenGL.Enums.ListParameterName pname, ref Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glListParameterivSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Int32*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void ListParameterv(UInt32 list, OpenTK.OpenGL.Enums.ListParameterName pname, Int32* @params) - { - Delegates.glListParameterivSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Int32*)@params); - } - - [System.CLSCompliant(false)] - public static - unsafe void ListParameterv(Int32 list, OpenTK.OpenGL.Enums.ListParameterName pname, Int32* @params) - { - Delegates.glListParameterivSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Int32*)@params); - } - - public static - void FragmentColorMaterial(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter mode) - { - Delegates.glFragmentColorMaterialSGIX((OpenTK.OpenGL.Enums.MaterialFace)face, (OpenTK.OpenGL.Enums.MaterialParameter)mode); - } - - public static - void FragmentLight(OpenTK.OpenGL.Enums.SgixFragmentLighting light, OpenTK.OpenGL.Enums.SgixFragmentLighting pname, Single param) - { - Delegates.glFragmentLightfSGIX((OpenTK.OpenGL.Enums.SgixFragmentLighting)light, (OpenTK.OpenGL.Enums.SgixFragmentLighting)pname, (Single)param); - } - - public static - void FragmentLightv(OpenTK.OpenGL.Enums.SgixFragmentLighting light, OpenTK.OpenGL.Enums.SgixFragmentLighting pname, Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glFragmentLightfvSGIX((OpenTK.OpenGL.Enums.SgixFragmentLighting)light, (OpenTK.OpenGL.Enums.SgixFragmentLighting)pname, (Single*)@params_ptr); - } - } - } - - public static - void FragmentLightv(OpenTK.OpenGL.Enums.SgixFragmentLighting light, OpenTK.OpenGL.Enums.SgixFragmentLighting pname, ref Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glFragmentLightfvSGIX((OpenTK.OpenGL.Enums.SgixFragmentLighting)light, (OpenTK.OpenGL.Enums.SgixFragmentLighting)pname, (Single*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void FragmentLightv(OpenTK.OpenGL.Enums.SgixFragmentLighting light, OpenTK.OpenGL.Enums.SgixFragmentLighting pname, Single* @params) - { - Delegates.glFragmentLightfvSGIX((OpenTK.OpenGL.Enums.SgixFragmentLighting)light, (OpenTK.OpenGL.Enums.SgixFragmentLighting)pname, (Single*)@params); - } - - public static - void FragmentLight(OpenTK.OpenGL.Enums.SgixFragmentLighting light, OpenTK.OpenGL.Enums.SgixFragmentLighting pname, Int32 param) - { - Delegates.glFragmentLightiSGIX((OpenTK.OpenGL.Enums.SgixFragmentLighting)light, (OpenTK.OpenGL.Enums.SgixFragmentLighting)pname, (Int32)param); - } - - public static - void FragmentLightv(OpenTK.OpenGL.Enums.SgixFragmentLighting light, OpenTK.OpenGL.Enums.SgixFragmentLighting pname, Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glFragmentLightivSGIX((OpenTK.OpenGL.Enums.SgixFragmentLighting)light, (OpenTK.OpenGL.Enums.SgixFragmentLighting)pname, (Int32*)@params_ptr); - } - } - } - - public static - void FragmentLightv(OpenTK.OpenGL.Enums.SgixFragmentLighting light, OpenTK.OpenGL.Enums.SgixFragmentLighting pname, ref Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glFragmentLightivSGIX((OpenTK.OpenGL.Enums.SgixFragmentLighting)light, (OpenTK.OpenGL.Enums.SgixFragmentLighting)pname, (Int32*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void FragmentLightv(OpenTK.OpenGL.Enums.SgixFragmentLighting light, OpenTK.OpenGL.Enums.SgixFragmentLighting pname, Int32* @params) - { - Delegates.glFragmentLightivSGIX((OpenTK.OpenGL.Enums.SgixFragmentLighting)light, (OpenTK.OpenGL.Enums.SgixFragmentLighting)pname, (Int32*)@params); - } - - public static - void FragmentLightModel(OpenTK.OpenGL.Enums.FragmentLightModelParameterSgix pname, Single param) - { - Delegates.glFragmentLightModelfSGIX((OpenTK.OpenGL.Enums.FragmentLightModelParameterSgix)pname, (Single)param); - } - - public static - void FragmentLightModelv(OpenTK.OpenGL.Enums.FragmentLightModelParameterSgix pname, Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glFragmentLightModelfvSGIX((OpenTK.OpenGL.Enums.FragmentLightModelParameterSgix)pname, (Single*)@params_ptr); - } - } - } - - public static - void FragmentLightModelv(OpenTK.OpenGL.Enums.FragmentLightModelParameterSgix pname, ref Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glFragmentLightModelfvSGIX((OpenTK.OpenGL.Enums.FragmentLightModelParameterSgix)pname, (Single*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void FragmentLightModelv(OpenTK.OpenGL.Enums.FragmentLightModelParameterSgix pname, Single* @params) - { - Delegates.glFragmentLightModelfvSGIX((OpenTK.OpenGL.Enums.FragmentLightModelParameterSgix)pname, (Single*)@params); - } - - public static - void FragmentLightModel(OpenTK.OpenGL.Enums.FragmentLightModelParameterSgix pname, Int32 param) - { - Delegates.glFragmentLightModeliSGIX((OpenTK.OpenGL.Enums.FragmentLightModelParameterSgix)pname, (Int32)param); - } - - public static - void FragmentLightModelv(OpenTK.OpenGL.Enums.FragmentLightModelParameterSgix pname, Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glFragmentLightModelivSGIX((OpenTK.OpenGL.Enums.FragmentLightModelParameterSgix)pname, (Int32*)@params_ptr); - } - } - } - - public static - void FragmentLightModelv(OpenTK.OpenGL.Enums.FragmentLightModelParameterSgix pname, ref Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glFragmentLightModelivSGIX((OpenTK.OpenGL.Enums.FragmentLightModelParameterSgix)pname, (Int32*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void FragmentLightModelv(OpenTK.OpenGL.Enums.FragmentLightModelParameterSgix pname, Int32* @params) - { - Delegates.glFragmentLightModelivSGIX((OpenTK.OpenGL.Enums.FragmentLightModelParameterSgix)pname, (Int32*)@params); - } - - public static - void FragmentMaterial(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter pname, Single param) - { - Delegates.glFragmentMaterialfSGIX((OpenTK.OpenGL.Enums.MaterialFace)face, (OpenTK.OpenGL.Enums.MaterialParameter)pname, (Single)param); - } - - public static - void FragmentMaterialv(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter pname, Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glFragmentMaterialfvSGIX((OpenTK.OpenGL.Enums.MaterialFace)face, (OpenTK.OpenGL.Enums.MaterialParameter)pname, (Single*)@params_ptr); - } - } - } - - public static - void FragmentMaterialv(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter pname, ref Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glFragmentMaterialfvSGIX((OpenTK.OpenGL.Enums.MaterialFace)face, (OpenTK.OpenGL.Enums.MaterialParameter)pname, (Single*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void FragmentMaterialv(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter pname, Single* @params) - { - Delegates.glFragmentMaterialfvSGIX((OpenTK.OpenGL.Enums.MaterialFace)face, (OpenTK.OpenGL.Enums.MaterialParameter)pname, (Single*)@params); - } - - public static - void FragmentMaterial(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter pname, Int32 param) - { - Delegates.glFragmentMaterialiSGIX((OpenTK.OpenGL.Enums.MaterialFace)face, (OpenTK.OpenGL.Enums.MaterialParameter)pname, (Int32)param); - } - - public static - void FragmentMaterialv(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter pname, Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glFragmentMaterialivSGIX((OpenTK.OpenGL.Enums.MaterialFace)face, (OpenTK.OpenGL.Enums.MaterialParameter)pname, (Int32*)@params_ptr); - } - } - } - - public static - void FragmentMaterialv(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter pname, ref Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glFragmentMaterialivSGIX((OpenTK.OpenGL.Enums.MaterialFace)face, (OpenTK.OpenGL.Enums.MaterialParameter)pname, (Int32*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void FragmentMaterialv(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter pname, Int32* @params) - { - Delegates.glFragmentMaterialivSGIX((OpenTK.OpenGL.Enums.MaterialFace)face, (OpenTK.OpenGL.Enums.MaterialParameter)pname, (Int32*)@params); - } - - public static - void GetFragmentLight(OpenTK.OpenGL.Enums.SgixFragmentLighting light, OpenTK.OpenGL.Enums.SgixFragmentLighting pname, [Out] Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glGetFragmentLightfvSGIX((OpenTK.OpenGL.Enums.SgixFragmentLighting)light, (OpenTK.OpenGL.Enums.SgixFragmentLighting)pname, (Single*)@params_ptr); - } - } - } - - public static - void GetFragmentLight(OpenTK.OpenGL.Enums.SgixFragmentLighting light, OpenTK.OpenGL.Enums.SgixFragmentLighting pname, [Out] out Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glGetFragmentLightfvSGIX((OpenTK.OpenGL.Enums.SgixFragmentLighting)light, (OpenTK.OpenGL.Enums.SgixFragmentLighting)pname, (Single*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetFragmentLight(OpenTK.OpenGL.Enums.SgixFragmentLighting light, OpenTK.OpenGL.Enums.SgixFragmentLighting pname, [Out] Single* @params) - { - Delegates.glGetFragmentLightfvSGIX((OpenTK.OpenGL.Enums.SgixFragmentLighting)light, (OpenTK.OpenGL.Enums.SgixFragmentLighting)pname, (Single*)@params); - } - - public static - void GetFragmentLight(OpenTK.OpenGL.Enums.SgixFragmentLighting light, OpenTK.OpenGL.Enums.SgixFragmentLighting pname, [Out] Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glGetFragmentLightivSGIX((OpenTK.OpenGL.Enums.SgixFragmentLighting)light, (OpenTK.OpenGL.Enums.SgixFragmentLighting)pname, (Int32*)@params_ptr); - } - } - } - - public static - void GetFragmentLight(OpenTK.OpenGL.Enums.SgixFragmentLighting light, OpenTK.OpenGL.Enums.SgixFragmentLighting pname, [Out] out Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glGetFragmentLightivSGIX((OpenTK.OpenGL.Enums.SgixFragmentLighting)light, (OpenTK.OpenGL.Enums.SgixFragmentLighting)pname, (Int32*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetFragmentLight(OpenTK.OpenGL.Enums.SgixFragmentLighting light, OpenTK.OpenGL.Enums.SgixFragmentLighting pname, [Out] Int32* @params) - { - Delegates.glGetFragmentLightivSGIX((OpenTK.OpenGL.Enums.SgixFragmentLighting)light, (OpenTK.OpenGL.Enums.SgixFragmentLighting)pname, (Int32*)@params); - } - - public static - void GetFragmentMaterial(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter pname, [Out] Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glGetFragmentMaterialfvSGIX((OpenTK.OpenGL.Enums.MaterialFace)face, (OpenTK.OpenGL.Enums.MaterialParameter)pname, (Single*)@params_ptr); - } - } - } - - public static - void GetFragmentMaterial(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter pname, [Out] out Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glGetFragmentMaterialfvSGIX((OpenTK.OpenGL.Enums.MaterialFace)face, (OpenTK.OpenGL.Enums.MaterialParameter)pname, (Single*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetFragmentMaterial(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter pname, [Out] Single* @params) - { - Delegates.glGetFragmentMaterialfvSGIX((OpenTK.OpenGL.Enums.MaterialFace)face, (OpenTK.OpenGL.Enums.MaterialParameter)pname, (Single*)@params); - } - - public static - void GetFragmentMaterial(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter pname, [Out] Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glGetFragmentMaterialivSGIX((OpenTK.OpenGL.Enums.MaterialFace)face, (OpenTK.OpenGL.Enums.MaterialParameter)pname, (Int32*)@params_ptr); - } - } - } - - public static - void GetFragmentMaterial(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter pname, [Out] out Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glGetFragmentMaterialivSGIX((OpenTK.OpenGL.Enums.MaterialFace)face, (OpenTK.OpenGL.Enums.MaterialParameter)pname, (Int32*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetFragmentMaterial(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter pname, [Out] Int32* @params) - { - Delegates.glGetFragmentMaterialivSGIX((OpenTK.OpenGL.Enums.MaterialFace)face, (OpenTK.OpenGL.Enums.MaterialParameter)pname, (Int32*)@params); - } - - public static - void LightEnv(OpenTK.OpenGL.Enums.LightEnvParameterSgix pname, Int32 param) - { - Delegates.glLightEnviSGIX((OpenTK.OpenGL.Enums.LightEnvParameterSgix)pname, (Int32)param); - } - - [System.CLSCompliant(false)] - public static - void AsyncMarker(UInt32 marker) - { - Delegates.glAsyncMarkerSGIX((UInt32)marker); - } - - public static - void AsyncMarker(Int32 marker) - { - Delegates.glAsyncMarkerSGIX((UInt32)marker); - } - - [System.CLSCompliant(false)] - public static - Int32 FinishAsync([Out] UInt32[] markerp) - { - unsafe - { - fixed (UInt32* markerp_ptr = markerp) - { - return Delegates.glFinishAsyncSGIX((UInt32*)markerp_ptr); - } - } - } - - public static - Int32 FinishAsync([Out] Int32[] markerp) - { - unsafe - { - fixed (Int32* markerp_ptr = markerp) - { - return Delegates.glFinishAsyncSGIX((UInt32*)markerp_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - Int32 FinishAsync([Out] out UInt32 markerp) - { - unsafe - { - fixed (UInt32* markerp_ptr = &markerp) - { - Int32 retval = Delegates.glFinishAsyncSGIX((UInt32*)markerp_ptr); - markerp = *markerp_ptr; - return retval; - } - } - } - - public static - Int32 FinishAsync([Out] out Int32 markerp) - { - unsafe - { - fixed (Int32* markerp_ptr = &markerp) - { - Int32 retval = Delegates.glFinishAsyncSGIX((UInt32*)markerp_ptr); - markerp = *markerp_ptr; - return retval; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe Int32 FinishAsync([Out] UInt32* markerp) - { - return Delegates.glFinishAsyncSGIX((UInt32*)markerp); - } - - [System.CLSCompliant(false)] - public static - unsafe Int32 FinishAsync([Out] Int32* markerp) - { - return Delegates.glFinishAsyncSGIX((UInt32*)markerp); - } - - [System.CLSCompliant(false)] - public static - Int32 PollAsync([Out] UInt32[] markerp) - { - unsafe - { - fixed (UInt32* markerp_ptr = markerp) - { - return Delegates.glPollAsyncSGIX((UInt32*)markerp_ptr); - } - } - } - - public static - Int32 PollAsync([Out] Int32[] markerp) - { - unsafe - { - fixed (Int32* markerp_ptr = markerp) - { - return Delegates.glPollAsyncSGIX((UInt32*)markerp_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - Int32 PollAsync([Out] out UInt32 markerp) - { - unsafe - { - fixed (UInt32* markerp_ptr = &markerp) - { - Int32 retval = Delegates.glPollAsyncSGIX((UInt32*)markerp_ptr); - markerp = *markerp_ptr; - return retval; - } - } - } - - public static - Int32 PollAsync([Out] out Int32 markerp) - { - unsafe - { - fixed (Int32* markerp_ptr = &markerp) - { - Int32 retval = Delegates.glPollAsyncSGIX((UInt32*)markerp_ptr); - markerp = *markerp_ptr; - return retval; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe Int32 PollAsync([Out] UInt32* markerp) - { - return Delegates.glPollAsyncSGIX((UInt32*)markerp); - } - - [System.CLSCompliant(false)] - public static - unsafe Int32 PollAsync([Out] Int32* markerp) - { - return Delegates.glPollAsyncSGIX((UInt32*)markerp); - } - - public static - Int32 GenAsyncMarkers(Int32 range) - { - return Delegates.glGenAsyncMarkersSGIX((Int32)range); - } - - [System.CLSCompliant(false)] - public static - void DeleteAsyncMarkers(UInt32 marker, Int32 range) - { - Delegates.glDeleteAsyncMarkersSGIX((UInt32)marker, (Int32)range); - } - - public static - void DeleteAsyncMarkers(Int32 marker, Int32 range) - { - Delegates.glDeleteAsyncMarkersSGIX((UInt32)marker, (Int32)range); - } - - [System.CLSCompliant(false)] - public static - bool IsAsyncMarker(UInt32 marker) - { - return Delegates.glIsAsyncMarkerSGIX((UInt32)marker); - } - - public static - bool IsAsyncMarker(Int32 marker) - { - return Delegates.glIsAsyncMarkerSGIX((UInt32)marker); - } - - public static - void IglooInterface(OpenTK.OpenGL.Enums.All pname, IntPtr @params) - { - unsafe - { - Delegates.glIglooInterfaceSGIX((OpenTK.OpenGL.Enums.All)pname, (IntPtr)@params); - } - } - - public static - void IglooInterface(OpenTK.OpenGL.Enums.All pname, [In, Out] object @params) - { - unsafe - { - System.Runtime.InteropServices.GCHandle @params_ptr = System.Runtime.InteropServices.GCHandle.Alloc(@params, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glIglooInterfaceSGIX((OpenTK.OpenGL.Enums.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); - } - finally - { - @params_ptr.Free(); - } - } - } - - } - - public static partial class HP - { - public static - void ImageTransformParameter(OpenTK.OpenGL.Enums.HpImageTransform target, OpenTK.OpenGL.Enums.HpImageTransform pname, Int32 param) - { - Delegates.glImageTransformParameteriHP((OpenTK.OpenGL.Enums.HpImageTransform)target, (OpenTK.OpenGL.Enums.HpImageTransform)pname, (Int32)param); - } - - public static - void ImageTransformParameter(OpenTK.OpenGL.Enums.HpImageTransform target, OpenTK.OpenGL.Enums.HpImageTransform pname, Single param) - { - Delegates.glImageTransformParameterfHP((OpenTK.OpenGL.Enums.HpImageTransform)target, (OpenTK.OpenGL.Enums.HpImageTransform)pname, (Single)param); - } - - public static - void ImageTransformParameterv(OpenTK.OpenGL.Enums.HpImageTransform target, OpenTK.OpenGL.Enums.HpImageTransform pname, Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glImageTransformParameterivHP((OpenTK.OpenGL.Enums.HpImageTransform)target, (OpenTK.OpenGL.Enums.HpImageTransform)pname, (Int32*)@params_ptr); - } - } - } - - public static - void ImageTransformParameterv(OpenTK.OpenGL.Enums.HpImageTransform target, OpenTK.OpenGL.Enums.HpImageTransform pname, ref Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glImageTransformParameterivHP((OpenTK.OpenGL.Enums.HpImageTransform)target, (OpenTK.OpenGL.Enums.HpImageTransform)pname, (Int32*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void ImageTransformParameterv(OpenTK.OpenGL.Enums.HpImageTransform target, OpenTK.OpenGL.Enums.HpImageTransform pname, Int32* @params) - { - Delegates.glImageTransformParameterivHP((OpenTK.OpenGL.Enums.HpImageTransform)target, (OpenTK.OpenGL.Enums.HpImageTransform)pname, (Int32*)@params); - } - - public static - void ImageTransformParameterv(OpenTK.OpenGL.Enums.HpImageTransform target, OpenTK.OpenGL.Enums.HpImageTransform pname, Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glImageTransformParameterfvHP((OpenTK.OpenGL.Enums.HpImageTransform)target, (OpenTK.OpenGL.Enums.HpImageTransform)pname, (Single*)@params_ptr); - } - } - } - - public static - void ImageTransformParameterv(OpenTK.OpenGL.Enums.HpImageTransform target, OpenTK.OpenGL.Enums.HpImageTransform pname, ref Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glImageTransformParameterfvHP((OpenTK.OpenGL.Enums.HpImageTransform)target, (OpenTK.OpenGL.Enums.HpImageTransform)pname, (Single*)@params_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void ImageTransformParameterv(OpenTK.OpenGL.Enums.HpImageTransform target, OpenTK.OpenGL.Enums.HpImageTransform pname, Single* @params) - { - Delegates.glImageTransformParameterfvHP((OpenTK.OpenGL.Enums.HpImageTransform)target, (OpenTK.OpenGL.Enums.HpImageTransform)pname, (Single*)@params); - } - - public static - void GetImageTransformParameter(OpenTK.OpenGL.Enums.HpImageTransform target, OpenTK.OpenGL.Enums.HpImageTransform pname, [Out] Int32[] @params) - { - unsafe - { - fixed (Int32* @params_ptr = @params) - { - Delegates.glGetImageTransformParameterivHP((OpenTK.OpenGL.Enums.HpImageTransform)target, (OpenTK.OpenGL.Enums.HpImageTransform)pname, (Int32*)@params_ptr); - } - } - } - - public static - void GetImageTransformParameter(OpenTK.OpenGL.Enums.HpImageTransform target, OpenTK.OpenGL.Enums.HpImageTransform pname, [Out] out Int32 @params) - { - unsafe - { - fixed (Int32* @params_ptr = &@params) - { - Delegates.glGetImageTransformParameterivHP((OpenTK.OpenGL.Enums.HpImageTransform)target, (OpenTK.OpenGL.Enums.HpImageTransform)pname, (Int32*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetImageTransformParameter(OpenTK.OpenGL.Enums.HpImageTransform target, OpenTK.OpenGL.Enums.HpImageTransform pname, [Out] Int32* @params) - { - Delegates.glGetImageTransformParameterivHP((OpenTK.OpenGL.Enums.HpImageTransform)target, (OpenTK.OpenGL.Enums.HpImageTransform)pname, (Int32*)@params); - } - - public static - void GetImageTransformParameter(OpenTK.OpenGL.Enums.HpImageTransform target, OpenTK.OpenGL.Enums.HpImageTransform pname, [Out] Single[] @params) - { - unsafe - { - fixed (Single* @params_ptr = @params) - { - Delegates.glGetImageTransformParameterfvHP((OpenTK.OpenGL.Enums.HpImageTransform)target, (OpenTK.OpenGL.Enums.HpImageTransform)pname, (Single*)@params_ptr); - } - } - } - - public static - void GetImageTransformParameter(OpenTK.OpenGL.Enums.HpImageTransform target, OpenTK.OpenGL.Enums.HpImageTransform pname, [Out] out Single @params) - { - unsafe - { - fixed (Single* @params_ptr = &@params) - { - Delegates.glGetImageTransformParameterfvHP((OpenTK.OpenGL.Enums.HpImageTransform)target, (OpenTK.OpenGL.Enums.HpImageTransform)pname, (Single*)@params_ptr); - @params = *@params_ptr; - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void GetImageTransformParameter(OpenTK.OpenGL.Enums.HpImageTransform target, OpenTK.OpenGL.Enums.HpImageTransform pname, [Out] Single* @params) - { - Delegates.glGetImageTransformParameterfvHP((OpenTK.OpenGL.Enums.HpImageTransform)target, (OpenTK.OpenGL.Enums.HpImageTransform)pname, (Single*)@params); - } - - } - - public static partial class Pgi - { - public static - void Hint(OpenTK.OpenGL.Enums.PgiMiscHints target, Int32 mode) - { - Delegates.glHintPGI((OpenTK.OpenGL.Enums.PgiMiscHints)target, (Int32)mode); - } - - } - - public static partial class Intel - { - public static - void VertexPointer(Int32 size, OpenTK.OpenGL.Enums.VertexPointerType type, IntPtr pointer) - { - unsafe - { - Delegates.glVertexPointervINTEL((Int32)size, (OpenTK.OpenGL.Enums.VertexPointerType)type, (IntPtr)pointer); - } - } - - public static - void VertexPointer(Int32 size, OpenTK.OpenGL.Enums.VertexPointerType type, [In, Out] object pointer) - { - unsafe - { - System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glVertexPointervINTEL((Int32)size, (OpenTK.OpenGL.Enums.VertexPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); - } - finally - { - pointer_ptr.Free(); - } - } - } - - public static - void NormalPointer(OpenTK.OpenGL.Enums.NormalPointerType type, IntPtr pointer) - { - unsafe - { - Delegates.glNormalPointervINTEL((OpenTK.OpenGL.Enums.NormalPointerType)type, (IntPtr)pointer); - } - } - - public static - void NormalPointer(OpenTK.OpenGL.Enums.NormalPointerType type, [In, Out] object pointer) - { - unsafe - { - System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glNormalPointervINTEL((OpenTK.OpenGL.Enums.NormalPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); - } - finally - { - pointer_ptr.Free(); - } - } - } - - public static - void ColorPointer(Int32 size, OpenTK.OpenGL.Enums.VertexPointerType type, IntPtr pointer) - { - unsafe - { - Delegates.glColorPointervINTEL((Int32)size, (OpenTK.OpenGL.Enums.VertexPointerType)type, (IntPtr)pointer); - } - } - - public static - void ColorPointer(Int32 size, OpenTK.OpenGL.Enums.VertexPointerType type, [In, Out] object pointer) - { - unsafe - { - System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glColorPointervINTEL((Int32)size, (OpenTK.OpenGL.Enums.VertexPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); - } - finally - { - pointer_ptr.Free(); - } - } - } - - public static - void TexCoordPointer(Int32 size, OpenTK.OpenGL.Enums.VertexPointerType type, IntPtr pointer) - { - unsafe - { - Delegates.glTexCoordPointervINTEL((Int32)size, (OpenTK.OpenGL.Enums.VertexPointerType)type, (IntPtr)pointer); - } - } - - public static - void TexCoordPointer(Int32 size, OpenTK.OpenGL.Enums.VertexPointerType type, [In, Out] object pointer) - { - unsafe - { - System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glTexCoordPointervINTEL((Int32)size, (OpenTK.OpenGL.Enums.VertexPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); - } - finally - { - pointer_ptr.Free(); - } - } - } - - } - - public static partial class Sunx - { - public static - void FinishTexture() - { - Delegates.glFinishTextureSUNX(); - } - - } - - public static partial class Sun - { - [System.CLSCompliant(false)] - public static - void GlobalAlphaFactor(SByte factor) - { - Delegates.glGlobalAlphaFactorbSUN((SByte)factor); - } - - public static - void GlobalAlphaFactors(Int16 factor) - { - Delegates.glGlobalAlphaFactorsSUN((Int16)factor); - } - - public static - void GlobalAlphaFactor(Single factor) - { - Delegates.glGlobalAlphaFactorfSUN((Single)factor); - } - - public static - void GlobalAlphaFactor(Double factor) - { - Delegates.glGlobalAlphaFactordSUN((Double)factor); - } - - public static - void GlobalAlphaFactor(Byte factor) - { - Delegates.glGlobalAlphaFactorubSUN((Byte)factor); - } - - [System.CLSCompliant(false)] - public static - void GlobalAlphaFactor(UInt16 factor) - { - Delegates.glGlobalAlphaFactorusSUN((UInt16)factor); - } - - public static - void GlobalAlphaFactor(Int16 factor) - { - Delegates.glGlobalAlphaFactorusSUN((UInt16)factor); - } - - [System.CLSCompliant(false)] - public static - void GlobalAlphaFactor(UInt32 factor) - { - Delegates.glGlobalAlphaFactoruiSUN((UInt32)factor); - } - - public static - void GlobalAlphaFactor(Int32 factor) - { - Delegates.glGlobalAlphaFactoruiSUN((UInt32)factor); - } - - [System.CLSCompliant(false)] - public static - void ReplacementCode(UInt32 code) - { - Delegates.glReplacementCodeuiSUN((UInt32)code); - } - - public static - void ReplacementCode(Int32 code) - { - Delegates.glReplacementCodeuiSUN((UInt32)code); - } - - [System.CLSCompliant(false)] - public static - void ReplacementCode(UInt16 code) - { - Delegates.glReplacementCodeusSUN((UInt16)code); - } - - public static - void ReplacementCode(Int16 code) - { - Delegates.glReplacementCodeusSUN((UInt16)code); - } - - public static - void ReplacementCode(Byte code) - { - Delegates.glReplacementCodeubSUN((Byte)code); - } - - [System.CLSCompliant(false)] - public static - void ReplacementCodev(UInt32[] code) - { - unsafe - { - fixed (UInt32* code_ptr = code) - { - Delegates.glReplacementCodeuivSUN((UInt32*)code_ptr); - } - } - } - - public static - void ReplacementCodev(Int32[] code) - { - unsafe - { - fixed (Int32* code_ptr = code) - { - Delegates.glReplacementCodeuivSUN((UInt32*)code_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void ReplacementCodev(ref UInt32 code) - { - unsafe - { - fixed (UInt32* code_ptr = &code) - { - Delegates.glReplacementCodeuivSUN((UInt32*)code_ptr); - } - } - } - - public static - void ReplacementCodev(ref Int32 code) - { - unsafe - { - fixed (Int32* code_ptr = &code) - { - Delegates.glReplacementCodeuivSUN((UInt32*)code_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void ReplacementCodev(UInt32* code) - { - Delegates.glReplacementCodeuivSUN((UInt32*)code); - } - - [System.CLSCompliant(false)] - public static - unsafe void ReplacementCodev(Int32* code) - { - Delegates.glReplacementCodeuivSUN((UInt32*)code); - } - - [System.CLSCompliant(false)] - public static - void ReplacementCodev(UInt16[] code) - { - unsafe - { - fixed (UInt16* code_ptr = code) - { - Delegates.glReplacementCodeusvSUN((UInt16*)code_ptr); - } - } - } - - public static - void ReplacementCodev(Int16[] code) - { - unsafe - { - fixed (Int16* code_ptr = code) - { - Delegates.glReplacementCodeusvSUN((UInt16*)code_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void ReplacementCodev(ref UInt16 code) - { - unsafe - { - fixed (UInt16* code_ptr = &code) - { - Delegates.glReplacementCodeusvSUN((UInt16*)code_ptr); - } - } - } - - public static - void ReplacementCodev(ref Int16 code) - { - unsafe - { - fixed (Int16* code_ptr = &code) - { - Delegates.glReplacementCodeusvSUN((UInt16*)code_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void ReplacementCodev(UInt16* code) - { - Delegates.glReplacementCodeusvSUN((UInt16*)code); - } - - [System.CLSCompliant(false)] - public static - unsafe void ReplacementCodev(Int16* code) - { - Delegates.glReplacementCodeusvSUN((UInt16*)code); - } - - public static - void ReplacementCodev(Byte[] code) - { - unsafe - { - fixed (Byte* code_ptr = code) - { - Delegates.glReplacementCodeubvSUN((Byte*)code_ptr); - } - } - } - - public static - void ReplacementCodev(ref Byte code) - { - unsafe - { - fixed (Byte* code_ptr = &code) - { - Delegates.glReplacementCodeubvSUN((Byte*)code_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void ReplacementCodev(Byte* code) - { - Delegates.glReplacementCodeubvSUN((Byte*)code); - } - - public static - void ReplacementCodePointer(OpenTK.OpenGL.Enums.SunTriangleList type, Int32 stride, IntPtr pointer) - { - unsafe - { - Delegates.glReplacementCodePointerSUN((OpenTK.OpenGL.Enums.SunTriangleList)type, (Int32)stride, (IntPtr)pointer); - } - } - - public static - void ReplacementCodePointer(OpenTK.OpenGL.Enums.SunTriangleList type, Int32 stride, [In, Out] object pointer) - { - unsafe - { - System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); - try - { - Delegates.glReplacementCodePointerSUN((OpenTK.OpenGL.Enums.SunTriangleList)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); - } - finally - { - pointer_ptr.Free(); - } - } - } - - public static - void Color4ubVertex2(Byte r, Byte g, Byte b, Byte a, Single x, Single y) - { - Delegates.glColor4ubVertex2fSUN((Byte)r, (Byte)g, (Byte)b, (Byte)a, (Single)x, (Single)y); - } - - public static - void Color4ubVertex2(Byte[] c, Single[] v) - { - unsafe - { - fixed (Byte* c_ptr = c) - fixed (Single* v_ptr = v) - { - Delegates.glColor4ubVertex2fvSUN((Byte*)c_ptr, (Single*)v_ptr); - } - } - } - - public static - void Color4ubVertex2(ref Byte c, ref Single v) - { - unsafe - { - fixed (Byte* c_ptr = &c) - fixed (Single* v_ptr = &v) - { - Delegates.glColor4ubVertex2fvSUN((Byte*)c_ptr, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Color4ubVertex2(Byte* c, Single* v) - { - Delegates.glColor4ubVertex2fvSUN((Byte*)c, (Single*)v); - } - - public static - void Color4ubVertex3(Byte r, Byte g, Byte b, Byte a, Single x, Single y, Single z) - { - Delegates.glColor4ubVertex3fSUN((Byte)r, (Byte)g, (Byte)b, (Byte)a, (Single)x, (Single)y, (Single)z); - } - - public static - void Color4ubVertex3(Byte[] c, Single[] v) - { - unsafe - { - fixed (Byte* c_ptr = c) - fixed (Single* v_ptr = v) - { - Delegates.glColor4ubVertex3fvSUN((Byte*)c_ptr, (Single*)v_ptr); - } - } - } - - public static - void Color4ubVertex3(ref Byte c, ref Single v) - { - unsafe - { - fixed (Byte* c_ptr = &c) - fixed (Single* v_ptr = &v) - { - Delegates.glColor4ubVertex3fvSUN((Byte*)c_ptr, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Color4ubVertex3(Byte* c, Single* v) - { - Delegates.glColor4ubVertex3fvSUN((Byte*)c, (Single*)v); - } - - public static - void Color3fVertex3(Single r, Single g, Single b, Single x, Single y, Single z) - { - Delegates.glColor3fVertex3fSUN((Single)r, (Single)g, (Single)b, (Single)x, (Single)y, (Single)z); - } - - public static - void Color3fVertex3(Single[] c, Single[] v) - { - unsafe - { - fixed (Single* c_ptr = c) - fixed (Single* v_ptr = v) - { - Delegates.glColor3fVertex3fvSUN((Single*)c_ptr, (Single*)v_ptr); - } - } - } - - public static - void Color3fVertex3(ref Single c, ref Single v) - { - unsafe - { - fixed (Single* c_ptr = &c) - fixed (Single* v_ptr = &v) - { - Delegates.glColor3fVertex3fvSUN((Single*)c_ptr, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Color3fVertex3(Single* c, Single* v) - { - Delegates.glColor3fVertex3fvSUN((Single*)c, (Single*)v); - } - - public static - void Normal3fVertex3(Single nx, Single ny, Single nz, Single x, Single y, Single z) - { - Delegates.glNormal3fVertex3fSUN((Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); - } - - public static - void Normal3fVertex3(Single[] n, Single[] v) - { - unsafe - { - fixed (Single* n_ptr = n) - fixed (Single* v_ptr = v) - { - Delegates.glNormal3fVertex3fvSUN((Single*)n_ptr, (Single*)v_ptr); - } - } - } - - public static - void Normal3fVertex3(ref Single n, ref Single v) - { - unsafe - { - fixed (Single* n_ptr = &n) - fixed (Single* v_ptr = &v) - { - Delegates.glNormal3fVertex3fvSUN((Single*)n_ptr, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Normal3fVertex3(Single* n, Single* v) - { - Delegates.glNormal3fVertex3fvSUN((Single*)n, (Single*)v); - } - - public static - void Color4fNormal3fVertex3(Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z) - { - Delegates.glColor4fNormal3fVertex3fSUN((Single)r, (Single)g, (Single)b, (Single)a, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); - } - - public static - void Color4fNormal3fVertex3(Single[] c, Single[] n, Single[] v) - { - unsafe - { - fixed (Single* c_ptr = c) - fixed (Single* n_ptr = n) - fixed (Single* v_ptr = v) - { - Delegates.glColor4fNormal3fVertex3fvSUN((Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); - } - } - } - - public static - void Color4fNormal3fVertex3(ref Single c, ref Single n, ref Single v) - { - unsafe - { - fixed (Single* c_ptr = &c) - fixed (Single* n_ptr = &n) - fixed (Single* v_ptr = &v) - { - Delegates.glColor4fNormal3fVertex3fvSUN((Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void Color4fNormal3fVertex3(Single* c, Single* n, Single* v) - { - Delegates.glColor4fNormal3fVertex3fvSUN((Single*)c, (Single*)n, (Single*)v); - } - - public static - void TexCoord2fVertex3(Single s, Single t, Single x, Single y, Single z) - { - Delegates.glTexCoord2fVertex3fSUN((Single)s, (Single)t, (Single)x, (Single)y, (Single)z); - } - - public static - void TexCoord2fVertex3(Single[] tc, Single[] v) - { - unsafe - { - fixed (Single* tc_ptr = tc) - fixed (Single* v_ptr = v) - { - Delegates.glTexCoord2fVertex3fvSUN((Single*)tc_ptr, (Single*)v_ptr); - } - } - } - - public static - void TexCoord2fVertex3(ref Single tc, ref Single v) - { - unsafe - { - fixed (Single* tc_ptr = &tc) - fixed (Single* v_ptr = &v) - { - Delegates.glTexCoord2fVertex3fvSUN((Single*)tc_ptr, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void TexCoord2fVertex3(Single* tc, Single* v) - { - Delegates.glTexCoord2fVertex3fvSUN((Single*)tc, (Single*)v); - } - - public static - void TexCoord4fVertex4(Single s, Single t, Single p, Single q, Single x, Single y, Single z, Single w) - { - Delegates.glTexCoord4fVertex4fSUN((Single)s, (Single)t, (Single)p, (Single)q, (Single)x, (Single)y, (Single)z, (Single)w); - } - - public static - void TexCoord4fVertex4(Single[] tc, Single[] v) - { - unsafe - { - fixed (Single* tc_ptr = tc) - fixed (Single* v_ptr = v) - { - Delegates.glTexCoord4fVertex4fvSUN((Single*)tc_ptr, (Single*)v_ptr); - } - } - } - - public static - void TexCoord4fVertex4(ref Single tc, ref Single v) - { - unsafe - { - fixed (Single* tc_ptr = &tc) - fixed (Single* v_ptr = &v) - { - Delegates.glTexCoord4fVertex4fvSUN((Single*)tc_ptr, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void TexCoord4fVertex4(Single* tc, Single* v) - { - Delegates.glTexCoord4fVertex4fvSUN((Single*)tc, (Single*)v); - } - - public static - void TexCoord2fColor4ubVertex3(Single s, Single t, Byte r, Byte g, Byte b, Byte a, Single x, Single y, Single z) - { - Delegates.glTexCoord2fColor4ubVertex3fSUN((Single)s, (Single)t, (Byte)r, (Byte)g, (Byte)b, (Byte)a, (Single)x, (Single)y, (Single)z); - } - - public static - void TexCoord2fColor4ubVertex3(Single[] tc, Byte[] c, Single[] v) - { - unsafe - { - fixed (Single* tc_ptr = tc) - fixed (Byte* c_ptr = c) - fixed (Single* v_ptr = v) - { - Delegates.glTexCoord2fColor4ubVertex3fvSUN((Single*)tc_ptr, (Byte*)c_ptr, (Single*)v_ptr); - } - } - } - - public static - void TexCoord2fColor4ubVertex3(ref Single tc, ref Byte c, ref Single v) - { - unsafe - { - fixed (Single* tc_ptr = &tc) - fixed (Byte* c_ptr = &c) - fixed (Single* v_ptr = &v) - { - Delegates.glTexCoord2fColor4ubVertex3fvSUN((Single*)tc_ptr, (Byte*)c_ptr, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void TexCoord2fColor4ubVertex3(Single* tc, Byte* c, Single* v) - { - Delegates.glTexCoord2fColor4ubVertex3fvSUN((Single*)tc, (Byte*)c, (Single*)v); - } - - public static - void TexCoord2fColor3fVertex3(Single s, Single t, Single r, Single g, Single b, Single x, Single y, Single z) - { - Delegates.glTexCoord2fColor3fVertex3fSUN((Single)s, (Single)t, (Single)r, (Single)g, (Single)b, (Single)x, (Single)y, (Single)z); - } - - public static - void TexCoord2fColor3fVertex3(Single[] tc, Single[] c, Single[] v) - { - unsafe - { - fixed (Single* tc_ptr = tc) - fixed (Single* c_ptr = c) - fixed (Single* v_ptr = v) - { - Delegates.glTexCoord2fColor3fVertex3fvSUN((Single*)tc_ptr, (Single*)c_ptr, (Single*)v_ptr); - } - } - } - - public static - void TexCoord2fColor3fVertex3(ref Single tc, ref Single c, ref Single v) - { - unsafe - { - fixed (Single* tc_ptr = &tc) - fixed (Single* c_ptr = &c) - fixed (Single* v_ptr = &v) - { - Delegates.glTexCoord2fColor3fVertex3fvSUN((Single*)tc_ptr, (Single*)c_ptr, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void TexCoord2fColor3fVertex3(Single* tc, Single* c, Single* v) - { - Delegates.glTexCoord2fColor3fVertex3fvSUN((Single*)tc, (Single*)c, (Single*)v); - } - - public static - void TexCoord2fNormal3fVertex3(Single s, Single t, Single nx, Single ny, Single nz, Single x, Single y, Single z) - { - Delegates.glTexCoord2fNormal3fVertex3fSUN((Single)s, (Single)t, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); - } - - public static - void TexCoord2fNormal3fVertex3(Single[] tc, Single[] n, Single[] v) - { - unsafe - { - fixed (Single* tc_ptr = tc) - fixed (Single* n_ptr = n) - fixed (Single* v_ptr = v) - { - Delegates.glTexCoord2fNormal3fVertex3fvSUN((Single*)tc_ptr, (Single*)n_ptr, (Single*)v_ptr); - } - } - } - - public static - void TexCoord2fNormal3fVertex3(ref Single tc, ref Single n, ref Single v) - { - unsafe - { - fixed (Single* tc_ptr = &tc) - fixed (Single* n_ptr = &n) - fixed (Single* v_ptr = &v) - { - Delegates.glTexCoord2fNormal3fVertex3fvSUN((Single*)tc_ptr, (Single*)n_ptr, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void TexCoord2fNormal3fVertex3(Single* tc, Single* n, Single* v) - { - Delegates.glTexCoord2fNormal3fVertex3fvSUN((Single*)tc, (Single*)n, (Single*)v); - } - - public static - void TexCoord2fColor4fNormal3fVertex3(Single s, Single t, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z) - { - Delegates.glTexCoord2fColor4fNormal3fVertex3fSUN((Single)s, (Single)t, (Single)r, (Single)g, (Single)b, (Single)a, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); - } - - public static - void TexCoord2fColor4fNormal3fVertex3(Single[] tc, Single[] c, Single[] n, Single[] v) - { - unsafe - { - fixed (Single* tc_ptr = tc) - fixed (Single* c_ptr = c) - fixed (Single* n_ptr = n) - fixed (Single* v_ptr = v) - { - Delegates.glTexCoord2fColor4fNormal3fVertex3fvSUN((Single*)tc_ptr, (Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); - } - } - } - - public static - void TexCoord2fColor4fNormal3fVertex3(ref Single tc, ref Single c, ref Single n, ref Single v) - { - unsafe - { - fixed (Single* tc_ptr = &tc) - fixed (Single* c_ptr = &c) - fixed (Single* n_ptr = &n) - fixed (Single* v_ptr = &v) - { - Delegates.glTexCoord2fColor4fNormal3fVertex3fvSUN((Single*)tc_ptr, (Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void TexCoord2fColor4fNormal3fVertex3(Single* tc, Single* c, Single* n, Single* v) - { - Delegates.glTexCoord2fColor4fNormal3fVertex3fvSUN((Single*)tc, (Single*)c, (Single*)n, (Single*)v); - } - - public static - void TexCoord4fColor4fNormal3fVertex4(Single s, Single t, Single p, Single q, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z, Single w) - { - Delegates.glTexCoord4fColor4fNormal3fVertex4fSUN((Single)s, (Single)t, (Single)p, (Single)q, (Single)r, (Single)g, (Single)b, (Single)a, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z, (Single)w); - } - - public static - void TexCoord4fColor4fNormal3fVertex4(Single[] tc, Single[] c, Single[] n, Single[] v) - { - unsafe - { - fixed (Single* tc_ptr = tc) - fixed (Single* c_ptr = c) - fixed (Single* n_ptr = n) - fixed (Single* v_ptr = v) - { - Delegates.glTexCoord4fColor4fNormal3fVertex4fvSUN((Single*)tc_ptr, (Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); - } - } - } - - public static - void TexCoord4fColor4fNormal3fVertex4(ref Single tc, ref Single c, ref Single n, ref Single v) - { - unsafe - { - fixed (Single* tc_ptr = &tc) - fixed (Single* c_ptr = &c) - fixed (Single* n_ptr = &n) - fixed (Single* v_ptr = &v) - { - Delegates.glTexCoord4fColor4fNormal3fVertex4fvSUN((Single*)tc_ptr, (Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void TexCoord4fColor4fNormal3fVertex4(Single* tc, Single* c, Single* n, Single* v) - { - Delegates.glTexCoord4fColor4fNormal3fVertex4fvSUN((Single*)tc, (Single*)c, (Single*)n, (Single*)v); - } - - [System.CLSCompliant(false)] - public static - void ReplacementCodeuiVertex3(UInt32 rc, Single x, Single y, Single z) - { - Delegates.glReplacementCodeuiVertex3fSUN((UInt32)rc, (Single)x, (Single)y, (Single)z); - } - - public static - void ReplacementCodeuiVertex3(Int32 rc, Single x, Single y, Single z) - { - Delegates.glReplacementCodeuiVertex3fSUN((UInt32)rc, (Single)x, (Single)y, (Single)z); - } - - [System.CLSCompliant(false)] - public static - void ReplacementCodeuiVertex3v(UInt32[] rc, Single[] v) - { - unsafe - { - fixed (UInt32* rc_ptr = rc) - fixed (Single* v_ptr = v) - { - Delegates.glReplacementCodeuiVertex3fvSUN((UInt32*)rc_ptr, (Single*)v_ptr); - } - } - } - - public static - void ReplacementCodeuiVertex3v(Int32[] rc, Single[] v) - { - unsafe - { - fixed (Int32* rc_ptr = rc) - fixed (Single* v_ptr = v) - { - Delegates.glReplacementCodeuiVertex3fvSUN((UInt32*)rc_ptr, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void ReplacementCodeuiVertex3v(ref UInt32 rc, ref Single v) - { - unsafe - { - fixed (UInt32* rc_ptr = &rc) - fixed (Single* v_ptr = &v) - { - Delegates.glReplacementCodeuiVertex3fvSUN((UInt32*)rc_ptr, (Single*)v_ptr); - } - } - } - - public static - void ReplacementCodeuiVertex3v(ref Int32 rc, ref Single v) - { - unsafe - { - fixed (Int32* rc_ptr = &rc) - fixed (Single* v_ptr = &v) - { - Delegates.glReplacementCodeuiVertex3fvSUN((UInt32*)rc_ptr, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void ReplacementCodeuiVertex3v(UInt32* rc, Single* v) - { - Delegates.glReplacementCodeuiVertex3fvSUN((UInt32*)rc, (Single*)v); - } - - [System.CLSCompliant(false)] - public static - unsafe void ReplacementCodeuiVertex3v(Int32* rc, Single* v) - { - Delegates.glReplacementCodeuiVertex3fvSUN((UInt32*)rc, (Single*)v); - } - - [System.CLSCompliant(false)] - public static - void ReplacementCodeuiColor4ubVertex3(UInt32 rc, Byte r, Byte g, Byte b, Byte a, Single x, Single y, Single z) - { - Delegates.glReplacementCodeuiColor4ubVertex3fSUN((UInt32)rc, (Byte)r, (Byte)g, (Byte)b, (Byte)a, (Single)x, (Single)y, (Single)z); - } - - public static - void ReplacementCodeuiColor4ubVertex3(Int32 rc, Byte r, Byte g, Byte b, Byte a, Single x, Single y, Single z) - { - Delegates.glReplacementCodeuiColor4ubVertex3fSUN((UInt32)rc, (Byte)r, (Byte)g, (Byte)b, (Byte)a, (Single)x, (Single)y, (Single)z); - } - - [System.CLSCompliant(false)] - public static - void ReplacementCodeuiColor4ubVertex3v(UInt32[] rc, Byte[] c, Single[] v) - { - unsafe - { - fixed (UInt32* rc_ptr = rc) - fixed (Byte* c_ptr = c) - fixed (Single* v_ptr = v) - { - Delegates.glReplacementCodeuiColor4ubVertex3fvSUN((UInt32*)rc_ptr, (Byte*)c_ptr, (Single*)v_ptr); - } - } - } - - public static - void ReplacementCodeuiColor4ubVertex3v(Int32[] rc, Byte[] c, Single[] v) - { - unsafe - { - fixed (Int32* rc_ptr = rc) - fixed (Byte* c_ptr = c) - fixed (Single* v_ptr = v) - { - Delegates.glReplacementCodeuiColor4ubVertex3fvSUN((UInt32*)rc_ptr, (Byte*)c_ptr, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void ReplacementCodeuiColor4ubVertex3v(ref UInt32 rc, ref Byte c, ref Single v) - { - unsafe - { - fixed (UInt32* rc_ptr = &rc) - fixed (Byte* c_ptr = &c) - fixed (Single* v_ptr = &v) - { - Delegates.glReplacementCodeuiColor4ubVertex3fvSUN((UInt32*)rc_ptr, (Byte*)c_ptr, (Single*)v_ptr); - } - } - } - - public static - void ReplacementCodeuiColor4ubVertex3v(ref Int32 rc, ref Byte c, ref Single v) - { - unsafe - { - fixed (Int32* rc_ptr = &rc) - fixed (Byte* c_ptr = &c) - fixed (Single* v_ptr = &v) - { - Delegates.glReplacementCodeuiColor4ubVertex3fvSUN((UInt32*)rc_ptr, (Byte*)c_ptr, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void ReplacementCodeuiColor4ubVertex3v(UInt32* rc, Byte* c, Single* v) - { - Delegates.glReplacementCodeuiColor4ubVertex3fvSUN((UInt32*)rc, (Byte*)c, (Single*)v); - } - - [System.CLSCompliant(false)] - public static - unsafe void ReplacementCodeuiColor4ubVertex3v(Int32* rc, Byte* c, Single* v) - { - Delegates.glReplacementCodeuiColor4ubVertex3fvSUN((UInt32*)rc, (Byte*)c, (Single*)v); - } - - [System.CLSCompliant(false)] - public static - void ReplacementCodeuiColor3fVertex3(UInt32 rc, Single r, Single g, Single b, Single x, Single y, Single z) - { - Delegates.glReplacementCodeuiColor3fVertex3fSUN((UInt32)rc, (Single)r, (Single)g, (Single)b, (Single)x, (Single)y, (Single)z); - } - - public static - void ReplacementCodeuiColor3fVertex3(Int32 rc, Single r, Single g, Single b, Single x, Single y, Single z) - { - Delegates.glReplacementCodeuiColor3fVertex3fSUN((UInt32)rc, (Single)r, (Single)g, (Single)b, (Single)x, (Single)y, (Single)z); - } - - [System.CLSCompliant(false)] - public static - void ReplacementCodeuiColor3fVertex3v(UInt32[] rc, Single[] c, Single[] v) - { - unsafe - { - fixed (UInt32* rc_ptr = rc) - fixed (Single* c_ptr = c) - fixed (Single* v_ptr = v) - { - Delegates.glReplacementCodeuiColor3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)c_ptr, (Single*)v_ptr); - } - } - } - - public static - void ReplacementCodeuiColor3fVertex3v(Int32[] rc, Single[] c, Single[] v) - { - unsafe - { - fixed (Int32* rc_ptr = rc) - fixed (Single* c_ptr = c) - fixed (Single* v_ptr = v) - { - Delegates.glReplacementCodeuiColor3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)c_ptr, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void ReplacementCodeuiColor3fVertex3v(ref UInt32 rc, ref Single c, ref Single v) - { - unsafe - { - fixed (UInt32* rc_ptr = &rc) - fixed (Single* c_ptr = &c) - fixed (Single* v_ptr = &v) - { - Delegates.glReplacementCodeuiColor3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)c_ptr, (Single*)v_ptr); - } - } - } - - public static - void ReplacementCodeuiColor3fVertex3v(ref Int32 rc, ref Single c, ref Single v) - { - unsafe - { - fixed (Int32* rc_ptr = &rc) - fixed (Single* c_ptr = &c) - fixed (Single* v_ptr = &v) - { - Delegates.glReplacementCodeuiColor3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)c_ptr, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void ReplacementCodeuiColor3fVertex3v(UInt32* rc, Single* c, Single* v) - { - Delegates.glReplacementCodeuiColor3fVertex3fvSUN((UInt32*)rc, (Single*)c, (Single*)v); - } - - [System.CLSCompliant(false)] - public static - unsafe void ReplacementCodeuiColor3fVertex3v(Int32* rc, Single* c, Single* v) - { - Delegates.glReplacementCodeuiColor3fVertex3fvSUN((UInt32*)rc, (Single*)c, (Single*)v); - } - - [System.CLSCompliant(false)] - public static - void ReplacementCodeuiNormal3fVertex3(UInt32 rc, Single nx, Single ny, Single nz, Single x, Single y, Single z) - { - Delegates.glReplacementCodeuiNormal3fVertex3fSUN((UInt32)rc, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); - } - - public static - void ReplacementCodeuiNormal3fVertex3(Int32 rc, Single nx, Single ny, Single nz, Single x, Single y, Single z) - { - Delegates.glReplacementCodeuiNormal3fVertex3fSUN((UInt32)rc, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); - } - - [System.CLSCompliant(false)] - public static - void ReplacementCodeuiNormal3fVertex3v(UInt32[] rc, Single[] n, Single[] v) - { - unsafe - { - fixed (UInt32* rc_ptr = rc) - fixed (Single* n_ptr = n) - fixed (Single* v_ptr = v) - { - Delegates.glReplacementCodeuiNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)n_ptr, (Single*)v_ptr); - } - } - } - - public static - void ReplacementCodeuiNormal3fVertex3v(Int32[] rc, Single[] n, Single[] v) - { - unsafe - { - fixed (Int32* rc_ptr = rc) - fixed (Single* n_ptr = n) - fixed (Single* v_ptr = v) - { - Delegates.glReplacementCodeuiNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)n_ptr, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void ReplacementCodeuiNormal3fVertex3v(ref UInt32 rc, ref Single n, ref Single v) - { - unsafe - { - fixed (UInt32* rc_ptr = &rc) - fixed (Single* n_ptr = &n) - fixed (Single* v_ptr = &v) - { - Delegates.glReplacementCodeuiNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)n_ptr, (Single*)v_ptr); - } - } - } - - public static - void ReplacementCodeuiNormal3fVertex3v(ref Int32 rc, ref Single n, ref Single v) - { - unsafe - { - fixed (Int32* rc_ptr = &rc) - fixed (Single* n_ptr = &n) - fixed (Single* v_ptr = &v) - { - Delegates.glReplacementCodeuiNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)n_ptr, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void ReplacementCodeuiNormal3fVertex3v(UInt32* rc, Single* n, Single* v) - { - Delegates.glReplacementCodeuiNormal3fVertex3fvSUN((UInt32*)rc, (Single*)n, (Single*)v); - } - - [System.CLSCompliant(false)] - public static - unsafe void ReplacementCodeuiNormal3fVertex3v(Int32* rc, Single* n, Single* v) - { - Delegates.glReplacementCodeuiNormal3fVertex3fvSUN((UInt32*)rc, (Single*)n, (Single*)v); - } - - [System.CLSCompliant(false)] - public static - void ReplacementCodeuiColor4fNormal3fVertex3(UInt32 rc, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z) - { - Delegates.glReplacementCodeuiColor4fNormal3fVertex3fSUN((UInt32)rc, (Single)r, (Single)g, (Single)b, (Single)a, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); - } - - public static - void ReplacementCodeuiColor4fNormal3fVertex3(Int32 rc, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z) - { - Delegates.glReplacementCodeuiColor4fNormal3fVertex3fSUN((UInt32)rc, (Single)r, (Single)g, (Single)b, (Single)a, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); - } - - [System.CLSCompliant(false)] - public static - void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32[] rc, Single[] c, Single[] n, Single[] v) - { - unsafe - { - fixed (UInt32* rc_ptr = rc) - fixed (Single* c_ptr = c) - fixed (Single* n_ptr = n) - fixed (Single* v_ptr = v) - { - Delegates.glReplacementCodeuiColor4fNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); - } - } - } - - public static - void ReplacementCodeuiColor4fNormal3fVertex3v(Int32[] rc, Single[] c, Single[] n, Single[] v) - { - unsafe - { - fixed (Int32* rc_ptr = rc) - fixed (Single* c_ptr = c) - fixed (Single* n_ptr = n) - fixed (Single* v_ptr = v) - { - Delegates.glReplacementCodeuiColor4fNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, ref Single c, ref Single n, ref Single v) - { - unsafe - { - fixed (UInt32* rc_ptr = &rc) - fixed (Single* c_ptr = &c) - fixed (Single* n_ptr = &n) - fixed (Single* v_ptr = &v) - { - Delegates.glReplacementCodeuiColor4fNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); - } - } - } - - public static - void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, ref Single c, ref Single n, ref Single v) - { - unsafe - { - fixed (Int32* rc_ptr = &rc) - fixed (Single* c_ptr = &c) - fixed (Single* n_ptr = &n) - fixed (Single* v_ptr = &v) - { - Delegates.glReplacementCodeuiColor4fNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, Single* c, Single* n, Single* v) - { - Delegates.glReplacementCodeuiColor4fNormal3fVertex3fvSUN((UInt32*)rc, (Single*)c, (Single*)n, (Single*)v); - } - - [System.CLSCompliant(false)] - public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, Single* c, Single* n, Single* v) - { - Delegates.glReplacementCodeuiColor4fNormal3fVertex3fvSUN((UInt32*)rc, (Single*)c, (Single*)n, (Single*)v); - } - - [System.CLSCompliant(false)] - public static - void ReplacementCodeuiTexCoord2fVertex3(UInt32 rc, Single s, Single t, Single x, Single y, Single z) - { - Delegates.glReplacementCodeuiTexCoord2fVertex3fSUN((UInt32)rc, (Single)s, (Single)t, (Single)x, (Single)y, (Single)z); - } - - public static - void ReplacementCodeuiTexCoord2fVertex3(Int32 rc, Single s, Single t, Single x, Single y, Single z) - { - Delegates.glReplacementCodeuiTexCoord2fVertex3fSUN((UInt32)rc, (Single)s, (Single)t, (Single)x, (Single)y, (Single)z); - } - - [System.CLSCompliant(false)] - public static - void ReplacementCodeuiTexCoord2fVertex3v(UInt32[] rc, Single[] tc, Single[] v) - { - unsafe - { - fixed (UInt32* rc_ptr = rc) - fixed (Single* tc_ptr = tc) - fixed (Single* v_ptr = v) - { - Delegates.glReplacementCodeuiTexCoord2fVertex3fvSUN((UInt32*)rc_ptr, (Single*)tc_ptr, (Single*)v_ptr); - } - } - } - - public static - void ReplacementCodeuiTexCoord2fVertex3v(Int32[] rc, Single[] tc, Single[] v) - { - unsafe - { - fixed (Int32* rc_ptr = rc) - fixed (Single* tc_ptr = tc) - fixed (Single* v_ptr = v) - { - Delegates.glReplacementCodeuiTexCoord2fVertex3fvSUN((UInt32*)rc_ptr, (Single*)tc_ptr, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void ReplacementCodeuiTexCoord2fVertex3v(ref UInt32 rc, ref Single tc, ref Single v) - { - unsafe - { - fixed (UInt32* rc_ptr = &rc) - fixed (Single* tc_ptr = &tc) - fixed (Single* v_ptr = &v) - { - Delegates.glReplacementCodeuiTexCoord2fVertex3fvSUN((UInt32*)rc_ptr, (Single*)tc_ptr, (Single*)v_ptr); - } - } - } - - public static - void ReplacementCodeuiTexCoord2fVertex3v(ref Int32 rc, ref Single tc, ref Single v) - { - unsafe - { - fixed (Int32* rc_ptr = &rc) - fixed (Single* tc_ptr = &tc) - fixed (Single* v_ptr = &v) - { - Delegates.glReplacementCodeuiTexCoord2fVertex3fvSUN((UInt32*)rc_ptr, (Single*)tc_ptr, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v(UInt32* rc, Single* tc, Single* v) - { - Delegates.glReplacementCodeuiTexCoord2fVertex3fvSUN((UInt32*)rc, (Single*)tc, (Single*)v); - } - - [System.CLSCompliant(false)] - public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v(Int32* rc, Single* tc, Single* v) - { - Delegates.glReplacementCodeuiTexCoord2fVertex3fvSUN((UInt32*)rc, (Single*)tc, (Single*)v); - } - - [System.CLSCompliant(false)] - public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32 rc, Single s, Single t, Single nx, Single ny, Single nz, Single x, Single y, Single z) - { - Delegates.glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN((UInt32)rc, (Single)s, (Single)t, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); - } - - public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32 rc, Single s, Single t, Single nx, Single ny, Single nz, Single x, Single y, Single z) - { - Delegates.glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN((UInt32)rc, (Single)s, (Single)t, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); - } - - [System.CLSCompliant(false)] - public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32[] rc, Single[] tc, Single[] n, Single[] v) - { - unsafe - { - fixed (UInt32* rc_ptr = rc) - fixed (Single* tc_ptr = tc) - fixed (Single* n_ptr = n) - fixed (Single* v_ptr = v) - { - Delegates.glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)tc_ptr, (Single*)n_ptr, (Single*)v_ptr); - } - } - } - - public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32[] rc, Single[] tc, Single[] n, Single[] v) - { - unsafe - { - fixed (Int32* rc_ptr = rc) - fixed (Single* tc_ptr = tc) - fixed (Single* n_ptr = n) - fixed (Single* v_ptr = v) - { - Delegates.glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)tc_ptr, (Single*)n_ptr, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, ref Single tc, ref Single n, ref Single v) - { - unsafe - { - fixed (UInt32* rc_ptr = &rc) - fixed (Single* tc_ptr = &tc) - fixed (Single* n_ptr = &n) - fixed (Single* v_ptr = &v) - { - Delegates.glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)tc_ptr, (Single*)n_ptr, (Single*)v_ptr); - } - } - } - - public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, ref Single tc, ref Single n, ref Single v) - { - unsafe - { - fixed (Int32* rc_ptr = &rc) - fixed (Single* tc_ptr = &tc) - fixed (Single* n_ptr = &n) - fixed (Single* v_ptr = &v) - { - Delegates.glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)tc_ptr, (Single*)n_ptr, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, Single* tc, Single* n, Single* v) - { - Delegates.glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN((UInt32*)rc, (Single*)tc, (Single*)n, (Single*)v); - } - - [System.CLSCompliant(false)] - public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, Single* tc, Single* n, Single* v) - { - Delegates.glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN((UInt32*)rc, (Single*)tc, (Single*)n, (Single*)v); - } - - [System.CLSCompliant(false)] - public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32 rc, Single s, Single t, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z) - { - Delegates.glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN((UInt32)rc, (Single)s, (Single)t, (Single)r, (Single)g, (Single)b, (Single)a, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); - } - - public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32 rc, Single s, Single t, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z) - { - Delegates.glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN((UInt32)rc, (Single)s, (Single)t, (Single)r, (Single)g, (Single)b, (Single)a, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); - } - - [System.CLSCompliant(false)] - public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single[] tc, Single[] c, Single[] n, Single[] v) - { - unsafe - { - fixed (UInt32* rc_ptr = rc) - fixed (Single* tc_ptr = tc) - fixed (Single* c_ptr = c) - fixed (Single* n_ptr = n) - fixed (Single* v_ptr = v) - { - Delegates.glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)tc_ptr, (Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); - } - } - } - - public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single[] tc, Single[] c, Single[] n, Single[] v) - { - unsafe - { - fixed (Int32* rc_ptr = rc) - fixed (Single* tc_ptr = tc) - fixed (Single* c_ptr = c) - fixed (Single* n_ptr = n) - fixed (Single* v_ptr = v) - { - Delegates.glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)tc_ptr, (Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, ref Single c, ref Single n, ref Single v) - { - unsafe - { - fixed (UInt32* rc_ptr = &rc) - fixed (Single* tc_ptr = &tc) - fixed (Single* c_ptr = &c) - fixed (Single* n_ptr = &n) - fixed (Single* v_ptr = &v) - { - Delegates.glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)tc_ptr, (Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); - } - } - } - - public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, ref Single c, ref Single n, ref Single v) - { - unsafe - { - fixed (Int32* rc_ptr = &rc) - fixed (Single* tc_ptr = &tc) - fixed (Single* c_ptr = &c) - fixed (Single* n_ptr = &n) - fixed (Single* v_ptr = &v) - { - Delegates.glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)tc_ptr, (Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); - } - } - } - - [System.CLSCompliant(false)] - public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, Single* c, Single* n, Single* v) - { - Delegates.glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN((UInt32*)rc, (Single*)tc, (Single*)c, (Single*)n, (Single*)v); - } - - [System.CLSCompliant(false)] - public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, Single* c, Single* n, Single* v) - { - Delegates.glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN((UInt32*)rc, (Single*)tc, (Single*)c, (Single*)n, (Single*)v); - } - - public static - void DrawMeshArrays(OpenTK.OpenGL.Enums.BeginMode mode, Int32 first, Int32 count, Int32 width) - { - Delegates.glDrawMeshArraysSUN((OpenTK.OpenGL.Enums.BeginMode)mode, (Int32)first, (Int32)count, (Int32)width); - } - - } - - public static partial class Ingr - { - public static - void BlendFuncSeparate(OpenTK.OpenGL.Enums.All sfactorRGB, OpenTK.OpenGL.Enums.All dfactorRGB, OpenTK.OpenGL.Enums.All sfactorAlpha, OpenTK.OpenGL.Enums.All dfactorAlpha) - { - Delegates.glBlendFuncSeparateINGR((OpenTK.OpenGL.Enums.All)sfactorRGB, (OpenTK.OpenGL.Enums.All)dfactorRGB, (OpenTK.OpenGL.Enums.All)sfactorAlpha, (OpenTK.OpenGL.Enums.All)dfactorAlpha); - } - - } - public static partial class NV { + public static + void GetBoolea(OpenTK.OpenGL.Enums.GetPName pname, [Out] bool[] @params) + { + unsafe + { + fixed (bool* @params_ptr = @params) + { + Delegates.glGetBooleanv((OpenTK.OpenGL.Enums.GetPName)pname, (bool*)@params_ptr); + } + } + } + + public static + void GetBoolea(OpenTK.OpenGL.Enums.GetPName pname, [Out] out bool @params) + { + unsafe + { + fixed (bool* @params_ptr = &@params) + { + Delegates.glGetBooleanv((OpenTK.OpenGL.Enums.GetPName)pname, (bool*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetBoolea(OpenTK.OpenGL.Enums.GetPName pname, [Out] bool* @params) + { + Delegates.glGetBooleanv((OpenTK.OpenGL.Enums.GetPName)pname, (bool*)@params); + } + public static void FlushVertexArrayRange() { @@ -29233,117 +12898,117 @@ namespace OpenTK.OpenGL } public static - void CombinerParameterv(OpenTK.OpenGL.Enums.NvRegisterCombiners pname, Single[] @params) + void CombinerParameterv(OpenTK.OpenGL.Enums.All pname, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glCombinerParameterfvNV((OpenTK.OpenGL.Enums.NvRegisterCombiners)pname, (Single*)@params_ptr); + Delegates.glCombinerParameterfvNV((OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); } } } public static - void CombinerParameterv(OpenTK.OpenGL.Enums.NvRegisterCombiners pname, ref Single @params) + void CombinerParameterv(OpenTK.OpenGL.Enums.All pname, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glCombinerParameterfvNV((OpenTK.OpenGL.Enums.NvRegisterCombiners)pname, (Single*)@params_ptr); + Delegates.glCombinerParameterfvNV((OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void CombinerParameterv(OpenTK.OpenGL.Enums.NvRegisterCombiners pname, Single* @params) + unsafe void CombinerParameterv(OpenTK.OpenGL.Enums.All pname, Single* @params) { - Delegates.glCombinerParameterfvNV((OpenTK.OpenGL.Enums.NvRegisterCombiners)pname, (Single*)@params); + Delegates.glCombinerParameterfvNV((OpenTK.OpenGL.Enums.All)pname, (Single*)@params); } public static - void CombinerParameter(OpenTK.OpenGL.Enums.NvRegisterCombiners pname, Single param) + void CombinerParameter(OpenTK.OpenGL.Enums.All pname, Single param) { - Delegates.glCombinerParameterfNV((OpenTK.OpenGL.Enums.NvRegisterCombiners)pname, (Single)param); + Delegates.glCombinerParameterfNV((OpenTK.OpenGL.Enums.All)pname, (Single)param); } public static - void CombinerParameterv(OpenTK.OpenGL.Enums.NvRegisterCombiners pname, Int32[] @params) + void CombinerParameterv(OpenTK.OpenGL.Enums.All pname, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glCombinerParameterivNV((OpenTK.OpenGL.Enums.NvRegisterCombiners)pname, (Int32*)@params_ptr); + Delegates.glCombinerParameterivNV((OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); } } } public static - void CombinerParameterv(OpenTK.OpenGL.Enums.NvRegisterCombiners pname, ref Int32 @params) + void CombinerParameterv(OpenTK.OpenGL.Enums.All pname, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glCombinerParameterivNV((OpenTK.OpenGL.Enums.NvRegisterCombiners)pname, (Int32*)@params_ptr); + Delegates.glCombinerParameterivNV((OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void CombinerParameterv(OpenTK.OpenGL.Enums.NvRegisterCombiners pname, Int32* @params) + unsafe void CombinerParameterv(OpenTK.OpenGL.Enums.All pname, Int32* @params) { - Delegates.glCombinerParameterivNV((OpenTK.OpenGL.Enums.NvRegisterCombiners)pname, (Int32*)@params); + Delegates.glCombinerParameterivNV((OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); } public static - void CombinerParameter(OpenTK.OpenGL.Enums.NvRegisterCombiners pname, Int32 param) + void CombinerParameter(OpenTK.OpenGL.Enums.All pname, Int32 param) { - Delegates.glCombinerParameteriNV((OpenTK.OpenGL.Enums.NvRegisterCombiners)pname, (Int32)param); + Delegates.glCombinerParameteriNV((OpenTK.OpenGL.Enums.All)pname, (Int32)param); } public static - void CombinerInput(OpenTK.OpenGL.Enums.NvRegisterCombiners stage, OpenTK.OpenGL.Enums.NvRegisterCombiners portion, OpenTK.OpenGL.Enums.NvRegisterCombiners variable, OpenTK.OpenGL.Enums.NvRegisterCombiners input, OpenTK.OpenGL.Enums.NvRegisterCombiners mapping, OpenTK.OpenGL.Enums.NvRegisterCombiners componentUsage) + void CombinerInput(OpenTK.OpenGL.Enums.All stage, OpenTK.OpenGL.Enums.All portion, OpenTK.OpenGL.Enums.All variable, OpenTK.OpenGL.Enums.All input, OpenTK.OpenGL.Enums.All mapping, OpenTK.OpenGL.Enums.All componentUsage) { - Delegates.glCombinerInputNV((OpenTK.OpenGL.Enums.NvRegisterCombiners)stage, (OpenTK.OpenGL.Enums.NvRegisterCombiners)portion, (OpenTK.OpenGL.Enums.NvRegisterCombiners)variable, (OpenTK.OpenGL.Enums.NvRegisterCombiners)input, (OpenTK.OpenGL.Enums.NvRegisterCombiners)mapping, (OpenTK.OpenGL.Enums.NvRegisterCombiners)componentUsage); + Delegates.glCombinerInputNV((OpenTK.OpenGL.Enums.All)stage, (OpenTK.OpenGL.Enums.All)portion, (OpenTK.OpenGL.Enums.All)variable, (OpenTK.OpenGL.Enums.All)input, (OpenTK.OpenGL.Enums.All)mapping, (OpenTK.OpenGL.Enums.All)componentUsage); } public static - void CombinerOutput(OpenTK.OpenGL.Enums.NvRegisterCombiners stage, OpenTK.OpenGL.Enums.NvRegisterCombiners portion, OpenTK.OpenGL.Enums.NvRegisterCombiners abOutput, OpenTK.OpenGL.Enums.NvRegisterCombiners cdOutput, OpenTK.OpenGL.Enums.NvRegisterCombiners sumOutput, OpenTK.OpenGL.Enums.NvRegisterCombiners scale, OpenTK.OpenGL.Enums.NvRegisterCombiners bias, bool abDotProduct, bool cdDotProduct, bool muxSum) + void CombinerOutput(OpenTK.OpenGL.Enums.All stage, OpenTK.OpenGL.Enums.All portion, OpenTK.OpenGL.Enums.All abOutput, OpenTK.OpenGL.Enums.All cdOutput, OpenTK.OpenGL.Enums.All sumOutput, OpenTK.OpenGL.Enums.All scale, OpenTK.OpenGL.Enums.All bias, bool abDotProduct, bool cdDotProduct, bool muxSum) { - Delegates.glCombinerOutputNV((OpenTK.OpenGL.Enums.NvRegisterCombiners)stage, (OpenTK.OpenGL.Enums.NvRegisterCombiners)portion, (OpenTK.OpenGL.Enums.NvRegisterCombiners)abOutput, (OpenTK.OpenGL.Enums.NvRegisterCombiners)cdOutput, (OpenTK.OpenGL.Enums.NvRegisterCombiners)sumOutput, (OpenTK.OpenGL.Enums.NvRegisterCombiners)scale, (OpenTK.OpenGL.Enums.NvRegisterCombiners)bias, (bool)abDotProduct, (bool)cdDotProduct, (bool)muxSum); + Delegates.glCombinerOutputNV((OpenTK.OpenGL.Enums.All)stage, (OpenTK.OpenGL.Enums.All)portion, (OpenTK.OpenGL.Enums.All)abOutput, (OpenTK.OpenGL.Enums.All)cdOutput, (OpenTK.OpenGL.Enums.All)sumOutput, (OpenTK.OpenGL.Enums.All)scale, (OpenTK.OpenGL.Enums.All)bias, (bool)abDotProduct, (bool)cdDotProduct, (bool)muxSum); } public static - void FinalCombinerInput(OpenTK.OpenGL.Enums.NvRegisterCombiners variable, OpenTK.OpenGL.Enums.NvRegisterCombiners input, OpenTK.OpenGL.Enums.NvRegisterCombiners mapping, OpenTK.OpenGL.Enums.NvRegisterCombiners componentUsage) + void FinalCombinerInput(OpenTK.OpenGL.Enums.All variable, OpenTK.OpenGL.Enums.All input, OpenTK.OpenGL.Enums.All mapping, OpenTK.OpenGL.Enums.All componentUsage) { - Delegates.glFinalCombinerInputNV((OpenTK.OpenGL.Enums.NvRegisterCombiners)variable, (OpenTK.OpenGL.Enums.NvRegisterCombiners)input, (OpenTK.OpenGL.Enums.NvRegisterCombiners)mapping, (OpenTK.OpenGL.Enums.NvRegisterCombiners)componentUsage); + Delegates.glFinalCombinerInputNV((OpenTK.OpenGL.Enums.All)variable, (OpenTK.OpenGL.Enums.All)input, (OpenTK.OpenGL.Enums.All)mapping, (OpenTK.OpenGL.Enums.All)componentUsage); } public static - void GetCombinerInputParameter(OpenTK.OpenGL.Enums.NvRegisterCombiners stage, OpenTK.OpenGL.Enums.NvRegisterCombiners portion, OpenTK.OpenGL.Enums.NvRegisterCombiners variable, OpenTK.OpenGL.Enums.NvRegisterCombiners pname, [Out] Single[] @params) + void GetCombinerInputParameter(OpenTK.OpenGL.Enums.All stage, OpenTK.OpenGL.Enums.All portion, OpenTK.OpenGL.Enums.All variable, OpenTK.OpenGL.Enums.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetCombinerInputParameterfvNV((OpenTK.OpenGL.Enums.NvRegisterCombiners)stage, (OpenTK.OpenGL.Enums.NvRegisterCombiners)portion, (OpenTK.OpenGL.Enums.NvRegisterCombiners)variable, (OpenTK.OpenGL.Enums.NvRegisterCombiners)pname, (Single*)@params_ptr); + Delegates.glGetCombinerInputParameterfvNV((OpenTK.OpenGL.Enums.All)stage, (OpenTK.OpenGL.Enums.All)portion, (OpenTK.OpenGL.Enums.All)variable, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); } } } public static - void GetCombinerInputParameter(OpenTK.OpenGL.Enums.NvRegisterCombiners stage, OpenTK.OpenGL.Enums.NvRegisterCombiners portion, OpenTK.OpenGL.Enums.NvRegisterCombiners variable, OpenTK.OpenGL.Enums.NvRegisterCombiners pname, [Out] out Single @params) + void GetCombinerInputParameter(OpenTK.OpenGL.Enums.All stage, OpenTK.OpenGL.Enums.All portion, OpenTK.OpenGL.Enums.All variable, OpenTK.OpenGL.Enums.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetCombinerInputParameterfvNV((OpenTK.OpenGL.Enums.NvRegisterCombiners)stage, (OpenTK.OpenGL.Enums.NvRegisterCombiners)portion, (OpenTK.OpenGL.Enums.NvRegisterCombiners)variable, (OpenTK.OpenGL.Enums.NvRegisterCombiners)pname, (Single*)@params_ptr); + Delegates.glGetCombinerInputParameterfvNV((OpenTK.OpenGL.Enums.All)stage, (OpenTK.OpenGL.Enums.All)portion, (OpenTK.OpenGL.Enums.All)variable, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -29351,31 +13016,31 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetCombinerInputParameter(OpenTK.OpenGL.Enums.NvRegisterCombiners stage, OpenTK.OpenGL.Enums.NvRegisterCombiners portion, OpenTK.OpenGL.Enums.NvRegisterCombiners variable, OpenTK.OpenGL.Enums.NvRegisterCombiners pname, [Out] Single* @params) + unsafe void GetCombinerInputParameter(OpenTK.OpenGL.Enums.All stage, OpenTK.OpenGL.Enums.All portion, OpenTK.OpenGL.Enums.All variable, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params) { - Delegates.glGetCombinerInputParameterfvNV((OpenTK.OpenGL.Enums.NvRegisterCombiners)stage, (OpenTK.OpenGL.Enums.NvRegisterCombiners)portion, (OpenTK.OpenGL.Enums.NvRegisterCombiners)variable, (OpenTK.OpenGL.Enums.NvRegisterCombiners)pname, (Single*)@params); + Delegates.glGetCombinerInputParameterfvNV((OpenTK.OpenGL.Enums.All)stage, (OpenTK.OpenGL.Enums.All)portion, (OpenTK.OpenGL.Enums.All)variable, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); } public static - void GetCombinerInputParameter(OpenTK.OpenGL.Enums.NvRegisterCombiners stage, OpenTK.OpenGL.Enums.NvRegisterCombiners portion, OpenTK.OpenGL.Enums.NvRegisterCombiners variable, OpenTK.OpenGL.Enums.NvRegisterCombiners pname, [Out] Int32[] @params) + void GetCombinerInputParameter(OpenTK.OpenGL.Enums.All stage, OpenTK.OpenGL.Enums.All portion, OpenTK.OpenGL.Enums.All variable, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetCombinerInputParameterivNV((OpenTK.OpenGL.Enums.NvRegisterCombiners)stage, (OpenTK.OpenGL.Enums.NvRegisterCombiners)portion, (OpenTK.OpenGL.Enums.NvRegisterCombiners)variable, (OpenTK.OpenGL.Enums.NvRegisterCombiners)pname, (Int32*)@params_ptr); + Delegates.glGetCombinerInputParameterivNV((OpenTK.OpenGL.Enums.All)stage, (OpenTK.OpenGL.Enums.All)portion, (OpenTK.OpenGL.Enums.All)variable, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); } } } public static - void GetCombinerInputParameter(OpenTK.OpenGL.Enums.NvRegisterCombiners stage, OpenTK.OpenGL.Enums.NvRegisterCombiners portion, OpenTK.OpenGL.Enums.NvRegisterCombiners variable, OpenTK.OpenGL.Enums.NvRegisterCombiners pname, [Out] out Int32 @params) + void GetCombinerInputParameter(OpenTK.OpenGL.Enums.All stage, OpenTK.OpenGL.Enums.All portion, OpenTK.OpenGL.Enums.All variable, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetCombinerInputParameterivNV((OpenTK.OpenGL.Enums.NvRegisterCombiners)stage, (OpenTK.OpenGL.Enums.NvRegisterCombiners)portion, (OpenTK.OpenGL.Enums.NvRegisterCombiners)variable, (OpenTK.OpenGL.Enums.NvRegisterCombiners)pname, (Int32*)@params_ptr); + Delegates.glGetCombinerInputParameterivNV((OpenTK.OpenGL.Enums.All)stage, (OpenTK.OpenGL.Enums.All)portion, (OpenTK.OpenGL.Enums.All)variable, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -29383,31 +13048,31 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetCombinerInputParameter(OpenTK.OpenGL.Enums.NvRegisterCombiners stage, OpenTK.OpenGL.Enums.NvRegisterCombiners portion, OpenTK.OpenGL.Enums.NvRegisterCombiners variable, OpenTK.OpenGL.Enums.NvRegisterCombiners pname, [Out] Int32* @params) + unsafe void GetCombinerInputParameter(OpenTK.OpenGL.Enums.All stage, OpenTK.OpenGL.Enums.All portion, OpenTK.OpenGL.Enums.All variable, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) { - Delegates.glGetCombinerInputParameterivNV((OpenTK.OpenGL.Enums.NvRegisterCombiners)stage, (OpenTK.OpenGL.Enums.NvRegisterCombiners)portion, (OpenTK.OpenGL.Enums.NvRegisterCombiners)variable, (OpenTK.OpenGL.Enums.NvRegisterCombiners)pname, (Int32*)@params); + Delegates.glGetCombinerInputParameterivNV((OpenTK.OpenGL.Enums.All)stage, (OpenTK.OpenGL.Enums.All)portion, (OpenTK.OpenGL.Enums.All)variable, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); } public static - void GetCombinerOutputParameter(OpenTK.OpenGL.Enums.NvRegisterCombiners stage, OpenTK.OpenGL.Enums.NvRegisterCombiners portion, OpenTK.OpenGL.Enums.NvRegisterCombiners pname, [Out] Single[] @params) + void GetCombinerOutputParameter(OpenTK.OpenGL.Enums.All stage, OpenTK.OpenGL.Enums.All portion, OpenTK.OpenGL.Enums.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetCombinerOutputParameterfvNV((OpenTK.OpenGL.Enums.NvRegisterCombiners)stage, (OpenTK.OpenGL.Enums.NvRegisterCombiners)portion, (OpenTK.OpenGL.Enums.NvRegisterCombiners)pname, (Single*)@params_ptr); + Delegates.glGetCombinerOutputParameterfvNV((OpenTK.OpenGL.Enums.All)stage, (OpenTK.OpenGL.Enums.All)portion, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); } } } public static - void GetCombinerOutputParameter(OpenTK.OpenGL.Enums.NvRegisterCombiners stage, OpenTK.OpenGL.Enums.NvRegisterCombiners portion, OpenTK.OpenGL.Enums.NvRegisterCombiners pname, [Out] out Single @params) + void GetCombinerOutputParameter(OpenTK.OpenGL.Enums.All stage, OpenTK.OpenGL.Enums.All portion, OpenTK.OpenGL.Enums.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetCombinerOutputParameterfvNV((OpenTK.OpenGL.Enums.NvRegisterCombiners)stage, (OpenTK.OpenGL.Enums.NvRegisterCombiners)portion, (OpenTK.OpenGL.Enums.NvRegisterCombiners)pname, (Single*)@params_ptr); + Delegates.glGetCombinerOutputParameterfvNV((OpenTK.OpenGL.Enums.All)stage, (OpenTK.OpenGL.Enums.All)portion, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -29415,31 +13080,31 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetCombinerOutputParameter(OpenTK.OpenGL.Enums.NvRegisterCombiners stage, OpenTK.OpenGL.Enums.NvRegisterCombiners portion, OpenTK.OpenGL.Enums.NvRegisterCombiners pname, [Out] Single* @params) + unsafe void GetCombinerOutputParameter(OpenTK.OpenGL.Enums.All stage, OpenTK.OpenGL.Enums.All portion, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params) { - Delegates.glGetCombinerOutputParameterfvNV((OpenTK.OpenGL.Enums.NvRegisterCombiners)stage, (OpenTK.OpenGL.Enums.NvRegisterCombiners)portion, (OpenTK.OpenGL.Enums.NvRegisterCombiners)pname, (Single*)@params); + Delegates.glGetCombinerOutputParameterfvNV((OpenTK.OpenGL.Enums.All)stage, (OpenTK.OpenGL.Enums.All)portion, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); } public static - void GetCombinerOutputParameter(OpenTK.OpenGL.Enums.NvRegisterCombiners stage, OpenTK.OpenGL.Enums.NvRegisterCombiners portion, OpenTK.OpenGL.Enums.NvRegisterCombiners pname, [Out] Int32[] @params) + void GetCombinerOutputParameter(OpenTK.OpenGL.Enums.All stage, OpenTK.OpenGL.Enums.All portion, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetCombinerOutputParameterivNV((OpenTK.OpenGL.Enums.NvRegisterCombiners)stage, (OpenTK.OpenGL.Enums.NvRegisterCombiners)portion, (OpenTK.OpenGL.Enums.NvRegisterCombiners)pname, (Int32*)@params_ptr); + Delegates.glGetCombinerOutputParameterivNV((OpenTK.OpenGL.Enums.All)stage, (OpenTK.OpenGL.Enums.All)portion, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); } } } public static - void GetCombinerOutputParameter(OpenTK.OpenGL.Enums.NvRegisterCombiners stage, OpenTK.OpenGL.Enums.NvRegisterCombiners portion, OpenTK.OpenGL.Enums.NvRegisterCombiners pname, [Out] out Int32 @params) + void GetCombinerOutputParameter(OpenTK.OpenGL.Enums.All stage, OpenTK.OpenGL.Enums.All portion, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetCombinerOutputParameterivNV((OpenTK.OpenGL.Enums.NvRegisterCombiners)stage, (OpenTK.OpenGL.Enums.NvRegisterCombiners)portion, (OpenTK.OpenGL.Enums.NvRegisterCombiners)pname, (Int32*)@params_ptr); + Delegates.glGetCombinerOutputParameterivNV((OpenTK.OpenGL.Enums.All)stage, (OpenTK.OpenGL.Enums.All)portion, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -29447,31 +13112,31 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetCombinerOutputParameter(OpenTK.OpenGL.Enums.NvRegisterCombiners stage, OpenTK.OpenGL.Enums.NvRegisterCombiners portion, OpenTK.OpenGL.Enums.NvRegisterCombiners pname, [Out] Int32* @params) + unsafe void GetCombinerOutputParameter(OpenTK.OpenGL.Enums.All stage, OpenTK.OpenGL.Enums.All portion, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) { - Delegates.glGetCombinerOutputParameterivNV((OpenTK.OpenGL.Enums.NvRegisterCombiners)stage, (OpenTK.OpenGL.Enums.NvRegisterCombiners)portion, (OpenTK.OpenGL.Enums.NvRegisterCombiners)pname, (Int32*)@params); + Delegates.glGetCombinerOutputParameterivNV((OpenTK.OpenGL.Enums.All)stage, (OpenTK.OpenGL.Enums.All)portion, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); } public static - void GetFinalCombinerInputParameter(OpenTK.OpenGL.Enums.NvRegisterCombiners variable, OpenTK.OpenGL.Enums.NvRegisterCombiners pname, [Out] Single[] @params) + void GetFinalCombinerInputParameter(OpenTK.OpenGL.Enums.All variable, OpenTK.OpenGL.Enums.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetFinalCombinerInputParameterfvNV((OpenTK.OpenGL.Enums.NvRegisterCombiners)variable, (OpenTK.OpenGL.Enums.NvRegisterCombiners)pname, (Single*)@params_ptr); + Delegates.glGetFinalCombinerInputParameterfvNV((OpenTK.OpenGL.Enums.All)variable, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); } } } public static - void GetFinalCombinerInputParameter(OpenTK.OpenGL.Enums.NvRegisterCombiners variable, OpenTK.OpenGL.Enums.NvRegisterCombiners pname, [Out] out Single @params) + void GetFinalCombinerInputParameter(OpenTK.OpenGL.Enums.All variable, OpenTK.OpenGL.Enums.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetFinalCombinerInputParameterfvNV((OpenTK.OpenGL.Enums.NvRegisterCombiners)variable, (OpenTK.OpenGL.Enums.NvRegisterCombiners)pname, (Single*)@params_ptr); + Delegates.glGetFinalCombinerInputParameterfvNV((OpenTK.OpenGL.Enums.All)variable, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -29479,31 +13144,31 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetFinalCombinerInputParameter(OpenTK.OpenGL.Enums.NvRegisterCombiners variable, OpenTK.OpenGL.Enums.NvRegisterCombiners pname, [Out] Single* @params) + unsafe void GetFinalCombinerInputParameter(OpenTK.OpenGL.Enums.All variable, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params) { - Delegates.glGetFinalCombinerInputParameterfvNV((OpenTK.OpenGL.Enums.NvRegisterCombiners)variable, (OpenTK.OpenGL.Enums.NvRegisterCombiners)pname, (Single*)@params); + Delegates.glGetFinalCombinerInputParameterfvNV((OpenTK.OpenGL.Enums.All)variable, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); } public static - void GetFinalCombinerInputParameter(OpenTK.OpenGL.Enums.NvRegisterCombiners variable, OpenTK.OpenGL.Enums.NvRegisterCombiners pname, [Out] Int32[] @params) + void GetFinalCombinerInputParameter(OpenTK.OpenGL.Enums.All variable, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetFinalCombinerInputParameterivNV((OpenTK.OpenGL.Enums.NvRegisterCombiners)variable, (OpenTK.OpenGL.Enums.NvRegisterCombiners)pname, (Int32*)@params_ptr); + Delegates.glGetFinalCombinerInputParameterivNV((OpenTK.OpenGL.Enums.All)variable, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); } } } public static - void GetFinalCombinerInputParameter(OpenTK.OpenGL.Enums.NvRegisterCombiners variable, OpenTK.OpenGL.Enums.NvRegisterCombiners pname, [Out] out Int32 @params) + void GetFinalCombinerInputParameter(OpenTK.OpenGL.Enums.All variable, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetFinalCombinerInputParameterivNV((OpenTK.OpenGL.Enums.NvRegisterCombiners)variable, (OpenTK.OpenGL.Enums.NvRegisterCombiners)pname, (Int32*)@params_ptr); + Delegates.glGetFinalCombinerInputParameterivNV((OpenTK.OpenGL.Enums.All)variable, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -29511,9 +13176,9 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetFinalCombinerInputParameter(OpenTK.OpenGL.Enums.NvRegisterCombiners variable, OpenTK.OpenGL.Enums.NvRegisterCombiners pname, [Out] Int32* @params) + unsafe void GetFinalCombinerInputParameter(OpenTK.OpenGL.Enums.All variable, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) { - Delegates.glGetFinalCombinerInputParameterivNV((OpenTK.OpenGL.Enums.NvRegisterCombiners)variable, (OpenTK.OpenGL.Enums.NvRegisterCombiners)pname, (Int32*)@params); + Delegates.glGetFinalCombinerInputParameterivNV((OpenTK.OpenGL.Enums.All)variable, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] @@ -29674,51 +13339,51 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetFence(UInt32 fence, OpenTK.OpenGL.Enums.NvFence pname, [Out] Int32[] @params) + void GetFence(UInt32 fence, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.OpenGL.Enums.NvFence)pname, (Int32*)@params_ptr); + Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); } } } public static - void GetFence(Int32 fence, OpenTK.OpenGL.Enums.NvFence pname, [Out] Int32[] @params) + void GetFence(Int32 fence, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.OpenGL.Enums.NvFence)pname, (Int32*)@params_ptr); + Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetFence(UInt32 fence, OpenTK.OpenGL.Enums.NvFence pname, [Out] out Int32 @params) + void GetFence(UInt32 fence, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.OpenGL.Enums.NvFence)pname, (Int32*)@params_ptr); + Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } } public static - void GetFence(Int32 fence, OpenTK.OpenGL.Enums.NvFence pname, [Out] out Int32 @params) + void GetFence(Int32 fence, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.OpenGL.Enums.NvFence)pname, (Int32*)@params_ptr); + Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -29726,16 +13391,16 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetFence(UInt32 fence, OpenTK.OpenGL.Enums.NvFence pname, [Out] Int32* @params) + unsafe void GetFence(UInt32 fence, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) { - Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.OpenGL.Enums.NvFence)pname, (Int32*)@params); + Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetFence(Int32 fence, OpenTK.OpenGL.Enums.NvFence pname, [Out] Int32* @params) + unsafe void GetFence(Int32 fence, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) { - Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.OpenGL.Enums.NvFence)pname, (Int32*)@params); + Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] @@ -29753,46 +13418,46 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void SetFence(UInt32 fence, OpenTK.OpenGL.Enums.NvFence condition) + void SetFence(UInt32 fence, OpenTK.OpenGL.Enums.All condition) { - Delegates.glSetFenceNV((UInt32)fence, (OpenTK.OpenGL.Enums.NvFence)condition); + Delegates.glSetFenceNV((UInt32)fence, (OpenTK.OpenGL.Enums.All)condition); } public static - void SetFence(Int32 fence, OpenTK.OpenGL.Enums.NvFence condition) + void SetFence(Int32 fence, OpenTK.OpenGL.Enums.All condition) { - Delegates.glSetFenceNV((UInt32)fence, (OpenTK.OpenGL.Enums.NvFence)condition); + Delegates.glSetFenceNV((UInt32)fence, (OpenTK.OpenGL.Enums.All)condition); } [System.CLSCompliant(false)] public static - void MapControlPoints(OpenTK.OpenGL.Enums.NvEvaluators target, UInt32 index, OpenTK.OpenGL.Enums.NvEvaluators type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, IntPtr points) + void MapControlPoints(OpenTK.OpenGL.Enums.All target, UInt32 index, OpenTK.OpenGL.Enums.All type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, IntPtr points) { unsafe { - Delegates.glMapControlPointsNV((OpenTK.OpenGL.Enums.NvEvaluators)target, (UInt32)index, (OpenTK.OpenGL.Enums.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points); + Delegates.glMapControlPointsNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (OpenTK.OpenGL.Enums.All)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points); } } public static - void MapControlPoints(OpenTK.OpenGL.Enums.NvEvaluators target, Int32 index, OpenTK.OpenGL.Enums.NvEvaluators type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, IntPtr points) + void MapControlPoints(OpenTK.OpenGL.Enums.All target, Int32 index, OpenTK.OpenGL.Enums.All type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, IntPtr points) { unsafe { - Delegates.glMapControlPointsNV((OpenTK.OpenGL.Enums.NvEvaluators)target, (UInt32)index, (OpenTK.OpenGL.Enums.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points); + Delegates.glMapControlPointsNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (OpenTK.OpenGL.Enums.All)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points); } } [System.CLSCompliant(false)] public static - void MapControlPoints(OpenTK.OpenGL.Enums.NvEvaluators target, UInt32 index, OpenTK.OpenGL.Enums.NvEvaluators type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, [In, Out] object points) + void MapControlPoints(OpenTK.OpenGL.Enums.All target, UInt32 index, OpenTK.OpenGL.Enums.All type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, [In, Out] object points) { unsafe { System.Runtime.InteropServices.GCHandle points_ptr = System.Runtime.InteropServices.GCHandle.Alloc(points, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glMapControlPointsNV((OpenTK.OpenGL.Enums.NvEvaluators)target, (UInt32)index, (OpenTK.OpenGL.Enums.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); + Delegates.glMapControlPointsNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (OpenTK.OpenGL.Enums.All)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); } finally { @@ -29802,14 +13467,14 @@ namespace OpenTK.OpenGL } public static - void MapControlPoints(OpenTK.OpenGL.Enums.NvEvaluators target, Int32 index, OpenTK.OpenGL.Enums.NvEvaluators type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, [In, Out] object points) + void MapControlPoints(OpenTK.OpenGL.Enums.All target, Int32 index, OpenTK.OpenGL.Enums.All type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, [In, Out] object points) { unsafe { System.Runtime.InteropServices.GCHandle points_ptr = System.Runtime.InteropServices.GCHandle.Alloc(points, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glMapControlPointsNV((OpenTK.OpenGL.Enums.NvEvaluators)target, (UInt32)index, (OpenTK.OpenGL.Enums.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); + Delegates.glMapControlPointsNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (OpenTK.OpenGL.Enums.All)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); } finally { @@ -29819,96 +13484,96 @@ namespace OpenTK.OpenGL } public static - void MapParameter(OpenTK.OpenGL.Enums.NvEvaluators target, OpenTK.OpenGL.Enums.NvEvaluators pname, Int32[] @params) + void MapParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glMapParameterivNV((OpenTK.OpenGL.Enums.NvEvaluators)target, (OpenTK.OpenGL.Enums.NvEvaluators)pname, (Int32*)@params_ptr); + Delegates.glMapParameterivNV((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); } } } public static - void MapParameter(OpenTK.OpenGL.Enums.NvEvaluators target, OpenTK.OpenGL.Enums.NvEvaluators pname, ref Int32 @params) + void MapParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glMapParameterivNV((OpenTK.OpenGL.Enums.NvEvaluators)target, (OpenTK.OpenGL.Enums.NvEvaluators)pname, (Int32*)@params_ptr); + Delegates.glMapParameterivNV((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MapParameter(OpenTK.OpenGL.Enums.NvEvaluators target, OpenTK.OpenGL.Enums.NvEvaluators pname, Int32* @params) + unsafe void MapParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Int32* @params) { - Delegates.glMapParameterivNV((OpenTK.OpenGL.Enums.NvEvaluators)target, (OpenTK.OpenGL.Enums.NvEvaluators)pname, (Int32*)@params); + Delegates.glMapParameterivNV((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); } public static - void MapParameter(OpenTK.OpenGL.Enums.NvEvaluators target, OpenTK.OpenGL.Enums.NvEvaluators pname, Single[] @params) + void MapParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glMapParameterfvNV((OpenTK.OpenGL.Enums.NvEvaluators)target, (OpenTK.OpenGL.Enums.NvEvaluators)pname, (Single*)@params_ptr); + Delegates.glMapParameterfvNV((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); } } } public static - void MapParameter(OpenTK.OpenGL.Enums.NvEvaluators target, OpenTK.OpenGL.Enums.NvEvaluators pname, ref Single @params) + void MapParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glMapParameterfvNV((OpenTK.OpenGL.Enums.NvEvaluators)target, (OpenTK.OpenGL.Enums.NvEvaluators)pname, (Single*)@params_ptr); + Delegates.glMapParameterfvNV((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MapParameter(OpenTK.OpenGL.Enums.NvEvaluators target, OpenTK.OpenGL.Enums.NvEvaluators pname, Single* @params) + unsafe void MapParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Single* @params) { - Delegates.glMapParameterfvNV((OpenTK.OpenGL.Enums.NvEvaluators)target, (OpenTK.OpenGL.Enums.NvEvaluators)pname, (Single*)@params); + Delegates.glMapParameterfvNV((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); } [System.CLSCompliant(false)] public static - void GetMapControlPoints(OpenTK.OpenGL.Enums.NvEvaluators target, UInt32 index, OpenTK.OpenGL.Enums.NvEvaluators type, Int32 ustride, Int32 vstride, bool packed, [Out] IntPtr points) + void GetMapControlPoints(OpenTK.OpenGL.Enums.All target, UInt32 index, OpenTK.OpenGL.Enums.All type, Int32 ustride, Int32 vstride, bool packed, [Out] IntPtr points) { unsafe { - Delegates.glGetMapControlPointsNV((OpenTK.OpenGL.Enums.NvEvaluators)target, (UInt32)index, (OpenTK.OpenGL.Enums.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points); + Delegates.glGetMapControlPointsNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (OpenTK.OpenGL.Enums.All)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points); } } public static - void GetMapControlPoints(OpenTK.OpenGL.Enums.NvEvaluators target, Int32 index, OpenTK.OpenGL.Enums.NvEvaluators type, Int32 ustride, Int32 vstride, bool packed, [Out] IntPtr points) + void GetMapControlPoints(OpenTK.OpenGL.Enums.All target, Int32 index, OpenTK.OpenGL.Enums.All type, Int32 ustride, Int32 vstride, bool packed, [Out] IntPtr points) { unsafe { - Delegates.glGetMapControlPointsNV((OpenTK.OpenGL.Enums.NvEvaluators)target, (UInt32)index, (OpenTK.OpenGL.Enums.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points); + Delegates.glGetMapControlPointsNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (OpenTK.OpenGL.Enums.All)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points); } } [System.CLSCompliant(false)] public static - void GetMapControlPoints(OpenTK.OpenGL.Enums.NvEvaluators target, UInt32 index, OpenTK.OpenGL.Enums.NvEvaluators type, Int32 ustride, Int32 vstride, bool packed, [In, Out] object points) + void GetMapControlPoints(OpenTK.OpenGL.Enums.All target, UInt32 index, OpenTK.OpenGL.Enums.All type, Int32 ustride, Int32 vstride, bool packed, [In, Out] object points) { unsafe { System.Runtime.InteropServices.GCHandle points_ptr = System.Runtime.InteropServices.GCHandle.Alloc(points, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glGetMapControlPointsNV((OpenTK.OpenGL.Enums.NvEvaluators)target, (UInt32)index, (OpenTK.OpenGL.Enums.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); + Delegates.glGetMapControlPointsNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (OpenTK.OpenGL.Enums.All)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); } finally { @@ -29918,14 +13583,14 @@ namespace OpenTK.OpenGL } public static - void GetMapControlPoints(OpenTK.OpenGL.Enums.NvEvaluators target, Int32 index, OpenTK.OpenGL.Enums.NvEvaluators type, Int32 ustride, Int32 vstride, bool packed, [In, Out] object points) + void GetMapControlPoints(OpenTK.OpenGL.Enums.All target, Int32 index, OpenTK.OpenGL.Enums.All type, Int32 ustride, Int32 vstride, bool packed, [In, Out] object points) { unsafe { System.Runtime.InteropServices.GCHandle points_ptr = System.Runtime.InteropServices.GCHandle.Alloc(points, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glGetMapControlPointsNV((OpenTK.OpenGL.Enums.NvEvaluators)target, (UInt32)index, (OpenTK.OpenGL.Enums.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); + Delegates.glGetMapControlPointsNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (OpenTK.OpenGL.Enums.All)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); } finally { @@ -29935,25 +13600,25 @@ namespace OpenTK.OpenGL } public static - void GetMapParameter(OpenTK.OpenGL.Enums.NvEvaluators target, OpenTK.OpenGL.Enums.NvEvaluators pname, [Out] Int32[] @params) + void GetMapParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetMapParameterivNV((OpenTK.OpenGL.Enums.NvEvaluators)target, (OpenTK.OpenGL.Enums.NvEvaluators)pname, (Int32*)@params_ptr); + Delegates.glGetMapParameterivNV((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); } } } public static - void GetMapParameter(OpenTK.OpenGL.Enums.NvEvaluators target, OpenTK.OpenGL.Enums.NvEvaluators pname, [Out] out Int32 @params) + void GetMapParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetMapParameterivNV((OpenTK.OpenGL.Enums.NvEvaluators)target, (OpenTK.OpenGL.Enums.NvEvaluators)pname, (Int32*)@params_ptr); + Delegates.glGetMapParameterivNV((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -29961,31 +13626,31 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetMapParameter(OpenTK.OpenGL.Enums.NvEvaluators target, OpenTK.OpenGL.Enums.NvEvaluators pname, [Out] Int32* @params) + unsafe void GetMapParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) { - Delegates.glGetMapParameterivNV((OpenTK.OpenGL.Enums.NvEvaluators)target, (OpenTK.OpenGL.Enums.NvEvaluators)pname, (Int32*)@params); + Delegates.glGetMapParameterivNV((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); } public static - void GetMapParameter(OpenTK.OpenGL.Enums.NvEvaluators target, OpenTK.OpenGL.Enums.NvEvaluators pname, [Out] Single[] @params) + void GetMapParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetMapParameterfvNV((OpenTK.OpenGL.Enums.NvEvaluators)target, (OpenTK.OpenGL.Enums.NvEvaluators)pname, (Single*)@params_ptr); + Delegates.glGetMapParameterfvNV((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); } } } public static - void GetMapParameter(OpenTK.OpenGL.Enums.NvEvaluators target, OpenTK.OpenGL.Enums.NvEvaluators pname, [Out] out Single @params) + void GetMapParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetMapParameterfvNV((OpenTK.OpenGL.Enums.NvEvaluators)target, (OpenTK.OpenGL.Enums.NvEvaluators)pname, (Single*)@params_ptr); + Delegates.glGetMapParameterfvNV((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -29993,58 +13658,58 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetMapParameter(OpenTK.OpenGL.Enums.NvEvaluators target, OpenTK.OpenGL.Enums.NvEvaluators pname, [Out] Single* @params) + unsafe void GetMapParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params) { - Delegates.glGetMapParameterfvNV((OpenTK.OpenGL.Enums.NvEvaluators)target, (OpenTK.OpenGL.Enums.NvEvaluators)pname, (Single*)@params); + Delegates.glGetMapParameterfvNV((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); } [System.CLSCompliant(false)] public static - void GetMapAttribParameter(OpenTK.OpenGL.Enums.NvEvaluators target, UInt32 index, OpenTK.OpenGL.Enums.NvEvaluators pname, [Out] Int32[] @params) + void GetMapAttribParameter(OpenTK.OpenGL.Enums.All target, UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetMapAttribParameterivNV((OpenTK.OpenGL.Enums.NvEvaluators)target, (UInt32)index, (OpenTK.OpenGL.Enums.NvEvaluators)pname, (Int32*)@params_ptr); + Delegates.glGetMapAttribParameterivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); } } } public static - void GetMapAttribParameter(OpenTK.OpenGL.Enums.NvEvaluators target, Int32 index, OpenTK.OpenGL.Enums.NvEvaluators pname, [Out] Int32[] @params) + void GetMapAttribParameter(OpenTK.OpenGL.Enums.All target, Int32 index, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetMapAttribParameterivNV((OpenTK.OpenGL.Enums.NvEvaluators)target, (UInt32)index, (OpenTK.OpenGL.Enums.NvEvaluators)pname, (Int32*)@params_ptr); + Delegates.glGetMapAttribParameterivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetMapAttribParameter(OpenTK.OpenGL.Enums.NvEvaluators target, UInt32 index, OpenTK.OpenGL.Enums.NvEvaluators pname, [Out] out Int32 @params) + void GetMapAttribParameter(OpenTK.OpenGL.Enums.All target, UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetMapAttribParameterivNV((OpenTK.OpenGL.Enums.NvEvaluators)target, (UInt32)index, (OpenTK.OpenGL.Enums.NvEvaluators)pname, (Int32*)@params_ptr); + Delegates.glGetMapAttribParameterivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } } public static - void GetMapAttribParameter(OpenTK.OpenGL.Enums.NvEvaluators target, Int32 index, OpenTK.OpenGL.Enums.NvEvaluators pname, [Out] out Int32 @params) + void GetMapAttribParameter(OpenTK.OpenGL.Enums.All target, Int32 index, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetMapAttribParameterivNV((OpenTK.OpenGL.Enums.NvEvaluators)target, (UInt32)index, (OpenTK.OpenGL.Enums.NvEvaluators)pname, (Int32*)@params_ptr); + Delegates.glGetMapAttribParameterivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -30052,65 +13717,65 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetMapAttribParameter(OpenTK.OpenGL.Enums.NvEvaluators target, UInt32 index, OpenTK.OpenGL.Enums.NvEvaluators pname, [Out] Int32* @params) + unsafe void GetMapAttribParameter(OpenTK.OpenGL.Enums.All target, UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) { - Delegates.glGetMapAttribParameterivNV((OpenTK.OpenGL.Enums.NvEvaluators)target, (UInt32)index, (OpenTK.OpenGL.Enums.NvEvaluators)pname, (Int32*)@params); + Delegates.glGetMapAttribParameterivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetMapAttribParameter(OpenTK.OpenGL.Enums.NvEvaluators target, Int32 index, OpenTK.OpenGL.Enums.NvEvaluators pname, [Out] Int32* @params) + unsafe void GetMapAttribParameter(OpenTK.OpenGL.Enums.All target, Int32 index, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) { - Delegates.glGetMapAttribParameterivNV((OpenTK.OpenGL.Enums.NvEvaluators)target, (UInt32)index, (OpenTK.OpenGL.Enums.NvEvaluators)pname, (Int32*)@params); + Delegates.glGetMapAttribParameterivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - void GetMapAttribParameter(OpenTK.OpenGL.Enums.NvEvaluators target, UInt32 index, OpenTK.OpenGL.Enums.NvEvaluators pname, [Out] Single[] @params) + void GetMapAttribParameter(OpenTK.OpenGL.Enums.All target, UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetMapAttribParameterfvNV((OpenTK.OpenGL.Enums.NvEvaluators)target, (UInt32)index, (OpenTK.OpenGL.Enums.NvEvaluators)pname, (Single*)@params_ptr); + Delegates.glGetMapAttribParameterfvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); } } } public static - void GetMapAttribParameter(OpenTK.OpenGL.Enums.NvEvaluators target, Int32 index, OpenTK.OpenGL.Enums.NvEvaluators pname, [Out] Single[] @params) + void GetMapAttribParameter(OpenTK.OpenGL.Enums.All target, Int32 index, OpenTK.OpenGL.Enums.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetMapAttribParameterfvNV((OpenTK.OpenGL.Enums.NvEvaluators)target, (UInt32)index, (OpenTK.OpenGL.Enums.NvEvaluators)pname, (Single*)@params_ptr); + Delegates.glGetMapAttribParameterfvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetMapAttribParameter(OpenTK.OpenGL.Enums.NvEvaluators target, UInt32 index, OpenTK.OpenGL.Enums.NvEvaluators pname, [Out] out Single @params) + void GetMapAttribParameter(OpenTK.OpenGL.Enums.All target, UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetMapAttribParameterfvNV((OpenTK.OpenGL.Enums.NvEvaluators)target, (UInt32)index, (OpenTK.OpenGL.Enums.NvEvaluators)pname, (Single*)@params_ptr); + Delegates.glGetMapAttribParameterfvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } } public static - void GetMapAttribParameter(OpenTK.OpenGL.Enums.NvEvaluators target, Int32 index, OpenTK.OpenGL.Enums.NvEvaluators pname, [Out] out Single @params) + void GetMapAttribParameter(OpenTK.OpenGL.Enums.All target, Int32 index, OpenTK.OpenGL.Enums.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetMapAttribParameterfvNV((OpenTK.OpenGL.Enums.NvEvaluators)target, (UInt32)index, (OpenTK.OpenGL.Enums.NvEvaluators)pname, (Single*)@params_ptr); + Delegates.glGetMapAttribParameterfvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -30118,75 +13783,75 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetMapAttribParameter(OpenTK.OpenGL.Enums.NvEvaluators target, UInt32 index, OpenTK.OpenGL.Enums.NvEvaluators pname, [Out] Single* @params) + unsafe void GetMapAttribParameter(OpenTK.OpenGL.Enums.All target, UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params) { - Delegates.glGetMapAttribParameterfvNV((OpenTK.OpenGL.Enums.NvEvaluators)target, (UInt32)index, (OpenTK.OpenGL.Enums.NvEvaluators)pname, (Single*)@params); + Delegates.glGetMapAttribParameterfvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetMapAttribParameter(OpenTK.OpenGL.Enums.NvEvaluators target, Int32 index, OpenTK.OpenGL.Enums.NvEvaluators pname, [Out] Single* @params) + unsafe void GetMapAttribParameter(OpenTK.OpenGL.Enums.All target, Int32 index, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params) { - Delegates.glGetMapAttribParameterfvNV((OpenTK.OpenGL.Enums.NvEvaluators)target, (UInt32)index, (OpenTK.OpenGL.Enums.NvEvaluators)pname, (Single*)@params); + Delegates.glGetMapAttribParameterfvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); } public static - void EvalMap(OpenTK.OpenGL.Enums.NvEvaluators target, OpenTK.OpenGL.Enums.NvEvaluators mode) + void EvalMap(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All mode) { - Delegates.glEvalMapsNV((OpenTK.OpenGL.Enums.NvEvaluators)target, (OpenTK.OpenGL.Enums.NvEvaluators)mode); + Delegates.glEvalMapsNV((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)mode); } public static - void CombinerStageParameter(OpenTK.OpenGL.Enums.NvRegisterCombiners2 stage, OpenTK.OpenGL.Enums.NvRegisterCombiners2 pname, Single[] @params) + void CombinerStageParameter(OpenTK.OpenGL.Enums.All stage, OpenTK.OpenGL.Enums.All pname, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glCombinerStageParameterfvNV((OpenTK.OpenGL.Enums.NvRegisterCombiners2)stage, (OpenTK.OpenGL.Enums.NvRegisterCombiners2)pname, (Single*)@params_ptr); + Delegates.glCombinerStageParameterfvNV((OpenTK.OpenGL.Enums.All)stage, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); } } } public static - void CombinerStageParameter(OpenTK.OpenGL.Enums.NvRegisterCombiners2 stage, OpenTK.OpenGL.Enums.NvRegisterCombiners2 pname, ref Single @params) + void CombinerStageParameter(OpenTK.OpenGL.Enums.All stage, OpenTK.OpenGL.Enums.All pname, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glCombinerStageParameterfvNV((OpenTK.OpenGL.Enums.NvRegisterCombiners2)stage, (OpenTK.OpenGL.Enums.NvRegisterCombiners2)pname, (Single*)@params_ptr); + Delegates.glCombinerStageParameterfvNV((OpenTK.OpenGL.Enums.All)stage, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void CombinerStageParameter(OpenTK.OpenGL.Enums.NvRegisterCombiners2 stage, OpenTK.OpenGL.Enums.NvRegisterCombiners2 pname, Single* @params) + unsafe void CombinerStageParameter(OpenTK.OpenGL.Enums.All stage, OpenTK.OpenGL.Enums.All pname, Single* @params) { - Delegates.glCombinerStageParameterfvNV((OpenTK.OpenGL.Enums.NvRegisterCombiners2)stage, (OpenTK.OpenGL.Enums.NvRegisterCombiners2)pname, (Single*)@params); + Delegates.glCombinerStageParameterfvNV((OpenTK.OpenGL.Enums.All)stage, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); } public static - void GetCombinerStageParameter(OpenTK.OpenGL.Enums.NvRegisterCombiners2 stage, OpenTK.OpenGL.Enums.NvRegisterCombiners2 pname, [Out] Single[] @params) + void GetCombinerStageParameter(OpenTK.OpenGL.Enums.All stage, OpenTK.OpenGL.Enums.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetCombinerStageParameterfvNV((OpenTK.OpenGL.Enums.NvRegisterCombiners2)stage, (OpenTK.OpenGL.Enums.NvRegisterCombiners2)pname, (Single*)@params_ptr); + Delegates.glGetCombinerStageParameterfvNV((OpenTK.OpenGL.Enums.All)stage, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); } } } public static - void GetCombinerStageParameter(OpenTK.OpenGL.Enums.NvRegisterCombiners2 stage, OpenTK.OpenGL.Enums.NvRegisterCombiners2 pname, [Out] out Single @params) + void GetCombinerStageParameter(OpenTK.OpenGL.Enums.All stage, OpenTK.OpenGL.Enums.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetCombinerStageParameterfvNV((OpenTK.OpenGL.Enums.NvRegisterCombiners2)stage, (OpenTK.OpenGL.Enums.NvRegisterCombiners2)pname, (Single*)@params_ptr); + Delegates.glGetCombinerStageParameterfvNV((OpenTK.OpenGL.Enums.All)stage, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -30194,9 +13859,9 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetCombinerStageParameter(OpenTK.OpenGL.Enums.NvRegisterCombiners2 stage, OpenTK.OpenGL.Enums.NvRegisterCombiners2 pname, [Out] Single* @params) + unsafe void GetCombinerStageParameter(OpenTK.OpenGL.Enums.All stage, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params) { - Delegates.glGetCombinerStageParameterfvNV((OpenTK.OpenGL.Enums.NvRegisterCombiners2)stage, (OpenTK.OpenGL.Enums.NvRegisterCombiners2)pname, (Single*)@params); + Delegates.glGetCombinerStageParameterfvNV((OpenTK.OpenGL.Enums.All)stage, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); } [System.CLSCompliant(false)] @@ -30273,15 +13938,15 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void BindProgram(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 id) + void BindProgram(OpenTK.OpenGL.Enums.All target, UInt32 id) { - Delegates.glBindProgramNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)id); + Delegates.glBindProgramNV((OpenTK.OpenGL.Enums.All)target, (UInt32)id); } public static - void BindProgram(OpenTK.OpenGL.Enums.NvVertexProgram target, Int32 id) + void BindProgram(OpenTK.OpenGL.Enums.All target, Int32 id) { - Delegates.glBindProgramNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)id); + Delegates.glBindProgramNV((OpenTK.OpenGL.Enums.All)target, (UInt32)id); } [System.CLSCompliant(false)] @@ -30350,66 +14015,66 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ExecuteProgram(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 id, Single[] @params) + void ExecuteProgram(OpenTK.OpenGL.Enums.All target, UInt32 id, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glExecuteProgramNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)id, (Single*)@params_ptr); + Delegates.glExecuteProgramNV((OpenTK.OpenGL.Enums.All)target, (UInt32)id, (Single*)@params_ptr); } } } public static - void ExecuteProgram(OpenTK.OpenGL.Enums.NvVertexProgram target, Int32 id, Single[] @params) + void ExecuteProgram(OpenTK.OpenGL.Enums.All target, Int32 id, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glExecuteProgramNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)id, (Single*)@params_ptr); + Delegates.glExecuteProgramNV((OpenTK.OpenGL.Enums.All)target, (UInt32)id, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void ExecuteProgram(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 id, ref Single @params) + void ExecuteProgram(OpenTK.OpenGL.Enums.All target, UInt32 id, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glExecuteProgramNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)id, (Single*)@params_ptr); + Delegates.glExecuteProgramNV((OpenTK.OpenGL.Enums.All)target, (UInt32)id, (Single*)@params_ptr); } } } public static - void ExecuteProgram(OpenTK.OpenGL.Enums.NvVertexProgram target, Int32 id, ref Single @params) + void ExecuteProgram(OpenTK.OpenGL.Enums.All target, Int32 id, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glExecuteProgramNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)id, (Single*)@params_ptr); + Delegates.glExecuteProgramNV((OpenTK.OpenGL.Enums.All)target, (UInt32)id, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ExecuteProgram(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 id, Single* @params) + unsafe void ExecuteProgram(OpenTK.OpenGL.Enums.All target, UInt32 id, Single* @params) { - Delegates.glExecuteProgramNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)id, (Single*)@params); + Delegates.glExecuteProgramNV((OpenTK.OpenGL.Enums.All)target, (UInt32)id, (Single*)@params); } [System.CLSCompliant(false)] public static - unsafe void ExecuteProgram(OpenTK.OpenGL.Enums.NvVertexProgram target, Int32 id, Single* @params) + unsafe void ExecuteProgram(OpenTK.OpenGL.Enums.All target, Int32 id, Single* @params) { - Delegates.glExecuteProgramNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)id, (Single*)@params); + Delegates.glExecuteProgramNV((OpenTK.OpenGL.Enums.All)target, (UInt32)id, (Single*)@params); } [System.CLSCompliant(false)] @@ -30480,51 +14145,51 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetProgramParameter(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Double[] @params) + void GetProgramParameter(OpenTK.OpenGL.Enums.All target, UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] Double[] @params) { unsafe { fixed (Double* @params_ptr = @params) { - Delegates.glGetProgramParameterdvNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Double*)@params_ptr); + Delegates.glGetProgramParameterdvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Double*)@params_ptr); } } } public static - void GetProgramParameter(OpenTK.OpenGL.Enums.NvVertexProgram target, Int32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Double[] @params) + void GetProgramParameter(OpenTK.OpenGL.Enums.All target, Int32 index, OpenTK.OpenGL.Enums.All pname, [Out] Double[] @params) { unsafe { fixed (Double* @params_ptr = @params) { - Delegates.glGetProgramParameterdvNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Double*)@params_ptr); + Delegates.glGetProgramParameterdvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Double*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetProgramParameter(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] out Double @params) + void GetProgramParameter(OpenTK.OpenGL.Enums.All target, UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] out Double @params) { unsafe { fixed (Double* @params_ptr = &@params) { - Delegates.glGetProgramParameterdvNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Double*)@params_ptr); + Delegates.glGetProgramParameterdvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Double*)@params_ptr); @params = *@params_ptr; } } } public static - void GetProgramParameter(OpenTK.OpenGL.Enums.NvVertexProgram target, Int32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] out Double @params) + void GetProgramParameter(OpenTK.OpenGL.Enums.All target, Int32 index, OpenTK.OpenGL.Enums.All pname, [Out] out Double @params) { unsafe { fixed (Double* @params_ptr = &@params) { - Delegates.glGetProgramParameterdvNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Double*)@params_ptr); + Delegates.glGetProgramParameterdvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Double*)@params_ptr); @params = *@params_ptr; } } @@ -30532,65 +14197,65 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetProgramParameter(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Double* @params) + unsafe void GetProgramParameter(OpenTK.OpenGL.Enums.All target, UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] Double* @params) { - Delegates.glGetProgramParameterdvNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Double*)@params); + Delegates.glGetProgramParameterdvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Double*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetProgramParameter(OpenTK.OpenGL.Enums.NvVertexProgram target, Int32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Double* @params) + unsafe void GetProgramParameter(OpenTK.OpenGL.Enums.All target, Int32 index, OpenTK.OpenGL.Enums.All pname, [Out] Double* @params) { - Delegates.glGetProgramParameterdvNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Double*)@params); + Delegates.glGetProgramParameterdvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Double*)@params); } [System.CLSCompliant(false)] public static - void GetProgramParameter(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Single[] @params) + void GetProgramParameter(OpenTK.OpenGL.Enums.All target, UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetProgramParameterfvNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Single*)@params_ptr); + Delegates.glGetProgramParameterfvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); } } } public static - void GetProgramParameter(OpenTK.OpenGL.Enums.NvVertexProgram target, Int32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Single[] @params) + void GetProgramParameter(OpenTK.OpenGL.Enums.All target, Int32 index, OpenTK.OpenGL.Enums.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetProgramParameterfvNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Single*)@params_ptr); + Delegates.glGetProgramParameterfvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetProgramParameter(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] out Single @params) + void GetProgramParameter(OpenTK.OpenGL.Enums.All target, UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetProgramParameterfvNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Single*)@params_ptr); + Delegates.glGetProgramParameterfvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } } public static - void GetProgramParameter(OpenTK.OpenGL.Enums.NvVertexProgram target, Int32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] out Single @params) + void GetProgramParameter(OpenTK.OpenGL.Enums.All target, Int32 index, OpenTK.OpenGL.Enums.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetProgramParameterfvNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Single*)@params_ptr); + Delegates.glGetProgramParameterfvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -30598,65 +14263,65 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetProgramParameter(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Single* @params) + unsafe void GetProgramParameter(OpenTK.OpenGL.Enums.All target, UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params) { - Delegates.glGetProgramParameterfvNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Single*)@params); + Delegates.glGetProgramParameterfvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetProgramParameter(OpenTK.OpenGL.Enums.NvVertexProgram target, Int32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Single* @params) + unsafe void GetProgramParameter(OpenTK.OpenGL.Enums.All target, Int32 index, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params) { - Delegates.glGetProgramParameterfvNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Single*)@params); + Delegates.glGetProgramParameterfvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); } [System.CLSCompliant(false)] public static - void GetProgram(UInt32 id, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Int32[] @params) + void GetProgram(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramivNV((UInt32)id, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Int32*)@params_ptr); + Delegates.glGetProgramivNV((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); } } } public static - void GetProgram(Int32 id, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Int32[] @params) + void GetProgram(Int32 id, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramivNV((UInt32)id, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Int32*)@params_ptr); + Delegates.glGetProgramivNV((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetProgram(UInt32 id, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] out Int32 @params) + void GetProgram(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramivNV((UInt32)id, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Int32*)@params_ptr); + Delegates.glGetProgramivNV((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } } public static - void GetProgram(Int32 id, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] out Int32 @params) + void GetProgram(Int32 id, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramivNV((UInt32)id, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Int32*)@params_ptr); + Delegates.glGetProgramivNV((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -30664,65 +14329,65 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetProgram(UInt32 id, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Int32* @params) + unsafe void GetProgram(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) { - Delegates.glGetProgramivNV((UInt32)id, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Int32*)@params); + Delegates.glGetProgramivNV((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetProgram(Int32 id, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Int32* @params) + unsafe void GetProgram(Int32 id, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) { - Delegates.glGetProgramivNV((UInt32)id, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Int32*)@params); + Delegates.glGetProgramivNV((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - void GetProgramString(UInt32 id, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Byte[] program) + void GetProgramString(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] Byte[] program) { unsafe { fixed (Byte* program_ptr = program) { - Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Byte*)program_ptr); + Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (Byte*)program_ptr); } } } public static - void GetProgramString(Int32 id, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Byte[] program) + void GetProgramString(Int32 id, OpenTK.OpenGL.Enums.All pname, [Out] Byte[] program) { unsafe { fixed (Byte* program_ptr = program) { - Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Byte*)program_ptr); + Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (Byte*)program_ptr); } } } [System.CLSCompliant(false)] public static - void GetProgramString(UInt32 id, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] out Byte program) + void GetProgramString(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] out Byte program) { unsafe { fixed (Byte* program_ptr = &program) { - Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Byte*)program_ptr); + Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (Byte*)program_ptr); program = *program_ptr; } } } public static - void GetProgramString(Int32 id, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] out Byte program) + void GetProgramString(Int32 id, OpenTK.OpenGL.Enums.All pname, [Out] out Byte program) { unsafe { fixed (Byte* program_ptr = &program) { - Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Byte*)program_ptr); + Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (Byte*)program_ptr); program = *program_ptr; } } @@ -30730,65 +14395,65 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetProgramString(UInt32 id, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Byte* program) + unsafe void GetProgramString(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] Byte* program) { - Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Byte*)program); + Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (Byte*)program); } [System.CLSCompliant(false)] public static - unsafe void GetProgramString(Int32 id, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Byte* program) + unsafe void GetProgramString(Int32 id, OpenTK.OpenGL.Enums.All pname, [Out] Byte* program) { - Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Byte*)program); + Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (Byte*)program); } [System.CLSCompliant(false)] public static - void GetTrackMatrix(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 address, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Int32[] @params) + void GetTrackMatrix(OpenTK.OpenGL.Enums.All target, UInt32 address, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetTrackMatrixivNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)address, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Int32*)@params_ptr); + Delegates.glGetTrackMatrixivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)address, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); } } } public static - void GetTrackMatrix(OpenTK.OpenGL.Enums.NvVertexProgram target, Int32 address, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Int32[] @params) + void GetTrackMatrix(OpenTK.OpenGL.Enums.All target, Int32 address, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetTrackMatrixivNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)address, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Int32*)@params_ptr); + Delegates.glGetTrackMatrixivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)address, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetTrackMatrix(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 address, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] out Int32 @params) + void GetTrackMatrix(OpenTK.OpenGL.Enums.All target, UInt32 address, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetTrackMatrixivNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)address, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Int32*)@params_ptr); + Delegates.glGetTrackMatrixivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)address, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } } public static - void GetTrackMatrix(OpenTK.OpenGL.Enums.NvVertexProgram target, Int32 address, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] out Int32 @params) + void GetTrackMatrix(OpenTK.OpenGL.Enums.All target, Int32 address, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetTrackMatrixivNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)address, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Int32*)@params_ptr); + Delegates.glGetTrackMatrixivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)address, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -30796,65 +14461,65 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetTrackMatrix(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 address, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Int32* @params) + unsafe void GetTrackMatrix(OpenTK.OpenGL.Enums.All target, UInt32 address, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) { - Delegates.glGetTrackMatrixivNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)address, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Int32*)@params); + Delegates.glGetTrackMatrixivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)address, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetTrackMatrix(OpenTK.OpenGL.Enums.NvVertexProgram target, Int32 address, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Int32* @params) + unsafe void GetTrackMatrix(OpenTK.OpenGL.Enums.All target, Int32 address, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) { - Delegates.glGetTrackMatrixivNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)address, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Int32*)@params); + Delegates.glGetTrackMatrixivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)address, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Double[] @params) + void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] Double[] @params) { unsafe { fixed (Double* @params_ptr = @params) { - Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Double*)@params_ptr); + Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Double*)@params_ptr); } } } public static - void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Double[] @params) + void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.All pname, [Out] Double[] @params) { unsafe { fixed (Double* @params_ptr = @params) { - Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Double*)@params_ptr); + Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Double*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] out Double @params) + void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] out Double @params) { unsafe { fixed (Double* @params_ptr = &@params) { - Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Double*)@params_ptr); + Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Double*)@params_ptr); @params = *@params_ptr; } } } public static - void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] out Double @params) + void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.All pname, [Out] out Double @params) { unsafe { fixed (Double* @params_ptr = &@params) { - Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Double*)@params_ptr); + Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Double*)@params_ptr); @params = *@params_ptr; } } @@ -30862,65 +14527,65 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Double* @params) + unsafe void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] Double* @params) { - Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Double*)@params); + Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Double*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Double* @params) + unsafe void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.All pname, [Out] Double* @params) { - Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Double*)@params); + Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Double*)@params); } [System.CLSCompliant(false)] public static - void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Single[] @params) + void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Single*)@params_ptr); + Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); } } } public static - void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Single[] @params) + void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Single*)@params_ptr); + Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] out Single @params) + void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Single*)@params_ptr); + Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } } public static - void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] out Single @params) + void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Single*)@params_ptr); + Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -30928,65 +14593,65 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Single* @params) + unsafe void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params) { - Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Single*)@params); + Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Single* @params) + unsafe void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params) { - Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Single*)@params); + Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); } [System.CLSCompliant(false)] public static - void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Int32[] @params) + void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Int32*)@params_ptr); + Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); } } } public static - void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Int32[] @params) + void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Int32*)@params_ptr); + Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] out Int32 @params) + void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Int32*)@params_ptr); + Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } } public static - void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] out Int32 @params) + void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Int32*)@params_ptr); + Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -30994,47 +14659,47 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Int32* @params) + unsafe void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) { - Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Int32*)@params); + Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Int32* @params) + unsafe void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) { - Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (Int32*)@params); + Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - void GetVertexAttribPointer(UInt32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] IntPtr pointer) + void GetVertexAttribPointer(UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] IntPtr pointer) { unsafe { - Delegates.glGetVertexAttribPointervNV((UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (IntPtr)pointer); + Delegates.glGetVertexAttribPointervNV((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (IntPtr)pointer); } } public static - void GetVertexAttribPointer(Int32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] IntPtr pointer) + void GetVertexAttribPointer(Int32 index, OpenTK.OpenGL.Enums.All pname, [Out] IntPtr pointer) { unsafe { - Delegates.glGetVertexAttribPointervNV((UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (IntPtr)pointer); + Delegates.glGetVertexAttribPointervNV((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (IntPtr)pointer); } } [System.CLSCompliant(false)] public static - void GetVertexAttribPointer(UInt32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [In, Out] object pointer) + void GetVertexAttribPointer(UInt32 index, OpenTK.OpenGL.Enums.All pname, [In, Out] object pointer) { unsafe { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointervNV((UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glGetVertexAttribPointervNV((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -31044,14 +14709,14 @@ namespace OpenTK.OpenGL } public static - void GetVertexAttribPointer(Int32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [In, Out] object pointer) + void GetVertexAttribPointer(Int32 index, OpenTK.OpenGL.Enums.All pname, [In, Out] object pointer) { unsafe { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointervNV((UInt32)index, (OpenTK.OpenGL.Enums.NvVertexProgram)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glGetVertexAttribPointervNV((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -31075,348 +14740,348 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void LoadProgram(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 id, Int32 len, Byte[] program) + void LoadProgram(OpenTK.OpenGL.Enums.All target, UInt32 id, Int32 len, Byte[] program) { unsafe { fixed (Byte* program_ptr = program) { - Delegates.glLoadProgramNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)id, (Int32)len, (Byte*)program_ptr); + Delegates.glLoadProgramNV((OpenTK.OpenGL.Enums.All)target, (UInt32)id, (Int32)len, (Byte*)program_ptr); } } } public static - void LoadProgram(OpenTK.OpenGL.Enums.NvVertexProgram target, Int32 id, Int32 len, Byte[] program) + void LoadProgram(OpenTK.OpenGL.Enums.All target, Int32 id, Int32 len, Byte[] program) { unsafe { fixed (Byte* program_ptr = program) { - Delegates.glLoadProgramNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)id, (Int32)len, (Byte*)program_ptr); + Delegates.glLoadProgramNV((OpenTK.OpenGL.Enums.All)target, (UInt32)id, (Int32)len, (Byte*)program_ptr); } } } [System.CLSCompliant(false)] public static - void LoadProgram(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 id, Int32 len, ref Byte program) + void LoadProgram(OpenTK.OpenGL.Enums.All target, UInt32 id, Int32 len, ref Byte program) { unsafe { fixed (Byte* program_ptr = &program) { - Delegates.glLoadProgramNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)id, (Int32)len, (Byte*)program_ptr); + Delegates.glLoadProgramNV((OpenTK.OpenGL.Enums.All)target, (UInt32)id, (Int32)len, (Byte*)program_ptr); } } } public static - void LoadProgram(OpenTK.OpenGL.Enums.NvVertexProgram target, Int32 id, Int32 len, ref Byte program) + void LoadProgram(OpenTK.OpenGL.Enums.All target, Int32 id, Int32 len, ref Byte program) { unsafe { fixed (Byte* program_ptr = &program) { - Delegates.glLoadProgramNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)id, (Int32)len, (Byte*)program_ptr); + Delegates.glLoadProgramNV((OpenTK.OpenGL.Enums.All)target, (UInt32)id, (Int32)len, (Byte*)program_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void LoadProgram(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 id, Int32 len, Byte* program) + unsafe void LoadProgram(OpenTK.OpenGL.Enums.All target, UInt32 id, Int32 len, Byte* program) { - Delegates.glLoadProgramNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)id, (Int32)len, (Byte*)program); + Delegates.glLoadProgramNV((OpenTK.OpenGL.Enums.All)target, (UInt32)id, (Int32)len, (Byte*)program); } [System.CLSCompliant(false)] public static - unsafe void LoadProgram(OpenTK.OpenGL.Enums.NvVertexProgram target, Int32 id, Int32 len, Byte* program) + unsafe void LoadProgram(OpenTK.OpenGL.Enums.All target, Int32 id, Int32 len, Byte* program) { - Delegates.glLoadProgramNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)id, (Int32)len, (Byte*)program); + Delegates.glLoadProgramNV((OpenTK.OpenGL.Enums.All)target, (UInt32)id, (Int32)len, (Byte*)program); } [System.CLSCompliant(false)] public static - void ProgramParameter4(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 index, Double x, Double y, Double z, Double w) + void ProgramParameter4(OpenTK.OpenGL.Enums.All target, UInt32 index, Double x, Double y, Double z, Double w) { - Delegates.glProgramParameter4dNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); + Delegates.glProgramParameter4dNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); } public static - void ProgramParameter4(OpenTK.OpenGL.Enums.NvVertexProgram target, Int32 index, Double x, Double y, Double z, Double w) + void ProgramParameter4(OpenTK.OpenGL.Enums.All target, Int32 index, Double x, Double y, Double z, Double w) { - Delegates.glProgramParameter4dNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); + Delegates.glProgramParameter4dNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); } [System.CLSCompliant(false)] public static - void ProgramParameter4(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 index, Double[] v) + void ProgramParameter4(OpenTK.OpenGL.Enums.All target, UInt32 index, Double[] v) { unsafe { fixed (Double* v_ptr = v) { - Delegates.glProgramParameter4dvNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (Double*)v_ptr); + Delegates.glProgramParameter4dvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Double*)v_ptr); } } } public static - void ProgramParameter4(OpenTK.OpenGL.Enums.NvVertexProgram target, Int32 index, Double[] v) + void ProgramParameter4(OpenTK.OpenGL.Enums.All target, Int32 index, Double[] v) { unsafe { fixed (Double* v_ptr = v) { - Delegates.glProgramParameter4dvNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (Double*)v_ptr); + Delegates.glProgramParameter4dvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Double*)v_ptr); } } } [System.CLSCompliant(false)] public static - void ProgramParameter4(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 index, ref Double v) + void ProgramParameter4(OpenTK.OpenGL.Enums.All target, UInt32 index, ref Double v) { unsafe { fixed (Double* v_ptr = &v) { - Delegates.glProgramParameter4dvNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (Double*)v_ptr); + Delegates.glProgramParameter4dvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Double*)v_ptr); } } } public static - void ProgramParameter4(OpenTK.OpenGL.Enums.NvVertexProgram target, Int32 index, ref Double v) + void ProgramParameter4(OpenTK.OpenGL.Enums.All target, Int32 index, ref Double v) { unsafe { fixed (Double* v_ptr = &v) { - Delegates.glProgramParameter4dvNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (Double*)v_ptr); + Delegates.glProgramParameter4dvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Double*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ProgramParameter4(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 index, Double* v) + unsafe void ProgramParameter4(OpenTK.OpenGL.Enums.All target, UInt32 index, Double* v) { - Delegates.glProgramParameter4dvNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (Double*)v); + Delegates.glProgramParameter4dvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Double*)v); } [System.CLSCompliant(false)] public static - unsafe void ProgramParameter4(OpenTK.OpenGL.Enums.NvVertexProgram target, Int32 index, Double* v) + unsafe void ProgramParameter4(OpenTK.OpenGL.Enums.All target, Int32 index, Double* v) { - Delegates.glProgramParameter4dvNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (Double*)v); + Delegates.glProgramParameter4dvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Double*)v); } [System.CLSCompliant(false)] public static - void ProgramParameter4(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 index, Single x, Single y, Single z, Single w) + void ProgramParameter4(OpenTK.OpenGL.Enums.All target, UInt32 index, Single x, Single y, Single z, Single w) { - Delegates.glProgramParameter4fNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); + Delegates.glProgramParameter4fNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); } public static - void ProgramParameter4(OpenTK.OpenGL.Enums.NvVertexProgram target, Int32 index, Single x, Single y, Single z, Single w) + void ProgramParameter4(OpenTK.OpenGL.Enums.All target, Int32 index, Single x, Single y, Single z, Single w) { - Delegates.glProgramParameter4fNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); + Delegates.glProgramParameter4fNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); } [System.CLSCompliant(false)] public static - void ProgramParameter4(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 index, Single[] v) + void ProgramParameter4(OpenTK.OpenGL.Enums.All target, UInt32 index, Single[] v) { unsafe { fixed (Single* v_ptr = v) { - Delegates.glProgramParameter4fvNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (Single*)v_ptr); + Delegates.glProgramParameter4fvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Single*)v_ptr); } } } public static - void ProgramParameter4(OpenTK.OpenGL.Enums.NvVertexProgram target, Int32 index, Single[] v) + void ProgramParameter4(OpenTK.OpenGL.Enums.All target, Int32 index, Single[] v) { unsafe { fixed (Single* v_ptr = v) { - Delegates.glProgramParameter4fvNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (Single*)v_ptr); + Delegates.glProgramParameter4fvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Single*)v_ptr); } } } [System.CLSCompliant(false)] public static - void ProgramParameter4(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 index, ref Single v) + void ProgramParameter4(OpenTK.OpenGL.Enums.All target, UInt32 index, ref Single v) { unsafe { fixed (Single* v_ptr = &v) { - Delegates.glProgramParameter4fvNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (Single*)v_ptr); + Delegates.glProgramParameter4fvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Single*)v_ptr); } } } public static - void ProgramParameter4(OpenTK.OpenGL.Enums.NvVertexProgram target, Int32 index, ref Single v) + void ProgramParameter4(OpenTK.OpenGL.Enums.All target, Int32 index, ref Single v) { unsafe { fixed (Single* v_ptr = &v) { - Delegates.glProgramParameter4fvNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (Single*)v_ptr); + Delegates.glProgramParameter4fvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Single*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ProgramParameter4(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 index, Single* v) + unsafe void ProgramParameter4(OpenTK.OpenGL.Enums.All target, UInt32 index, Single* v) { - Delegates.glProgramParameter4fvNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (Single*)v); + Delegates.glProgramParameter4fvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Single*)v); } [System.CLSCompliant(false)] public static - unsafe void ProgramParameter4(OpenTK.OpenGL.Enums.NvVertexProgram target, Int32 index, Single* v) + unsafe void ProgramParameter4(OpenTK.OpenGL.Enums.All target, Int32 index, Single* v) { - Delegates.glProgramParameter4fvNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (Single*)v); + Delegates.glProgramParameter4fvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Single*)v); } [System.CLSCompliant(false)] public static - void ProgramParameters4(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 index, UInt32 count, Double[] v) + void ProgramParameters4(OpenTK.OpenGL.Enums.All target, UInt32 index, UInt32 count, Double[] v) { unsafe { fixed (Double* v_ptr = v) { - Delegates.glProgramParameters4dvNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (UInt32)count, (Double*)v_ptr); + Delegates.glProgramParameters4dvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32)count, (Double*)v_ptr); } } } public static - void ProgramParameters4(OpenTK.OpenGL.Enums.NvVertexProgram target, Int32 index, Int32 count, Double[] v) + void ProgramParameters4(OpenTK.OpenGL.Enums.All target, Int32 index, Int32 count, Double[] v) { unsafe { fixed (Double* v_ptr = v) { - Delegates.glProgramParameters4dvNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (UInt32)count, (Double*)v_ptr); + Delegates.glProgramParameters4dvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32)count, (Double*)v_ptr); } } } [System.CLSCompliant(false)] public static - void ProgramParameters4(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 index, UInt32 count, ref Double v) + void ProgramParameters4(OpenTK.OpenGL.Enums.All target, UInt32 index, UInt32 count, ref Double v) { unsafe { fixed (Double* v_ptr = &v) { - Delegates.glProgramParameters4dvNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (UInt32)count, (Double*)v_ptr); + Delegates.glProgramParameters4dvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32)count, (Double*)v_ptr); } } } public static - void ProgramParameters4(OpenTK.OpenGL.Enums.NvVertexProgram target, Int32 index, Int32 count, ref Double v) + void ProgramParameters4(OpenTK.OpenGL.Enums.All target, Int32 index, Int32 count, ref Double v) { unsafe { fixed (Double* v_ptr = &v) { - Delegates.glProgramParameters4dvNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (UInt32)count, (Double*)v_ptr); + Delegates.glProgramParameters4dvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32)count, (Double*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ProgramParameters4(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 index, UInt32 count, Double* v) + unsafe void ProgramParameters4(OpenTK.OpenGL.Enums.All target, UInt32 index, UInt32 count, Double* v) { - Delegates.glProgramParameters4dvNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (UInt32)count, (Double*)v); + Delegates.glProgramParameters4dvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32)count, (Double*)v); } [System.CLSCompliant(false)] public static - unsafe void ProgramParameters4(OpenTK.OpenGL.Enums.NvVertexProgram target, Int32 index, Int32 count, Double* v) + unsafe void ProgramParameters4(OpenTK.OpenGL.Enums.All target, Int32 index, Int32 count, Double* v) { - Delegates.glProgramParameters4dvNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (UInt32)count, (Double*)v); + Delegates.glProgramParameters4dvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32)count, (Double*)v); } [System.CLSCompliant(false)] public static - void ProgramParameters4(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 index, UInt32 count, Single[] v) + void ProgramParameters4(OpenTK.OpenGL.Enums.All target, UInt32 index, UInt32 count, Single[] v) { unsafe { fixed (Single* v_ptr = v) { - Delegates.glProgramParameters4fvNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (UInt32)count, (Single*)v_ptr); + Delegates.glProgramParameters4fvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32)count, (Single*)v_ptr); } } } public static - void ProgramParameters4(OpenTK.OpenGL.Enums.NvVertexProgram target, Int32 index, Int32 count, Single[] v) + void ProgramParameters4(OpenTK.OpenGL.Enums.All target, Int32 index, Int32 count, Single[] v) { unsafe { fixed (Single* v_ptr = v) { - Delegates.glProgramParameters4fvNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (UInt32)count, (Single*)v_ptr); + Delegates.glProgramParameters4fvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32)count, (Single*)v_ptr); } } } [System.CLSCompliant(false)] public static - void ProgramParameters4(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 index, UInt32 count, ref Single v) + void ProgramParameters4(OpenTK.OpenGL.Enums.All target, UInt32 index, UInt32 count, ref Single v) { unsafe { fixed (Single* v_ptr = &v) { - Delegates.glProgramParameters4fvNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (UInt32)count, (Single*)v_ptr); + Delegates.glProgramParameters4fvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32)count, (Single*)v_ptr); } } } public static - void ProgramParameters4(OpenTK.OpenGL.Enums.NvVertexProgram target, Int32 index, Int32 count, ref Single v) + void ProgramParameters4(OpenTK.OpenGL.Enums.All target, Int32 index, Int32 count, ref Single v) { unsafe { fixed (Single* v_ptr = &v) { - Delegates.glProgramParameters4fvNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (UInt32)count, (Single*)v_ptr); + Delegates.glProgramParameters4fvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32)count, (Single*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ProgramParameters4(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 index, UInt32 count, Single* v) + unsafe void ProgramParameters4(OpenTK.OpenGL.Enums.All target, UInt32 index, UInt32 count, Single* v) { - Delegates.glProgramParameters4fvNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (UInt32)count, (Single*)v); + Delegates.glProgramParameters4fvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32)count, (Single*)v); } [System.CLSCompliant(false)] public static - unsafe void ProgramParameters4(OpenTK.OpenGL.Enums.NvVertexProgram target, Int32 index, Int32 count, Single* v) + unsafe void ProgramParameters4(OpenTK.OpenGL.Enums.All target, Int32 index, Int32 count, Single* v) { - Delegates.glProgramParameters4fvNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)index, (UInt32)count, (Single*)v); + Delegates.glProgramParameters4fvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32)count, (Single*)v); } [System.CLSCompliant(false)] @@ -31485,46 +15150,46 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void TrackMatrix(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 address, OpenTK.OpenGL.Enums.NvVertexProgram matrix, OpenTK.OpenGL.Enums.NvVertexProgram transform) + void TrackMatrix(OpenTK.OpenGL.Enums.All target, UInt32 address, OpenTK.OpenGL.Enums.All matrix, OpenTK.OpenGL.Enums.All transform) { - Delegates.glTrackMatrixNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)address, (OpenTK.OpenGL.Enums.NvVertexProgram)matrix, (OpenTK.OpenGL.Enums.NvVertexProgram)transform); + Delegates.glTrackMatrixNV((OpenTK.OpenGL.Enums.All)target, (UInt32)address, (OpenTK.OpenGL.Enums.All)matrix, (OpenTK.OpenGL.Enums.All)transform); } public static - void TrackMatrix(OpenTK.OpenGL.Enums.NvVertexProgram target, Int32 address, OpenTK.OpenGL.Enums.NvVertexProgram matrix, OpenTK.OpenGL.Enums.NvVertexProgram transform) + void TrackMatrix(OpenTK.OpenGL.Enums.All target, Int32 address, OpenTK.OpenGL.Enums.All matrix, OpenTK.OpenGL.Enums.All transform) { - Delegates.glTrackMatrixNV((OpenTK.OpenGL.Enums.NvVertexProgram)target, (UInt32)address, (OpenTK.OpenGL.Enums.NvVertexProgram)matrix, (OpenTK.OpenGL.Enums.NvVertexProgram)transform); + Delegates.glTrackMatrixNV((OpenTK.OpenGL.Enums.All)target, (UInt32)address, (OpenTK.OpenGL.Enums.All)matrix, (OpenTK.OpenGL.Enums.All)transform); } [System.CLSCompliant(false)] public static - void VertexAttribPointer(UInt32 index, Int32 fsize, OpenTK.OpenGL.Enums.NvVertexProgram type, Int32 stride, IntPtr pointer) + void VertexAttribPointer(UInt32 index, Int32 fsize, OpenTK.OpenGL.Enums.All type, Int32 stride, IntPtr pointer) { unsafe { - Delegates.glVertexAttribPointerNV((UInt32)index, (Int32)fsize, (OpenTK.OpenGL.Enums.NvVertexProgram)type, (Int32)stride, (IntPtr)pointer); + Delegates.glVertexAttribPointerNV((UInt32)index, (Int32)fsize, (OpenTK.OpenGL.Enums.All)type, (Int32)stride, (IntPtr)pointer); } } public static - void VertexAttribPointer(Int32 index, Int32 fsize, OpenTK.OpenGL.Enums.NvVertexProgram type, Int32 stride, IntPtr pointer) + void VertexAttribPointer(Int32 index, Int32 fsize, OpenTK.OpenGL.Enums.All type, Int32 stride, IntPtr pointer) { unsafe { - Delegates.glVertexAttribPointerNV((UInt32)index, (Int32)fsize, (OpenTK.OpenGL.Enums.NvVertexProgram)type, (Int32)stride, (IntPtr)pointer); + Delegates.glVertexAttribPointerNV((UInt32)index, (Int32)fsize, (OpenTK.OpenGL.Enums.All)type, (Int32)stride, (IntPtr)pointer); } } [System.CLSCompliant(false)] public static - void VertexAttribPointer(UInt32 index, Int32 fsize, OpenTK.OpenGL.Enums.NvVertexProgram type, Int32 stride, [In, Out] object pointer) + void VertexAttribPointer(UInt32 index, Int32 fsize, OpenTK.OpenGL.Enums.All type, Int32 stride, [In, Out] object pointer) { unsafe { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glVertexAttribPointerNV((UInt32)index, (Int32)fsize, (OpenTK.OpenGL.Enums.NvVertexProgram)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glVertexAttribPointerNV((UInt32)index, (Int32)fsize, (OpenTK.OpenGL.Enums.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -31534,14 +15199,14 @@ namespace OpenTK.OpenGL } public static - void VertexAttribPointer(Int32 index, Int32 fsize, OpenTK.OpenGL.Enums.NvVertexProgram type, Int32 stride, [In, Out] object pointer) + void VertexAttribPointer(Int32 index, Int32 fsize, OpenTK.OpenGL.Enums.All type, Int32 stride, [In, Out] object pointer) { unsafe { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glVertexAttribPointerNV((UInt32)index, (Int32)fsize, (OpenTK.OpenGL.Enums.NvVertexProgram)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glVertexAttribPointerNV((UInt32)index, (Int32)fsize, (OpenTK.OpenGL.Enums.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -33547,26 +17212,26 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetOcclusionQuery(UInt32 id, OpenTK.OpenGL.Enums.NvOcclusionQuery pname, [Out] Int32[] @params) + void GetOcclusionQuery(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetOcclusionQueryivNV((UInt32)id, (OpenTK.OpenGL.Enums.NvOcclusionQuery)pname, (Int32*)@params_ptr); + Delegates.glGetOcclusionQueryivNV((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetOcclusionQuery(UInt32 id, OpenTK.OpenGL.Enums.NvOcclusionQuery pname, [Out] out Int32 @params) + void GetOcclusionQuery(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetOcclusionQueryivNV((UInt32)id, (OpenTK.OpenGL.Enums.NvOcclusionQuery)pname, (Int32*)@params_ptr); + Delegates.glGetOcclusionQueryivNV((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -33574,58 +17239,58 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetOcclusionQuery(UInt32 id, OpenTK.OpenGL.Enums.NvOcclusionQuery pname, [Out] Int32* @params) + unsafe void GetOcclusionQuery(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) { - Delegates.glGetOcclusionQueryivNV((UInt32)id, (OpenTK.OpenGL.Enums.NvOcclusionQuery)pname, (Int32*)@params); + Delegates.glGetOcclusionQueryivNV((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - void GetOcclusionQuery(UInt32 id, OpenTK.OpenGL.Enums.NvOcclusionQuery pname, [Out] UInt32[] @params) + void GetOcclusionQuery(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] UInt32[] @params) { unsafe { fixed (UInt32* @params_ptr = @params) { - Delegates.glGetOcclusionQueryuivNV((UInt32)id, (OpenTK.OpenGL.Enums.NvOcclusionQuery)pname, (UInt32*)@params_ptr); + Delegates.glGetOcclusionQueryuivNV((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (UInt32*)@params_ptr); } } } public static - void GetOcclusionQuery(Int32 id, OpenTK.OpenGL.Enums.NvOcclusionQuery pname, [Out] Int32[] @params) + void GetOcclusionQuery(Int32 id, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetOcclusionQueryuivNV((UInt32)id, (OpenTK.OpenGL.Enums.NvOcclusionQuery)pname, (UInt32*)@params_ptr); + Delegates.glGetOcclusionQueryuivNV((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (UInt32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetOcclusionQuery(UInt32 id, OpenTK.OpenGL.Enums.NvOcclusionQuery pname, [Out] out UInt32 @params) + void GetOcclusionQuery(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] out UInt32 @params) { unsafe { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetOcclusionQueryuivNV((UInt32)id, (OpenTK.OpenGL.Enums.NvOcclusionQuery)pname, (UInt32*)@params_ptr); + Delegates.glGetOcclusionQueryuivNV((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (UInt32*)@params_ptr); @params = *@params_ptr; } } } public static - void GetOcclusionQuery(Int32 id, OpenTK.OpenGL.Enums.NvOcclusionQuery pname, [Out] out Int32 @params) + void GetOcclusionQuery(Int32 id, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetOcclusionQueryuivNV((UInt32)id, (OpenTK.OpenGL.Enums.NvOcclusionQuery)pname, (UInt32*)@params_ptr); + Delegates.glGetOcclusionQueryuivNV((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (UInt32*)@params_ptr); @params = *@params_ptr; } } @@ -33633,53 +17298,53 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetOcclusionQuery(UInt32 id, OpenTK.OpenGL.Enums.NvOcclusionQuery pname, [Out] UInt32* @params) + unsafe void GetOcclusionQuery(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] UInt32* @params) { - Delegates.glGetOcclusionQueryuivNV((UInt32)id, (OpenTK.OpenGL.Enums.NvOcclusionQuery)pname, (UInt32*)@params); + Delegates.glGetOcclusionQueryuivNV((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (UInt32*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetOcclusionQuery(Int32 id, OpenTK.OpenGL.Enums.NvOcclusionQuery pname, [Out] Int32* @params) + unsafe void GetOcclusionQuery(Int32 id, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) { - Delegates.glGetOcclusionQueryuivNV((UInt32)id, (OpenTK.OpenGL.Enums.NvOcclusionQuery)pname, (UInt32*)@params); + Delegates.glGetOcclusionQueryuivNV((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (UInt32*)@params); } public static - void PointParameter(OpenTK.OpenGL.Enums.NvPointSprite pname, Int32 param) + void PointParameter(OpenTK.OpenGL.Enums.All pname, Int32 param) { - Delegates.glPointParameteriNV((OpenTK.OpenGL.Enums.NvPointSprite)pname, (Int32)param); + Delegates.glPointParameteriNV((OpenTK.OpenGL.Enums.All)pname, (Int32)param); } public static - void PointParameterv(OpenTK.OpenGL.Enums.NvPointSprite pname, Int32[] @params) + void PointParameterv(OpenTK.OpenGL.Enums.All pname, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glPointParameterivNV((OpenTK.OpenGL.Enums.NvPointSprite)pname, (Int32*)@params_ptr); + Delegates.glPointParameterivNV((OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); } } } public static - void PointParameterv(OpenTK.OpenGL.Enums.NvPointSprite pname, ref Int32 @params) + void PointParameterv(OpenTK.OpenGL.Enums.All pname, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glPointParameterivNV((OpenTK.OpenGL.Enums.NvPointSprite)pname, (Int32*)@params_ptr); + Delegates.glPointParameterivNV((OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void PointParameterv(OpenTK.OpenGL.Enums.NvPointSprite pname, Int32* @params) + unsafe void PointParameterv(OpenTK.OpenGL.Enums.All pname, Int32* @params) { - Delegates.glPointParameterivNV((OpenTK.OpenGL.Enums.NvPointSprite)pname, (Int32*)@params); + Delegates.glPointParameterivNV((OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] @@ -34858,310 +18523,310 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void MultiTexCoord1h(OpenTK.OpenGL.Enums.NvHalfFloat target, UInt16 s) + void MultiTexCoord1h(OpenTK.OpenGL.Enums.TextureUnit target, UInt16 s) { - Delegates.glMultiTexCoord1hNV((OpenTK.OpenGL.Enums.NvHalfFloat)target, (UInt16)s); + Delegates.glMultiTexCoord1hNV((OpenTK.OpenGL.Enums.TextureUnit)target, (UInt16)s); } public static - void MultiTexCoord1h(OpenTK.OpenGL.Enums.NvHalfFloat target, Int16 s) + void MultiTexCoord1h(OpenTK.OpenGL.Enums.TextureUnit target, Int16 s) { - Delegates.glMultiTexCoord1hNV((OpenTK.OpenGL.Enums.NvHalfFloat)target, (UInt16)s); + Delegates.glMultiTexCoord1hNV((OpenTK.OpenGL.Enums.TextureUnit)target, (UInt16)s); } [System.CLSCompliant(false)] public static - void MultiTexCoord1hv(OpenTK.OpenGL.Enums.NvHalfFloat target, UInt16[] v) + void MultiTexCoord1hv(OpenTK.OpenGL.Enums.TextureUnit target, UInt16[] v) { unsafe { fixed (UInt16* v_ptr = v) { - Delegates.glMultiTexCoord1hvNV((OpenTK.OpenGL.Enums.NvHalfFloat)target, (UInt16*)v_ptr); + Delegates.glMultiTexCoord1hvNV((OpenTK.OpenGL.Enums.TextureUnit)target, (UInt16*)v_ptr); } } } public static - void MultiTexCoord1hv(OpenTK.OpenGL.Enums.NvHalfFloat target, Int16[] v) + void MultiTexCoord1hv(OpenTK.OpenGL.Enums.TextureUnit target, Int16[] v) { unsafe { fixed (Int16* v_ptr = v) { - Delegates.glMultiTexCoord1hvNV((OpenTK.OpenGL.Enums.NvHalfFloat)target, (UInt16*)v_ptr); + Delegates.glMultiTexCoord1hvNV((OpenTK.OpenGL.Enums.TextureUnit)target, (UInt16*)v_ptr); } } } [System.CLSCompliant(false)] public static - void MultiTexCoord1hv(OpenTK.OpenGL.Enums.NvHalfFloat target, ref UInt16 v) + void MultiTexCoord1hv(OpenTK.OpenGL.Enums.TextureUnit target, ref UInt16 v) { unsafe { fixed (UInt16* v_ptr = &v) { - Delegates.glMultiTexCoord1hvNV((OpenTK.OpenGL.Enums.NvHalfFloat)target, (UInt16*)v_ptr); + Delegates.glMultiTexCoord1hvNV((OpenTK.OpenGL.Enums.TextureUnit)target, (UInt16*)v_ptr); } } } public static - void MultiTexCoord1hv(OpenTK.OpenGL.Enums.NvHalfFloat target, ref Int16 v) + void MultiTexCoord1hv(OpenTK.OpenGL.Enums.TextureUnit target, ref Int16 v) { unsafe { fixed (Int16* v_ptr = &v) { - Delegates.glMultiTexCoord1hvNV((OpenTK.OpenGL.Enums.NvHalfFloat)target, (UInt16*)v_ptr); + Delegates.glMultiTexCoord1hvNV((OpenTK.OpenGL.Enums.TextureUnit)target, (UInt16*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord1hv(OpenTK.OpenGL.Enums.NvHalfFloat target, UInt16* v) + unsafe void MultiTexCoord1hv(OpenTK.OpenGL.Enums.TextureUnit target, UInt16* v) { - Delegates.glMultiTexCoord1hvNV((OpenTK.OpenGL.Enums.NvHalfFloat)target, (UInt16*)v); + Delegates.glMultiTexCoord1hvNV((OpenTK.OpenGL.Enums.TextureUnit)target, (UInt16*)v); } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord1hv(OpenTK.OpenGL.Enums.NvHalfFloat target, Int16* v) + unsafe void MultiTexCoord1hv(OpenTK.OpenGL.Enums.TextureUnit target, Int16* v) { - Delegates.glMultiTexCoord1hvNV((OpenTK.OpenGL.Enums.NvHalfFloat)target, (UInt16*)v); + Delegates.glMultiTexCoord1hvNV((OpenTK.OpenGL.Enums.TextureUnit)target, (UInt16*)v); } [System.CLSCompliant(false)] public static - void MultiTexCoord2h(OpenTK.OpenGL.Enums.NvHalfFloat target, UInt16 s, UInt16 t) + void MultiTexCoord2h(OpenTK.OpenGL.Enums.TextureUnit target, UInt16 s, UInt16 t) { - Delegates.glMultiTexCoord2hNV((OpenTK.OpenGL.Enums.NvHalfFloat)target, (UInt16)s, (UInt16)t); + Delegates.glMultiTexCoord2hNV((OpenTK.OpenGL.Enums.TextureUnit)target, (UInt16)s, (UInt16)t); } public static - void MultiTexCoord2h(OpenTK.OpenGL.Enums.NvHalfFloat target, Int16 s, Int16 t) + void MultiTexCoord2h(OpenTK.OpenGL.Enums.TextureUnit target, Int16 s, Int16 t) { - Delegates.glMultiTexCoord2hNV((OpenTK.OpenGL.Enums.NvHalfFloat)target, (UInt16)s, (UInt16)t); + Delegates.glMultiTexCoord2hNV((OpenTK.OpenGL.Enums.TextureUnit)target, (UInt16)s, (UInt16)t); } [System.CLSCompliant(false)] public static - void MultiTexCoord2h(OpenTK.OpenGL.Enums.NvHalfFloat target, UInt16[] v) + void MultiTexCoord2h(OpenTK.OpenGL.Enums.TextureUnit target, UInt16[] v) { unsafe { fixed (UInt16* v_ptr = v) { - Delegates.glMultiTexCoord2hvNV((OpenTK.OpenGL.Enums.NvHalfFloat)target, (UInt16*)v_ptr); + Delegates.glMultiTexCoord2hvNV((OpenTK.OpenGL.Enums.TextureUnit)target, (UInt16*)v_ptr); } } } public static - void MultiTexCoord2h(OpenTK.OpenGL.Enums.NvHalfFloat target, Int16[] v) + void MultiTexCoord2h(OpenTK.OpenGL.Enums.TextureUnit target, Int16[] v) { unsafe { fixed (Int16* v_ptr = v) { - Delegates.glMultiTexCoord2hvNV((OpenTK.OpenGL.Enums.NvHalfFloat)target, (UInt16*)v_ptr); + Delegates.glMultiTexCoord2hvNV((OpenTK.OpenGL.Enums.TextureUnit)target, (UInt16*)v_ptr); } } } [System.CLSCompliant(false)] public static - void MultiTexCoord2h(OpenTK.OpenGL.Enums.NvHalfFloat target, ref UInt16 v) + void MultiTexCoord2h(OpenTK.OpenGL.Enums.TextureUnit target, ref UInt16 v) { unsafe { fixed (UInt16* v_ptr = &v) { - Delegates.glMultiTexCoord2hvNV((OpenTK.OpenGL.Enums.NvHalfFloat)target, (UInt16*)v_ptr); + Delegates.glMultiTexCoord2hvNV((OpenTK.OpenGL.Enums.TextureUnit)target, (UInt16*)v_ptr); } } } public static - void MultiTexCoord2h(OpenTK.OpenGL.Enums.NvHalfFloat target, ref Int16 v) + void MultiTexCoord2h(OpenTK.OpenGL.Enums.TextureUnit target, ref Int16 v) { unsafe { fixed (Int16* v_ptr = &v) { - Delegates.glMultiTexCoord2hvNV((OpenTK.OpenGL.Enums.NvHalfFloat)target, (UInt16*)v_ptr); + Delegates.glMultiTexCoord2hvNV((OpenTK.OpenGL.Enums.TextureUnit)target, (UInt16*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord2h(OpenTK.OpenGL.Enums.NvHalfFloat target, UInt16* v) + unsafe void MultiTexCoord2h(OpenTK.OpenGL.Enums.TextureUnit target, UInt16* v) { - Delegates.glMultiTexCoord2hvNV((OpenTK.OpenGL.Enums.NvHalfFloat)target, (UInt16*)v); + Delegates.glMultiTexCoord2hvNV((OpenTK.OpenGL.Enums.TextureUnit)target, (UInt16*)v); } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord2h(OpenTK.OpenGL.Enums.NvHalfFloat target, Int16* v) + unsafe void MultiTexCoord2h(OpenTK.OpenGL.Enums.TextureUnit target, Int16* v) { - Delegates.glMultiTexCoord2hvNV((OpenTK.OpenGL.Enums.NvHalfFloat)target, (UInt16*)v); + Delegates.glMultiTexCoord2hvNV((OpenTK.OpenGL.Enums.TextureUnit)target, (UInt16*)v); } [System.CLSCompliant(false)] public static - void MultiTexCoord3h(OpenTK.OpenGL.Enums.NvHalfFloat target, UInt16 s, UInt16 t, UInt16 r) + void MultiTexCoord3h(OpenTK.OpenGL.Enums.TextureUnit target, UInt16 s, UInt16 t, UInt16 r) { - Delegates.glMultiTexCoord3hNV((OpenTK.OpenGL.Enums.NvHalfFloat)target, (UInt16)s, (UInt16)t, (UInt16)r); + Delegates.glMultiTexCoord3hNV((OpenTK.OpenGL.Enums.TextureUnit)target, (UInt16)s, (UInt16)t, (UInt16)r); } public static - void MultiTexCoord3h(OpenTK.OpenGL.Enums.NvHalfFloat target, Int16 s, Int16 t, Int16 r) + void MultiTexCoord3h(OpenTK.OpenGL.Enums.TextureUnit target, Int16 s, Int16 t, Int16 r) { - Delegates.glMultiTexCoord3hNV((OpenTK.OpenGL.Enums.NvHalfFloat)target, (UInt16)s, (UInt16)t, (UInt16)r); + Delegates.glMultiTexCoord3hNV((OpenTK.OpenGL.Enums.TextureUnit)target, (UInt16)s, (UInt16)t, (UInt16)r); } [System.CLSCompliant(false)] public static - void MultiTexCoord3h(OpenTK.OpenGL.Enums.NvHalfFloat target, UInt16[] v) + void MultiTexCoord3h(OpenTK.OpenGL.Enums.TextureUnit target, UInt16[] v) { unsafe { fixed (UInt16* v_ptr = v) { - Delegates.glMultiTexCoord3hvNV((OpenTK.OpenGL.Enums.NvHalfFloat)target, (UInt16*)v_ptr); + Delegates.glMultiTexCoord3hvNV((OpenTK.OpenGL.Enums.TextureUnit)target, (UInt16*)v_ptr); } } } public static - void MultiTexCoord3h(OpenTK.OpenGL.Enums.NvHalfFloat target, Int16[] v) + void MultiTexCoord3h(OpenTK.OpenGL.Enums.TextureUnit target, Int16[] v) { unsafe { fixed (Int16* v_ptr = v) { - Delegates.glMultiTexCoord3hvNV((OpenTK.OpenGL.Enums.NvHalfFloat)target, (UInt16*)v_ptr); + Delegates.glMultiTexCoord3hvNV((OpenTK.OpenGL.Enums.TextureUnit)target, (UInt16*)v_ptr); } } } [System.CLSCompliant(false)] public static - void MultiTexCoord3h(OpenTK.OpenGL.Enums.NvHalfFloat target, ref UInt16 v) + void MultiTexCoord3h(OpenTK.OpenGL.Enums.TextureUnit target, ref UInt16 v) { unsafe { fixed (UInt16* v_ptr = &v) { - Delegates.glMultiTexCoord3hvNV((OpenTK.OpenGL.Enums.NvHalfFloat)target, (UInt16*)v_ptr); + Delegates.glMultiTexCoord3hvNV((OpenTK.OpenGL.Enums.TextureUnit)target, (UInt16*)v_ptr); } } } public static - void MultiTexCoord3h(OpenTK.OpenGL.Enums.NvHalfFloat target, ref Int16 v) + void MultiTexCoord3h(OpenTK.OpenGL.Enums.TextureUnit target, ref Int16 v) { unsafe { fixed (Int16* v_ptr = &v) { - Delegates.glMultiTexCoord3hvNV((OpenTK.OpenGL.Enums.NvHalfFloat)target, (UInt16*)v_ptr); + Delegates.glMultiTexCoord3hvNV((OpenTK.OpenGL.Enums.TextureUnit)target, (UInt16*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord3h(OpenTK.OpenGL.Enums.NvHalfFloat target, UInt16* v) + unsafe void MultiTexCoord3h(OpenTK.OpenGL.Enums.TextureUnit target, UInt16* v) { - Delegates.glMultiTexCoord3hvNV((OpenTK.OpenGL.Enums.NvHalfFloat)target, (UInt16*)v); + Delegates.glMultiTexCoord3hvNV((OpenTK.OpenGL.Enums.TextureUnit)target, (UInt16*)v); } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord3h(OpenTK.OpenGL.Enums.NvHalfFloat target, Int16* v) + unsafe void MultiTexCoord3h(OpenTK.OpenGL.Enums.TextureUnit target, Int16* v) { - Delegates.glMultiTexCoord3hvNV((OpenTK.OpenGL.Enums.NvHalfFloat)target, (UInt16*)v); + Delegates.glMultiTexCoord3hvNV((OpenTK.OpenGL.Enums.TextureUnit)target, (UInt16*)v); } [System.CLSCompliant(false)] public static - void MultiTexCoord4h(OpenTK.OpenGL.Enums.NvHalfFloat target, UInt16 s, UInt16 t, UInt16 r, UInt16 q) + void MultiTexCoord4h(OpenTK.OpenGL.Enums.TextureUnit target, UInt16 s, UInt16 t, UInt16 r, UInt16 q) { - Delegates.glMultiTexCoord4hNV((OpenTK.OpenGL.Enums.NvHalfFloat)target, (UInt16)s, (UInt16)t, (UInt16)r, (UInt16)q); + Delegates.glMultiTexCoord4hNV((OpenTK.OpenGL.Enums.TextureUnit)target, (UInt16)s, (UInt16)t, (UInt16)r, (UInt16)q); } public static - void MultiTexCoord4h(OpenTK.OpenGL.Enums.NvHalfFloat target, Int16 s, Int16 t, Int16 r, Int16 q) + void MultiTexCoord4h(OpenTK.OpenGL.Enums.TextureUnit target, Int16 s, Int16 t, Int16 r, Int16 q) { - Delegates.glMultiTexCoord4hNV((OpenTK.OpenGL.Enums.NvHalfFloat)target, (UInt16)s, (UInt16)t, (UInt16)r, (UInt16)q); + Delegates.glMultiTexCoord4hNV((OpenTK.OpenGL.Enums.TextureUnit)target, (UInt16)s, (UInt16)t, (UInt16)r, (UInt16)q); } [System.CLSCompliant(false)] public static - void MultiTexCoord4h(OpenTK.OpenGL.Enums.NvHalfFloat target, UInt16[] v) + void MultiTexCoord4h(OpenTK.OpenGL.Enums.TextureUnit target, UInt16[] v) { unsafe { fixed (UInt16* v_ptr = v) { - Delegates.glMultiTexCoord4hvNV((OpenTK.OpenGL.Enums.NvHalfFloat)target, (UInt16*)v_ptr); + Delegates.glMultiTexCoord4hvNV((OpenTK.OpenGL.Enums.TextureUnit)target, (UInt16*)v_ptr); } } } public static - void MultiTexCoord4h(OpenTK.OpenGL.Enums.NvHalfFloat target, Int16[] v) + void MultiTexCoord4h(OpenTK.OpenGL.Enums.TextureUnit target, Int16[] v) { unsafe { fixed (Int16* v_ptr = v) { - Delegates.glMultiTexCoord4hvNV((OpenTK.OpenGL.Enums.NvHalfFloat)target, (UInt16*)v_ptr); + Delegates.glMultiTexCoord4hvNV((OpenTK.OpenGL.Enums.TextureUnit)target, (UInt16*)v_ptr); } } } [System.CLSCompliant(false)] public static - void MultiTexCoord4h(OpenTK.OpenGL.Enums.NvHalfFloat target, ref UInt16 v) + void MultiTexCoord4h(OpenTK.OpenGL.Enums.TextureUnit target, ref UInt16 v) { unsafe { fixed (UInt16* v_ptr = &v) { - Delegates.glMultiTexCoord4hvNV((OpenTK.OpenGL.Enums.NvHalfFloat)target, (UInt16*)v_ptr); + Delegates.glMultiTexCoord4hvNV((OpenTK.OpenGL.Enums.TextureUnit)target, (UInt16*)v_ptr); } } } public static - void MultiTexCoord4h(OpenTK.OpenGL.Enums.NvHalfFloat target, ref Int16 v) + void MultiTexCoord4h(OpenTK.OpenGL.Enums.TextureUnit target, ref Int16 v) { unsafe { fixed (Int16* v_ptr = &v) { - Delegates.glMultiTexCoord4hvNV((OpenTK.OpenGL.Enums.NvHalfFloat)target, (UInt16*)v_ptr); + Delegates.glMultiTexCoord4hvNV((OpenTK.OpenGL.Enums.TextureUnit)target, (UInt16*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord4h(OpenTK.OpenGL.Enums.NvHalfFloat target, UInt16* v) + unsafe void MultiTexCoord4h(OpenTK.OpenGL.Enums.TextureUnit target, UInt16* v) { - Delegates.glMultiTexCoord4hvNV((OpenTK.OpenGL.Enums.NvHalfFloat)target, (UInt16*)v); + Delegates.glMultiTexCoord4hvNV((OpenTK.OpenGL.Enums.TextureUnit)target, (UInt16*)v); } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord4h(OpenTK.OpenGL.Enums.NvHalfFloat target, Int16* v) + unsafe void MultiTexCoord4h(OpenTK.OpenGL.Enums.TextureUnit target, Int16* v) { - Delegates.glMultiTexCoord4hvNV((OpenTK.OpenGL.Enums.NvHalfFloat)target, (UInt16*)v); + Delegates.glMultiTexCoord4hvNV((OpenTK.OpenGL.Enums.TextureUnit)target, (UInt16*)v); } [System.CLSCompliant(false)] @@ -35960,23 +19625,23 @@ namespace OpenTK.OpenGL } public static - void PixelDataRange(OpenTK.OpenGL.Enums.NvPixelDataRange target, Int32 length, [Out] IntPtr pointer) + void PixelDataRange(OpenTK.OpenGL.Enums.All target, Int32 length, [Out] IntPtr pointer) { unsafe { - Delegates.glPixelDataRangeNV((OpenTK.OpenGL.Enums.NvPixelDataRange)target, (Int32)length, (IntPtr)pointer); + Delegates.glPixelDataRangeNV((OpenTK.OpenGL.Enums.All)target, (Int32)length, (IntPtr)pointer); } } public static - void PixelDataRange(OpenTK.OpenGL.Enums.NvPixelDataRange target, Int32 length, [In, Out] object pointer) + void PixelDataRange(OpenTK.OpenGL.Enums.All target, Int32 length, [In, Out] object pointer) { unsafe { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glPixelDataRangeNV((OpenTK.OpenGL.Enums.NvPixelDataRange)target, (Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glPixelDataRangeNV((OpenTK.OpenGL.Enums.All)target, (Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -35986,9 +19651,9 @@ namespace OpenTK.OpenGL } public static - void FlushPixelDataRange(OpenTK.OpenGL.Enums.NvPixelDataRange target) + void FlushPixelDataRange(OpenTK.OpenGL.Enums.All target) { - Delegates.glFlushPixelDataRangeNV((OpenTK.OpenGL.Enums.NvPixelDataRange)target); + Delegates.glFlushPixelDataRangeNV((OpenTK.OpenGL.Enums.All)target); } public static @@ -36012,454 +19677,454 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramLocalParameterI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) + void ProgramLocalParameterI4(OpenTK.OpenGL.Enums.All target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) { - Delegates.glProgramLocalParameterI4iNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); + Delegates.glProgramLocalParameterI4iNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); } [System.CLSCompliant(false)] public static - void ProgramLocalParameterI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, Int32[] @params) + void ProgramLocalParameterI4(OpenTK.OpenGL.Enums.All target, UInt32 index, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glProgramLocalParameterI4ivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (Int32*)@params_ptr); + Delegates.glProgramLocalParameterI4ivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void ProgramLocalParameterI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, ref Int32 @params) + void ProgramLocalParameterI4(OpenTK.OpenGL.Enums.All target, UInt32 index, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glProgramLocalParameterI4ivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (Int32*)@params_ptr); + Delegates.glProgramLocalParameterI4ivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParameterI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, Int32* @params) + unsafe void ProgramLocalParameterI4(OpenTK.OpenGL.Enums.All target, UInt32 index, Int32* @params) { - Delegates.glProgramLocalParameterI4ivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (Int32*)@params); + Delegates.glProgramLocalParameterI4ivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32*)@params); } [System.CLSCompliant(false)] public static - void ProgramLocalParametersI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, Int32 count, Int32[] @params) + void ProgramLocalParametersI4(OpenTK.OpenGL.Enums.All target, UInt32 index, Int32 count, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glProgramLocalParametersI4ivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr); + Delegates.glProgramLocalParametersI4ivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void ProgramLocalParametersI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, Int32 count, ref Int32 @params) + void ProgramLocalParametersI4(OpenTK.OpenGL.Enums.All target, UInt32 index, Int32 count, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glProgramLocalParametersI4ivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr); + Delegates.glProgramLocalParametersI4ivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParametersI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, Int32 count, Int32* @params) + unsafe void ProgramLocalParametersI4(OpenTK.OpenGL.Enums.All target, UInt32 index, Int32 count, Int32* @params) { - Delegates.glProgramLocalParametersI4ivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (Int32)count, (Int32*)@params); + Delegates.glProgramLocalParametersI4ivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32)count, (Int32*)@params); } [System.CLSCompliant(false)] public static - void ProgramLocalParameterI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) + void ProgramLocalParameterI4(OpenTK.OpenGL.Enums.All target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { - Delegates.glProgramLocalParameterI4uiNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w); + Delegates.glProgramLocalParameterI4uiNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w); } public static - void ProgramLocalParameterI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) + void ProgramLocalParameterI4(OpenTK.OpenGL.Enums.All target, Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { - Delegates.glProgramLocalParameterI4uiNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w); + Delegates.glProgramLocalParameterI4uiNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w); } [System.CLSCompliant(false)] public static - void ProgramLocalParameterI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, UInt32[] @params) + void ProgramLocalParameterI4(OpenTK.OpenGL.Enums.All target, UInt32 index, UInt32[] @params) { unsafe { fixed (UInt32* @params_ptr = @params) { - Delegates.glProgramLocalParameterI4uivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr); + Delegates.glProgramLocalParameterI4uivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32*)@params_ptr); } } } public static - void ProgramLocalParameterI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, Int32 index, Int32[] @params) + void ProgramLocalParameterI4(OpenTK.OpenGL.Enums.All target, Int32 index, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glProgramLocalParameterI4uivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr); + Delegates.glProgramLocalParameterI4uivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void ProgramLocalParameterI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, ref UInt32 @params) + void ProgramLocalParameterI4(OpenTK.OpenGL.Enums.All target, UInt32 index, ref UInt32 @params) { unsafe { fixed (UInt32* @params_ptr = &@params) { - Delegates.glProgramLocalParameterI4uivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr); + Delegates.glProgramLocalParameterI4uivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32*)@params_ptr); } } } public static - void ProgramLocalParameterI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, Int32 index, ref Int32 @params) + void ProgramLocalParameterI4(OpenTK.OpenGL.Enums.All target, Int32 index, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glProgramLocalParameterI4uivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr); + Delegates.glProgramLocalParameterI4uivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParameterI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, UInt32* @params) + unsafe void ProgramLocalParameterI4(OpenTK.OpenGL.Enums.All target, UInt32 index, UInt32* @params) { - Delegates.glProgramLocalParameterI4uivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params); + Delegates.glProgramLocalParameterI4uivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32*)@params); } [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParameterI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, Int32 index, Int32* @params) + unsafe void ProgramLocalParameterI4(OpenTK.OpenGL.Enums.All target, Int32 index, Int32* @params) { - Delegates.glProgramLocalParameterI4uivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params); + Delegates.glProgramLocalParameterI4uivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32*)@params); } [System.CLSCompliant(false)] public static - void ProgramLocalParametersI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, Int32 count, UInt32[] @params) + void ProgramLocalParametersI4(OpenTK.OpenGL.Enums.All target, UInt32 index, Int32 count, UInt32[] @params) { unsafe { fixed (UInt32* @params_ptr = @params) { - Delegates.glProgramLocalParametersI4uivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); + Delegates.glProgramLocalParametersI4uivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); } } } public static - void ProgramLocalParametersI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, Int32 index, Int32 count, Int32[] @params) + void ProgramLocalParametersI4(OpenTK.OpenGL.Enums.All target, Int32 index, Int32 count, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glProgramLocalParametersI4uivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); + Delegates.glProgramLocalParametersI4uivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void ProgramLocalParametersI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, Int32 count, ref UInt32 @params) + void ProgramLocalParametersI4(OpenTK.OpenGL.Enums.All target, UInt32 index, Int32 count, ref UInt32 @params) { unsafe { fixed (UInt32* @params_ptr = &@params) { - Delegates.glProgramLocalParametersI4uivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); + Delegates.glProgramLocalParametersI4uivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); } } } public static - void ProgramLocalParametersI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, Int32 index, Int32 count, ref Int32 @params) + void ProgramLocalParametersI4(OpenTK.OpenGL.Enums.All target, Int32 index, Int32 count, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glProgramLocalParametersI4uivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); + Delegates.glProgramLocalParametersI4uivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParametersI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, Int32 count, UInt32* @params) + unsafe void ProgramLocalParametersI4(OpenTK.OpenGL.Enums.All target, UInt32 index, Int32 count, UInt32* @params) { - Delegates.glProgramLocalParametersI4uivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (Int32)count, (UInt32*)@params); + Delegates.glProgramLocalParametersI4uivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32)count, (UInt32*)@params); } [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParametersI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, Int32 index, Int32 count, Int32* @params) + unsafe void ProgramLocalParametersI4(OpenTK.OpenGL.Enums.All target, Int32 index, Int32 count, Int32* @params) { - Delegates.glProgramLocalParametersI4uivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (Int32)count, (UInt32*)@params); + Delegates.glProgramLocalParametersI4uivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32)count, (UInt32*)@params); } [System.CLSCompliant(false)] public static - void ProgramEnvParameterI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) + void ProgramEnvParameterI4(OpenTK.OpenGL.Enums.All target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) { - Delegates.glProgramEnvParameterI4iNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); + Delegates.glProgramEnvParameterI4iNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); } [System.CLSCompliant(false)] public static - void ProgramEnvParameterI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, Int32[] @params) + void ProgramEnvParameterI4(OpenTK.OpenGL.Enums.All target, UInt32 index, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glProgramEnvParameterI4ivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (Int32*)@params_ptr); + Delegates.glProgramEnvParameterI4ivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void ProgramEnvParameterI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, ref Int32 @params) + void ProgramEnvParameterI4(OpenTK.OpenGL.Enums.All target, UInt32 index, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glProgramEnvParameterI4ivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (Int32*)@params_ptr); + Delegates.glProgramEnvParameterI4ivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParameterI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, Int32* @params) + unsafe void ProgramEnvParameterI4(OpenTK.OpenGL.Enums.All target, UInt32 index, Int32* @params) { - Delegates.glProgramEnvParameterI4ivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (Int32*)@params); + Delegates.glProgramEnvParameterI4ivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32*)@params); } [System.CLSCompliant(false)] public static - void ProgramEnvParametersI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, Int32 count, Int32[] @params) + void ProgramEnvParametersI4(OpenTK.OpenGL.Enums.All target, UInt32 index, Int32 count, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glProgramEnvParametersI4ivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr); + Delegates.glProgramEnvParametersI4ivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void ProgramEnvParametersI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, Int32 count, ref Int32 @params) + void ProgramEnvParametersI4(OpenTK.OpenGL.Enums.All target, UInt32 index, Int32 count, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glProgramEnvParametersI4ivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr); + Delegates.glProgramEnvParametersI4ivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParametersI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, Int32 count, Int32* @params) + unsafe void ProgramEnvParametersI4(OpenTK.OpenGL.Enums.All target, UInt32 index, Int32 count, Int32* @params) { - Delegates.glProgramEnvParametersI4ivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (Int32)count, (Int32*)@params); + Delegates.glProgramEnvParametersI4ivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32)count, (Int32*)@params); } [System.CLSCompliant(false)] public static - void ProgramEnvParameterI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) + void ProgramEnvParameterI4(OpenTK.OpenGL.Enums.All target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { - Delegates.glProgramEnvParameterI4uiNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w); + Delegates.glProgramEnvParameterI4uiNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w); } public static - void ProgramEnvParameterI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) + void ProgramEnvParameterI4(OpenTK.OpenGL.Enums.All target, Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { - Delegates.glProgramEnvParameterI4uiNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w); + Delegates.glProgramEnvParameterI4uiNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w); } [System.CLSCompliant(false)] public static - void ProgramEnvParameterI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, UInt32[] @params) + void ProgramEnvParameterI4(OpenTK.OpenGL.Enums.All target, UInt32 index, UInt32[] @params) { unsafe { fixed (UInt32* @params_ptr = @params) { - Delegates.glProgramEnvParameterI4uivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr); + Delegates.glProgramEnvParameterI4uivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32*)@params_ptr); } } } public static - void ProgramEnvParameterI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, Int32 index, Int32[] @params) + void ProgramEnvParameterI4(OpenTK.OpenGL.Enums.All target, Int32 index, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glProgramEnvParameterI4uivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr); + Delegates.glProgramEnvParameterI4uivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void ProgramEnvParameterI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, ref UInt32 @params) + void ProgramEnvParameterI4(OpenTK.OpenGL.Enums.All target, UInt32 index, ref UInt32 @params) { unsafe { fixed (UInt32* @params_ptr = &@params) { - Delegates.glProgramEnvParameterI4uivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr); + Delegates.glProgramEnvParameterI4uivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32*)@params_ptr); } } } public static - void ProgramEnvParameterI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, Int32 index, ref Int32 @params) + void ProgramEnvParameterI4(OpenTK.OpenGL.Enums.All target, Int32 index, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glProgramEnvParameterI4uivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr); + Delegates.glProgramEnvParameterI4uivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParameterI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, UInt32* @params) + unsafe void ProgramEnvParameterI4(OpenTK.OpenGL.Enums.All target, UInt32 index, UInt32* @params) { - Delegates.glProgramEnvParameterI4uivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params); + Delegates.glProgramEnvParameterI4uivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32*)@params); } [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParameterI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, Int32 index, Int32* @params) + unsafe void ProgramEnvParameterI4(OpenTK.OpenGL.Enums.All target, Int32 index, Int32* @params) { - Delegates.glProgramEnvParameterI4uivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params); + Delegates.glProgramEnvParameterI4uivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32*)@params); } [System.CLSCompliant(false)] public static - void ProgramEnvParametersI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, Int32 count, UInt32[] @params) + void ProgramEnvParametersI4(OpenTK.OpenGL.Enums.All target, UInt32 index, Int32 count, UInt32[] @params) { unsafe { fixed (UInt32* @params_ptr = @params) { - Delegates.glProgramEnvParametersI4uivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); + Delegates.glProgramEnvParametersI4uivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); } } } public static - void ProgramEnvParametersI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, Int32 index, Int32 count, Int32[] @params) + void ProgramEnvParametersI4(OpenTK.OpenGL.Enums.All target, Int32 index, Int32 count, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glProgramEnvParametersI4uivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); + Delegates.glProgramEnvParametersI4uivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void ProgramEnvParametersI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, Int32 count, ref UInt32 @params) + void ProgramEnvParametersI4(OpenTK.OpenGL.Enums.All target, UInt32 index, Int32 count, ref UInt32 @params) { unsafe { fixed (UInt32* @params_ptr = &@params) { - Delegates.glProgramEnvParametersI4uivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); + Delegates.glProgramEnvParametersI4uivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); } } } public static - void ProgramEnvParametersI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, Int32 index, Int32 count, ref Int32 @params) + void ProgramEnvParametersI4(OpenTK.OpenGL.Enums.All target, Int32 index, Int32 count, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glProgramEnvParametersI4uivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); + Delegates.glProgramEnvParametersI4uivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParametersI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, Int32 count, UInt32* @params) + unsafe void ProgramEnvParametersI4(OpenTK.OpenGL.Enums.All target, UInt32 index, Int32 count, UInt32* @params) { - Delegates.glProgramEnvParametersI4uivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (Int32)count, (UInt32*)@params); + Delegates.glProgramEnvParametersI4uivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32)count, (UInt32*)@params); } [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParametersI4(OpenTK.OpenGL.Enums.NvGpuProgram4 target, Int32 index, Int32 count, Int32* @params) + unsafe void ProgramEnvParametersI4(OpenTK.OpenGL.Enums.All target, Int32 index, Int32 count, Int32* @params) { - Delegates.glProgramEnvParametersI4uivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (Int32)count, (UInt32*)@params); + Delegates.glProgramEnvParametersI4uivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32)count, (UInt32*)@params); } [System.CLSCompliant(false)] public static - void GetProgramLocalParameterI(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, [Out] Int32[] @params) + void GetProgramLocalParameterI(OpenTK.OpenGL.Enums.All target, UInt32 index, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramLocalParameterIivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (Int32*)@params_ptr); + Delegates.glGetProgramLocalParameterIivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetProgramLocalParameterI(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, [Out] out Int32 @params) + void GetProgramLocalParameterI(OpenTK.OpenGL.Enums.All target, UInt32 index, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramLocalParameterIivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (Int32*)@params_ptr); + Delegates.glGetProgramLocalParameterIivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -36467,58 +20132,58 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetProgramLocalParameterI(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, [Out] Int32* @params) + unsafe void GetProgramLocalParameterI(OpenTK.OpenGL.Enums.All target, UInt32 index, [Out] Int32* @params) { - Delegates.glGetProgramLocalParameterIivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (Int32*)@params); + Delegates.glGetProgramLocalParameterIivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32*)@params); } [System.CLSCompliant(false)] public static - void GetProgramLocalParameterI(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, [Out] UInt32[] @params) + void GetProgramLocalParameterI(OpenTK.OpenGL.Enums.All target, UInt32 index, [Out] UInt32[] @params) { unsafe { fixed (UInt32* @params_ptr = @params) { - Delegates.glGetProgramLocalParameterIuivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr); + Delegates.glGetProgramLocalParameterIuivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32*)@params_ptr); } } } public static - void GetProgramLocalParameterI(OpenTK.OpenGL.Enums.NvGpuProgram4 target, Int32 index, [Out] Int32[] @params) + void GetProgramLocalParameterI(OpenTK.OpenGL.Enums.All target, Int32 index, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramLocalParameterIuivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr); + Delegates.glGetProgramLocalParameterIuivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetProgramLocalParameterI(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, [Out] out UInt32 @params) + void GetProgramLocalParameterI(OpenTK.OpenGL.Enums.All target, UInt32 index, [Out] out UInt32 @params) { unsafe { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetProgramLocalParameterIuivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr); + Delegates.glGetProgramLocalParameterIuivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32*)@params_ptr); @params = *@params_ptr; } } } public static - void GetProgramLocalParameterI(OpenTK.OpenGL.Enums.NvGpuProgram4 target, Int32 index, [Out] out Int32 @params) + void GetProgramLocalParameterI(OpenTK.OpenGL.Enums.All target, Int32 index, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramLocalParameterIuivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr); + Delegates.glGetProgramLocalParameterIuivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32*)@params_ptr); @params = *@params_ptr; } } @@ -36526,40 +20191,40 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetProgramLocalParameterI(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, [Out] UInt32* @params) + unsafe void GetProgramLocalParameterI(OpenTK.OpenGL.Enums.All target, UInt32 index, [Out] UInt32* @params) { - Delegates.glGetProgramLocalParameterIuivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params); + Delegates.glGetProgramLocalParameterIuivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetProgramLocalParameterI(OpenTK.OpenGL.Enums.NvGpuProgram4 target, Int32 index, [Out] Int32* @params) + unsafe void GetProgramLocalParameterI(OpenTK.OpenGL.Enums.All target, Int32 index, [Out] Int32* @params) { - Delegates.glGetProgramLocalParameterIuivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params); + Delegates.glGetProgramLocalParameterIuivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32*)@params); } [System.CLSCompliant(false)] public static - void GetProgramEnvParameterI(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, [Out] Int32[] @params) + void GetProgramEnvParameterI(OpenTK.OpenGL.Enums.All target, UInt32 index, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramEnvParameterIivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (Int32*)@params_ptr); + Delegates.glGetProgramEnvParameterIivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetProgramEnvParameterI(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, [Out] out Int32 @params) + void GetProgramEnvParameterI(OpenTK.OpenGL.Enums.All target, UInt32 index, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramEnvParameterIivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (Int32*)@params_ptr); + Delegates.glGetProgramEnvParameterIivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -36567,58 +20232,58 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetProgramEnvParameterI(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, [Out] Int32* @params) + unsafe void GetProgramEnvParameterI(OpenTK.OpenGL.Enums.All target, UInt32 index, [Out] Int32* @params) { - Delegates.glGetProgramEnvParameterIivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (Int32*)@params); + Delegates.glGetProgramEnvParameterIivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32*)@params); } [System.CLSCompliant(false)] public static - void GetProgramEnvParameterI(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, [Out] UInt32[] @params) + void GetProgramEnvParameterI(OpenTK.OpenGL.Enums.All target, UInt32 index, [Out] UInt32[] @params) { unsafe { fixed (UInt32* @params_ptr = @params) { - Delegates.glGetProgramEnvParameterIuivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr); + Delegates.glGetProgramEnvParameterIuivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32*)@params_ptr); } } } public static - void GetProgramEnvParameterI(OpenTK.OpenGL.Enums.NvGpuProgram4 target, Int32 index, [Out] Int32[] @params) + void GetProgramEnvParameterI(OpenTK.OpenGL.Enums.All target, Int32 index, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramEnvParameterIuivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr); + Delegates.glGetProgramEnvParameterIuivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetProgramEnvParameterI(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, [Out] out UInt32 @params) + void GetProgramEnvParameterI(OpenTK.OpenGL.Enums.All target, UInt32 index, [Out] out UInt32 @params) { unsafe { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetProgramEnvParameterIuivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr); + Delegates.glGetProgramEnvParameterIuivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32*)@params_ptr); @params = *@params_ptr; } } } public static - void GetProgramEnvParameterI(OpenTK.OpenGL.Enums.NvGpuProgram4 target, Int32 index, [Out] out Int32 @params) + void GetProgramEnvParameterI(OpenTK.OpenGL.Enums.All target, Int32 index, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramEnvParameterIuivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr); + Delegates.glGetProgramEnvParameterIuivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32*)@params_ptr); @params = *@params_ptr; } } @@ -36626,22 +20291,22 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetProgramEnvParameterI(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, [Out] UInt32* @params) + unsafe void GetProgramEnvParameterI(OpenTK.OpenGL.Enums.All target, UInt32 index, [Out] UInt32* @params) { - Delegates.glGetProgramEnvParameterIuivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params); + Delegates.glGetProgramEnvParameterIuivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetProgramEnvParameterI(OpenTK.OpenGL.Enums.NvGpuProgram4 target, Int32 index, [Out] Int32* @params) + unsafe void GetProgramEnvParameterI(OpenTK.OpenGL.Enums.All target, Int32 index, [Out] Int32* @params) { - Delegates.glGetProgramEnvParameterIuivNV((OpenTK.OpenGL.Enums.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params); + Delegates.glGetProgramEnvParameterIuivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32*)@params); } public static - void ProgramVertexLimit(OpenTK.OpenGL.Enums.NvGeometryProgram4 target, Int32 limit) + void ProgramVertexLimit(OpenTK.OpenGL.Enums.All target, Int32 limit) { - Delegates.glProgramVertexLimitNV((OpenTK.OpenGL.Enums.NvGeometryProgram4)target, (Int32)limit); + Delegates.glProgramVertexLimitNV((OpenTK.OpenGL.Enums.All)target, (Int32)limit); } public static @@ -36663,176 +20328,176 @@ namespace OpenTK.OpenGL } public static - void RenderbufferStorageMultisampleCoverage(OpenTK.OpenGL.Enums.NvFramebufferMultisampleCoverage target, Int32 coverageSamples, Int32 colorSamples, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height) + void RenderbufferStorageMultisampleCoverage(OpenTK.OpenGL.Enums.All target, Int32 coverageSamples, Int32 colorSamples, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height) { - Delegates.glRenderbufferStorageMultisampleCoverageNV((OpenTK.OpenGL.Enums.NvFramebufferMultisampleCoverage)target, (Int32)coverageSamples, (Int32)colorSamples, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height); + Delegates.glRenderbufferStorageMultisampleCoverageNV((OpenTK.OpenGL.Enums.All)target, (Int32)coverageSamples, (Int32)colorSamples, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height); } [System.CLSCompliant(false)] public static - void ProgramBufferParameters(OpenTK.OpenGL.Enums.NvParameterBufferObject target, UInt32 buffer, UInt32 index, Int32 count, Single[] @params) + void ProgramBufferParameters(OpenTK.OpenGL.Enums.All target, UInt32 buffer, UInt32 index, Int32 count, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glProgramBufferParametersfvNV((OpenTK.OpenGL.Enums.NvParameterBufferObject)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Single*)@params_ptr); + Delegates.glProgramBufferParametersfvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Single*)@params_ptr); } } } public static - void ProgramBufferParameters(OpenTK.OpenGL.Enums.NvParameterBufferObject target, Int32 buffer, Int32 index, Int32 count, Single[] @params) + void ProgramBufferParameters(OpenTK.OpenGL.Enums.All target, Int32 buffer, Int32 index, Int32 count, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glProgramBufferParametersfvNV((OpenTK.OpenGL.Enums.NvParameterBufferObject)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Single*)@params_ptr); + Delegates.glProgramBufferParametersfvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void ProgramBufferParameters(OpenTK.OpenGL.Enums.NvParameterBufferObject target, UInt32 buffer, UInt32 index, Int32 count, ref Single @params) + void ProgramBufferParameters(OpenTK.OpenGL.Enums.All target, UInt32 buffer, UInt32 index, Int32 count, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glProgramBufferParametersfvNV((OpenTK.OpenGL.Enums.NvParameterBufferObject)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Single*)@params_ptr); + Delegates.glProgramBufferParametersfvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Single*)@params_ptr); } } } public static - void ProgramBufferParameters(OpenTK.OpenGL.Enums.NvParameterBufferObject target, Int32 buffer, Int32 index, Int32 count, ref Single @params) + void ProgramBufferParameters(OpenTK.OpenGL.Enums.All target, Int32 buffer, Int32 index, Int32 count, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glProgramBufferParametersfvNV((OpenTK.OpenGL.Enums.NvParameterBufferObject)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Single*)@params_ptr); + Delegates.glProgramBufferParametersfvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ProgramBufferParameters(OpenTK.OpenGL.Enums.NvParameterBufferObject target, UInt32 buffer, UInt32 index, Int32 count, Single* @params) + unsafe void ProgramBufferParameters(OpenTK.OpenGL.Enums.All target, UInt32 buffer, UInt32 index, Int32 count, Single* @params) { - Delegates.glProgramBufferParametersfvNV((OpenTK.OpenGL.Enums.NvParameterBufferObject)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Single*)@params); + Delegates.glProgramBufferParametersfvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Single*)@params); } [System.CLSCompliant(false)] public static - unsafe void ProgramBufferParameters(OpenTK.OpenGL.Enums.NvParameterBufferObject target, Int32 buffer, Int32 index, Int32 count, Single* @params) + unsafe void ProgramBufferParameters(OpenTK.OpenGL.Enums.All target, Int32 buffer, Int32 index, Int32 count, Single* @params) { - Delegates.glProgramBufferParametersfvNV((OpenTK.OpenGL.Enums.NvParameterBufferObject)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Single*)@params); + Delegates.glProgramBufferParametersfvNV((OpenTK.OpenGL.Enums.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Single*)@params); } [System.CLSCompliant(false)] public static - void ProgramBufferParametersI(OpenTK.OpenGL.Enums.NvParameterBufferObject target, UInt32 buffer, UInt32 index, Int32 count, Int32[] @params) + void ProgramBufferParametersI(OpenTK.OpenGL.Enums.All target, UInt32 buffer, UInt32 index, Int32 count, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glProgramBufferParametersIivNV((OpenTK.OpenGL.Enums.NvParameterBufferObject)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Int32*)@params_ptr); + Delegates.glProgramBufferParametersIivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void ProgramBufferParametersI(OpenTK.OpenGL.Enums.NvParameterBufferObject target, UInt32 buffer, UInt32 index, Int32 count, ref Int32 @params) + void ProgramBufferParametersI(OpenTK.OpenGL.Enums.All target, UInt32 buffer, UInt32 index, Int32 count, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glProgramBufferParametersIivNV((OpenTK.OpenGL.Enums.NvParameterBufferObject)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Int32*)@params_ptr); + Delegates.glProgramBufferParametersIivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ProgramBufferParametersI(OpenTK.OpenGL.Enums.NvParameterBufferObject target, UInt32 buffer, UInt32 index, Int32 count, Int32* @params) + unsafe void ProgramBufferParametersI(OpenTK.OpenGL.Enums.All target, UInt32 buffer, UInt32 index, Int32 count, Int32* @params) { - Delegates.glProgramBufferParametersIivNV((OpenTK.OpenGL.Enums.NvParameterBufferObject)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Int32*)@params); + Delegates.glProgramBufferParametersIivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Int32*)@params); } [System.CLSCompliant(false)] public static - void ProgramBufferParametersI(OpenTK.OpenGL.Enums.NvParameterBufferObject target, UInt32 buffer, UInt32 index, Int32 count, UInt32[] @params) + void ProgramBufferParametersI(OpenTK.OpenGL.Enums.All target, UInt32 buffer, UInt32 index, Int32 count, UInt32[] @params) { unsafe { fixed (UInt32* @params_ptr = @params) { - Delegates.glProgramBufferParametersIuivNV((OpenTK.OpenGL.Enums.NvParameterBufferObject)target, (UInt32)buffer, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); + Delegates.glProgramBufferParametersIuivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); } } } public static - void ProgramBufferParametersI(OpenTK.OpenGL.Enums.NvParameterBufferObject target, Int32 buffer, Int32 index, Int32 count, Int32[] @params) + void ProgramBufferParametersI(OpenTK.OpenGL.Enums.All target, Int32 buffer, Int32 index, Int32 count, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glProgramBufferParametersIuivNV((OpenTK.OpenGL.Enums.NvParameterBufferObject)target, (UInt32)buffer, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); + Delegates.glProgramBufferParametersIuivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void ProgramBufferParametersI(OpenTK.OpenGL.Enums.NvParameterBufferObject target, UInt32 buffer, UInt32 index, Int32 count, ref UInt32 @params) + void ProgramBufferParametersI(OpenTK.OpenGL.Enums.All target, UInt32 buffer, UInt32 index, Int32 count, ref UInt32 @params) { unsafe { fixed (UInt32* @params_ptr = &@params) { - Delegates.glProgramBufferParametersIuivNV((OpenTK.OpenGL.Enums.NvParameterBufferObject)target, (UInt32)buffer, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); + Delegates.glProgramBufferParametersIuivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); } } } public static - void ProgramBufferParametersI(OpenTK.OpenGL.Enums.NvParameterBufferObject target, Int32 buffer, Int32 index, Int32 count, ref Int32 @params) + void ProgramBufferParametersI(OpenTK.OpenGL.Enums.All target, Int32 buffer, Int32 index, Int32 count, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glProgramBufferParametersIuivNV((OpenTK.OpenGL.Enums.NvParameterBufferObject)target, (UInt32)buffer, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); + Delegates.glProgramBufferParametersIuivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ProgramBufferParametersI(OpenTK.OpenGL.Enums.NvParameterBufferObject target, UInt32 buffer, UInt32 index, Int32 count, UInt32* @params) + unsafe void ProgramBufferParametersI(OpenTK.OpenGL.Enums.All target, UInt32 buffer, UInt32 index, Int32 count, UInt32* @params) { - Delegates.glProgramBufferParametersIuivNV((OpenTK.OpenGL.Enums.NvParameterBufferObject)target, (UInt32)buffer, (UInt32)index, (Int32)count, (UInt32*)@params); + Delegates.glProgramBufferParametersIuivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (UInt32*)@params); } [System.CLSCompliant(false)] public static - unsafe void ProgramBufferParametersI(OpenTK.OpenGL.Enums.NvParameterBufferObject target, Int32 buffer, Int32 index, Int32 count, Int32* @params) + unsafe void ProgramBufferParametersI(OpenTK.OpenGL.Enums.All target, Int32 buffer, Int32 index, Int32 count, Int32* @params) { - Delegates.glProgramBufferParametersIuivNV((OpenTK.OpenGL.Enums.NvParameterBufferObject)target, (UInt32)buffer, (UInt32)index, (Int32)count, (UInt32*)@params); + Delegates.glProgramBufferParametersIuivNV((OpenTK.OpenGL.Enums.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (UInt32*)@params); } public static - void BeginTransformFeedback(OpenTK.OpenGL.Enums.NvTransformFeedback primitiveMode) + void BeginTransformFeedback(OpenTK.OpenGL.Enums.All primitiveMode) { - Delegates.glBeginTransformFeedbackNV((OpenTK.OpenGL.Enums.NvTransformFeedback)primitiveMode); + Delegates.glBeginTransformFeedbackNV((OpenTK.OpenGL.Enums.All)primitiveMode); } public static @@ -36843,169 +20508,169 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void TransformFeedbackAttrib(UInt32 count, Int32[] attribs, OpenTK.OpenGL.Enums.NvTransformFeedback bufferMode) + void TransformFeedbackAttrib(UInt32 count, Int32[] attribs, OpenTK.OpenGL.Enums.All bufferMode) { unsafe { fixed (Int32* attribs_ptr = attribs) { - Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs_ptr, (OpenTK.OpenGL.Enums.NvTransformFeedback)bufferMode); + Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs_ptr, (OpenTK.OpenGL.Enums.All)bufferMode); } } } public static - void TransformFeedbackAttrib(Int32 count, Int32[] attribs, OpenTK.OpenGL.Enums.NvTransformFeedback bufferMode) + void TransformFeedbackAttrib(Int32 count, Int32[] attribs, OpenTK.OpenGL.Enums.All bufferMode) { unsafe { fixed (Int32* attribs_ptr = attribs) { - Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs_ptr, (OpenTK.OpenGL.Enums.NvTransformFeedback)bufferMode); + Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs_ptr, (OpenTK.OpenGL.Enums.All)bufferMode); } } } [System.CLSCompliant(false)] public static - void TransformFeedbackAttrib(UInt32 count, ref Int32 attribs, OpenTK.OpenGL.Enums.NvTransformFeedback bufferMode) + void TransformFeedbackAttrib(UInt32 count, ref Int32 attribs, OpenTK.OpenGL.Enums.All bufferMode) { unsafe { fixed (Int32* attribs_ptr = &attribs) { - Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs_ptr, (OpenTK.OpenGL.Enums.NvTransformFeedback)bufferMode); + Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs_ptr, (OpenTK.OpenGL.Enums.All)bufferMode); } } } public static - void TransformFeedbackAttrib(Int32 count, ref Int32 attribs, OpenTK.OpenGL.Enums.NvTransformFeedback bufferMode) + void TransformFeedbackAttrib(Int32 count, ref Int32 attribs, OpenTK.OpenGL.Enums.All bufferMode) { unsafe { fixed (Int32* attribs_ptr = &attribs) { - Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs_ptr, (OpenTK.OpenGL.Enums.NvTransformFeedback)bufferMode); + Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs_ptr, (OpenTK.OpenGL.Enums.All)bufferMode); } } } [System.CLSCompliant(false)] public static - unsafe void TransformFeedbackAttrib(UInt32 count, Int32* attribs, OpenTK.OpenGL.Enums.NvTransformFeedback bufferMode) + unsafe void TransformFeedbackAttrib(UInt32 count, Int32* attribs, OpenTK.OpenGL.Enums.All bufferMode) { - Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs, (OpenTK.OpenGL.Enums.NvTransformFeedback)bufferMode); + Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs, (OpenTK.OpenGL.Enums.All)bufferMode); } [System.CLSCompliant(false)] public static - unsafe void TransformFeedbackAttrib(Int32 count, Int32* attribs, OpenTK.OpenGL.Enums.NvTransformFeedback bufferMode) + unsafe void TransformFeedbackAttrib(Int32 count, Int32* attribs, OpenTK.OpenGL.Enums.All bufferMode) { - Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs, (OpenTK.OpenGL.Enums.NvTransformFeedback)bufferMode); + Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs, (OpenTK.OpenGL.Enums.All)bufferMode); } [System.CLSCompliant(false)] public static - void BindBufferRange(OpenTK.OpenGL.Enums.NvTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) + void BindBufferRange(OpenTK.OpenGL.Enums.All target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { - Delegates.glBindBufferRangeNV((OpenTK.OpenGL.Enums.NvTransformFeedback)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); + Delegates.glBindBufferRangeNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); } public static - void BindBufferRange(OpenTK.OpenGL.Enums.NvTransformFeedback target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) + void BindBufferRange(OpenTK.OpenGL.Enums.All target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { - Delegates.glBindBufferRangeNV((OpenTK.OpenGL.Enums.NvTransformFeedback)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); + Delegates.glBindBufferRangeNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); } [System.CLSCompliant(false)] public static - void BindBufferOffset(OpenTK.OpenGL.Enums.NvTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset) + void BindBufferOffset(OpenTK.OpenGL.Enums.All target, UInt32 index, UInt32 buffer, IntPtr offset) { - Delegates.glBindBufferOffsetNV((OpenTK.OpenGL.Enums.NvTransformFeedback)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset); + Delegates.glBindBufferOffsetNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset); } public static - void BindBufferOffset(OpenTK.OpenGL.Enums.NvTransformFeedback target, Int32 index, Int32 buffer, IntPtr offset) + void BindBufferOffset(OpenTK.OpenGL.Enums.All target, Int32 index, Int32 buffer, IntPtr offset) { - Delegates.glBindBufferOffsetNV((OpenTK.OpenGL.Enums.NvTransformFeedback)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset); + Delegates.glBindBufferOffsetNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset); } [System.CLSCompliant(false)] public static - void BindBufferBase(OpenTK.OpenGL.Enums.NvTransformFeedback target, UInt32 index, UInt32 buffer) + void BindBufferBase(OpenTK.OpenGL.Enums.All target, UInt32 index, UInt32 buffer) { - Delegates.glBindBufferBaseNV((OpenTK.OpenGL.Enums.NvTransformFeedback)target, (UInt32)index, (UInt32)buffer); + Delegates.glBindBufferBaseNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32)buffer); } public static - void BindBufferBase(OpenTK.OpenGL.Enums.NvTransformFeedback target, Int32 index, Int32 buffer) + void BindBufferBase(OpenTK.OpenGL.Enums.All target, Int32 index, Int32 buffer) { - Delegates.glBindBufferBaseNV((OpenTK.OpenGL.Enums.NvTransformFeedback)target, (UInt32)index, (UInt32)buffer); + Delegates.glBindBufferBaseNV((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (UInt32)buffer); } [System.CLSCompliant(false)] public static - void TransformFeedbackVarying(UInt32 program, Int32 count, Int32[] locations, OpenTK.OpenGL.Enums.NvTransformFeedback bufferMode) + void TransformFeedbackVarying(UInt32 program, Int32 count, Int32[] locations, OpenTK.OpenGL.Enums.All bufferMode) { unsafe { fixed (Int32* locations_ptr = locations) { - Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations_ptr, (OpenTK.OpenGL.Enums.NvTransformFeedback)bufferMode); + Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations_ptr, (OpenTK.OpenGL.Enums.All)bufferMode); } } } public static - void TransformFeedbackVarying(Int32 program, Int32 count, Int32[] locations, OpenTK.OpenGL.Enums.NvTransformFeedback bufferMode) + void TransformFeedbackVarying(Int32 program, Int32 count, Int32[] locations, OpenTK.OpenGL.Enums.All bufferMode) { unsafe { fixed (Int32* locations_ptr = locations) { - Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations_ptr, (OpenTK.OpenGL.Enums.NvTransformFeedback)bufferMode); + Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations_ptr, (OpenTK.OpenGL.Enums.All)bufferMode); } } } [System.CLSCompliant(false)] public static - void TransformFeedbackVarying(UInt32 program, Int32 count, ref Int32 locations, OpenTK.OpenGL.Enums.NvTransformFeedback bufferMode) + void TransformFeedbackVarying(UInt32 program, Int32 count, ref Int32 locations, OpenTK.OpenGL.Enums.All bufferMode) { unsafe { fixed (Int32* locations_ptr = &locations) { - Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations_ptr, (OpenTK.OpenGL.Enums.NvTransformFeedback)bufferMode); + Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations_ptr, (OpenTK.OpenGL.Enums.All)bufferMode); } } } public static - void TransformFeedbackVarying(Int32 program, Int32 count, ref Int32 locations, OpenTK.OpenGL.Enums.NvTransformFeedback bufferMode) + void TransformFeedbackVarying(Int32 program, Int32 count, ref Int32 locations, OpenTK.OpenGL.Enums.All bufferMode) { unsafe { fixed (Int32* locations_ptr = &locations) { - Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations_ptr, (OpenTK.OpenGL.Enums.NvTransformFeedback)bufferMode); + Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations_ptr, (OpenTK.OpenGL.Enums.All)bufferMode); } } } [System.CLSCompliant(false)] public static - unsafe void TransformFeedbackVarying(UInt32 program, Int32 count, Int32* locations, OpenTK.OpenGL.Enums.NvTransformFeedback bufferMode) + unsafe void TransformFeedbackVarying(UInt32 program, Int32 count, Int32* locations, OpenTK.OpenGL.Enums.All bufferMode) { - Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations, (OpenTK.OpenGL.Enums.NvTransformFeedback)bufferMode); + Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations, (OpenTK.OpenGL.Enums.All)bufferMode); } [System.CLSCompliant(false)] public static - unsafe void TransformFeedbackVarying(Int32 program, Int32 count, Int32* locations, OpenTK.OpenGL.Enums.NvTransformFeedback bufferMode) + unsafe void TransformFeedbackVarying(Int32 program, Int32 count, Int32* locations, OpenTK.OpenGL.Enums.All bufferMode) { - Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations, (OpenTK.OpenGL.Enums.NvTransformFeedback)bufferMode); + Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations, (OpenTK.OpenGL.Enums.All)bufferMode); } [System.CLSCompliant(false)] @@ -37036,44 +20701,44 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.OpenGL.Enums.NvTransformFeedback[] type, [Out] System.Text.StringBuilder name) + void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.OpenGL.Enums.All[] type, [Out] System.Text.StringBuilder name) { unsafe { fixed (Int32* length_ptr = length) fixed (Int32* size_ptr = size) - fixed (OpenTK.OpenGL.Enums.NvTransformFeedback* type_ptr = type) + fixed (OpenTK.OpenGL.Enums.All* type_ptr = type) { - Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.NvTransformFeedback*)type_ptr, (System.Text.StringBuilder)name); + Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.All*)type_ptr, (System.Text.StringBuilder)name); } } } public static - void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.OpenGL.Enums.NvTransformFeedback[] type, [Out] System.Text.StringBuilder name) + void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.OpenGL.Enums.All[] type, [Out] System.Text.StringBuilder name) { unsafe { fixed (Int32* length_ptr = length) fixed (Int32* size_ptr = size) - fixed (OpenTK.OpenGL.Enums.NvTransformFeedback* type_ptr = type) + fixed (OpenTK.OpenGL.Enums.All* type_ptr = type) { - Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.NvTransformFeedback*)type_ptr, (System.Text.StringBuilder)name); + Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.All*)type_ptr, (System.Text.StringBuilder)name); } } } [System.CLSCompliant(false)] public static - void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.OpenGL.Enums.NvTransformFeedback type, [Out] System.Text.StringBuilder name) + void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.OpenGL.Enums.All type, [Out] System.Text.StringBuilder name) { unsafe { fixed (Int32* length_ptr = &length) fixed (Int32* size_ptr = &size) - fixed (OpenTK.OpenGL.Enums.NvTransformFeedback* type_ptr = &type) + fixed (OpenTK.OpenGL.Enums.All* type_ptr = &type) { - Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.NvTransformFeedback*)type_ptr, (System.Text.StringBuilder)name); + Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.All*)type_ptr, (System.Text.StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -37082,15 +20747,15 @@ namespace OpenTK.OpenGL } public static - void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.OpenGL.Enums.NvTransformFeedback type, [Out] System.Text.StringBuilder name) + void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.OpenGL.Enums.All type, [Out] System.Text.StringBuilder name) { unsafe { fixed (Int32* length_ptr = &length) fixed (Int32* size_ptr = &size) - fixed (OpenTK.OpenGL.Enums.NvTransformFeedback* type_ptr = &type) + fixed (OpenTK.OpenGL.Enums.All* type_ptr = &type) { - Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.NvTransformFeedback*)type_ptr, (System.Text.StringBuilder)name); + Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.All*)type_ptr, (System.Text.StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -37100,16 +20765,16 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.OpenGL.Enums.NvTransformFeedback* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.OpenGL.Enums.All* type, [Out] System.Text.StringBuilder name) { - Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.OpenGL.Enums.NvTransformFeedback*)type, (System.Text.StringBuilder)name); + Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.OpenGL.Enums.All*)type, (System.Text.StringBuilder)name); } [System.CLSCompliant(false)] public static - unsafe void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.OpenGL.Enums.NvTransformFeedback* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.OpenGL.Enums.All* type, [Out] System.Text.StringBuilder name) { - Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.OpenGL.Enums.NvTransformFeedback*)type, (System.Text.StringBuilder)name); + Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.OpenGL.Enums.All*)type, (System.Text.StringBuilder)name); } [System.CLSCompliant(false)] @@ -37180,6 +20845,16352 @@ namespace OpenTK.OpenGL } + public static partial class Arb + { + public static + void ActiveTexture(OpenTK.OpenGL.Enums.TextureUnit texture) + { + Delegates.glActiveTextureARB((OpenTK.OpenGL.Enums.TextureUnit)texture); + } + + public static + void ClientActiveTexture(OpenTK.OpenGL.Enums.TextureUnit texture) + { + Delegates.glClientActiveTextureARB((OpenTK.OpenGL.Enums.TextureUnit)texture); + } + + public static + void MultiTexCoord1(OpenTK.OpenGL.Enums.TextureUnit target, Double s) + { + Delegates.glMultiTexCoord1dARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Double)s); + } + + public static + void MultiTexCoord1v(OpenTK.OpenGL.Enums.TextureUnit target, Double[] v) + { + unsafe + { + fixed (Double* v_ptr = v) + { + Delegates.glMultiTexCoord1dvARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Double*)v_ptr); + } + } + } + + public static + void MultiTexCoord1v(OpenTK.OpenGL.Enums.TextureUnit target, ref Double v) + { + unsafe + { + fixed (Double* v_ptr = &v) + { + Delegates.glMultiTexCoord1dvARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Double*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void MultiTexCoord1v(OpenTK.OpenGL.Enums.TextureUnit target, Double* v) + { + Delegates.glMultiTexCoord1dvARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Double*)v); + } + + public static + void MultiTexCoord1(OpenTK.OpenGL.Enums.TextureUnit target, Single s) + { + Delegates.glMultiTexCoord1fARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Single)s); + } + + public static + void MultiTexCoord1v(OpenTK.OpenGL.Enums.TextureUnit target, Single[] v) + { + unsafe + { + fixed (Single* v_ptr = v) + { + Delegates.glMultiTexCoord1fvARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Single*)v_ptr); + } + } + } + + public static + void MultiTexCoord1v(OpenTK.OpenGL.Enums.TextureUnit target, ref Single v) + { + unsafe + { + fixed (Single* v_ptr = &v) + { + Delegates.glMultiTexCoord1fvARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void MultiTexCoord1v(OpenTK.OpenGL.Enums.TextureUnit target, Single* v) + { + Delegates.glMultiTexCoord1fvARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Single*)v); + } + + public static + void MultiTexCoord1(OpenTK.OpenGL.Enums.TextureUnit target, Int32 s) + { + Delegates.glMultiTexCoord1iARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Int32)s); + } + + public static + void MultiTexCoord1v(OpenTK.OpenGL.Enums.TextureUnit target, Int32[] v) + { + unsafe + { + fixed (Int32* v_ptr = v) + { + Delegates.glMultiTexCoord1ivARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Int32*)v_ptr); + } + } + } + + public static + void MultiTexCoord1v(OpenTK.OpenGL.Enums.TextureUnit target, ref Int32 v) + { + unsafe + { + fixed (Int32* v_ptr = &v) + { + Delegates.glMultiTexCoord1ivARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Int32*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void MultiTexCoord1v(OpenTK.OpenGL.Enums.TextureUnit target, Int32* v) + { + Delegates.glMultiTexCoord1ivARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Int32*)v); + } + + public static + void MultiTexCoord1(OpenTK.OpenGL.Enums.TextureUnit target, Int16 s) + { + Delegates.glMultiTexCoord1sARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Int16)s); + } + + public static + void MultiTexCoord1v(OpenTK.OpenGL.Enums.TextureUnit target, Int16[] v) + { + unsafe + { + fixed (Int16* v_ptr = v) + { + Delegates.glMultiTexCoord1svARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Int16*)v_ptr); + } + } + } + + public static + void MultiTexCoord1v(OpenTK.OpenGL.Enums.TextureUnit target, ref Int16 v) + { + unsafe + { + fixed (Int16* v_ptr = &v) + { + Delegates.glMultiTexCoord1svARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Int16*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void MultiTexCoord1v(OpenTK.OpenGL.Enums.TextureUnit target, Int16* v) + { + Delegates.glMultiTexCoord1svARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Int16*)v); + } + + public static + void MultiTexCoord2(OpenTK.OpenGL.Enums.TextureUnit target, Double s, Double t) + { + Delegates.glMultiTexCoord2dARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Double)s, (Double)t); + } + + public static + void MultiTexCoord2(OpenTK.OpenGL.Enums.TextureUnit target, Double[] v) + { + unsafe + { + fixed (Double* v_ptr = v) + { + Delegates.glMultiTexCoord2dvARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Double*)v_ptr); + } + } + } + + public static + void MultiTexCoord2(OpenTK.OpenGL.Enums.TextureUnit target, ref Double v) + { + unsafe + { + fixed (Double* v_ptr = &v) + { + Delegates.glMultiTexCoord2dvARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Double*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void MultiTexCoord2(OpenTK.OpenGL.Enums.TextureUnit target, Double* v) + { + Delegates.glMultiTexCoord2dvARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Double*)v); + } + + public static + void MultiTexCoord2(OpenTK.OpenGL.Enums.TextureUnit target, Single s, Single t) + { + Delegates.glMultiTexCoord2fARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Single)s, (Single)t); + } + + public static + void MultiTexCoord2(OpenTK.OpenGL.Enums.TextureUnit target, Single[] v) + { + unsafe + { + fixed (Single* v_ptr = v) + { + Delegates.glMultiTexCoord2fvARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Single*)v_ptr); + } + } + } + + public static + void MultiTexCoord2(OpenTK.OpenGL.Enums.TextureUnit target, ref Single v) + { + unsafe + { + fixed (Single* v_ptr = &v) + { + Delegates.glMultiTexCoord2fvARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void MultiTexCoord2(OpenTK.OpenGL.Enums.TextureUnit target, Single* v) + { + Delegates.glMultiTexCoord2fvARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Single*)v); + } + + public static + void MultiTexCoord2(OpenTK.OpenGL.Enums.TextureUnit target, Int32 s, Int32 t) + { + Delegates.glMultiTexCoord2iARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Int32)s, (Int32)t); + } + + public static + void MultiTexCoord2(OpenTK.OpenGL.Enums.TextureUnit target, Int32[] v) + { + unsafe + { + fixed (Int32* v_ptr = v) + { + Delegates.glMultiTexCoord2ivARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Int32*)v_ptr); + } + } + } + + public static + void MultiTexCoord2(OpenTK.OpenGL.Enums.TextureUnit target, ref Int32 v) + { + unsafe + { + fixed (Int32* v_ptr = &v) + { + Delegates.glMultiTexCoord2ivARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Int32*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void MultiTexCoord2(OpenTK.OpenGL.Enums.TextureUnit target, Int32* v) + { + Delegates.glMultiTexCoord2ivARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Int32*)v); + } + + public static + void MultiTexCoord2(OpenTK.OpenGL.Enums.TextureUnit target, Int16 s, Int16 t) + { + Delegates.glMultiTexCoord2sARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Int16)s, (Int16)t); + } + + public static + void MultiTexCoord2(OpenTK.OpenGL.Enums.TextureUnit target, Int16[] v) + { + unsafe + { + fixed (Int16* v_ptr = v) + { + Delegates.glMultiTexCoord2svARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Int16*)v_ptr); + } + } + } + + public static + void MultiTexCoord2(OpenTK.OpenGL.Enums.TextureUnit target, ref Int16 v) + { + unsafe + { + fixed (Int16* v_ptr = &v) + { + Delegates.glMultiTexCoord2svARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Int16*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void MultiTexCoord2(OpenTK.OpenGL.Enums.TextureUnit target, Int16* v) + { + Delegates.glMultiTexCoord2svARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Int16*)v); + } + + public static + void MultiTexCoord3(OpenTK.OpenGL.Enums.TextureUnit target, Double s, Double t, Double r) + { + Delegates.glMultiTexCoord3dARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Double)s, (Double)t, (Double)r); + } + + public static + void MultiTexCoord3(OpenTK.OpenGL.Enums.TextureUnit target, Double[] v) + { + unsafe + { + fixed (Double* v_ptr = v) + { + Delegates.glMultiTexCoord3dvARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Double*)v_ptr); + } + } + } + + public static + void MultiTexCoord3(OpenTK.OpenGL.Enums.TextureUnit target, ref Double v) + { + unsafe + { + fixed (Double* v_ptr = &v) + { + Delegates.glMultiTexCoord3dvARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Double*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void MultiTexCoord3(OpenTK.OpenGL.Enums.TextureUnit target, Double* v) + { + Delegates.glMultiTexCoord3dvARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Double*)v); + } + + public static + void MultiTexCoord3(OpenTK.OpenGL.Enums.TextureUnit target, Single s, Single t, Single r) + { + Delegates.glMultiTexCoord3fARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Single)s, (Single)t, (Single)r); + } + + public static + void MultiTexCoord3(OpenTK.OpenGL.Enums.TextureUnit target, Single[] v) + { + unsafe + { + fixed (Single* v_ptr = v) + { + Delegates.glMultiTexCoord3fvARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Single*)v_ptr); + } + } + } + + public static + void MultiTexCoord3(OpenTK.OpenGL.Enums.TextureUnit target, ref Single v) + { + unsafe + { + fixed (Single* v_ptr = &v) + { + Delegates.glMultiTexCoord3fvARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void MultiTexCoord3(OpenTK.OpenGL.Enums.TextureUnit target, Single* v) + { + Delegates.glMultiTexCoord3fvARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Single*)v); + } + + public static + void MultiTexCoord3(OpenTK.OpenGL.Enums.TextureUnit target, Int32 s, Int32 t, Int32 r) + { + Delegates.glMultiTexCoord3iARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Int32)s, (Int32)t, (Int32)r); + } + + public static + void MultiTexCoord3(OpenTK.OpenGL.Enums.TextureUnit target, Int32[] v) + { + unsafe + { + fixed (Int32* v_ptr = v) + { + Delegates.glMultiTexCoord3ivARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Int32*)v_ptr); + } + } + } + + public static + void MultiTexCoord3(OpenTK.OpenGL.Enums.TextureUnit target, ref Int32 v) + { + unsafe + { + fixed (Int32* v_ptr = &v) + { + Delegates.glMultiTexCoord3ivARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Int32*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void MultiTexCoord3(OpenTK.OpenGL.Enums.TextureUnit target, Int32* v) + { + Delegates.glMultiTexCoord3ivARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Int32*)v); + } + + public static + void MultiTexCoord3(OpenTK.OpenGL.Enums.TextureUnit target, Int16 s, Int16 t, Int16 r) + { + Delegates.glMultiTexCoord3sARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Int16)s, (Int16)t, (Int16)r); + } + + public static + void MultiTexCoord3(OpenTK.OpenGL.Enums.TextureUnit target, Int16[] v) + { + unsafe + { + fixed (Int16* v_ptr = v) + { + Delegates.glMultiTexCoord3svARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Int16*)v_ptr); + } + } + } + + public static + void MultiTexCoord3(OpenTK.OpenGL.Enums.TextureUnit target, ref Int16 v) + { + unsafe + { + fixed (Int16* v_ptr = &v) + { + Delegates.glMultiTexCoord3svARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Int16*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void MultiTexCoord3(OpenTK.OpenGL.Enums.TextureUnit target, Int16* v) + { + Delegates.glMultiTexCoord3svARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Int16*)v); + } + + public static + void MultiTexCoord4(OpenTK.OpenGL.Enums.TextureUnit target, Double s, Double t, Double r, Double q) + { + Delegates.glMultiTexCoord4dARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Double)s, (Double)t, (Double)r, (Double)q); + } + + public static + void MultiTexCoord4(OpenTK.OpenGL.Enums.TextureUnit target, Double[] v) + { + unsafe + { + fixed (Double* v_ptr = v) + { + Delegates.glMultiTexCoord4dvARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Double*)v_ptr); + } + } + } + + public static + void MultiTexCoord4(OpenTK.OpenGL.Enums.TextureUnit target, ref Double v) + { + unsafe + { + fixed (Double* v_ptr = &v) + { + Delegates.glMultiTexCoord4dvARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Double*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void MultiTexCoord4(OpenTK.OpenGL.Enums.TextureUnit target, Double* v) + { + Delegates.glMultiTexCoord4dvARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Double*)v); + } + + public static + void MultiTexCoord4(OpenTK.OpenGL.Enums.TextureUnit target, Single s, Single t, Single r, Single q) + { + Delegates.glMultiTexCoord4fARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Single)s, (Single)t, (Single)r, (Single)q); + } + + public static + void MultiTexCoord4(OpenTK.OpenGL.Enums.TextureUnit target, Single[] v) + { + unsafe + { + fixed (Single* v_ptr = v) + { + Delegates.glMultiTexCoord4fvARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Single*)v_ptr); + } + } + } + + public static + void MultiTexCoord4(OpenTK.OpenGL.Enums.TextureUnit target, ref Single v) + { + unsafe + { + fixed (Single* v_ptr = &v) + { + Delegates.glMultiTexCoord4fvARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void MultiTexCoord4(OpenTK.OpenGL.Enums.TextureUnit target, Single* v) + { + Delegates.glMultiTexCoord4fvARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Single*)v); + } + + public static + void MultiTexCoord4(OpenTK.OpenGL.Enums.TextureUnit target, Int32 s, Int32 t, Int32 r, Int32 q) + { + Delegates.glMultiTexCoord4iARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Int32)s, (Int32)t, (Int32)r, (Int32)q); + } + + public static + void MultiTexCoord4(OpenTK.OpenGL.Enums.TextureUnit target, Int32[] v) + { + unsafe + { + fixed (Int32* v_ptr = v) + { + Delegates.glMultiTexCoord4ivARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Int32*)v_ptr); + } + } + } + + public static + void MultiTexCoord4(OpenTK.OpenGL.Enums.TextureUnit target, ref Int32 v) + { + unsafe + { + fixed (Int32* v_ptr = &v) + { + Delegates.glMultiTexCoord4ivARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Int32*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void MultiTexCoord4(OpenTK.OpenGL.Enums.TextureUnit target, Int32* v) + { + Delegates.glMultiTexCoord4ivARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Int32*)v); + } + + public static + void MultiTexCoord4(OpenTK.OpenGL.Enums.TextureUnit target, Int16 s, Int16 t, Int16 r, Int16 q) + { + Delegates.glMultiTexCoord4sARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Int16)s, (Int16)t, (Int16)r, (Int16)q); + } + + public static + void MultiTexCoord4(OpenTK.OpenGL.Enums.TextureUnit target, Int16[] v) + { + unsafe + { + fixed (Int16* v_ptr = v) + { + Delegates.glMultiTexCoord4svARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Int16*)v_ptr); + } + } + } + + public static + void MultiTexCoord4(OpenTK.OpenGL.Enums.TextureUnit target, ref Int16 v) + { + unsafe + { + fixed (Int16* v_ptr = &v) + { + Delegates.glMultiTexCoord4svARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Int16*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void MultiTexCoord4(OpenTK.OpenGL.Enums.TextureUnit target, Int16* v) + { + Delegates.glMultiTexCoord4svARB((OpenTK.OpenGL.Enums.TextureUnit)target, (Int16*)v); + } + + public static + void LoadTransposeMatrix(Single[] m) + { + unsafe + { + fixed (Single* m_ptr = m) + { + Delegates.glLoadTransposeMatrixfARB((Single*)m_ptr); + } + } + } + + public static + void LoadTransposeMatrix(ref Single m) + { + unsafe + { + fixed (Single* m_ptr = &m) + { + Delegates.glLoadTransposeMatrixfARB((Single*)m_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void LoadTransposeMatrix(Single* m) + { + Delegates.glLoadTransposeMatrixfARB((Single*)m); + } + + public static + void LoadTransposeMatrix(Double[] m) + { + unsafe + { + fixed (Double* m_ptr = m) + { + Delegates.glLoadTransposeMatrixdARB((Double*)m_ptr); + } + } + } + + public static + void LoadTransposeMatrix(ref Double m) + { + unsafe + { + fixed (Double* m_ptr = &m) + { + Delegates.glLoadTransposeMatrixdARB((Double*)m_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void LoadTransposeMatrix(Double* m) + { + Delegates.glLoadTransposeMatrixdARB((Double*)m); + } + + public static + void MultTransposeMatrix(Single[] m) + { + unsafe + { + fixed (Single* m_ptr = m) + { + Delegates.glMultTransposeMatrixfARB((Single*)m_ptr); + } + } + } + + public static + void MultTransposeMatrix(ref Single m) + { + unsafe + { + fixed (Single* m_ptr = &m) + { + Delegates.glMultTransposeMatrixfARB((Single*)m_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void MultTransposeMatrix(Single* m) + { + Delegates.glMultTransposeMatrixfARB((Single*)m); + } + + public static + void MultTransposeMatrix(Double[] m) + { + unsafe + { + fixed (Double* m_ptr = m) + { + Delegates.glMultTransposeMatrixdARB((Double*)m_ptr); + } + } + } + + public static + void MultTransposeMatrix(ref Double m) + { + unsafe + { + fixed (Double* m_ptr = &m) + { + Delegates.glMultTransposeMatrixdARB((Double*)m_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void MultTransposeMatrix(Double* m) + { + Delegates.glMultTransposeMatrixdARB((Double*)m); + } + + public static + void SampleCoverage(Single value, bool invert) + { + Delegates.glSampleCoverageARB((Single)value, (bool)invert); + } + + public static + void CompressedTexImage3D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, IntPtr data) + { + unsafe + { + Delegates.glCompressedTexImage3DARB((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data); + } + } + + public static + void CompressedTexImage3D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [In, Out] object data) + { + unsafe + { + System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glCompressedTexImage3DARB((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + } + finally + { + data_ptr.Free(); + } + } + } + + public static + void CompressedTexImage2D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, IntPtr data) + { + unsafe + { + Delegates.glCompressedTexImage2DARB((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data); + } + } + + public static + void CompressedTexImage2D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [In, Out] object data) + { + unsafe + { + System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glCompressedTexImage2DARB((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + } + finally + { + data_ptr.Free(); + } + } + } + + public static + void CompressedTexImage1D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, IntPtr data) + { + unsafe + { + Delegates.glCompressedTexImage1DARB((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data); + } + } + + public static + void CompressedTexImage1D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [In, Out] object data) + { + unsafe + { + System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glCompressedTexImage1DARB((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + } + finally + { + data_ptr.Free(); + } + } + } + + public static + void CompressedTexSubImage3D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.OpenGL.Enums.PixelFormat format, Int32 imageSize, IntPtr data) + { + unsafe + { + Delegates.glCompressedTexSubImage3DARB((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.OpenGL.Enums.PixelFormat)format, (Int32)imageSize, (IntPtr)data); + } + } + + public static + void CompressedTexSubImage3D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.OpenGL.Enums.PixelFormat format, Int32 imageSize, [In, Out] object data) + { + unsafe + { + System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glCompressedTexSubImage3DARB((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.OpenGL.Enums.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + } + finally + { + data_ptr.Free(); + } + } + } + + public static + void CompressedTexSubImage2D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.OpenGL.Enums.PixelFormat format, Int32 imageSize, IntPtr data) + { + unsafe + { + Delegates.glCompressedTexSubImage2DARB((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.OpenGL.Enums.PixelFormat)format, (Int32)imageSize, (IntPtr)data); + } + } + + public static + void CompressedTexSubImage2D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.OpenGL.Enums.PixelFormat format, Int32 imageSize, [In, Out] object data) + { + unsafe + { + System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glCompressedTexSubImage2DARB((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.OpenGL.Enums.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + } + finally + { + data_ptr.Free(); + } + } + } + + public static + void CompressedTexSubImage1D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, Int32 imageSize, IntPtr data) + { + unsafe + { + Delegates.glCompressedTexSubImage1DARB((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.OpenGL.Enums.PixelFormat)format, (Int32)imageSize, (IntPtr)data); + } + } + + public static + void CompressedTexSubImage1D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, Int32 imageSize, [In, Out] object data) + { + unsafe + { + System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glCompressedTexSubImage1DARB((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.OpenGL.Enums.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + } + finally + { + data_ptr.Free(); + } + } + } + + public static + void GetCompressedTexImage(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, [Out] IntPtr img) + { + unsafe + { + Delegates.glGetCompressedTexImageARB((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (IntPtr)img); + } + } + + public static + void GetCompressedTexImage(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, [In, Out] object img) + { + unsafe + { + System.Runtime.InteropServices.GCHandle img_ptr = System.Runtime.InteropServices.GCHandle.Alloc(img, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glGetCompressedTexImageARB((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (IntPtr)img_ptr.AddrOfPinnedObject()); + } + finally + { + img_ptr.Free(); + } + } + } + + public static + void PointParameter(OpenTK.OpenGL.Enums.All pname, Single param) + { + Delegates.glPointParameterfARB((OpenTK.OpenGL.Enums.All)pname, (Single)param); + } + + public static + void PointParameterv(OpenTK.OpenGL.Enums.All pname, Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glPointParameterfvARB((OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + } + } + } + + public static + void PointParameterv(OpenTK.OpenGL.Enums.All pname, ref Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glPointParameterfvARB((OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void PointParameterv(OpenTK.OpenGL.Enums.All pname, Single* @params) + { + Delegates.glPointParameterfvARB((OpenTK.OpenGL.Enums.All)pname, (Single*)@params); + } + + [System.CLSCompliant(false)] + public static + void Weight(Int32 size, SByte[] weights) + { + unsafe + { + fixed (SByte* weights_ptr = weights) + { + Delegates.glWeightbvARB((Int32)size, (SByte*)weights_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void Weight(Int32 size, ref SByte weights) + { + unsafe + { + fixed (SByte* weights_ptr = &weights) + { + Delegates.glWeightbvARB((Int32)size, (SByte*)weights_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Weight(Int32 size, SByte* weights) + { + Delegates.glWeightbvARB((Int32)size, (SByte*)weights); + } + + public static + void Weight(Int32 size, Single[] weights) + { + unsafe + { + fixed (Single* weights_ptr = weights) + { + Delegates.glWeightfvARB((Int32)size, (Single*)weights_ptr); + } + } + } + + public static + void Weight(Int32 size, ref Single weights) + { + unsafe + { + fixed (Single* weights_ptr = &weights) + { + Delegates.glWeightfvARB((Int32)size, (Single*)weights_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Weight(Int32 size, Single* weights) + { + Delegates.glWeightfvARB((Int32)size, (Single*)weights); + } + + public static + void Weight(Int32 size, Double[] weights) + { + unsafe + { + fixed (Double* weights_ptr = weights) + { + Delegates.glWeightdvARB((Int32)size, (Double*)weights_ptr); + } + } + } + + public static + void Weight(Int32 size, ref Double weights) + { + unsafe + { + fixed (Double* weights_ptr = &weights) + { + Delegates.glWeightdvARB((Int32)size, (Double*)weights_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Weight(Int32 size, Double* weights) + { + Delegates.glWeightdvARB((Int32)size, (Double*)weights); + } + + public static + void Weight(Int32 size, Byte[] weights) + { + unsafe + { + fixed (Byte* weights_ptr = weights) + { + Delegates.glWeightubvARB((Int32)size, (Byte*)weights_ptr); + } + } + } + + public static + void Weight(Int32 size, ref Byte weights) + { + unsafe + { + fixed (Byte* weights_ptr = &weights) + { + Delegates.glWeightubvARB((Int32)size, (Byte*)weights_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Weight(Int32 size, Byte* weights) + { + Delegates.glWeightubvARB((Int32)size, (Byte*)weights); + } + + [System.CLSCompliant(false)] + public static + void Weight(Int32 size, UInt16[] weights) + { + unsafe + { + fixed (UInt16* weights_ptr = weights) + { + Delegates.glWeightusvARB((Int32)size, (UInt16*)weights_ptr); + } + } + } + + public static + void Weight(Int32 size, Int16[] weights) + { + unsafe + { + fixed (Int16* weights_ptr = weights) + { + Delegates.glWeightusvARB((Int32)size, (UInt16*)weights_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void Weight(Int32 size, ref UInt16 weights) + { + unsafe + { + fixed (UInt16* weights_ptr = &weights) + { + Delegates.glWeightusvARB((Int32)size, (UInt16*)weights_ptr); + } + } + } + + public static + void Weight(Int32 size, ref Int16 weights) + { + unsafe + { + fixed (Int16* weights_ptr = &weights) + { + Delegates.glWeightusvARB((Int32)size, (UInt16*)weights_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Weight(Int32 size, UInt16* weights) + { + Delegates.glWeightusvARB((Int32)size, (UInt16*)weights); + } + + [System.CLSCompliant(false)] + public static + unsafe void Weight(Int32 size, Int16* weights) + { + Delegates.glWeightusvARB((Int32)size, (UInt16*)weights); + } + + [System.CLSCompliant(false)] + public static + void Weight(Int32 size, UInt32[] weights) + { + unsafe + { + fixed (UInt32* weights_ptr = weights) + { + Delegates.glWeightuivARB((Int32)size, (UInt32*)weights_ptr); + } + } + } + + public static + void Weight(Int32 size, Int32[] weights) + { + unsafe + { + fixed (Int32* weights_ptr = weights) + { + Delegates.glWeightuivARB((Int32)size, (UInt32*)weights_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void Weight(Int32 size, ref UInt32 weights) + { + unsafe + { + fixed (UInt32* weights_ptr = &weights) + { + Delegates.glWeightuivARB((Int32)size, (UInt32*)weights_ptr); + } + } + } + + public static + void Weight(Int32 size, ref Int32 weights) + { + unsafe + { + fixed (Int32* weights_ptr = &weights) + { + Delegates.glWeightuivARB((Int32)size, (UInt32*)weights_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Weight(Int32 size, UInt32* weights) + { + Delegates.glWeightuivARB((Int32)size, (UInt32*)weights); + } + + [System.CLSCompliant(false)] + public static + unsafe void Weight(Int32 size, Int32* weights) + { + Delegates.glWeightuivARB((Int32)size, (UInt32*)weights); + } + + public static + void WeightPointer(Int32 size, OpenTK.OpenGL.Enums.All type, Int32 stride, IntPtr pointer) + { + unsafe + { + Delegates.glWeightPointerARB((Int32)size, (OpenTK.OpenGL.Enums.All)type, (Int32)stride, (IntPtr)pointer); + } + } + + public static + void WeightPointer(Int32 size, OpenTK.OpenGL.Enums.All type, Int32 stride, [In, Out] object pointer) + { + unsafe + { + System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glWeightPointerARB((Int32)size, (OpenTK.OpenGL.Enums.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + } + finally + { + pointer_ptr.Free(); + } + } + } + + public static + void VertexBlend(Int32 count) + { + Delegates.glVertexBlendARB((Int32)count); + } + + public static + void CurrentPaletteMatrix(Int32 index) + { + Delegates.glCurrentPaletteMatrixARB((Int32)index); + } + + public static + void MatrixIndex(Int32 size, Byte[] indices) + { + unsafe + { + fixed (Byte* indices_ptr = indices) + { + Delegates.glMatrixIndexubvARB((Int32)size, (Byte*)indices_ptr); + } + } + } + + public static + void MatrixIndex(Int32 size, ref Byte indices) + { + unsafe + { + fixed (Byte* indices_ptr = &indices) + { + Delegates.glMatrixIndexubvARB((Int32)size, (Byte*)indices_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void MatrixIndex(Int32 size, Byte* indices) + { + Delegates.glMatrixIndexubvARB((Int32)size, (Byte*)indices); + } + + [System.CLSCompliant(false)] + public static + void MatrixIndex(Int32 size, UInt16[] indices) + { + unsafe + { + fixed (UInt16* indices_ptr = indices) + { + Delegates.glMatrixIndexusvARB((Int32)size, (UInt16*)indices_ptr); + } + } + } + + public static + void MatrixIndex(Int32 size, Int16[] indices) + { + unsafe + { + fixed (Int16* indices_ptr = indices) + { + Delegates.glMatrixIndexusvARB((Int32)size, (UInt16*)indices_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void MatrixIndex(Int32 size, ref UInt16 indices) + { + unsafe + { + fixed (UInt16* indices_ptr = &indices) + { + Delegates.glMatrixIndexusvARB((Int32)size, (UInt16*)indices_ptr); + } + } + } + + public static + void MatrixIndex(Int32 size, ref Int16 indices) + { + unsafe + { + fixed (Int16* indices_ptr = &indices) + { + Delegates.glMatrixIndexusvARB((Int32)size, (UInt16*)indices_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void MatrixIndex(Int32 size, UInt16* indices) + { + Delegates.glMatrixIndexusvARB((Int32)size, (UInt16*)indices); + } + + [System.CLSCompliant(false)] + public static + unsafe void MatrixIndex(Int32 size, Int16* indices) + { + Delegates.glMatrixIndexusvARB((Int32)size, (UInt16*)indices); + } + + [System.CLSCompliant(false)] + public static + void MatrixIndex(Int32 size, UInt32[] indices) + { + unsafe + { + fixed (UInt32* indices_ptr = indices) + { + Delegates.glMatrixIndexuivARB((Int32)size, (UInt32*)indices_ptr); + } + } + } + + public static + void MatrixIndex(Int32 size, Int32[] indices) + { + unsafe + { + fixed (Int32* indices_ptr = indices) + { + Delegates.glMatrixIndexuivARB((Int32)size, (UInt32*)indices_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void MatrixIndex(Int32 size, ref UInt32 indices) + { + unsafe + { + fixed (UInt32* indices_ptr = &indices) + { + Delegates.glMatrixIndexuivARB((Int32)size, (UInt32*)indices_ptr); + } + } + } + + public static + void MatrixIndex(Int32 size, ref Int32 indices) + { + unsafe + { + fixed (Int32* indices_ptr = &indices) + { + Delegates.glMatrixIndexuivARB((Int32)size, (UInt32*)indices_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void MatrixIndex(Int32 size, UInt32* indices) + { + Delegates.glMatrixIndexuivARB((Int32)size, (UInt32*)indices); + } + + [System.CLSCompliant(false)] + public static + unsafe void MatrixIndex(Int32 size, Int32* indices) + { + Delegates.glMatrixIndexuivARB((Int32)size, (UInt32*)indices); + } + + public static + void MatrixIndexPointer(Int32 size, OpenTK.OpenGL.Enums.All type, Int32 stride, IntPtr pointer) + { + unsafe + { + Delegates.glMatrixIndexPointerARB((Int32)size, (OpenTK.OpenGL.Enums.All)type, (Int32)stride, (IntPtr)pointer); + } + } + + public static + void MatrixIndexPointer(Int32 size, OpenTK.OpenGL.Enums.All type, Int32 stride, [In, Out] object pointer) + { + unsafe + { + System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glMatrixIndexPointerARB((Int32)size, (OpenTK.OpenGL.Enums.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + } + finally + { + pointer_ptr.Free(); + } + } + } + + public static + void WindowPos2(Double x, Double y) + { + Delegates.glWindowPos2dARB((Double)x, (Double)y); + } + + public static + void WindowPos2(Double[] v) + { + unsafe + { + fixed (Double* v_ptr = v) + { + Delegates.glWindowPos2dvARB((Double*)v_ptr); + } + } + } + + public static + void WindowPos2(ref Double v) + { + unsafe + { + fixed (Double* v_ptr = &v) + { + Delegates.glWindowPos2dvARB((Double*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void WindowPos2(Double* v) + { + Delegates.glWindowPos2dvARB((Double*)v); + } + + public static + void WindowPos2(Single x, Single y) + { + Delegates.glWindowPos2fARB((Single)x, (Single)y); + } + + public static + void WindowPos2(Single[] v) + { + unsafe + { + fixed (Single* v_ptr = v) + { + Delegates.glWindowPos2fvARB((Single*)v_ptr); + } + } + } + + public static + void WindowPos2(ref Single v) + { + unsafe + { + fixed (Single* v_ptr = &v) + { + Delegates.glWindowPos2fvARB((Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void WindowPos2(Single* v) + { + Delegates.glWindowPos2fvARB((Single*)v); + } + + public static + void WindowPos2(Int32 x, Int32 y) + { + Delegates.glWindowPos2iARB((Int32)x, (Int32)y); + } + + public static + void WindowPos2(Int32[] v) + { + unsafe + { + fixed (Int32* v_ptr = v) + { + Delegates.glWindowPos2ivARB((Int32*)v_ptr); + } + } + } + + public static + void WindowPos2(ref Int32 v) + { + unsafe + { + fixed (Int32* v_ptr = &v) + { + Delegates.glWindowPos2ivARB((Int32*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void WindowPos2(Int32* v) + { + Delegates.glWindowPos2ivARB((Int32*)v); + } + + public static + void WindowPos2(Int16 x, Int16 y) + { + Delegates.glWindowPos2sARB((Int16)x, (Int16)y); + } + + public static + void WindowPos2(Int16[] v) + { + unsafe + { + fixed (Int16* v_ptr = v) + { + Delegates.glWindowPos2svARB((Int16*)v_ptr); + } + } + } + + public static + void WindowPos2(ref Int16 v) + { + unsafe + { + fixed (Int16* v_ptr = &v) + { + Delegates.glWindowPos2svARB((Int16*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void WindowPos2(Int16* v) + { + Delegates.glWindowPos2svARB((Int16*)v); + } + + public static + void WindowPos3(Double x, Double y, Double z) + { + Delegates.glWindowPos3dARB((Double)x, (Double)y, (Double)z); + } + + public static + void WindowPos3(Double[] v) + { + unsafe + { + fixed (Double* v_ptr = v) + { + Delegates.glWindowPos3dvARB((Double*)v_ptr); + } + } + } + + public static + void WindowPos3(ref Double v) + { + unsafe + { + fixed (Double* v_ptr = &v) + { + Delegates.glWindowPos3dvARB((Double*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void WindowPos3(Double* v) + { + Delegates.glWindowPos3dvARB((Double*)v); + } + + public static + void WindowPos3(Single x, Single y, Single z) + { + Delegates.glWindowPos3fARB((Single)x, (Single)y, (Single)z); + } + + public static + void WindowPos3(Single[] v) + { + unsafe + { + fixed (Single* v_ptr = v) + { + Delegates.glWindowPos3fvARB((Single*)v_ptr); + } + } + } + + public static + void WindowPos3(ref Single v) + { + unsafe + { + fixed (Single* v_ptr = &v) + { + Delegates.glWindowPos3fvARB((Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void WindowPos3(Single* v) + { + Delegates.glWindowPos3fvARB((Single*)v); + } + + public static + void WindowPos3(Int32 x, Int32 y, Int32 z) + { + Delegates.glWindowPos3iARB((Int32)x, (Int32)y, (Int32)z); + } + + public static + void WindowPos3(Int32[] v) + { + unsafe + { + fixed (Int32* v_ptr = v) + { + Delegates.glWindowPos3ivARB((Int32*)v_ptr); + } + } + } + + public static + void WindowPos3(ref Int32 v) + { + unsafe + { + fixed (Int32* v_ptr = &v) + { + Delegates.glWindowPos3ivARB((Int32*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void WindowPos3(Int32* v) + { + Delegates.glWindowPos3ivARB((Int32*)v); + } + + public static + void WindowPos3(Int16 x, Int16 y, Int16 z) + { + Delegates.glWindowPos3sARB((Int16)x, (Int16)y, (Int16)z); + } + + public static + void WindowPos3(Int16[] v) + { + unsafe + { + fixed (Int16* v_ptr = v) + { + Delegates.glWindowPos3svARB((Int16*)v_ptr); + } + } + } + + public static + void WindowPos3(ref Int16 v) + { + unsafe + { + fixed (Int16* v_ptr = &v) + { + Delegates.glWindowPos3svARB((Int16*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void WindowPos3(Int16* v) + { + Delegates.glWindowPos3svARB((Int16*)v); + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib1(UInt32 index, Double x) + { + Delegates.glVertexAttrib1dARB((UInt32)index, (Double)x); + } + + public static + void VertexAttrib1(Int32 index, Double x) + { + Delegates.glVertexAttrib1dARB((UInt32)index, (Double)x); + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib1v(UInt32 index, Double[] v) + { + unsafe + { + fixed (Double* v_ptr = v) + { + Delegates.glVertexAttrib1dvARB((UInt32)index, (Double*)v_ptr); + } + } + } + + public static + void VertexAttrib1v(Int32 index, Double[] v) + { + unsafe + { + fixed (Double* v_ptr = v) + { + Delegates.glVertexAttrib1dvARB((UInt32)index, (Double*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib1v(UInt32 index, ref Double v) + { + unsafe + { + fixed (Double* v_ptr = &v) + { + Delegates.glVertexAttrib1dvARB((UInt32)index, (Double*)v_ptr); + } + } + } + + public static + void VertexAttrib1v(Int32 index, ref Double v) + { + unsafe + { + fixed (Double* v_ptr = &v) + { + Delegates.glVertexAttrib1dvARB((UInt32)index, (Double*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib1v(UInt32 index, Double* v) + { + Delegates.glVertexAttrib1dvARB((UInt32)index, (Double*)v); + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib1v(Int32 index, Double* v) + { + Delegates.glVertexAttrib1dvARB((UInt32)index, (Double*)v); + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib1(UInt32 index, Single x) + { + Delegates.glVertexAttrib1fARB((UInt32)index, (Single)x); + } + + public static + void VertexAttrib1(Int32 index, Single x) + { + Delegates.glVertexAttrib1fARB((UInt32)index, (Single)x); + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib1v(UInt32 index, Single[] v) + { + unsafe + { + fixed (Single* v_ptr = v) + { + Delegates.glVertexAttrib1fvARB((UInt32)index, (Single*)v_ptr); + } + } + } + + public static + void VertexAttrib1v(Int32 index, Single[] v) + { + unsafe + { + fixed (Single* v_ptr = v) + { + Delegates.glVertexAttrib1fvARB((UInt32)index, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib1v(UInt32 index, ref Single v) + { + unsafe + { + fixed (Single* v_ptr = &v) + { + Delegates.glVertexAttrib1fvARB((UInt32)index, (Single*)v_ptr); + } + } + } + + public static + void VertexAttrib1v(Int32 index, ref Single v) + { + unsafe + { + fixed (Single* v_ptr = &v) + { + Delegates.glVertexAttrib1fvARB((UInt32)index, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib1v(UInt32 index, Single* v) + { + Delegates.glVertexAttrib1fvARB((UInt32)index, (Single*)v); + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib1v(Int32 index, Single* v) + { + Delegates.glVertexAttrib1fvARB((UInt32)index, (Single*)v); + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib1(UInt32 index, Int16 x) + { + Delegates.glVertexAttrib1sARB((UInt32)index, (Int16)x); + } + + public static + void VertexAttrib1(Int32 index, Int16 x) + { + Delegates.glVertexAttrib1sARB((UInt32)index, (Int16)x); + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib1v(UInt32 index, Int16[] v) + { + unsafe + { + fixed (Int16* v_ptr = v) + { + Delegates.glVertexAttrib1svARB((UInt32)index, (Int16*)v_ptr); + } + } + } + + public static + void VertexAttrib1v(Int32 index, Int16[] v) + { + unsafe + { + fixed (Int16* v_ptr = v) + { + Delegates.glVertexAttrib1svARB((UInt32)index, (Int16*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib1v(UInt32 index, ref Int16 v) + { + unsafe + { + fixed (Int16* v_ptr = &v) + { + Delegates.glVertexAttrib1svARB((UInt32)index, (Int16*)v_ptr); + } + } + } + + public static + void VertexAttrib1v(Int32 index, ref Int16 v) + { + unsafe + { + fixed (Int16* v_ptr = &v) + { + Delegates.glVertexAttrib1svARB((UInt32)index, (Int16*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib1v(UInt32 index, Int16* v) + { + Delegates.glVertexAttrib1svARB((UInt32)index, (Int16*)v); + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib1v(Int32 index, Int16* v) + { + Delegates.glVertexAttrib1svARB((UInt32)index, (Int16*)v); + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib2(UInt32 index, Double x, Double y) + { + Delegates.glVertexAttrib2dARB((UInt32)index, (Double)x, (Double)y); + } + + public static + void VertexAttrib2(Int32 index, Double x, Double y) + { + Delegates.glVertexAttrib2dARB((UInt32)index, (Double)x, (Double)y); + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib2(UInt32 index, Double[] v) + { + unsafe + { + fixed (Double* v_ptr = v) + { + Delegates.glVertexAttrib2dvARB((UInt32)index, (Double*)v_ptr); + } + } + } + + public static + void VertexAttrib2(Int32 index, Double[] v) + { + unsafe + { + fixed (Double* v_ptr = v) + { + Delegates.glVertexAttrib2dvARB((UInt32)index, (Double*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib2(UInt32 index, ref Double v) + { + unsafe + { + fixed (Double* v_ptr = &v) + { + Delegates.glVertexAttrib2dvARB((UInt32)index, (Double*)v_ptr); + } + } + } + + public static + void VertexAttrib2(Int32 index, ref Double v) + { + unsafe + { + fixed (Double* v_ptr = &v) + { + Delegates.glVertexAttrib2dvARB((UInt32)index, (Double*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib2(UInt32 index, Double* v) + { + Delegates.glVertexAttrib2dvARB((UInt32)index, (Double*)v); + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib2(Int32 index, Double* v) + { + Delegates.glVertexAttrib2dvARB((UInt32)index, (Double*)v); + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib2(UInt32 index, Single x, Single y) + { + Delegates.glVertexAttrib2fARB((UInt32)index, (Single)x, (Single)y); + } + + public static + void VertexAttrib2(Int32 index, Single x, Single y) + { + Delegates.glVertexAttrib2fARB((UInt32)index, (Single)x, (Single)y); + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib2(UInt32 index, Single[] v) + { + unsafe + { + fixed (Single* v_ptr = v) + { + Delegates.glVertexAttrib2fvARB((UInt32)index, (Single*)v_ptr); + } + } + } + + public static + void VertexAttrib2(Int32 index, Single[] v) + { + unsafe + { + fixed (Single* v_ptr = v) + { + Delegates.glVertexAttrib2fvARB((UInt32)index, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib2(UInt32 index, ref Single v) + { + unsafe + { + fixed (Single* v_ptr = &v) + { + Delegates.glVertexAttrib2fvARB((UInt32)index, (Single*)v_ptr); + } + } + } + + public static + void VertexAttrib2(Int32 index, ref Single v) + { + unsafe + { + fixed (Single* v_ptr = &v) + { + Delegates.glVertexAttrib2fvARB((UInt32)index, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib2(UInt32 index, Single* v) + { + Delegates.glVertexAttrib2fvARB((UInt32)index, (Single*)v); + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib2(Int32 index, Single* v) + { + Delegates.glVertexAttrib2fvARB((UInt32)index, (Single*)v); + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib2(UInt32 index, Int16 x, Int16 y) + { + Delegates.glVertexAttrib2sARB((UInt32)index, (Int16)x, (Int16)y); + } + + public static + void VertexAttrib2(Int32 index, Int16 x, Int16 y) + { + Delegates.glVertexAttrib2sARB((UInt32)index, (Int16)x, (Int16)y); + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib2(UInt32 index, Int16[] v) + { + unsafe + { + fixed (Int16* v_ptr = v) + { + Delegates.glVertexAttrib2svARB((UInt32)index, (Int16*)v_ptr); + } + } + } + + public static + void VertexAttrib2(Int32 index, Int16[] v) + { + unsafe + { + fixed (Int16* v_ptr = v) + { + Delegates.glVertexAttrib2svARB((UInt32)index, (Int16*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib2(UInt32 index, ref Int16 v) + { + unsafe + { + fixed (Int16* v_ptr = &v) + { + Delegates.glVertexAttrib2svARB((UInt32)index, (Int16*)v_ptr); + } + } + } + + public static + void VertexAttrib2(Int32 index, ref Int16 v) + { + unsafe + { + fixed (Int16* v_ptr = &v) + { + Delegates.glVertexAttrib2svARB((UInt32)index, (Int16*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib2(UInt32 index, Int16* v) + { + Delegates.glVertexAttrib2svARB((UInt32)index, (Int16*)v); + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib2(Int32 index, Int16* v) + { + Delegates.glVertexAttrib2svARB((UInt32)index, (Int16*)v); + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib3(UInt32 index, Double x, Double y, Double z) + { + Delegates.glVertexAttrib3dARB((UInt32)index, (Double)x, (Double)y, (Double)z); + } + + public static + void VertexAttrib3(Int32 index, Double x, Double y, Double z) + { + Delegates.glVertexAttrib3dARB((UInt32)index, (Double)x, (Double)y, (Double)z); + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib3(UInt32 index, Double[] v) + { + unsafe + { + fixed (Double* v_ptr = v) + { + Delegates.glVertexAttrib3dvARB((UInt32)index, (Double*)v_ptr); + } + } + } + + public static + void VertexAttrib3(Int32 index, Double[] v) + { + unsafe + { + fixed (Double* v_ptr = v) + { + Delegates.glVertexAttrib3dvARB((UInt32)index, (Double*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib3(UInt32 index, ref Double v) + { + unsafe + { + fixed (Double* v_ptr = &v) + { + Delegates.glVertexAttrib3dvARB((UInt32)index, (Double*)v_ptr); + } + } + } + + public static + void VertexAttrib3(Int32 index, ref Double v) + { + unsafe + { + fixed (Double* v_ptr = &v) + { + Delegates.glVertexAttrib3dvARB((UInt32)index, (Double*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib3(UInt32 index, Double* v) + { + Delegates.glVertexAttrib3dvARB((UInt32)index, (Double*)v); + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib3(Int32 index, Double* v) + { + Delegates.glVertexAttrib3dvARB((UInt32)index, (Double*)v); + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib3(UInt32 index, Single x, Single y, Single z) + { + Delegates.glVertexAttrib3fARB((UInt32)index, (Single)x, (Single)y, (Single)z); + } + + public static + void VertexAttrib3(Int32 index, Single x, Single y, Single z) + { + Delegates.glVertexAttrib3fARB((UInt32)index, (Single)x, (Single)y, (Single)z); + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib3(UInt32 index, Single[] v) + { + unsafe + { + fixed (Single* v_ptr = v) + { + Delegates.glVertexAttrib3fvARB((UInt32)index, (Single*)v_ptr); + } + } + } + + public static + void VertexAttrib3(Int32 index, Single[] v) + { + unsafe + { + fixed (Single* v_ptr = v) + { + Delegates.glVertexAttrib3fvARB((UInt32)index, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib3(UInt32 index, ref Single v) + { + unsafe + { + fixed (Single* v_ptr = &v) + { + Delegates.glVertexAttrib3fvARB((UInt32)index, (Single*)v_ptr); + } + } + } + + public static + void VertexAttrib3(Int32 index, ref Single v) + { + unsafe + { + fixed (Single* v_ptr = &v) + { + Delegates.glVertexAttrib3fvARB((UInt32)index, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib3(UInt32 index, Single* v) + { + Delegates.glVertexAttrib3fvARB((UInt32)index, (Single*)v); + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib3(Int32 index, Single* v) + { + Delegates.glVertexAttrib3fvARB((UInt32)index, (Single*)v); + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib3(UInt32 index, Int16 x, Int16 y, Int16 z) + { + Delegates.glVertexAttrib3sARB((UInt32)index, (Int16)x, (Int16)y, (Int16)z); + } + + public static + void VertexAttrib3(Int32 index, Int16 x, Int16 y, Int16 z) + { + Delegates.glVertexAttrib3sARB((UInt32)index, (Int16)x, (Int16)y, (Int16)z); + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib3(UInt32 index, Int16[] v) + { + unsafe + { + fixed (Int16* v_ptr = v) + { + Delegates.glVertexAttrib3svARB((UInt32)index, (Int16*)v_ptr); + } + } + } + + public static + void VertexAttrib3(Int32 index, Int16[] v) + { + unsafe + { + fixed (Int16* v_ptr = v) + { + Delegates.glVertexAttrib3svARB((UInt32)index, (Int16*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib3(UInt32 index, ref Int16 v) + { + unsafe + { + fixed (Int16* v_ptr = &v) + { + Delegates.glVertexAttrib3svARB((UInt32)index, (Int16*)v_ptr); + } + } + } + + public static + void VertexAttrib3(Int32 index, ref Int16 v) + { + unsafe + { + fixed (Int16* v_ptr = &v) + { + Delegates.glVertexAttrib3svARB((UInt32)index, (Int16*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib3(UInt32 index, Int16* v) + { + Delegates.glVertexAttrib3svARB((UInt32)index, (Int16*)v); + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib3(Int32 index, Int16* v) + { + Delegates.glVertexAttrib3svARB((UInt32)index, (Int16*)v); + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4N(UInt32 index, SByte[] v) + { + unsafe + { + fixed (SByte* v_ptr = v) + { + Delegates.glVertexAttrib4NbvARB((UInt32)index, (SByte*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4N(UInt32 index, ref SByte v) + { + unsafe + { + fixed (SByte* v_ptr = &v) + { + Delegates.glVertexAttrib4NbvARB((UInt32)index, (SByte*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib4N(UInt32 index, SByte* v) + { + Delegates.glVertexAttrib4NbvARB((UInt32)index, (SByte*)v); + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4N(UInt32 index, Int32[] v) + { + unsafe + { + fixed (Int32* v_ptr = v) + { + Delegates.glVertexAttrib4NivARB((UInt32)index, (Int32*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4N(UInt32 index, ref Int32 v) + { + unsafe + { + fixed (Int32* v_ptr = &v) + { + Delegates.glVertexAttrib4NivARB((UInt32)index, (Int32*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib4N(UInt32 index, Int32* v) + { + Delegates.glVertexAttrib4NivARB((UInt32)index, (Int32*)v); + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4N(UInt32 index, Int16[] v) + { + unsafe + { + fixed (Int16* v_ptr = v) + { + Delegates.glVertexAttrib4NsvARB((UInt32)index, (Int16*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4N(UInt32 index, ref Int16 v) + { + unsafe + { + fixed (Int16* v_ptr = &v) + { + Delegates.glVertexAttrib4NsvARB((UInt32)index, (Int16*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib4N(UInt32 index, Int16* v) + { + Delegates.glVertexAttrib4NsvARB((UInt32)index, (Int16*)v); + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4N(UInt32 index, Byte x, Byte y, Byte z, Byte w) + { + Delegates.glVertexAttrib4NubARB((UInt32)index, (Byte)x, (Byte)y, (Byte)z, (Byte)w); + } + + public static + void VertexAttrib4N(Int32 index, Byte x, Byte y, Byte z, Byte w) + { + Delegates.glVertexAttrib4NubARB((UInt32)index, (Byte)x, (Byte)y, (Byte)z, (Byte)w); + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4N(UInt32 index, Byte[] v) + { + unsafe + { + fixed (Byte* v_ptr = v) + { + Delegates.glVertexAttrib4NubvARB((UInt32)index, (Byte*)v_ptr); + } + } + } + + public static + void VertexAttrib4N(Int32 index, Byte[] v) + { + unsafe + { + fixed (Byte* v_ptr = v) + { + Delegates.glVertexAttrib4NubvARB((UInt32)index, (Byte*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4N(UInt32 index, ref Byte v) + { + unsafe + { + fixed (Byte* v_ptr = &v) + { + Delegates.glVertexAttrib4NubvARB((UInt32)index, (Byte*)v_ptr); + } + } + } + + public static + void VertexAttrib4N(Int32 index, ref Byte v) + { + unsafe + { + fixed (Byte* v_ptr = &v) + { + Delegates.glVertexAttrib4NubvARB((UInt32)index, (Byte*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib4N(UInt32 index, Byte* v) + { + Delegates.glVertexAttrib4NubvARB((UInt32)index, (Byte*)v); + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib4N(Int32 index, Byte* v) + { + Delegates.glVertexAttrib4NubvARB((UInt32)index, (Byte*)v); + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4N(UInt32 index, UInt32[] v) + { + unsafe + { + fixed (UInt32* v_ptr = v) + { + Delegates.glVertexAttrib4NuivARB((UInt32)index, (UInt32*)v_ptr); + } + } + } + + public static + void VertexAttrib4N(Int32 index, Int32[] v) + { + unsafe + { + fixed (Int32* v_ptr = v) + { + Delegates.glVertexAttrib4NuivARB((UInt32)index, (UInt32*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4N(UInt32 index, ref UInt32 v) + { + unsafe + { + fixed (UInt32* v_ptr = &v) + { + Delegates.glVertexAttrib4NuivARB((UInt32)index, (UInt32*)v_ptr); + } + } + } + + public static + void VertexAttrib4N(Int32 index, ref Int32 v) + { + unsafe + { + fixed (Int32* v_ptr = &v) + { + Delegates.glVertexAttrib4NuivARB((UInt32)index, (UInt32*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib4N(UInt32 index, UInt32* v) + { + Delegates.glVertexAttrib4NuivARB((UInt32)index, (UInt32*)v); + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib4N(Int32 index, Int32* v) + { + Delegates.glVertexAttrib4NuivARB((UInt32)index, (UInt32*)v); + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4N(UInt32 index, UInt16[] v) + { + unsafe + { + fixed (UInt16* v_ptr = v) + { + Delegates.glVertexAttrib4NusvARB((UInt32)index, (UInt16*)v_ptr); + } + } + } + + public static + void VertexAttrib4N(Int32 index, Int16[] v) + { + unsafe + { + fixed (Int16* v_ptr = v) + { + Delegates.glVertexAttrib4NusvARB((UInt32)index, (UInt16*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4N(UInt32 index, ref UInt16 v) + { + unsafe + { + fixed (UInt16* v_ptr = &v) + { + Delegates.glVertexAttrib4NusvARB((UInt32)index, (UInt16*)v_ptr); + } + } + } + + public static + void VertexAttrib4N(Int32 index, ref Int16 v) + { + unsafe + { + fixed (Int16* v_ptr = &v) + { + Delegates.glVertexAttrib4NusvARB((UInt32)index, (UInt16*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib4N(UInt32 index, UInt16* v) + { + Delegates.glVertexAttrib4NusvARB((UInt32)index, (UInt16*)v); + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib4N(Int32 index, Int16* v) + { + Delegates.glVertexAttrib4NusvARB((UInt32)index, (UInt16*)v); + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4(UInt32 index, SByte[] v) + { + unsafe + { + fixed (SByte* v_ptr = v) + { + Delegates.glVertexAttrib4bvARB((UInt32)index, (SByte*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4(UInt32 index, ref SByte v) + { + unsafe + { + fixed (SByte* v_ptr = &v) + { + Delegates.glVertexAttrib4bvARB((UInt32)index, (SByte*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib4(UInt32 index, SByte* v) + { + Delegates.glVertexAttrib4bvARB((UInt32)index, (SByte*)v); + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4(UInt32 index, Double x, Double y, Double z, Double w) + { + Delegates.glVertexAttrib4dARB((UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); + } + + public static + void VertexAttrib4(Int32 index, Double x, Double y, Double z, Double w) + { + Delegates.glVertexAttrib4dARB((UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4(UInt32 index, Double[] v) + { + unsafe + { + fixed (Double* v_ptr = v) + { + Delegates.glVertexAttrib4dvARB((UInt32)index, (Double*)v_ptr); + } + } + } + + public static + void VertexAttrib4(Int32 index, Double[] v) + { + unsafe + { + fixed (Double* v_ptr = v) + { + Delegates.glVertexAttrib4dvARB((UInt32)index, (Double*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4(UInt32 index, ref Double v) + { + unsafe + { + fixed (Double* v_ptr = &v) + { + Delegates.glVertexAttrib4dvARB((UInt32)index, (Double*)v_ptr); + } + } + } + + public static + void VertexAttrib4(Int32 index, ref Double v) + { + unsafe + { + fixed (Double* v_ptr = &v) + { + Delegates.glVertexAttrib4dvARB((UInt32)index, (Double*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib4(UInt32 index, Double* v) + { + Delegates.glVertexAttrib4dvARB((UInt32)index, (Double*)v); + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib4(Int32 index, Double* v) + { + Delegates.glVertexAttrib4dvARB((UInt32)index, (Double*)v); + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4(UInt32 index, Single x, Single y, Single z, Single w) + { + Delegates.glVertexAttrib4fARB((UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); + } + + public static + void VertexAttrib4(Int32 index, Single x, Single y, Single z, Single w) + { + Delegates.glVertexAttrib4fARB((UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4(UInt32 index, Single[] v) + { + unsafe + { + fixed (Single* v_ptr = v) + { + Delegates.glVertexAttrib4fvARB((UInt32)index, (Single*)v_ptr); + } + } + } + + public static + void VertexAttrib4(Int32 index, Single[] v) + { + unsafe + { + fixed (Single* v_ptr = v) + { + Delegates.glVertexAttrib4fvARB((UInt32)index, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4(UInt32 index, ref Single v) + { + unsafe + { + fixed (Single* v_ptr = &v) + { + Delegates.glVertexAttrib4fvARB((UInt32)index, (Single*)v_ptr); + } + } + } + + public static + void VertexAttrib4(Int32 index, ref Single v) + { + unsafe + { + fixed (Single* v_ptr = &v) + { + Delegates.glVertexAttrib4fvARB((UInt32)index, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib4(UInt32 index, Single* v) + { + Delegates.glVertexAttrib4fvARB((UInt32)index, (Single*)v); + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib4(Int32 index, Single* v) + { + Delegates.glVertexAttrib4fvARB((UInt32)index, (Single*)v); + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4(UInt32 index, Int32[] v) + { + unsafe + { + fixed (Int32* v_ptr = v) + { + Delegates.glVertexAttrib4ivARB((UInt32)index, (Int32*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4(UInt32 index, ref Int32 v) + { + unsafe + { + fixed (Int32* v_ptr = &v) + { + Delegates.glVertexAttrib4ivARB((UInt32)index, (Int32*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib4(UInt32 index, Int32* v) + { + Delegates.glVertexAttrib4ivARB((UInt32)index, (Int32*)v); + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4(UInt32 index, Int16 x, Int16 y, Int16 z, Int16 w) + { + Delegates.glVertexAttrib4sARB((UInt32)index, (Int16)x, (Int16)y, (Int16)z, (Int16)w); + } + + public static + void VertexAttrib4(Int32 index, Int16 x, Int16 y, Int16 z, Int16 w) + { + Delegates.glVertexAttrib4sARB((UInt32)index, (Int16)x, (Int16)y, (Int16)z, (Int16)w); + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4(UInt32 index, Int16[] v) + { + unsafe + { + fixed (Int16* v_ptr = v) + { + Delegates.glVertexAttrib4svARB((UInt32)index, (Int16*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4(UInt32 index, ref Int16 v) + { + unsafe + { + fixed (Int16* v_ptr = &v) + { + Delegates.glVertexAttrib4svARB((UInt32)index, (Int16*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib4(UInt32 index, Int16* v) + { + Delegates.glVertexAttrib4svARB((UInt32)index, (Int16*)v); + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4(UInt32 index, Byte[] v) + { + unsafe + { + fixed (Byte* v_ptr = v) + { + Delegates.glVertexAttrib4ubvARB((UInt32)index, (Byte*)v_ptr); + } + } + } + + public static + void VertexAttrib4(Int32 index, Byte[] v) + { + unsafe + { + fixed (Byte* v_ptr = v) + { + Delegates.glVertexAttrib4ubvARB((UInt32)index, (Byte*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4(UInt32 index, ref Byte v) + { + unsafe + { + fixed (Byte* v_ptr = &v) + { + Delegates.glVertexAttrib4ubvARB((UInt32)index, (Byte*)v_ptr); + } + } + } + + public static + void VertexAttrib4(Int32 index, ref Byte v) + { + unsafe + { + fixed (Byte* v_ptr = &v) + { + Delegates.glVertexAttrib4ubvARB((UInt32)index, (Byte*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib4(UInt32 index, Byte* v) + { + Delegates.glVertexAttrib4ubvARB((UInt32)index, (Byte*)v); + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib4(Int32 index, Byte* v) + { + Delegates.glVertexAttrib4ubvARB((UInt32)index, (Byte*)v); + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4(UInt32 index, UInt32[] v) + { + unsafe + { + fixed (UInt32* v_ptr = v) + { + Delegates.glVertexAttrib4uivARB((UInt32)index, (UInt32*)v_ptr); + } + } + } + + public static + void VertexAttrib4(Int32 index, Int32[] v) + { + unsafe + { + fixed (Int32* v_ptr = v) + { + Delegates.glVertexAttrib4uivARB((UInt32)index, (UInt32*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4(UInt32 index, ref UInt32 v) + { + unsafe + { + fixed (UInt32* v_ptr = &v) + { + Delegates.glVertexAttrib4uivARB((UInt32)index, (UInt32*)v_ptr); + } + } + } + + public static + void VertexAttrib4(Int32 index, ref Int32 v) + { + unsafe + { + fixed (Int32* v_ptr = &v) + { + Delegates.glVertexAttrib4uivARB((UInt32)index, (UInt32*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib4(UInt32 index, UInt32* v) + { + Delegates.glVertexAttrib4uivARB((UInt32)index, (UInt32*)v); + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib4(Int32 index, Int32* v) + { + Delegates.glVertexAttrib4uivARB((UInt32)index, (UInt32*)v); + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4(UInt32 index, UInt16[] v) + { + unsafe + { + fixed (UInt16* v_ptr = v) + { + Delegates.glVertexAttrib4usvARB((UInt32)index, (UInt16*)v_ptr); + } + } + } + + public static + void VertexAttrib4(Int32 index, Int16[] v) + { + unsafe + { + fixed (Int16* v_ptr = v) + { + Delegates.glVertexAttrib4usvARB((UInt32)index, (UInt16*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttrib4(UInt32 index, ref UInt16 v) + { + unsafe + { + fixed (UInt16* v_ptr = &v) + { + Delegates.glVertexAttrib4usvARB((UInt32)index, (UInt16*)v_ptr); + } + } + } + + public static + void VertexAttrib4(Int32 index, ref Int16 v) + { + unsafe + { + fixed (Int16* v_ptr = &v) + { + Delegates.glVertexAttrib4usvARB((UInt32)index, (UInt16*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib4(UInt32 index, UInt16* v) + { + Delegates.glVertexAttrib4usvARB((UInt32)index, (UInt16*)v); + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttrib4(Int32 index, Int16* v) + { + Delegates.glVertexAttrib4usvARB((UInt32)index, (UInt16*)v); + } + + [System.CLSCompliant(false)] + public static + void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.OpenGL.Enums.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, IntPtr pointer) + { + unsafe + { + Delegates.glVertexAttribPointerARB((UInt32)index, (Int32)size, (OpenTK.OpenGL.Enums.VertexAttribPointerTypeArb)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); + } + } + + public static + void VertexAttribPointer(Int32 index, Int32 size, OpenTK.OpenGL.Enums.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, IntPtr pointer) + { + unsafe + { + Delegates.glVertexAttribPointerARB((UInt32)index, (Int32)size, (OpenTK.OpenGL.Enums.VertexAttribPointerTypeArb)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.OpenGL.Enums.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, [In, Out] object pointer) + { + unsafe + { + System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glVertexAttribPointerARB((UInt32)index, (Int32)size, (OpenTK.OpenGL.Enums.VertexAttribPointerTypeArb)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + } + finally + { + pointer_ptr.Free(); + } + } + } + + public static + void VertexAttribPointer(Int32 index, Int32 size, OpenTK.OpenGL.Enums.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, [In, Out] object pointer) + { + unsafe + { + System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glVertexAttribPointerARB((UInt32)index, (Int32)size, (OpenTK.OpenGL.Enums.VertexAttribPointerTypeArb)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + } + finally + { + pointer_ptr.Free(); + } + } + } + + [System.CLSCompliant(false)] + public static + void EnableVertexAttribArray(UInt32 index) + { + Delegates.glEnableVertexAttribArrayARB((UInt32)index); + } + + public static + void EnableVertexAttribArray(Int32 index) + { + Delegates.glEnableVertexAttribArrayARB((UInt32)index); + } + + [System.CLSCompliant(false)] + public static + void DisableVertexAttribArray(UInt32 index) + { + Delegates.glDisableVertexAttribArrayARB((UInt32)index); + } + + public static + void DisableVertexAttribArray(Int32 index) + { + Delegates.glDisableVertexAttribArrayARB((UInt32)index); + } + + public static + void ProgramString(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, OpenTK.OpenGL.Enums.AssemblyProgramFormatArb format, Int32 len, IntPtr @string) + { + unsafe + { + Delegates.glProgramStringARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (OpenTK.OpenGL.Enums.AssemblyProgramFormatArb)format, (Int32)len, (IntPtr)@string); + } + } + + public static + void ProgramString(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, OpenTK.OpenGL.Enums.AssemblyProgramFormatArb format, Int32 len, [In, Out] object @string) + { + unsafe + { + System.Runtime.InteropServices.GCHandle @string_ptr = System.Runtime.InteropServices.GCHandle.Alloc(@string, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glProgramStringARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (OpenTK.OpenGL.Enums.AssemblyProgramFormatArb)format, (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); + } + finally + { + @string_ptr.Free(); + } + } + } + + [System.CLSCompliant(false)] + public static + void BindProgram(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 program) + { + Delegates.glBindProgramARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)program); + } + + public static + void BindProgram(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, Int32 program) + { + Delegates.glBindProgramARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)program); + } + + [System.CLSCompliant(false)] + public static + void DeleteProgram(Int32 n, UInt32[] programs) + { + unsafe + { + fixed (UInt32* programs_ptr = programs) + { + Delegates.glDeleteProgramsARB((Int32)n, (UInt32*)programs_ptr); + } + } + } + + public static + void DeleteProgram(Int32 n, Int32[] programs) + { + unsafe + { + fixed (Int32* programs_ptr = programs) + { + Delegates.glDeleteProgramsARB((Int32)n, (UInt32*)programs_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void DeleteProgram(Int32 n, ref UInt32 programs) + { + unsafe + { + fixed (UInt32* programs_ptr = &programs) + { + Delegates.glDeleteProgramsARB((Int32)n, (UInt32*)programs_ptr); + } + } + } + + public static + void DeleteProgram(Int32 n, ref Int32 programs) + { + unsafe + { + fixed (Int32* programs_ptr = &programs) + { + Delegates.glDeleteProgramsARB((Int32)n, (UInt32*)programs_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void DeleteProgram(Int32 n, UInt32* programs) + { + Delegates.glDeleteProgramsARB((Int32)n, (UInt32*)programs); + } + + [System.CLSCompliant(false)] + public static + unsafe void DeleteProgram(Int32 n, Int32* programs) + { + Delegates.glDeleteProgramsARB((Int32)n, (UInt32*)programs); + } + + [System.CLSCompliant(false)] + public static + void GenProgram(Int32 n, [Out] UInt32[] programs) + { + unsafe + { + fixed (UInt32* programs_ptr = programs) + { + Delegates.glGenProgramsARB((Int32)n, (UInt32*)programs_ptr); + } + } + } + + public static + void GenProgram(Int32 n, [Out] Int32[] programs) + { + unsafe + { + fixed (Int32* programs_ptr = programs) + { + Delegates.glGenProgramsARB((Int32)n, (UInt32*)programs_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void GenProgram(Int32 n, [Out] out UInt32 programs) + { + unsafe + { + fixed (UInt32* programs_ptr = &programs) + { + Delegates.glGenProgramsARB((Int32)n, (UInt32*)programs_ptr); + programs = *programs_ptr; + } + } + } + + public static + void GenProgram(Int32 n, [Out] out Int32 programs) + { + unsafe + { + fixed (Int32* programs_ptr = &programs) + { + Delegates.glGenProgramsARB((Int32)n, (UInt32*)programs_ptr); + programs = *programs_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GenProgram(Int32 n, [Out] UInt32* programs) + { + Delegates.glGenProgramsARB((Int32)n, (UInt32*)programs); + } + + [System.CLSCompliant(false)] + public static + unsafe void GenProgram(Int32 n, [Out] Int32* programs) + { + Delegates.glGenProgramsARB((Int32)n, (UInt32*)programs); + } + + [System.CLSCompliant(false)] + public static + void ProgramEnvParameter4(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, Double x, Double y, Double z, Double w) + { + Delegates.glProgramEnvParameter4dARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); + } + + public static + void ProgramEnvParameter4(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, Int32 index, Double x, Double y, Double z, Double w) + { + Delegates.glProgramEnvParameter4dARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); + } + + [System.CLSCompliant(false)] + public static + void ProgramEnvParameter4(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, Double[] @params) + { + unsafe + { + fixed (Double* @params_ptr = @params) + { + Delegates.glProgramEnvParameter4dvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + } + } + } + + public static + void ProgramEnvParameter4(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, Int32 index, Double[] @params) + { + unsafe + { + fixed (Double* @params_ptr = @params) + { + Delegates.glProgramEnvParameter4dvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void ProgramEnvParameter4(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, ref Double @params) + { + unsafe + { + fixed (Double* @params_ptr = &@params) + { + Delegates.glProgramEnvParameter4dvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + } + } + } + + public static + void ProgramEnvParameter4(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, Int32 index, ref Double @params) + { + unsafe + { + fixed (Double* @params_ptr = &@params) + { + Delegates.glProgramEnvParameter4dvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void ProgramEnvParameter4(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, Double* @params) + { + Delegates.glProgramEnvParameter4dvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params); + } + + [System.CLSCompliant(false)] + public static + unsafe void ProgramEnvParameter4(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, Int32 index, Double* @params) + { + Delegates.glProgramEnvParameter4dvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params); + } + + [System.CLSCompliant(false)] + public static + void ProgramEnvParameter4(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, Single x, Single y, Single z, Single w) + { + Delegates.glProgramEnvParameter4fARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); + } + + public static + void ProgramEnvParameter4(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, Int32 index, Single x, Single y, Single z, Single w) + { + Delegates.glProgramEnvParameter4fARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); + } + + [System.CLSCompliant(false)] + public static + void ProgramEnvParameter4(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glProgramEnvParameter4fvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + } + } + } + + public static + void ProgramEnvParameter4(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, Int32 index, Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glProgramEnvParameter4fvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void ProgramEnvParameter4(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, ref Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glProgramEnvParameter4fvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + } + } + } + + public static + void ProgramEnvParameter4(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, Int32 index, ref Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glProgramEnvParameter4fvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void ProgramEnvParameter4(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, Single* @params) + { + Delegates.glProgramEnvParameter4fvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params); + } + + [System.CLSCompliant(false)] + public static + unsafe void ProgramEnvParameter4(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, Int32 index, Single* @params) + { + Delegates.glProgramEnvParameter4fvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params); + } + + [System.CLSCompliant(false)] + public static + void ProgramLocalParameter4(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, Double x, Double y, Double z, Double w) + { + Delegates.glProgramLocalParameter4dARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); + } + + public static + void ProgramLocalParameter4(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, Int32 index, Double x, Double y, Double z, Double w) + { + Delegates.glProgramLocalParameter4dARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); + } + + [System.CLSCompliant(false)] + public static + void ProgramLocalParameter4(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, Double[] @params) + { + unsafe + { + fixed (Double* @params_ptr = @params) + { + Delegates.glProgramLocalParameter4dvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + } + } + } + + public static + void ProgramLocalParameter4(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, Int32 index, Double[] @params) + { + unsafe + { + fixed (Double* @params_ptr = @params) + { + Delegates.glProgramLocalParameter4dvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void ProgramLocalParameter4(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, ref Double @params) + { + unsafe + { + fixed (Double* @params_ptr = &@params) + { + Delegates.glProgramLocalParameter4dvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + } + } + } + + public static + void ProgramLocalParameter4(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, Int32 index, ref Double @params) + { + unsafe + { + fixed (Double* @params_ptr = &@params) + { + Delegates.glProgramLocalParameter4dvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void ProgramLocalParameter4(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, Double* @params) + { + Delegates.glProgramLocalParameter4dvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params); + } + + [System.CLSCompliant(false)] + public static + unsafe void ProgramLocalParameter4(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, Int32 index, Double* @params) + { + Delegates.glProgramLocalParameter4dvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params); + } + + [System.CLSCompliant(false)] + public static + void ProgramLocalParameter4(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, Single x, Single y, Single z, Single w) + { + Delegates.glProgramLocalParameter4fARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); + } + + public static + void ProgramLocalParameter4(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, Int32 index, Single x, Single y, Single z, Single w) + { + Delegates.glProgramLocalParameter4fARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); + } + + [System.CLSCompliant(false)] + public static + void ProgramLocalParameter4(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glProgramLocalParameter4fvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + } + } + } + + public static + void ProgramLocalParameter4(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, Int32 index, Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glProgramLocalParameter4fvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void ProgramLocalParameter4(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, ref Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glProgramLocalParameter4fvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + } + } + } + + public static + void ProgramLocalParameter4(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, Int32 index, ref Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glProgramLocalParameter4fvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void ProgramLocalParameter4(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, Single* @params) + { + Delegates.glProgramLocalParameter4fvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params); + } + + [System.CLSCompliant(false)] + public static + unsafe void ProgramLocalParameter4(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, Int32 index, Single* @params) + { + Delegates.glProgramLocalParameter4fvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params); + } + + [System.CLSCompliant(false)] + public static + void GetProgramEnvParameter(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, [Out] Double[] @params) + { + unsafe + { + fixed (Double* @params_ptr = @params) + { + Delegates.glGetProgramEnvParameterdvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + } + } + } + + public static + void GetProgramEnvParameter(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, Int32 index, [Out] Double[] @params) + { + unsafe + { + fixed (Double* @params_ptr = @params) + { + Delegates.glGetProgramEnvParameterdvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetProgramEnvParameter(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, [Out] out Double @params) + { + unsafe + { + fixed (Double* @params_ptr = &@params) + { + Delegates.glGetProgramEnvParameterdvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + @params = *@params_ptr; + } + } + } + + public static + void GetProgramEnvParameter(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, Int32 index, [Out] out Double @params) + { + unsafe + { + fixed (Double* @params_ptr = &@params) + { + Delegates.glGetProgramEnvParameterdvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetProgramEnvParameter(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, [Out] Double* @params) + { + Delegates.glGetProgramEnvParameterdvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params); + } + + [System.CLSCompliant(false)] + public static + unsafe void GetProgramEnvParameter(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, Int32 index, [Out] Double* @params) + { + Delegates.glGetProgramEnvParameterdvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params); + } + + [System.CLSCompliant(false)] + public static + void GetProgramEnvParameter(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, [Out] Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glGetProgramEnvParameterfvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + } + } + } + + public static + void GetProgramEnvParameter(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, Int32 index, [Out] Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glGetProgramEnvParameterfvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetProgramEnvParameter(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, [Out] out Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glGetProgramEnvParameterfvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + @params = *@params_ptr; + } + } + } + + public static + void GetProgramEnvParameter(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, Int32 index, [Out] out Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glGetProgramEnvParameterfvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetProgramEnvParameter(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, [Out] Single* @params) + { + Delegates.glGetProgramEnvParameterfvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params); + } + + [System.CLSCompliant(false)] + public static + unsafe void GetProgramEnvParameter(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, Int32 index, [Out] Single* @params) + { + Delegates.glGetProgramEnvParameterfvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params); + } + + [System.CLSCompliant(false)] + public static + void GetProgramLocalParameter(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, [Out] Double[] @params) + { + unsafe + { + fixed (Double* @params_ptr = @params) + { + Delegates.glGetProgramLocalParameterdvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + } + } + } + + public static + void GetProgramLocalParameter(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, Int32 index, [Out] Double[] @params) + { + unsafe + { + fixed (Double* @params_ptr = @params) + { + Delegates.glGetProgramLocalParameterdvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetProgramLocalParameter(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, [Out] out Double @params) + { + unsafe + { + fixed (Double* @params_ptr = &@params) + { + Delegates.glGetProgramLocalParameterdvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + @params = *@params_ptr; + } + } + } + + public static + void GetProgramLocalParameter(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, Int32 index, [Out] out Double @params) + { + unsafe + { + fixed (Double* @params_ptr = &@params) + { + Delegates.glGetProgramLocalParameterdvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetProgramLocalParameter(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, [Out] Double* @params) + { + Delegates.glGetProgramLocalParameterdvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params); + } + + [System.CLSCompliant(false)] + public static + unsafe void GetProgramLocalParameter(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, Int32 index, [Out] Double* @params) + { + Delegates.glGetProgramLocalParameterdvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params); + } + + [System.CLSCompliant(false)] + public static + void GetProgramLocalParameter(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, [Out] Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glGetProgramLocalParameterfvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + } + } + } + + public static + void GetProgramLocalParameter(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, Int32 index, [Out] Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glGetProgramLocalParameterfvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetProgramLocalParameter(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, [Out] out Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glGetProgramLocalParameterfvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + @params = *@params_ptr; + } + } + } + + public static + void GetProgramLocalParameter(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, Int32 index, [Out] out Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glGetProgramLocalParameterfvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetProgramLocalParameter(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, [Out] Single* @params) + { + Delegates.glGetProgramLocalParameterfvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params); + } + + [System.CLSCompliant(false)] + public static + unsafe void GetProgramLocalParameter(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, Int32 index, [Out] Single* @params) + { + Delegates.glGetProgramLocalParameterfvARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params); + } + + public static + void GetProgram(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, OpenTK.OpenGL.Enums.AssemblyProgramParameterArb pname, [Out] Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glGetProgramivARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (OpenTK.OpenGL.Enums.AssemblyProgramParameterArb)pname, (Int32*)@params_ptr); + } + } + } + + public static + void GetProgram(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, OpenTK.OpenGL.Enums.AssemblyProgramParameterArb pname, [Out] out Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glGetProgramivARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (OpenTK.OpenGL.Enums.AssemblyProgramParameterArb)pname, (Int32*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetProgram(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, OpenTK.OpenGL.Enums.AssemblyProgramParameterArb pname, [Out] Int32* @params) + { + Delegates.glGetProgramivARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (OpenTK.OpenGL.Enums.AssemblyProgramParameterArb)pname, (Int32*)@params); + } + + public static + void GetProgramString(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, OpenTK.OpenGL.Enums.AssemblyProgramStringParameterArb pname, [Out] IntPtr @string) + { + unsafe + { + Delegates.glGetProgramStringARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (OpenTK.OpenGL.Enums.AssemblyProgramStringParameterArb)pname, (IntPtr)@string); + } + } + + public static + void GetProgramString(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, OpenTK.OpenGL.Enums.AssemblyProgramStringParameterArb pname, [In, Out] object @string) + { + unsafe + { + System.Runtime.InteropServices.GCHandle @string_ptr = System.Runtime.InteropServices.GCHandle.Alloc(@string, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glGetProgramStringARB((OpenTK.OpenGL.Enums.AssemblyProgramTargetArb)target, (OpenTK.OpenGL.Enums.AssemblyProgramStringParameterArb)pname, (IntPtr)@string_ptr.AddrOfPinnedObject()); + } + finally + { + @string_ptr.Free(); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.VertexAttribParameterArb pname, [Out] Double[] @params) + { + unsafe + { + fixed (Double* @params_ptr = @params) + { + Delegates.glGetVertexAttribdvARB((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribParameterArb)pname, (Double*)@params_ptr); + } + } + } + + public static + void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.VertexAttribParameterArb pname, [Out] Double[] @params) + { + unsafe + { + fixed (Double* @params_ptr = @params) + { + Delegates.glGetVertexAttribdvARB((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribParameterArb)pname, (Double*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.VertexAttribParameterArb pname, [Out] out Double @params) + { + unsafe + { + fixed (Double* @params_ptr = &@params) + { + Delegates.glGetVertexAttribdvARB((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribParameterArb)pname, (Double*)@params_ptr); + @params = *@params_ptr; + } + } + } + + public static + void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.VertexAttribParameterArb pname, [Out] out Double @params) + { + unsafe + { + fixed (Double* @params_ptr = &@params) + { + Delegates.glGetVertexAttribdvARB((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribParameterArb)pname, (Double*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.VertexAttribParameterArb pname, [Out] Double* @params) + { + Delegates.glGetVertexAttribdvARB((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribParameterArb)pname, (Double*)@params); + } + + [System.CLSCompliant(false)] + public static + unsafe void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.VertexAttribParameterArb pname, [Out] Double* @params) + { + Delegates.glGetVertexAttribdvARB((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribParameterArb)pname, (Double*)@params); + } + + [System.CLSCompliant(false)] + public static + void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.VertexAttribParameterArb pname, [Out] Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glGetVertexAttribfvARB((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribParameterArb)pname, (Single*)@params_ptr); + } + } + } + + public static + void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.VertexAttribParameterArb pname, [Out] Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glGetVertexAttribfvARB((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribParameterArb)pname, (Single*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.VertexAttribParameterArb pname, [Out] out Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glGetVertexAttribfvARB((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribParameterArb)pname, (Single*)@params_ptr); + @params = *@params_ptr; + } + } + } + + public static + void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.VertexAttribParameterArb pname, [Out] out Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glGetVertexAttribfvARB((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribParameterArb)pname, (Single*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.VertexAttribParameterArb pname, [Out] Single* @params) + { + Delegates.glGetVertexAttribfvARB((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribParameterArb)pname, (Single*)@params); + } + + [System.CLSCompliant(false)] + public static + unsafe void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.VertexAttribParameterArb pname, [Out] Single* @params) + { + Delegates.glGetVertexAttribfvARB((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribParameterArb)pname, (Single*)@params); + } + + [System.CLSCompliant(false)] + public static + void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.VertexAttribParameterArb pname, [Out] Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glGetVertexAttribivARB((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribParameterArb)pname, (Int32*)@params_ptr); + } + } + } + + public static + void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.VertexAttribParameterArb pname, [Out] Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glGetVertexAttribivARB((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribParameterArb)pname, (Int32*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.VertexAttribParameterArb pname, [Out] out Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glGetVertexAttribivARB((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribParameterArb)pname, (Int32*)@params_ptr); + @params = *@params_ptr; + } + } + } + + public static + void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.VertexAttribParameterArb pname, [Out] out Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glGetVertexAttribivARB((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribParameterArb)pname, (Int32*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetVertexAttrib(UInt32 index, OpenTK.OpenGL.Enums.VertexAttribParameterArb pname, [Out] Int32* @params) + { + Delegates.glGetVertexAttribivARB((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribParameterArb)pname, (Int32*)@params); + } + + [System.CLSCompliant(false)] + public static + unsafe void GetVertexAttrib(Int32 index, OpenTK.OpenGL.Enums.VertexAttribParameterArb pname, [Out] Int32* @params) + { + Delegates.glGetVertexAttribivARB((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribParameterArb)pname, (Int32*)@params); + } + + [System.CLSCompliant(false)] + public static + void GetVertexAttribPointer(UInt32 index, OpenTK.OpenGL.Enums.VertexAttribPointerParameterArb pname, [Out] IntPtr pointer) + { + unsafe + { + Delegates.glGetVertexAttribPointervARB((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribPointerParameterArb)pname, (IntPtr)pointer); + } + } + + public static + void GetVertexAttribPointer(Int32 index, OpenTK.OpenGL.Enums.VertexAttribPointerParameterArb pname, [Out] IntPtr pointer) + { + unsafe + { + Delegates.glGetVertexAttribPointervARB((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribPointerParameterArb)pname, (IntPtr)pointer); + } + } + + [System.CLSCompliant(false)] + public static + void GetVertexAttribPointer(UInt32 index, OpenTK.OpenGL.Enums.VertexAttribPointerParameterArb pname, [In, Out] object pointer) + { + unsafe + { + System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glGetVertexAttribPointervARB((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribPointerParameterArb)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + } + finally + { + pointer_ptr.Free(); + } + } + } + + public static + void GetVertexAttribPointer(Int32 index, OpenTK.OpenGL.Enums.VertexAttribPointerParameterArb pname, [In, Out] object pointer) + { + unsafe + { + System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glGetVertexAttribPointervARB((UInt32)index, (OpenTK.OpenGL.Enums.VertexAttribPointerParameterArb)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + } + finally + { + pointer_ptr.Free(); + } + } + } + + [System.CLSCompliant(false)] + public static + bool IsProgram(UInt32 program) + { + return Delegates.glIsProgramARB((UInt32)program); + } + + public static + bool IsProgram(Int32 program) + { + return Delegates.glIsProgramARB((UInt32)program); + } + + [System.CLSCompliant(false)] + public static + void BindBuffer(OpenTK.OpenGL.Enums.BufferTargetArb target, UInt32 buffer) + { + Delegates.glBindBufferARB((OpenTK.OpenGL.Enums.BufferTargetArb)target, (UInt32)buffer); + } + + public static + void BindBuffer(OpenTK.OpenGL.Enums.BufferTargetArb target, Int32 buffer) + { + Delegates.glBindBufferARB((OpenTK.OpenGL.Enums.BufferTargetArb)target, (UInt32)buffer); + } + + [System.CLSCompliant(false)] + public static + void DeleteBuffers(Int32 n, UInt32[] buffers) + { + unsafe + { + fixed (UInt32* buffers_ptr = buffers) + { + Delegates.glDeleteBuffersARB((Int32)n, (UInt32*)buffers_ptr); + } + } + } + + public static + void DeleteBuffers(Int32 n, Int32[] buffers) + { + unsafe + { + fixed (Int32* buffers_ptr = buffers) + { + Delegates.glDeleteBuffersARB((Int32)n, (UInt32*)buffers_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void DeleteBuffers(Int32 n, ref UInt32 buffers) + { + unsafe + { + fixed (UInt32* buffers_ptr = &buffers) + { + Delegates.glDeleteBuffersARB((Int32)n, (UInt32*)buffers_ptr); + } + } + } + + public static + void DeleteBuffers(Int32 n, ref Int32 buffers) + { + unsafe + { + fixed (Int32* buffers_ptr = &buffers) + { + Delegates.glDeleteBuffersARB((Int32)n, (UInt32*)buffers_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void DeleteBuffers(Int32 n, UInt32* buffers) + { + Delegates.glDeleteBuffersARB((Int32)n, (UInt32*)buffers); + } + + [System.CLSCompliant(false)] + public static + unsafe void DeleteBuffers(Int32 n, Int32* buffers) + { + Delegates.glDeleteBuffersARB((Int32)n, (UInt32*)buffers); + } + + [System.CLSCompliant(false)] + public static + void GenBuffers(Int32 n, [Out] UInt32[] buffers) + { + unsafe + { + fixed (UInt32* buffers_ptr = buffers) + { + Delegates.glGenBuffersARB((Int32)n, (UInt32*)buffers_ptr); + } + } + } + + public static + void GenBuffers(Int32 n, [Out] Int32[] buffers) + { + unsafe + { + fixed (Int32* buffers_ptr = buffers) + { + Delegates.glGenBuffersARB((Int32)n, (UInt32*)buffers_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void GenBuffers(Int32 n, [Out] out UInt32 buffers) + { + unsafe + { + fixed (UInt32* buffers_ptr = &buffers) + { + Delegates.glGenBuffersARB((Int32)n, (UInt32*)buffers_ptr); + buffers = *buffers_ptr; + } + } + } + + public static + void GenBuffers(Int32 n, [Out] out Int32 buffers) + { + unsafe + { + fixed (Int32* buffers_ptr = &buffers) + { + Delegates.glGenBuffersARB((Int32)n, (UInt32*)buffers_ptr); + buffers = *buffers_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GenBuffers(Int32 n, [Out] UInt32* buffers) + { + Delegates.glGenBuffersARB((Int32)n, (UInt32*)buffers); + } + + [System.CLSCompliant(false)] + public static + unsafe void GenBuffers(Int32 n, [Out] Int32* buffers) + { + Delegates.glGenBuffersARB((Int32)n, (UInt32*)buffers); + } + + [System.CLSCompliant(false)] + public static + bool IsBuffer(UInt32 buffer) + { + return Delegates.glIsBufferARB((UInt32)buffer); + } + + public static + bool IsBuffer(Int32 buffer) + { + return Delegates.glIsBufferARB((UInt32)buffer); + } + + public static + void BufferData(OpenTK.OpenGL.Enums.BufferTargetArb target, IntPtr size, IntPtr data, OpenTK.OpenGL.Enums.BufferUsageArb usage) + { + unsafe + { + Delegates.glBufferDataARB((OpenTK.OpenGL.Enums.BufferTargetArb)target, (IntPtr)size, (IntPtr)data, (OpenTK.OpenGL.Enums.BufferUsageArb)usage); + } + } + + public static + void BufferData(OpenTK.OpenGL.Enums.BufferTargetArb target, IntPtr size, [In, Out] object data, OpenTK.OpenGL.Enums.BufferUsageArb usage) + { + unsafe + { + System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glBufferDataARB((OpenTK.OpenGL.Enums.BufferTargetArb)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.OpenGL.Enums.BufferUsageArb)usage); + } + finally + { + data_ptr.Free(); + } + } + } + + public static + void BufferSubData(OpenTK.OpenGL.Enums.BufferTargetArb target, IntPtr offset, IntPtr size, IntPtr data) + { + unsafe + { + Delegates.glBufferSubDataARB((OpenTK.OpenGL.Enums.BufferTargetArb)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data); + } + } + + public static + void BufferSubData(OpenTK.OpenGL.Enums.BufferTargetArb target, IntPtr offset, IntPtr size, [In, Out] object data) + { + unsafe + { + System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glBufferSubDataARB((OpenTK.OpenGL.Enums.BufferTargetArb)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + } + finally + { + data_ptr.Free(); + } + } + } + + public static + void GetBufferSubData(OpenTK.OpenGL.Enums.BufferTargetArb target, IntPtr offset, IntPtr size, [Out] IntPtr data) + { + unsafe + { + Delegates.glGetBufferSubDataARB((OpenTK.OpenGL.Enums.BufferTargetArb)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data); + } + } + + public static + void GetBufferSubData(OpenTK.OpenGL.Enums.BufferTargetArb target, IntPtr offset, IntPtr size, [In, Out] object data) + { + unsafe + { + System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glGetBufferSubDataARB((OpenTK.OpenGL.Enums.BufferTargetArb)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + } + finally + { + data_ptr.Free(); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe IntPtr MapBuffer(OpenTK.OpenGL.Enums.BufferTargetArb target, OpenTK.OpenGL.Enums.BufferAccessArb access) + { + return Delegates.glMapBufferARB((OpenTK.OpenGL.Enums.BufferTargetArb)target, (OpenTK.OpenGL.Enums.BufferAccessArb)access); + } + + public static + bool UnmapBuffer(OpenTK.OpenGL.Enums.BufferTargetArb target) + { + return Delegates.glUnmapBufferARB((OpenTK.OpenGL.Enums.BufferTargetArb)target); + } + + public static + void GetBufferParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.BufferParameterNameArb pname, [Out] Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glGetBufferParameterivARB((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.BufferParameterNameArb)pname, (Int32*)@params_ptr); + } + } + } + + public static + void GetBufferParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.BufferParameterNameArb pname, [Out] out Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glGetBufferParameterivARB((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.BufferParameterNameArb)pname, (Int32*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetBufferParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.BufferParameterNameArb pname, [Out] Int32* @params) + { + Delegates.glGetBufferParameterivARB((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.BufferParameterNameArb)pname, (Int32*)@params); + } + + public static + void GetBufferPointer(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.BufferPointerNameArb pname, [Out] IntPtr @params) + { + unsafe + { + Delegates.glGetBufferPointervARB((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.BufferPointerNameArb)pname, (IntPtr)@params); + } + } + + public static + void GetBufferPointer(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.BufferPointerNameArb pname, [In, Out] object @params) + { + unsafe + { + System.Runtime.InteropServices.GCHandle @params_ptr = System.Runtime.InteropServices.GCHandle.Alloc(@params, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glGetBufferPointervARB((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.BufferPointerNameArb)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + } + finally + { + @params_ptr.Free(); + } + } + } + + [System.CLSCompliant(false)] + public static + void GenQueries(Int32 n, [Out] UInt32[] ids) + { + unsafe + { + fixed (UInt32* ids_ptr = ids) + { + Delegates.glGenQueriesARB((Int32)n, (UInt32*)ids_ptr); + } + } + } + + public static + void GenQueries(Int32 n, [Out] Int32[] ids) + { + unsafe + { + fixed (Int32* ids_ptr = ids) + { + Delegates.glGenQueriesARB((Int32)n, (UInt32*)ids_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void GenQueries(Int32 n, [Out] out UInt32 ids) + { + unsafe + { + fixed (UInt32* ids_ptr = &ids) + { + Delegates.glGenQueriesARB((Int32)n, (UInt32*)ids_ptr); + ids = *ids_ptr; + } + } + } + + public static + void GenQueries(Int32 n, [Out] out Int32 ids) + { + unsafe + { + fixed (Int32* ids_ptr = &ids) + { + Delegates.glGenQueriesARB((Int32)n, (UInt32*)ids_ptr); + ids = *ids_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GenQueries(Int32 n, [Out] UInt32* ids) + { + Delegates.glGenQueriesARB((Int32)n, (UInt32*)ids); + } + + [System.CLSCompliant(false)] + public static + unsafe void GenQueries(Int32 n, [Out] Int32* ids) + { + Delegates.glGenQueriesARB((Int32)n, (UInt32*)ids); + } + + [System.CLSCompliant(false)] + public static + void DeleteQueries(Int32 n, UInt32[] ids) + { + unsafe + { + fixed (UInt32* ids_ptr = ids) + { + Delegates.glDeleteQueriesARB((Int32)n, (UInt32*)ids_ptr); + } + } + } + + public static + void DeleteQueries(Int32 n, Int32[] ids) + { + unsafe + { + fixed (Int32* ids_ptr = ids) + { + Delegates.glDeleteQueriesARB((Int32)n, (UInt32*)ids_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void DeleteQueries(Int32 n, ref UInt32 ids) + { + unsafe + { + fixed (UInt32* ids_ptr = &ids) + { + Delegates.glDeleteQueriesARB((Int32)n, (UInt32*)ids_ptr); + } + } + } + + public static + void DeleteQueries(Int32 n, ref Int32 ids) + { + unsafe + { + fixed (Int32* ids_ptr = &ids) + { + Delegates.glDeleteQueriesARB((Int32)n, (UInt32*)ids_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void DeleteQueries(Int32 n, UInt32* ids) + { + Delegates.glDeleteQueriesARB((Int32)n, (UInt32*)ids); + } + + [System.CLSCompliant(false)] + public static + unsafe void DeleteQueries(Int32 n, Int32* ids) + { + Delegates.glDeleteQueriesARB((Int32)n, (UInt32*)ids); + } + + [System.CLSCompliant(false)] + public static + bool IsQuery(UInt32 id) + { + return Delegates.glIsQueryARB((UInt32)id); + } + + public static + bool IsQuery(Int32 id) + { + return Delegates.glIsQueryARB((UInt32)id); + } + + [System.CLSCompliant(false)] + public static + void BeginQuery(OpenTK.OpenGL.Enums.All target, UInt32 id) + { + Delegates.glBeginQueryARB((OpenTK.OpenGL.Enums.All)target, (UInt32)id); + } + + public static + void BeginQuery(OpenTK.OpenGL.Enums.All target, Int32 id) + { + Delegates.glBeginQueryARB((OpenTK.OpenGL.Enums.All)target, (UInt32)id); + } + + public static + void EndQuery(OpenTK.OpenGL.Enums.All target) + { + Delegates.glEndQueryARB((OpenTK.OpenGL.Enums.All)target); + } + + public static + void GetQuery(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glGetQueryivARB((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + } + } + } + + public static + void GetQuery(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glGetQueryivARB((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetQuery(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) + { + Delegates.glGetQueryivARB((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); + } + + [System.CLSCompliant(false)] + public static + void GetQueryObject(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glGetQueryObjectivARB((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetQueryObject(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glGetQueryObjectivARB((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetQueryObject(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) + { + Delegates.glGetQueryObjectivARB((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); + } + + [System.CLSCompliant(false)] + public static + void GetQueryObject(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] UInt32[] @params) + { + unsafe + { + fixed (UInt32* @params_ptr = @params) + { + Delegates.glGetQueryObjectuivARB((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (UInt32*)@params_ptr); + } + } + } + + public static + void GetQueryObject(Int32 id, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glGetQueryObjectuivARB((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (UInt32*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetQueryObject(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] out UInt32 @params) + { + unsafe + { + fixed (UInt32* @params_ptr = &@params) + { + Delegates.glGetQueryObjectuivARB((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (UInt32*)@params_ptr); + @params = *@params_ptr; + } + } + } + + public static + void GetQueryObject(Int32 id, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glGetQueryObjectuivARB((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (UInt32*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetQueryObject(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] UInt32* @params) + { + Delegates.glGetQueryObjectuivARB((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (UInt32*)@params); + } + + [System.CLSCompliant(false)] + public static + unsafe void GetQueryObject(Int32 id, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) + { + Delegates.glGetQueryObjectuivARB((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (UInt32*)@params); + } + + [System.CLSCompliant(false)] + public static + void DeleteObject(UInt32 obj) + { + Delegates.glDeleteObjectARB((UInt32)obj); + } + + public static + void DeleteObject(Int32 obj) + { + Delegates.glDeleteObjectARB((UInt32)obj); + } + + public static + Int32 GetHandle(OpenTK.OpenGL.Enums.All pname) + { + return Delegates.glGetHandleARB((OpenTK.OpenGL.Enums.All)pname); + } + + [System.CLSCompliant(false)] + public static + void DetachObject(UInt32 containerObj, UInt32 attachedObj) + { + Delegates.glDetachObjectARB((UInt32)containerObj, (UInt32)attachedObj); + } + + public static + void DetachObject(Int32 containerObj, Int32 attachedObj) + { + Delegates.glDetachObjectARB((UInt32)containerObj, (UInt32)attachedObj); + } + + public static + Int32 CreateShaderObject(OpenTK.OpenGL.Enums.All shaderType) + { + return Delegates.glCreateShaderObjectARB((OpenTK.OpenGL.Enums.All)shaderType); + } + + [System.CLSCompliant(false)] + public static + void ShaderSource(UInt32 shaderObj, Int32 count, System.String[] @string, Int32[] length) + { + unsafe + { + fixed (Int32* length_ptr = length) + { + Delegates.glShaderSourceARB((UInt32)shaderObj, (Int32)count, (System.String[])@string, (Int32*)length_ptr); + } + } + } + + public static + void ShaderSource(Int32 shaderObj, Int32 count, System.String[] @string, Int32[] length) + { + unsafe + { + fixed (Int32* length_ptr = length) + { + Delegates.glShaderSourceARB((UInt32)shaderObj, (Int32)count, (System.String[])@string, (Int32*)length_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void ShaderSource(UInt32 shaderObj, Int32 count, System.String[] @string, ref Int32 length) + { + unsafe + { + fixed (Int32* length_ptr = &length) + { + Delegates.glShaderSourceARB((UInt32)shaderObj, (Int32)count, (System.String[])@string, (Int32*)length_ptr); + } + } + } + + public static + void ShaderSource(Int32 shaderObj, Int32 count, System.String[] @string, ref Int32 length) + { + unsafe + { + fixed (Int32* length_ptr = &length) + { + Delegates.glShaderSourceARB((UInt32)shaderObj, (Int32)count, (System.String[])@string, (Int32*)length_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void ShaderSource(UInt32 shaderObj, Int32 count, System.String[] @string, Int32* length) + { + Delegates.glShaderSourceARB((UInt32)shaderObj, (Int32)count, (System.String[])@string, (Int32*)length); + } + + [System.CLSCompliant(false)] + public static + unsafe void ShaderSource(Int32 shaderObj, Int32 count, System.String[] @string, Int32* length) + { + Delegates.glShaderSourceARB((UInt32)shaderObj, (Int32)count, (System.String[])@string, (Int32*)length); + } + + [System.CLSCompliant(false)] + public static + void CompileShader(UInt32 shaderObj) + { + Delegates.glCompileShaderARB((UInt32)shaderObj); + } + + public static + void CompileShader(Int32 shaderObj) + { + Delegates.glCompileShaderARB((UInt32)shaderObj); + } + + public static + Int32 CreateProgramObject() + { + return Delegates.glCreateProgramObjectARB(); + } + + [System.CLSCompliant(false)] + public static + void AttachObject(UInt32 containerObj, UInt32 obj) + { + Delegates.glAttachObjectARB((UInt32)containerObj, (UInt32)obj); + } + + public static + void AttachObject(Int32 containerObj, Int32 obj) + { + Delegates.glAttachObjectARB((UInt32)containerObj, (UInt32)obj); + } + + [System.CLSCompliant(false)] + public static + void LinkProgram(UInt32 programObj) + { + Delegates.glLinkProgramARB((UInt32)programObj); + } + + public static + void LinkProgram(Int32 programObj) + { + Delegates.glLinkProgramARB((UInt32)programObj); + } + + [System.CLSCompliant(false)] + public static + void UseProgramObject(UInt32 programObj) + { + Delegates.glUseProgramObjectARB((UInt32)programObj); + } + + public static + void UseProgramObject(Int32 programObj) + { + Delegates.glUseProgramObjectARB((UInt32)programObj); + } + + [System.CLSCompliant(false)] + public static + void ValidateProgram(UInt32 programObj) + { + Delegates.glValidateProgramARB((UInt32)programObj); + } + + public static + void ValidateProgram(Int32 programObj) + { + Delegates.glValidateProgramARB((UInt32)programObj); + } + + public static + void Uniform1(Int32 location, Single v0) + { + Delegates.glUniform1fARB((Int32)location, (Single)v0); + } + + public static + void Uniform2(Int32 location, Single v0, Single v1) + { + Delegates.glUniform2fARB((Int32)location, (Single)v0, (Single)v1); + } + + public static + void Uniform3(Int32 location, Single v0, Single v1, Single v2) + { + Delegates.glUniform3fARB((Int32)location, (Single)v0, (Single)v1, (Single)v2); + } + + public static + void Uniform4(Int32 location, Single v0, Single v1, Single v2, Single v3) + { + Delegates.glUniform4fARB((Int32)location, (Single)v0, (Single)v1, (Single)v2, (Single)v3); + } + + public static + void Uniform1(Int32 location, Int32 v0) + { + Delegates.glUniform1iARB((Int32)location, (Int32)v0); + } + + public static + void Uniform2(Int32 location, Int32 v0, Int32 v1) + { + Delegates.glUniform2iARB((Int32)location, (Int32)v0, (Int32)v1); + } + + public static + void Uniform3(Int32 location, Int32 v0, Int32 v1, Int32 v2) + { + Delegates.glUniform3iARB((Int32)location, (Int32)v0, (Int32)v1, (Int32)v2); + } + + public static + void Uniform4(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) + { + Delegates.glUniform4iARB((Int32)location, (Int32)v0, (Int32)v1, (Int32)v2, (Int32)v3); + } + + public static + void Uniform1(Int32 location, Int32 count, Single[] value) + { + unsafe + { + fixed (Single* value_ptr = value) + { + Delegates.glUniform1fvARB((Int32)location, (Int32)count, (Single*)value_ptr); + } + } + } + + public static + void Uniform1(Int32 location, Int32 count, ref Single value) + { + unsafe + { + fixed (Single* value_ptr = &value) + { + Delegates.glUniform1fvARB((Int32)location, (Int32)count, (Single*)value_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Uniform1(Int32 location, Int32 count, Single* value) + { + Delegates.glUniform1fvARB((Int32)location, (Int32)count, (Single*)value); + } + + public static + void Uniform2v(Int32 location, Int32 count, Single[] value) + { + unsafe + { + fixed (Single* value_ptr = value) + { + Delegates.glUniform2fvARB((Int32)location, (Int32)count, (Single*)value_ptr); + } + } + } + + public static + void Uniform2v(Int32 location, Int32 count, ref Single value) + { + unsafe + { + fixed (Single* value_ptr = &value) + { + Delegates.glUniform2fvARB((Int32)location, (Int32)count, (Single*)value_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Uniform2v(Int32 location, Int32 count, Single* value) + { + Delegates.glUniform2fvARB((Int32)location, (Int32)count, (Single*)value); + } + + public static + void Uniform3(Int32 location, Int32 count, Single[] value) + { + unsafe + { + fixed (Single* value_ptr = value) + { + Delegates.glUniform3fvARB((Int32)location, (Int32)count, (Single*)value_ptr); + } + } + } + + public static + void Uniform3(Int32 location, Int32 count, ref Single value) + { + unsafe + { + fixed (Single* value_ptr = &value) + { + Delegates.glUniform3fvARB((Int32)location, (Int32)count, (Single*)value_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Uniform3(Int32 location, Int32 count, Single* value) + { + Delegates.glUniform3fvARB((Int32)location, (Int32)count, (Single*)value); + } + + public static + void Uniform4(Int32 location, Int32 count, Single[] value) + { + unsafe + { + fixed (Single* value_ptr = value) + { + Delegates.glUniform4fvARB((Int32)location, (Int32)count, (Single*)value_ptr); + } + } + } + + public static + void Uniform4(Int32 location, Int32 count, ref Single value) + { + unsafe + { + fixed (Single* value_ptr = &value) + { + Delegates.glUniform4fvARB((Int32)location, (Int32)count, (Single*)value_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Uniform4(Int32 location, Int32 count, Single* value) + { + Delegates.glUniform4fvARB((Int32)location, (Int32)count, (Single*)value); + } + + public static + void Uniform1(Int32 location, Int32 count, Int32[] value) + { + unsafe + { + fixed (Int32* value_ptr = value) + { + Delegates.glUniform1ivARB((Int32)location, (Int32)count, (Int32*)value_ptr); + } + } + } + + public static + void Uniform1(Int32 location, Int32 count, ref Int32 value) + { + unsafe + { + fixed (Int32* value_ptr = &value) + { + Delegates.glUniform1ivARB((Int32)location, (Int32)count, (Int32*)value_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Uniform1(Int32 location, Int32 count, Int32* value) + { + Delegates.glUniform1ivARB((Int32)location, (Int32)count, (Int32*)value); + } + + public static + void Uniform2v(Int32 location, Int32 count, Int32[] value) + { + unsafe + { + fixed (Int32* value_ptr = value) + { + Delegates.glUniform2ivARB((Int32)location, (Int32)count, (Int32*)value_ptr); + } + } + } + + public static + void Uniform2v(Int32 location, Int32 count, ref Int32 value) + { + unsafe + { + fixed (Int32* value_ptr = &value) + { + Delegates.glUniform2ivARB((Int32)location, (Int32)count, (Int32*)value_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Uniform2v(Int32 location, Int32 count, Int32* value) + { + Delegates.glUniform2ivARB((Int32)location, (Int32)count, (Int32*)value); + } + + public static + void Uniform3(Int32 location, Int32 count, Int32[] value) + { + unsafe + { + fixed (Int32* value_ptr = value) + { + Delegates.glUniform3ivARB((Int32)location, (Int32)count, (Int32*)value_ptr); + } + } + } + + public static + void Uniform3(Int32 location, Int32 count, ref Int32 value) + { + unsafe + { + fixed (Int32* value_ptr = &value) + { + Delegates.glUniform3ivARB((Int32)location, (Int32)count, (Int32*)value_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Uniform3(Int32 location, Int32 count, Int32* value) + { + Delegates.glUniform3ivARB((Int32)location, (Int32)count, (Int32*)value); + } + + public static + void Uniform4(Int32 location, Int32 count, Int32[] value) + { + unsafe + { + fixed (Int32* value_ptr = value) + { + Delegates.glUniform4ivARB((Int32)location, (Int32)count, (Int32*)value_ptr); + } + } + } + + public static + void Uniform4(Int32 location, Int32 count, ref Int32 value) + { + unsafe + { + fixed (Int32* value_ptr = &value) + { + Delegates.glUniform4ivARB((Int32)location, (Int32)count, (Int32*)value_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Uniform4(Int32 location, Int32 count, Int32* value) + { + Delegates.glUniform4ivARB((Int32)location, (Int32)count, (Int32*)value); + } + + public static + void UniformMatrix2(Int32 location, Int32 count, bool transpose, Single[] value) + { + unsafe + { + fixed (Single* value_ptr = value) + { + Delegates.glUniformMatrix2fvARB((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + } + } + } + + public static + void UniformMatrix2(Int32 location, Int32 count, bool transpose, ref Single value) + { + unsafe + { + fixed (Single* value_ptr = &value) + { + Delegates.glUniformMatrix2fvARB((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, Single* value) + { + Delegates.glUniformMatrix2fvARB((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + } + + public static + void UniformMatrix3(Int32 location, Int32 count, bool transpose, Single[] value) + { + unsafe + { + fixed (Single* value_ptr = value) + { + Delegates.glUniformMatrix3fvARB((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + } + } + } + + public static + void UniformMatrix3(Int32 location, Int32 count, bool transpose, ref Single value) + { + unsafe + { + fixed (Single* value_ptr = &value) + { + Delegates.glUniformMatrix3fvARB((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, Single* value) + { + Delegates.glUniformMatrix3fvARB((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + } + + public static + void UniformMatrix4(Int32 location, Int32 count, bool transpose, Single[] value) + { + unsafe + { + fixed (Single* value_ptr = value) + { + Delegates.glUniformMatrix4fvARB((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + } + } + } + + public static + void UniformMatrix4(Int32 location, Int32 count, bool transpose, ref Single value) + { + unsafe + { + fixed (Single* value_ptr = &value) + { + Delegates.glUniformMatrix4fvARB((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, Single* value) + { + Delegates.glUniformMatrix4fvARB((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + } + + [System.CLSCompliant(false)] + public static + void GetObjectParameter(UInt32 obj, OpenTK.OpenGL.Enums.All pname, [Out] Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + } + } + } + + public static + void GetObjectParameter(Int32 obj, OpenTK.OpenGL.Enums.All pname, [Out] Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetObjectParameter(UInt32 obj, OpenTK.OpenGL.Enums.All pname, [Out] out Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + @params = *@params_ptr; + } + } + } + + public static + void GetObjectParameter(Int32 obj, OpenTK.OpenGL.Enums.All pname, [Out] out Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetObjectParameter(UInt32 obj, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params) + { + Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); + } + + [System.CLSCompliant(false)] + public static + unsafe void GetObjectParameter(Int32 obj, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params) + { + Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); + } + + [System.CLSCompliant(false)] + public static + void GetObjectParameter(UInt32 obj, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + } + } + } + + public static + void GetObjectParameter(Int32 obj, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetObjectParameter(UInt32 obj, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + @params = *@params_ptr; + } + } + } + + public static + void GetObjectParameter(Int32 obj, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetObjectParameter(UInt32 obj, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) + { + Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); + } + + [System.CLSCompliant(false)] + public static + unsafe void GetObjectParameter(Int32 obj, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) + { + Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); + } + + [System.CLSCompliant(false)] + public static + void GetInfoLog(UInt32 obj, Int32 maxLength, [Out] Int32[] length, [Out] System.Text.StringBuilder infoLog) + { + unsafe + { + fixed (Int32* length_ptr = length) + { + Delegates.glGetInfoLogARB((UInt32)obj, (Int32)maxLength, (Int32*)length_ptr, (System.Text.StringBuilder)infoLog); + } + } + } + + public static + void GetInfoLog(Int32 obj, Int32 maxLength, [Out] Int32[] length, [Out] System.Text.StringBuilder infoLog) + { + unsafe + { + fixed (Int32* length_ptr = length) + { + Delegates.glGetInfoLogARB((UInt32)obj, (Int32)maxLength, (Int32*)length_ptr, (System.Text.StringBuilder)infoLog); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetInfoLog(UInt32 obj, Int32 maxLength, [Out] out Int32 length, [Out] System.Text.StringBuilder infoLog) + { + unsafe + { + fixed (Int32* length_ptr = &length) + { + Delegates.glGetInfoLogARB((UInt32)obj, (Int32)maxLength, (Int32*)length_ptr, (System.Text.StringBuilder)infoLog); + length = *length_ptr; + } + } + } + + public static + void GetInfoLog(Int32 obj, Int32 maxLength, [Out] out Int32 length, [Out] System.Text.StringBuilder infoLog) + { + unsafe + { + fixed (Int32* length_ptr = &length) + { + Delegates.glGetInfoLogARB((UInt32)obj, (Int32)maxLength, (Int32*)length_ptr, (System.Text.StringBuilder)infoLog); + length = *length_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetInfoLog(UInt32 obj, Int32 maxLength, [Out] Int32* length, [Out] System.Text.StringBuilder infoLog) + { + Delegates.glGetInfoLogARB((UInt32)obj, (Int32)maxLength, (Int32*)length, (System.Text.StringBuilder)infoLog); + } + + [System.CLSCompliant(false)] + public static + unsafe void GetInfoLog(Int32 obj, Int32 maxLength, [Out] Int32* length, [Out] System.Text.StringBuilder infoLog) + { + Delegates.glGetInfoLogARB((UInt32)obj, (Int32)maxLength, (Int32*)length, (System.Text.StringBuilder)infoLog); + } + + [System.CLSCompliant(false)] + public static + void GetAttachedObjects(UInt32 containerObj, Int32 maxCount, [Out] Int32[] count, [Out] UInt32[] obj) + { + unsafe + { + fixed (Int32* count_ptr = count) + fixed (UInt32* obj_ptr = obj) + { + Delegates.glGetAttachedObjectsARB((UInt32)containerObj, (Int32)maxCount, (Int32*)count_ptr, (UInt32*)obj_ptr); + } + } + } + + public static + void GetAttachedObjects(Int32 containerObj, Int32 maxCount, [Out] Int32[] count, [Out] Int32[] obj) + { + unsafe + { + fixed (Int32* count_ptr = count) + fixed (Int32* obj_ptr = obj) + { + Delegates.glGetAttachedObjectsARB((UInt32)containerObj, (Int32)maxCount, (Int32*)count_ptr, (UInt32*)obj_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetAttachedObjects(UInt32 containerObj, Int32 maxCount, [Out] out Int32 count, [Out] out UInt32 obj) + { + unsafe + { + fixed (Int32* count_ptr = &count) + fixed (UInt32* obj_ptr = &obj) + { + Delegates.glGetAttachedObjectsARB((UInt32)containerObj, (Int32)maxCount, (Int32*)count_ptr, (UInt32*)obj_ptr); + count = *count_ptr; + obj = *obj_ptr; + } + } + } + + public static + void GetAttachedObjects(Int32 containerObj, Int32 maxCount, [Out] out Int32 count, [Out] out Int32 obj) + { + unsafe + { + fixed (Int32* count_ptr = &count) + fixed (Int32* obj_ptr = &obj) + { + Delegates.glGetAttachedObjectsARB((UInt32)containerObj, (Int32)maxCount, (Int32*)count_ptr, (UInt32*)obj_ptr); + count = *count_ptr; + obj = *obj_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetAttachedObjects(UInt32 containerObj, Int32 maxCount, [Out] Int32* count, [Out] UInt32* obj) + { + Delegates.glGetAttachedObjectsARB((UInt32)containerObj, (Int32)maxCount, (Int32*)count, (UInt32*)obj); + } + + [System.CLSCompliant(false)] + public static + unsafe void GetAttachedObjects(Int32 containerObj, Int32 maxCount, [Out] Int32* count, [Out] Int32* obj) + { + Delegates.glGetAttachedObjectsARB((UInt32)containerObj, (Int32)maxCount, (Int32*)count, (UInt32*)obj); + } + + [System.CLSCompliant(false)] + public static + Int32 GetUniformLocation(UInt32 programObj, System.String name) + { + return Delegates.glGetUniformLocationARB((UInt32)programObj, (System.String)name); + } + + public static + Int32 GetUniformLocation(Int32 programObj, System.String name) + { + return Delegates.glGetUniformLocationARB((UInt32)programObj, (System.String)name); + } + + [System.CLSCompliant(false)] + public static + void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.OpenGL.Enums.All[] type, [Out] System.Text.StringBuilder name) + { + unsafe + { + fixed (Int32* length_ptr = length) + fixed (Int32* size_ptr = size) + fixed (OpenTK.OpenGL.Enums.All* type_ptr = type) + { + Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.All*)type_ptr, (System.Text.StringBuilder)name); + } + } + } + + public static + void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.OpenGL.Enums.All[] type, [Out] System.Text.StringBuilder name) + { + unsafe + { + fixed (Int32* length_ptr = length) + fixed (Int32* size_ptr = size) + fixed (OpenTK.OpenGL.Enums.All* type_ptr = type) + { + Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.All*)type_ptr, (System.Text.StringBuilder)name); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.OpenGL.Enums.All type, [Out] System.Text.StringBuilder name) + { + unsafe + { + fixed (Int32* length_ptr = &length) + fixed (Int32* size_ptr = &size) + fixed (OpenTK.OpenGL.Enums.All* type_ptr = &type) + { + Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.All*)type_ptr, (System.Text.StringBuilder)name); + length = *length_ptr; + size = *size_ptr; + type = *type_ptr; + } + } + } + + public static + void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.OpenGL.Enums.All type, [Out] System.Text.StringBuilder name) + { + unsafe + { + fixed (Int32* length_ptr = &length) + fixed (Int32* size_ptr = &size) + fixed (OpenTK.OpenGL.Enums.All* type_ptr = &type) + { + Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.All*)type_ptr, (System.Text.StringBuilder)name); + length = *length_ptr; + size = *size_ptr; + type = *type_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.OpenGL.Enums.All* type, [Out] System.Text.StringBuilder name) + { + Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length, (Int32*)size, (OpenTK.OpenGL.Enums.All*)type, (System.Text.StringBuilder)name); + } + + [System.CLSCompliant(false)] + public static + unsafe void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.OpenGL.Enums.All* type, [Out] System.Text.StringBuilder name) + { + Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length, (Int32*)size, (OpenTK.OpenGL.Enums.All*)type, (System.Text.StringBuilder)name); + } + + [System.CLSCompliant(false)] + public static + void GetUniform(UInt32 programObj, Int32 location, [Out] Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glGetUniformfvARB((UInt32)programObj, (Int32)location, (Single*)@params_ptr); + } + } + } + + public static + void GetUniform(Int32 programObj, Int32 location, [Out] Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glGetUniformfvARB((UInt32)programObj, (Int32)location, (Single*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetUniform(UInt32 programObj, Int32 location, [Out] out Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glGetUniformfvARB((UInt32)programObj, (Int32)location, (Single*)@params_ptr); + @params = *@params_ptr; + } + } + } + + public static + void GetUniform(Int32 programObj, Int32 location, [Out] out Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glGetUniformfvARB((UInt32)programObj, (Int32)location, (Single*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetUniform(UInt32 programObj, Int32 location, [Out] Single* @params) + { + Delegates.glGetUniformfvARB((UInt32)programObj, (Int32)location, (Single*)@params); + } + + [System.CLSCompliant(false)] + public static + unsafe void GetUniform(Int32 programObj, Int32 location, [Out] Single* @params) + { + Delegates.glGetUniformfvARB((UInt32)programObj, (Int32)location, (Single*)@params); + } + + [System.CLSCompliant(false)] + public static + void GetUniform(UInt32 programObj, Int32 location, [Out] Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glGetUniformivARB((UInt32)programObj, (Int32)location, (Int32*)@params_ptr); + } + } + } + + public static + void GetUniform(Int32 programObj, Int32 location, [Out] Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glGetUniformivARB((UInt32)programObj, (Int32)location, (Int32*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetUniform(UInt32 programObj, Int32 location, [Out] out Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glGetUniformivARB((UInt32)programObj, (Int32)location, (Int32*)@params_ptr); + @params = *@params_ptr; + } + } + } + + public static + void GetUniform(Int32 programObj, Int32 location, [Out] out Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glGetUniformivARB((UInt32)programObj, (Int32)location, (Int32*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetUniform(UInt32 programObj, Int32 location, [Out] Int32* @params) + { + Delegates.glGetUniformivARB((UInt32)programObj, (Int32)location, (Int32*)@params); + } + + [System.CLSCompliant(false)] + public static + unsafe void GetUniform(Int32 programObj, Int32 location, [Out] Int32* @params) + { + Delegates.glGetUniformivARB((UInt32)programObj, (Int32)location, (Int32*)@params); + } + + [System.CLSCompliant(false)] + public static + void GetShaderSource(UInt32 obj, Int32 maxLength, [Out] Int32[] length, [Out] System.Text.StringBuilder[] source) + { + unsafe + { + fixed (Int32* length_ptr = length) + { + Delegates.glGetShaderSourceARB((UInt32)obj, (Int32)maxLength, (Int32*)length_ptr, (System.Text.StringBuilder[])source); + } + } + } + + public static + void GetShaderSource(Int32 obj, Int32 maxLength, [Out] Int32[] length, [Out] System.Text.StringBuilder[] source) + { + unsafe + { + fixed (Int32* length_ptr = length) + { + Delegates.glGetShaderSourceARB((UInt32)obj, (Int32)maxLength, (Int32*)length_ptr, (System.Text.StringBuilder[])source); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetShaderSource(UInt32 obj, Int32 maxLength, [Out] out Int32 length, [Out] System.Text.StringBuilder[] source) + { + unsafe + { + fixed (Int32* length_ptr = &length) + { + Delegates.glGetShaderSourceARB((UInt32)obj, (Int32)maxLength, (Int32*)length_ptr, (System.Text.StringBuilder[])source); + length = *length_ptr; + } + } + } + + public static + void GetShaderSource(Int32 obj, Int32 maxLength, [Out] out Int32 length, [Out] System.Text.StringBuilder[] source) + { + unsafe + { + fixed (Int32* length_ptr = &length) + { + Delegates.glGetShaderSourceARB((UInt32)obj, (Int32)maxLength, (Int32*)length_ptr, (System.Text.StringBuilder[])source); + length = *length_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetShaderSource(UInt32 obj, Int32 maxLength, [Out] Int32* length, [Out] System.Text.StringBuilder[] source) + { + Delegates.glGetShaderSourceARB((UInt32)obj, (Int32)maxLength, (Int32*)length, (System.Text.StringBuilder[])source); + } + + [System.CLSCompliant(false)] + public static + unsafe void GetShaderSource(Int32 obj, Int32 maxLength, [Out] Int32* length, [Out] System.Text.StringBuilder[] source) + { + Delegates.glGetShaderSourceARB((UInt32)obj, (Int32)maxLength, (Int32*)length, (System.Text.StringBuilder[])source); + } + + [System.CLSCompliant(false)] + public static + void BindAttribLocation(UInt32 programObj, UInt32 index, System.String name) + { + Delegates.glBindAttribLocationARB((UInt32)programObj, (UInt32)index, (System.String)name); + } + + public static + void BindAttribLocation(Int32 programObj, Int32 index, System.String name) + { + Delegates.glBindAttribLocationARB((UInt32)programObj, (UInt32)index, (System.String)name); + } + + [System.CLSCompliant(false)] + public static + void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.OpenGL.Enums.All[] type, [Out] System.Text.StringBuilder name) + { + unsafe + { + fixed (Int32* length_ptr = length) + fixed (Int32* size_ptr = size) + fixed (OpenTK.OpenGL.Enums.All* type_ptr = type) + { + Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.All*)type_ptr, (System.Text.StringBuilder)name); + } + } + } + + public static + void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.OpenGL.Enums.All[] type, [Out] System.Text.StringBuilder name) + { + unsafe + { + fixed (Int32* length_ptr = length) + fixed (Int32* size_ptr = size) + fixed (OpenTK.OpenGL.Enums.All* type_ptr = type) + { + Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.All*)type_ptr, (System.Text.StringBuilder)name); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.OpenGL.Enums.All type, [Out] System.Text.StringBuilder name) + { + unsafe + { + fixed (Int32* length_ptr = &length) + fixed (Int32* size_ptr = &size) + fixed (OpenTK.OpenGL.Enums.All* type_ptr = &type) + { + Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.All*)type_ptr, (System.Text.StringBuilder)name); + length = *length_ptr; + size = *size_ptr; + type = *type_ptr; + } + } + } + + public static + void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.OpenGL.Enums.All type, [Out] System.Text.StringBuilder name) + { + unsafe + { + fixed (Int32* length_ptr = &length) + fixed (Int32* size_ptr = &size) + fixed (OpenTK.OpenGL.Enums.All* type_ptr = &type) + { + Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.OpenGL.Enums.All*)type_ptr, (System.Text.StringBuilder)name); + length = *length_ptr; + size = *size_ptr; + type = *type_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.OpenGL.Enums.All* type, [Out] System.Text.StringBuilder name) + { + Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length, (Int32*)size, (OpenTK.OpenGL.Enums.All*)type, (System.Text.StringBuilder)name); + } + + [System.CLSCompliant(false)] + public static + unsafe void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.OpenGL.Enums.All* type, [Out] System.Text.StringBuilder name) + { + Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length, (Int32*)size, (OpenTK.OpenGL.Enums.All*)type, (System.Text.StringBuilder)name); + } + + [System.CLSCompliant(false)] + public static + Int32 GetAttribLocation(UInt32 programObj, System.String name) + { + return Delegates.glGetAttribLocationARB((UInt32)programObj, (System.String)name); + } + + public static + Int32 GetAttribLocation(Int32 programObj, System.String name) + { + return Delegates.glGetAttribLocationARB((UInt32)programObj, (System.String)name); + } + + public static + void DrawBuffers(Int32 n, OpenTK.OpenGL.Enums.All[] bufs) + { + unsafe + { + fixed (OpenTK.OpenGL.Enums.All* bufs_ptr = bufs) + { + Delegates.glDrawBuffersARB((Int32)n, (OpenTK.OpenGL.Enums.All*)bufs_ptr); + } + } + } + + public static + void DrawBuffers(Int32 n, ref OpenTK.OpenGL.Enums.All bufs) + { + unsafe + { + fixed (OpenTK.OpenGL.Enums.All* bufs_ptr = &bufs) + { + Delegates.glDrawBuffersARB((Int32)n, (OpenTK.OpenGL.Enums.All*)bufs_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void DrawBuffers(Int32 n, OpenTK.OpenGL.Enums.All* bufs) + { + Delegates.glDrawBuffersARB((Int32)n, (OpenTK.OpenGL.Enums.All*)bufs); + } + + public static + void ClampColor(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All clamp) + { + Delegates.glClampColorARB((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)clamp); + } + + } + + public static partial class Ext + { + public static + void BlendColor(Single red, Single green, Single blue, Single alpha) + { + Delegates.glBlendColorEXT((Single)red, (Single)green, (Single)blue, (Single)alpha); + } + + public static + void PolygonOffset(Single factor, Single bias) + { + Delegates.glPolygonOffsetEXT((Single)factor, (Single)bias); + } + + public static + void TexImage3D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr pixels) + { + unsafe + { + Delegates.glTexImage3DEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)pixels); + } + } + + public static + void TexImage3D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object pixels) + { + unsafe + { + System.Runtime.InteropServices.GCHandle pixels_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pixels, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glTexImage3DEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + } + finally + { + pixels_ptr.Free(); + } + } + } + + public static + void TexSubImage3D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr pixels) + { + unsafe + { + Delegates.glTexSubImage3DEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)pixels); + } + } + + public static + void TexSubImage3D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object pixels) + { + unsafe + { + System.Runtime.InteropServices.GCHandle pixels_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pixels, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glTexSubImage3DEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + } + finally + { + pixels_ptr.Free(); + } + } + } + + public static + void TexSubImage1D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr pixels) + { + unsafe + { + Delegates.glTexSubImage1DEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)pixels); + } + } + + public static + void TexSubImage1D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object pixels) + { + unsafe + { + System.Runtime.InteropServices.GCHandle pixels_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pixels, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glTexSubImage1DEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + } + finally + { + pixels_ptr.Free(); + } + } + } + + public static + void TexSubImage2D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr pixels) + { + unsafe + { + Delegates.glTexSubImage2DEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)pixels); + } + } + + public static + void TexSubImage2D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object pixels) + { + unsafe + { + System.Runtime.InteropServices.GCHandle pixels_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pixels, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glTexSubImage2DEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + } + finally + { + pixels_ptr.Free(); + } + } + } + + public static + void CopyTexImage1D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border) + { + Delegates.glCopyTexImage1DEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)border); + } + + public static + void CopyTexImage2D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) + { + Delegates.glCopyTexImage2DEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border); + } + + public static + void CopyTexSubImage1D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) + { + Delegates.glCopyTexSubImage1DEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)x, (Int32)y, (Int32)width); + } + + public static + void CopyTexSubImage2D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) + { + Delegates.glCopyTexSubImage2DEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + } + + public static + void CopyTexSubImage3D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) + { + Delegates.glCopyTexSubImage3DEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + } + + public static + void GetHistogram(OpenTK.OpenGL.Enums.All target, bool reset, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr values) + { + unsafe + { + Delegates.glGetHistogramEXT((OpenTK.OpenGL.Enums.All)target, (bool)reset, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)values); + } + } + + public static + void GetHistogram(OpenTK.OpenGL.Enums.All target, bool reset, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object values) + { + unsafe + { + System.Runtime.InteropServices.GCHandle values_ptr = System.Runtime.InteropServices.GCHandle.Alloc(values, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glGetHistogramEXT((OpenTK.OpenGL.Enums.All)target, (bool)reset, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); + } + finally + { + values_ptr.Free(); + } + } + } + + public static + void GetHistogramParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glGetHistogramParameterfvEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + } + } + } + + public static + void GetHistogramParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] out Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glGetHistogramParameterfvEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetHistogramParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params) + { + Delegates.glGetHistogramParameterfvEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); + } + + public static + void GetHistogramParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glGetHistogramParameterivEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + } + } + } + + public static + void GetHistogramParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glGetHistogramParameterivEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetHistogramParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) + { + Delegates.glGetHistogramParameterivEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); + } + + public static + void GetMinmax(OpenTK.OpenGL.Enums.All target, bool reset, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr values) + { + unsafe + { + Delegates.glGetMinmaxEXT((OpenTK.OpenGL.Enums.All)target, (bool)reset, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)values); + } + } + + public static + void GetMinmax(OpenTK.OpenGL.Enums.All target, bool reset, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object values) + { + unsafe + { + System.Runtime.InteropServices.GCHandle values_ptr = System.Runtime.InteropServices.GCHandle.Alloc(values, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glGetMinmaxEXT((OpenTK.OpenGL.Enums.All)target, (bool)reset, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); + } + finally + { + values_ptr.Free(); + } + } + } + + public static + void GetMinmaxParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glGetMinmaxParameterfvEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + } + } + } + + public static + void GetMinmaxParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] out Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glGetMinmaxParameterfvEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetMinmaxParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params) + { + Delegates.glGetMinmaxParameterfvEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); + } + + public static + void GetMinmaxParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glGetMinmaxParameterivEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + } + } + } + + public static + void GetMinmaxParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glGetMinmaxParameterivEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetMinmaxParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) + { + Delegates.glGetMinmaxParameterivEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); + } + + public static + void Histogram(OpenTK.OpenGL.Enums.All target, Int32 width, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, bool sink) + { + Delegates.glHistogramEXT((OpenTK.OpenGL.Enums.All)target, (Int32)width, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (bool)sink); + } + + public static + void Minmax(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, bool sink) + { + Delegates.glMinmaxEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (bool)sink); + } + + public static + void ResetHistogram(OpenTK.OpenGL.Enums.All target) + { + Delegates.glResetHistogramEXT((OpenTK.OpenGL.Enums.All)target); + } + + public static + void ResetMinmax(OpenTK.OpenGL.Enums.All target) + { + Delegates.glResetMinmaxEXT((OpenTK.OpenGL.Enums.All)target); + } + + public static + void ConvolutionFilter1D(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr image) + { + unsafe + { + Delegates.glConvolutionFilter1DEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)image); + } + } + + public static + void ConvolutionFilter1D(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object image) + { + unsafe + { + System.Runtime.InteropServices.GCHandle image_ptr = System.Runtime.InteropServices.GCHandle.Alloc(image, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glConvolutionFilter1DEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + } + finally + { + image_ptr.Free(); + } + } + } + + public static + void ConvolutionFilter2D(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr image) + { + unsafe + { + Delegates.glConvolutionFilter2DEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)image); + } + } + + public static + void ConvolutionFilter2D(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object image) + { + unsafe + { + System.Runtime.InteropServices.GCHandle image_ptr = System.Runtime.InteropServices.GCHandle.Alloc(image, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glConvolutionFilter2DEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + } + finally + { + image_ptr.Free(); + } + } + } + + public static + void ConvolutionParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Single @params) + { + Delegates.glConvolutionParameterfEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single)@params); + } + + public static + void ConvolutionParameterv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glConvolutionParameterfvEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + } + } + } + + public static + void ConvolutionParameterv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, ref Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glConvolutionParameterfvEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void ConvolutionParameterv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Single* @params) + { + Delegates.glConvolutionParameterfvEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); + } + + public static + void ConvolutionParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Int32 @params) + { + Delegates.glConvolutionParameteriEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32)@params); + } + + public static + void ConvolutionParameterv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glConvolutionParameterivEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + } + } + } + + public static + void ConvolutionParameterv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, ref Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glConvolutionParameterivEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void ConvolutionParameterv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Int32* @params) + { + Delegates.glConvolutionParameterivEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); + } + + public static + void CopyConvolutionFilter1D(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) + { + Delegates.glCopyConvolutionFilter1DEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width); + } + + public static + void CopyConvolutionFilter2D(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height) + { + Delegates.glCopyConvolutionFilter2DEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + } + + public static + void GetConvolutionFilter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr image) + { + unsafe + { + Delegates.glGetConvolutionFilterEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)image); + } + } + + public static + void GetConvolutionFilter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object image) + { + unsafe + { + System.Runtime.InteropServices.GCHandle image_ptr = System.Runtime.InteropServices.GCHandle.Alloc(image, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glGetConvolutionFilterEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + } + finally + { + image_ptr.Free(); + } + } + } + + public static + void GetConvolutionParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glGetConvolutionParameterfvEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + } + } + } + + public static + void GetConvolutionParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] out Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glGetConvolutionParameterfvEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetConvolutionParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params) + { + Delegates.glGetConvolutionParameterfvEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); + } + + public static + void GetConvolutionParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glGetConvolutionParameterivEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + } + } + } + + public static + void GetConvolutionParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glGetConvolutionParameterivEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetConvolutionParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) + { + Delegates.glGetConvolutionParameterivEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); + } + + public static + void GetSeparableFilter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr row, [Out] IntPtr column, [Out] IntPtr span) + { + unsafe + { + Delegates.glGetSeparableFilterEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)row, (IntPtr)column, (IntPtr)span); + } + } + + public static + void GetSeparableFilter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object row, [In, Out] object column, [In, Out] object span) + { + unsafe + { + System.Runtime.InteropServices.GCHandle row_ptr = System.Runtime.InteropServices.GCHandle.Alloc(row, System.Runtime.InteropServices.GCHandleType.Pinned); + System.Runtime.InteropServices.GCHandle column_ptr = System.Runtime.InteropServices.GCHandle.Alloc(column, System.Runtime.InteropServices.GCHandleType.Pinned); + System.Runtime.InteropServices.GCHandle span_ptr = System.Runtime.InteropServices.GCHandle.Alloc(span, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glGetSeparableFilterEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); + } + finally + { + row_ptr.Free(); + column_ptr.Free(); + span_ptr.Free(); + } + } + } + + public static + void GetSeparableFilter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr row, [In, Out] object column, [In, Out] object span) + { + unsafe + { + System.Runtime.InteropServices.GCHandle column_ptr = System.Runtime.InteropServices.GCHandle.Alloc(column, System.Runtime.InteropServices.GCHandleType.Pinned); + System.Runtime.InteropServices.GCHandle span_ptr = System.Runtime.InteropServices.GCHandle.Alloc(span, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glGetSeparableFilterEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)row, (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); + } + finally + { + column_ptr.Free(); + span_ptr.Free(); + } + } + } + + public static + void SeparableFilter2D(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr row, IntPtr column) + { + unsafe + { + Delegates.glSeparableFilter2DEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)row, (IntPtr)column); + } + } + + public static + void SeparableFilter2D(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object row, [In, Out] object column) + { + unsafe + { + System.Runtime.InteropServices.GCHandle row_ptr = System.Runtime.InteropServices.GCHandle.Alloc(row, System.Runtime.InteropServices.GCHandleType.Pinned); + System.Runtime.InteropServices.GCHandle column_ptr = System.Runtime.InteropServices.GCHandle.Alloc(column, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glSeparableFilter2DEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject()); + } + finally + { + row_ptr.Free(); + column_ptr.Free(); + } + } + } + + [System.CLSCompliant(false)] + public static + bool AreTexturesResident(Int32 n, UInt32[] textures, [Out] bool[] residences) + { + unsafe + { + fixed (UInt32* textures_ptr = textures) + fixed (bool* residences_ptr = residences) + { + return Delegates.glAreTexturesResidentEXT((Int32)n, (UInt32*)textures_ptr, (bool*)residences_ptr); + } + } + } + + public static + bool AreTexturesResident(Int32 n, Int32[] textures, [Out] bool[] residences) + { + unsafe + { + fixed (Int32* textures_ptr = textures) + fixed (bool* residences_ptr = residences) + { + return Delegates.glAreTexturesResidentEXT((Int32)n, (UInt32*)textures_ptr, (bool*)residences_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + bool AreTexturesResident(Int32 n, ref UInt32 textures, [Out] out bool residences) + { + unsafe + { + fixed (UInt32* textures_ptr = &textures) + fixed (bool* residences_ptr = &residences) + { + bool retval = Delegates.glAreTexturesResidentEXT((Int32)n, (UInt32*)textures_ptr, (bool*)residences_ptr); + residences = *residences_ptr; + return retval; + } + } + } + + public static + bool AreTexturesResident(Int32 n, ref Int32 textures, [Out] out bool residences) + { + unsafe + { + fixed (Int32* textures_ptr = &textures) + fixed (bool* residences_ptr = &residences) + { + bool retval = Delegates.glAreTexturesResidentEXT((Int32)n, (UInt32*)textures_ptr, (bool*)residences_ptr); + residences = *residences_ptr; + return retval; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe bool AreTexturesResident(Int32 n, UInt32* textures, [Out] bool* residences) + { + return Delegates.glAreTexturesResidentEXT((Int32)n, (UInt32*)textures, (bool*)residences); + } + + [System.CLSCompliant(false)] + public static + unsafe bool AreTexturesResident(Int32 n, Int32* textures, [Out] bool* residences) + { + return Delegates.glAreTexturesResidentEXT((Int32)n, (UInt32*)textures, (bool*)residences); + } + + [System.CLSCompliant(false)] + public static + void BindTexture(OpenTK.OpenGL.Enums.TextureTarget target, UInt32 texture) + { + Delegates.glBindTextureEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (UInt32)texture); + } + + public static + void BindTexture(OpenTK.OpenGL.Enums.TextureTarget target, Int32 texture) + { + Delegates.glBindTextureEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (UInt32)texture); + } + + [System.CLSCompliant(false)] + public static + void DeleteTextures(Int32 n, UInt32[] textures) + { + unsafe + { + fixed (UInt32* textures_ptr = textures) + { + Delegates.glDeleteTexturesEXT((Int32)n, (UInt32*)textures_ptr); + } + } + } + + public static + void DeleteTextures(Int32 n, Int32[] textures) + { + unsafe + { + fixed (Int32* textures_ptr = textures) + { + Delegates.glDeleteTexturesEXT((Int32)n, (UInt32*)textures_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void DeleteTextures(Int32 n, ref UInt32 textures) + { + unsafe + { + fixed (UInt32* textures_ptr = &textures) + { + Delegates.glDeleteTexturesEXT((Int32)n, (UInt32*)textures_ptr); + } + } + } + + public static + void DeleteTextures(Int32 n, ref Int32 textures) + { + unsafe + { + fixed (Int32* textures_ptr = &textures) + { + Delegates.glDeleteTexturesEXT((Int32)n, (UInt32*)textures_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void DeleteTextures(Int32 n, UInt32* textures) + { + Delegates.glDeleteTexturesEXT((Int32)n, (UInt32*)textures); + } + + [System.CLSCompliant(false)] + public static + unsafe void DeleteTextures(Int32 n, Int32* textures) + { + Delegates.glDeleteTexturesEXT((Int32)n, (UInt32*)textures); + } + + [System.CLSCompliant(false)] + public static + void GenTextures(Int32 n, [Out] UInt32[] textures) + { + unsafe + { + fixed (UInt32* textures_ptr = textures) + { + Delegates.glGenTexturesEXT((Int32)n, (UInt32*)textures_ptr); + } + } + } + + public static + void GenTextures(Int32 n, [Out] Int32[] textures) + { + unsafe + { + fixed (Int32* textures_ptr = textures) + { + Delegates.glGenTexturesEXT((Int32)n, (UInt32*)textures_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void GenTextures(Int32 n, [Out] out UInt32 textures) + { + unsafe + { + fixed (UInt32* textures_ptr = &textures) + { + Delegates.glGenTexturesEXT((Int32)n, (UInt32*)textures_ptr); + textures = *textures_ptr; + } + } + } + + public static + void GenTextures(Int32 n, [Out] out Int32 textures) + { + unsafe + { + fixed (Int32* textures_ptr = &textures) + { + Delegates.glGenTexturesEXT((Int32)n, (UInt32*)textures_ptr); + textures = *textures_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GenTextures(Int32 n, [Out] UInt32* textures) + { + Delegates.glGenTexturesEXT((Int32)n, (UInt32*)textures); + } + + [System.CLSCompliant(false)] + public static + unsafe void GenTextures(Int32 n, [Out] Int32* textures) + { + Delegates.glGenTexturesEXT((Int32)n, (UInt32*)textures); + } + + [System.CLSCompliant(false)] + public static + bool IsTexture(UInt32 texture) + { + return Delegates.glIsTextureEXT((UInt32)texture); + } + + public static + bool IsTexture(Int32 texture) + { + return Delegates.glIsTextureEXT((UInt32)texture); + } + + [System.CLSCompliant(false)] + public static + void PrioritizeTextures(Int32 n, UInt32[] textures, Single[] priorities) + { + unsafe + { + fixed (UInt32* textures_ptr = textures) + fixed (Single* priorities_ptr = priorities) + { + Delegates.glPrioritizeTexturesEXT((Int32)n, (UInt32*)textures_ptr, (Single*)priorities_ptr); + } + } + } + + public static + void PrioritizeTextures(Int32 n, Int32[] textures, Single[] priorities) + { + unsafe + { + fixed (Int32* textures_ptr = textures) + fixed (Single* priorities_ptr = priorities) + { + Delegates.glPrioritizeTexturesEXT((Int32)n, (UInt32*)textures_ptr, (Single*)priorities_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void PrioritizeTextures(Int32 n, ref UInt32 textures, ref Single priorities) + { + unsafe + { + fixed (UInt32* textures_ptr = &textures) + fixed (Single* priorities_ptr = &priorities) + { + Delegates.glPrioritizeTexturesEXT((Int32)n, (UInt32*)textures_ptr, (Single*)priorities_ptr); + } + } + } + + public static + void PrioritizeTextures(Int32 n, ref Int32 textures, ref Single priorities) + { + unsafe + { + fixed (Int32* textures_ptr = &textures) + fixed (Single* priorities_ptr = &priorities) + { + Delegates.glPrioritizeTexturesEXT((Int32)n, (UInt32*)textures_ptr, (Single*)priorities_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void PrioritizeTextures(Int32 n, UInt32* textures, Single* priorities) + { + Delegates.glPrioritizeTexturesEXT((Int32)n, (UInt32*)textures, (Single*)priorities); + } + + [System.CLSCompliant(false)] + public static + unsafe void PrioritizeTextures(Int32 n, Int32* textures, Single* priorities) + { + Delegates.glPrioritizeTexturesEXT((Int32)n, (UInt32*)textures, (Single*)priorities); + } + + public static + void ArrayElement(Int32 i) + { + Delegates.glArrayElementEXT((Int32)i); + } + + public static + void ColorPointer(Int32 size, OpenTK.OpenGL.Enums.ColorPointerType type, Int32 stride, Int32 count, IntPtr pointer) + { + unsafe + { + Delegates.glColorPointerEXT((Int32)size, (OpenTK.OpenGL.Enums.ColorPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer); + } + } + + public static + void ColorPointer(Int32 size, OpenTK.OpenGL.Enums.ColorPointerType type, Int32 stride, Int32 count, [In, Out] object pointer) + { + unsafe + { + System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glColorPointerEXT((Int32)size, (OpenTK.OpenGL.Enums.ColorPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + } + finally + { + pointer_ptr.Free(); + } + } + } + + public static + void DrawArrays(OpenTK.OpenGL.Enums.BeginMode mode, Int32 first, Int32 count) + { + Delegates.glDrawArraysEXT((OpenTK.OpenGL.Enums.BeginMode)mode, (Int32)first, (Int32)count); + } + + public static + void EdgeFlagPointer(Int32 stride, Int32 count, bool[] pointer) + { + unsafe + { + fixed (bool* pointer_ptr = pointer) + { + Delegates.glEdgeFlagPointerEXT((Int32)stride, (Int32)count, (bool*)pointer_ptr); + } + } + } + + public static + void EdgeFlagPointer(Int32 stride, Int32 count, ref bool pointer) + { + unsafe + { + fixed (bool* pointer_ptr = &pointer) + { + Delegates.glEdgeFlagPointerEXT((Int32)stride, (Int32)count, (bool*)pointer_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void EdgeFlagPointer(Int32 stride, Int32 count, bool* pointer) + { + Delegates.glEdgeFlagPointerEXT((Int32)stride, (Int32)count, (bool*)pointer); + } + + public static + void GetPointer(OpenTK.OpenGL.Enums.GetPointervPName pname, [Out] IntPtr @params) + { + unsafe + { + Delegates.glGetPointervEXT((OpenTK.OpenGL.Enums.GetPointervPName)pname, (IntPtr)@params); + } + } + + public static + void GetPointer(OpenTK.OpenGL.Enums.GetPointervPName pname, [In, Out] object @params) + { + unsafe + { + System.Runtime.InteropServices.GCHandle @params_ptr = System.Runtime.InteropServices.GCHandle.Alloc(@params, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glGetPointervEXT((OpenTK.OpenGL.Enums.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + } + finally + { + @params_ptr.Free(); + } + } + } + + public static + void IndexPointer(OpenTK.OpenGL.Enums.IndexPointerType type, Int32 stride, Int32 count, IntPtr pointer) + { + unsafe + { + Delegates.glIndexPointerEXT((OpenTK.OpenGL.Enums.IndexPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer); + } + } + + public static + void IndexPointer(OpenTK.OpenGL.Enums.IndexPointerType type, Int32 stride, Int32 count, [In, Out] object pointer) + { + unsafe + { + System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glIndexPointerEXT((OpenTK.OpenGL.Enums.IndexPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + } + finally + { + pointer_ptr.Free(); + } + } + } + + public static + void NormalPointer(OpenTK.OpenGL.Enums.NormalPointerType type, Int32 stride, Int32 count, IntPtr pointer) + { + unsafe + { + Delegates.glNormalPointerEXT((OpenTK.OpenGL.Enums.NormalPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer); + } + } + + public static + void NormalPointer(OpenTK.OpenGL.Enums.NormalPointerType type, Int32 stride, Int32 count, [In, Out] object pointer) + { + unsafe + { + System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glNormalPointerEXT((OpenTK.OpenGL.Enums.NormalPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + } + finally + { + pointer_ptr.Free(); + } + } + } + + public static + void TexCoordPointer(Int32 size, OpenTK.OpenGL.Enums.TexCoordPointerType type, Int32 stride, Int32 count, IntPtr pointer) + { + unsafe + { + Delegates.glTexCoordPointerEXT((Int32)size, (OpenTK.OpenGL.Enums.TexCoordPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer); + } + } + + public static + void TexCoordPointer(Int32 size, OpenTK.OpenGL.Enums.TexCoordPointerType type, Int32 stride, Int32 count, [In, Out] object pointer) + { + unsafe + { + System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glTexCoordPointerEXT((Int32)size, (OpenTK.OpenGL.Enums.TexCoordPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + } + finally + { + pointer_ptr.Free(); + } + } + } + + public static + void VertexPointer(Int32 size, OpenTK.OpenGL.Enums.VertexPointerType type, Int32 stride, Int32 count, IntPtr pointer) + { + unsafe + { + Delegates.glVertexPointerEXT((Int32)size, (OpenTK.OpenGL.Enums.VertexPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer); + } + } + + public static + void VertexPointer(Int32 size, OpenTK.OpenGL.Enums.VertexPointerType type, Int32 stride, Int32 count, [In, Out] object pointer) + { + unsafe + { + System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glVertexPointerEXT((Int32)size, (OpenTK.OpenGL.Enums.VertexPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + } + finally + { + pointer_ptr.Free(); + } + } + } + + public static + void BlendEquation(OpenTK.OpenGL.Enums.All mode) + { + Delegates.glBlendEquationEXT((OpenTK.OpenGL.Enums.All)mode); + } + + public static + void PointParameter(OpenTK.OpenGL.Enums.All pname, Single param) + { + Delegates.glPointParameterfEXT((OpenTK.OpenGL.Enums.All)pname, (Single)param); + } + + public static + void PointParameterv(OpenTK.OpenGL.Enums.All pname, Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glPointParameterfvEXT((OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + } + } + } + + public static + void PointParameterv(OpenTK.OpenGL.Enums.All pname, ref Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glPointParameterfvEXT((OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void PointParameterv(OpenTK.OpenGL.Enums.All pname, Single* @params) + { + Delegates.glPointParameterfvEXT((OpenTK.OpenGL.Enums.All)pname, (Single*)@params); + } + + public static + void ColorSubTable(OpenTK.OpenGL.Enums.All target, Int32 start, Int32 count, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr data) + { + unsafe + { + Delegates.glColorSubTableEXT((OpenTK.OpenGL.Enums.All)target, (Int32)start, (Int32)count, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)data); + } + } + + public static + void ColorSubTable(OpenTK.OpenGL.Enums.All target, Int32 start, Int32 count, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object data) + { + unsafe + { + System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glColorSubTableEXT((OpenTK.OpenGL.Enums.All)target, (Int32)start, (Int32)count, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + } + finally + { + data_ptr.Free(); + } + } + } + + public static + void CopyColorSubTable(OpenTK.OpenGL.Enums.All target, Int32 start, Int32 x, Int32 y, Int32 width) + { + Delegates.glCopyColorSubTableEXT((OpenTK.OpenGL.Enums.All)target, (Int32)start, (Int32)x, (Int32)y, (Int32)width); + } + + public static + void ColorTable(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalFormat, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr table) + { + unsafe + { + Delegates.glColorTableEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalFormat, (Int32)width, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)table); + } + } + + public static + void ColorTable(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalFormat, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object table) + { + unsafe + { + System.Runtime.InteropServices.GCHandle table_ptr = System.Runtime.InteropServices.GCHandle.Alloc(table, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glColorTableEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalFormat, (Int32)width, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); + } + finally + { + table_ptr.Free(); + } + } + } + + public static + void GetColorTable(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr data) + { + unsafe + { + Delegates.glGetColorTableEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)data); + } + } + + public static + void GetColorTable(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object data) + { + unsafe + { + System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glGetColorTableEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + } + finally + { + data_ptr.Free(); + } + } + } + + public static + void GetColorTableParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glGetColorTableParameterivEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + } + } + } + + public static + void GetColorTableParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glGetColorTableParameterivEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetColorTableParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) + { + Delegates.glGetColorTableParameterivEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); + } + + public static + void GetColorTableParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glGetColorTableParameterfvEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + } + } + } + + public static + void GetColorTableParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] out Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glGetColorTableParameterfvEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetColorTableParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params) + { + Delegates.glGetColorTableParameterfvEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); + } + + public static + void IndexMaterial(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.All mode) + { + Delegates.glIndexMaterialEXT((OpenTK.OpenGL.Enums.MaterialFace)face, (OpenTK.OpenGL.Enums.All)mode); + } + + public static + void IndexFunc(OpenTK.OpenGL.Enums.All func, Single @ref) + { + Delegates.glIndexFuncEXT((OpenTK.OpenGL.Enums.All)func, (Single)@ref); + } + + public static + void LockArrays(Int32 first, Int32 count) + { + Delegates.glLockArraysEXT((Int32)first, (Int32)count); + } + + public static + void UnlockArrays() + { + Delegates.glUnlockArraysEXT(); + } + + public static + void CullParameter(OpenTK.OpenGL.Enums.All pname, [Out] Double[] @params) + { + unsafe + { + fixed (Double* @params_ptr = @params) + { + Delegates.glCullParameterdvEXT((OpenTK.OpenGL.Enums.All)pname, (Double*)@params_ptr); + } + } + } + + public static + void CullParameter(OpenTK.OpenGL.Enums.All pname, [Out] out Double @params) + { + unsafe + { + fixed (Double* @params_ptr = &@params) + { + Delegates.glCullParameterdvEXT((OpenTK.OpenGL.Enums.All)pname, (Double*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void CullParameter(OpenTK.OpenGL.Enums.All pname, [Out] Double* @params) + { + Delegates.glCullParameterdvEXT((OpenTK.OpenGL.Enums.All)pname, (Double*)@params); + } + + public static + void CullParameter(OpenTK.OpenGL.Enums.All pname, [Out] Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glCullParameterfvEXT((OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + } + } + } + + public static + void CullParameter(OpenTK.OpenGL.Enums.All pname, [Out] out Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glCullParameterfvEXT((OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void CullParameter(OpenTK.OpenGL.Enums.All pname, [Out] Single* @params) + { + Delegates.glCullParameterfvEXT((OpenTK.OpenGL.Enums.All)pname, (Single*)@params); + } + + [System.CLSCompliant(false)] + public static + void DrawRangeElements(OpenTK.OpenGL.Enums.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.OpenGL.Enums.All type, IntPtr indices) + { + unsafe + { + Delegates.glDrawRangeElementsEXT((OpenTK.OpenGL.Enums.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.OpenGL.Enums.All)type, (IntPtr)indices); + } + } + + public static + void DrawRangeElements(OpenTK.OpenGL.Enums.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.OpenGL.Enums.All type, IntPtr indices) + { + unsafe + { + Delegates.glDrawRangeElementsEXT((OpenTK.OpenGL.Enums.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.OpenGL.Enums.All)type, (IntPtr)indices); + } + } + + [System.CLSCompliant(false)] + public static + void DrawRangeElements(OpenTK.OpenGL.Enums.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.OpenGL.Enums.All type, [In, Out] object indices) + { + unsafe + { + System.Runtime.InteropServices.GCHandle indices_ptr = System.Runtime.InteropServices.GCHandle.Alloc(indices, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glDrawRangeElementsEXT((OpenTK.OpenGL.Enums.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.OpenGL.Enums.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + } + finally + { + indices_ptr.Free(); + } + } + } + + public static + void DrawRangeElements(OpenTK.OpenGL.Enums.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.OpenGL.Enums.All type, [In, Out] object indices) + { + unsafe + { + System.Runtime.InteropServices.GCHandle indices_ptr = System.Runtime.InteropServices.GCHandle.Alloc(indices, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glDrawRangeElementsEXT((OpenTK.OpenGL.Enums.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.OpenGL.Enums.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + } + finally + { + indices_ptr.Free(); + } + } + } + + public static + void ApplyTexture(OpenTK.OpenGL.Enums.All mode) + { + Delegates.glApplyTextureEXT((OpenTK.OpenGL.Enums.All)mode); + } + + public static + void TextureLight(OpenTK.OpenGL.Enums.All pname) + { + Delegates.glTextureLightEXT((OpenTK.OpenGL.Enums.All)pname); + } + + public static + void TextureMaterial(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter mode) + { + Delegates.glTextureMaterialEXT((OpenTK.OpenGL.Enums.MaterialFace)face, (OpenTK.OpenGL.Enums.MaterialParameter)mode); + } + + public static + void PixelTransformParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Int32 param) + { + Delegates.glPixelTransformParameteriEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32)param); + } + + public static + void PixelTransformParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Single param) + { + Delegates.glPixelTransformParameterfEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single)param); + } + + public static + void PixelTransformParameterv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glPixelTransformParameterivEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + } + } + } + + public static + void PixelTransformParameterv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, ref Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glPixelTransformParameterivEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void PixelTransformParameterv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Int32* @params) + { + Delegates.glPixelTransformParameterivEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); + } + + public static + void PixelTransformParameterv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glPixelTransformParameterfvEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + } + } + } + + public static + void PixelTransformParameterv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, ref Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glPixelTransformParameterfvEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void PixelTransformParameterv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Single* @params) + { + Delegates.glPixelTransformParameterfvEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); + } + + [System.CLSCompliant(false)] + public static + void SecondaryColor3(SByte red, SByte green, SByte blue) + { + Delegates.glSecondaryColor3bEXT((SByte)red, (SByte)green, (SByte)blue); + } + + [System.CLSCompliant(false)] + public static + void SecondaryColor3(SByte[] v) + { + unsafe + { + fixed (SByte* v_ptr = v) + { + Delegates.glSecondaryColor3bvEXT((SByte*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void SecondaryColor3(ref SByte v) + { + unsafe + { + fixed (SByte* v_ptr = &v) + { + Delegates.glSecondaryColor3bvEXT((SByte*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void SecondaryColor3(SByte* v) + { + Delegates.glSecondaryColor3bvEXT((SByte*)v); + } + + public static + void SecondaryColor3(Double red, Double green, Double blue) + { + Delegates.glSecondaryColor3dEXT((Double)red, (Double)green, (Double)blue); + } + + public static + void SecondaryColor3(Double[] v) + { + unsafe + { + fixed (Double* v_ptr = v) + { + Delegates.glSecondaryColor3dvEXT((Double*)v_ptr); + } + } + } + + public static + void SecondaryColor3(ref Double v) + { + unsafe + { + fixed (Double* v_ptr = &v) + { + Delegates.glSecondaryColor3dvEXT((Double*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void SecondaryColor3(Double* v) + { + Delegates.glSecondaryColor3dvEXT((Double*)v); + } + + public static + void SecondaryColor3(Single red, Single green, Single blue) + { + Delegates.glSecondaryColor3fEXT((Single)red, (Single)green, (Single)blue); + } + + public static + void SecondaryColor3(Single[] v) + { + unsafe + { + fixed (Single* v_ptr = v) + { + Delegates.glSecondaryColor3fvEXT((Single*)v_ptr); + } + } + } + + public static + void SecondaryColor3(ref Single v) + { + unsafe + { + fixed (Single* v_ptr = &v) + { + Delegates.glSecondaryColor3fvEXT((Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void SecondaryColor3(Single* v) + { + Delegates.glSecondaryColor3fvEXT((Single*)v); + } + + public static + void SecondaryColor3(Byte red, Byte green, Byte blue) + { + Delegates.glSecondaryColor3ubEXT((Byte)red, (Byte)green, (Byte)blue); + } + + public static + void SecondaryColor3(Byte[] v) + { + unsafe + { + fixed (Byte* v_ptr = v) + { + Delegates.glSecondaryColor3ubvEXT((Byte*)v_ptr); + } + } + } + + public static + void SecondaryColor3(ref Byte v) + { + unsafe + { + fixed (Byte* v_ptr = &v) + { + Delegates.glSecondaryColor3ubvEXT((Byte*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void SecondaryColor3(Byte* v) + { + Delegates.glSecondaryColor3ubvEXT((Byte*)v); + } + + [System.CLSCompliant(false)] + public static + void SecondaryColor3(UInt32 red, UInt32 green, UInt32 blue) + { + Delegates.glSecondaryColor3uiEXT((UInt32)red, (UInt32)green, (UInt32)blue); + } + + public static + void SecondaryColor3(Int32 red, Int32 green, Int32 blue) + { + Delegates.glSecondaryColor3uiEXT((UInt32)red, (UInt32)green, (UInt32)blue); + } + + [System.CLSCompliant(false)] + public static + void SecondaryColor3(UInt32[] v) + { + unsafe + { + fixed (UInt32* v_ptr = v) + { + Delegates.glSecondaryColor3uivEXT((UInt32*)v_ptr); + } + } + } + + public static + void SecondaryColor3(Int32[] v) + { + unsafe + { + fixed (Int32* v_ptr = v) + { + Delegates.glSecondaryColor3uivEXT((UInt32*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void SecondaryColor3(ref UInt32 v) + { + unsafe + { + fixed (UInt32* v_ptr = &v) + { + Delegates.glSecondaryColor3uivEXT((UInt32*)v_ptr); + } + } + } + + public static + void SecondaryColor3(ref Int32 v) + { + unsafe + { + fixed (Int32* v_ptr = &v) + { + Delegates.glSecondaryColor3uivEXT((UInt32*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void SecondaryColor3(UInt32* v) + { + Delegates.glSecondaryColor3uivEXT((UInt32*)v); + } + + [System.CLSCompliant(false)] + public static + unsafe void SecondaryColor3(Int32* v) + { + Delegates.glSecondaryColor3uivEXT((UInt32*)v); + } + + [System.CLSCompliant(false)] + public static + void SecondaryColor3(UInt16 red, UInt16 green, UInt16 blue) + { + Delegates.glSecondaryColor3usEXT((UInt16)red, (UInt16)green, (UInt16)blue); + } + + public static + void SecondaryColor3(Int16 red, Int16 green, Int16 blue) + { + Delegates.glSecondaryColor3usEXT((UInt16)red, (UInt16)green, (UInt16)blue); + } + + [System.CLSCompliant(false)] + public static + void SecondaryColor3(UInt16[] v) + { + unsafe + { + fixed (UInt16* v_ptr = v) + { + Delegates.glSecondaryColor3usvEXT((UInt16*)v_ptr); + } + } + } + + public static + void SecondaryColor3(Int16[] v) + { + unsafe + { + fixed (Int16* v_ptr = v) + { + Delegates.glSecondaryColor3usvEXT((UInt16*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void SecondaryColor3(ref UInt16 v) + { + unsafe + { + fixed (UInt16* v_ptr = &v) + { + Delegates.glSecondaryColor3usvEXT((UInt16*)v_ptr); + } + } + } + + public static + void SecondaryColor3(ref Int16 v) + { + unsafe + { + fixed (Int16* v_ptr = &v) + { + Delegates.glSecondaryColor3usvEXT((UInt16*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void SecondaryColor3(UInt16* v) + { + Delegates.glSecondaryColor3usvEXT((UInt16*)v); + } + + [System.CLSCompliant(false)] + public static + unsafe void SecondaryColor3(Int16* v) + { + Delegates.glSecondaryColor3usvEXT((UInt16*)v); + } + + public static + void SecondaryColorPointer(Int32 size, OpenTK.OpenGL.Enums.ColorPointerType type, Int32 stride, IntPtr pointer) + { + unsafe + { + Delegates.glSecondaryColorPointerEXT((Int32)size, (OpenTK.OpenGL.Enums.ColorPointerType)type, (Int32)stride, (IntPtr)pointer); + } + } + + public static + void SecondaryColorPointer(Int32 size, OpenTK.OpenGL.Enums.ColorPointerType type, Int32 stride, [In, Out] object pointer) + { + unsafe + { + System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glSecondaryColorPointerEXT((Int32)size, (OpenTK.OpenGL.Enums.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + } + finally + { + pointer_ptr.Free(); + } + } + } + + public static + void TextureNormal(OpenTK.OpenGL.Enums.All mode) + { + Delegates.glTextureNormalEXT((OpenTK.OpenGL.Enums.All)mode); + } + + public static + void MultiDrawArrays(OpenTK.OpenGL.Enums.BeginMode mode, [Out] Int32[] first, [Out] Int32[] count, Int32 primcount) + { + unsafe + { + fixed (Int32* first_ptr = first) + fixed (Int32* count_ptr = count) + { + Delegates.glMultiDrawArraysEXT((OpenTK.OpenGL.Enums.BeginMode)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + } + } + } + + public static + void MultiDrawArrays(OpenTK.OpenGL.Enums.BeginMode mode, [Out] out Int32 first, [Out] out Int32 count, Int32 primcount) + { + unsafe + { + fixed (Int32* first_ptr = &first) + fixed (Int32* count_ptr = &count) + { + Delegates.glMultiDrawArraysEXT((OpenTK.OpenGL.Enums.BeginMode)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + first = *first_ptr; + count = *count_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void MultiDrawArrays(OpenTK.OpenGL.Enums.BeginMode mode, [Out] Int32* first, [Out] Int32* count, Int32 primcount) + { + Delegates.glMultiDrawArraysEXT((OpenTK.OpenGL.Enums.BeginMode)mode, (Int32*)first, (Int32*)count, (Int32)primcount); + } + + public static + void MultiDrawElements(OpenTK.OpenGL.Enums.BeginMode mode, Int32[] count, OpenTK.OpenGL.Enums.All type, IntPtr indices, Int32 primcount) + { + unsafe + { + fixed (Int32* count_ptr = count) + { + Delegates.glMultiDrawElementsEXT((OpenTK.OpenGL.Enums.BeginMode)mode, (Int32*)count_ptr, (OpenTK.OpenGL.Enums.All)type, (IntPtr)indices, (Int32)primcount); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void MultiDrawElements(OpenTK.OpenGL.Enums.BeginMode mode, Int32* count, OpenTK.OpenGL.Enums.All type, [In, Out] object indices, Int32 primcount) + { + System.Runtime.InteropServices.GCHandle indices_ptr = System.Runtime.InteropServices.GCHandle.Alloc(indices, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glMultiDrawElementsEXT((OpenTK.OpenGL.Enums.BeginMode)mode, (Int32*)count, (OpenTK.OpenGL.Enums.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + } + finally + { + indices_ptr.Free(); + } + } + + public static + void MultiDrawElements(OpenTK.OpenGL.Enums.BeginMode mode, ref Int32 count, OpenTK.OpenGL.Enums.All type, [In, Out] object indices, Int32 primcount) + { + unsafe + { + fixed (Int32* count_ptr = &count) + { + System.Runtime.InteropServices.GCHandle indices_ptr = System.Runtime.InteropServices.GCHandle.Alloc(indices, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glMultiDrawElementsEXT((OpenTK.OpenGL.Enums.BeginMode)mode, (Int32*)count_ptr, (OpenTK.OpenGL.Enums.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + } + finally + { + indices_ptr.Free(); + } + } + } + } + + public static + void FogCoord(Single coord) + { + Delegates.glFogCoordfEXT((Single)coord); + } + + public static + void FogCoordv(Single[] coord) + { + unsafe + { + fixed (Single* coord_ptr = coord) + { + Delegates.glFogCoordfvEXT((Single*)coord_ptr); + } + } + } + + public static + void FogCoordv(ref Single coord) + { + unsafe + { + fixed (Single* coord_ptr = &coord) + { + Delegates.glFogCoordfvEXT((Single*)coord_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void FogCoordv(Single* coord) + { + Delegates.glFogCoordfvEXT((Single*)coord); + } + + public static + void FogCoord(Double coord) + { + Delegates.glFogCoorddEXT((Double)coord); + } + + public static + void FogCoordv(Double[] coord) + { + unsafe + { + fixed (Double* coord_ptr = coord) + { + Delegates.glFogCoorddvEXT((Double*)coord_ptr); + } + } + } + + public static + void FogCoordv(ref Double coord) + { + unsafe + { + fixed (Double* coord_ptr = &coord) + { + Delegates.glFogCoorddvEXT((Double*)coord_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void FogCoordv(Double* coord) + { + Delegates.glFogCoorddvEXT((Double*)coord); + } + + public static + void FogCoordPointer(OpenTK.OpenGL.Enums.All type, Int32 stride, IntPtr pointer) + { + unsafe + { + Delegates.glFogCoordPointerEXT((OpenTK.OpenGL.Enums.All)type, (Int32)stride, (IntPtr)pointer); + } + } + + public static + void FogCoordPointer(OpenTK.OpenGL.Enums.All type, Int32 stride, [In, Out] object pointer) + { + unsafe + { + System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glFogCoordPointerEXT((OpenTK.OpenGL.Enums.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + } + finally + { + pointer_ptr.Free(); + } + } + } + + [System.CLSCompliant(false)] + public static + void Tangent3(SByte tx, SByte ty, SByte tz) + { + Delegates.glTangent3bEXT((SByte)tx, (SByte)ty, (SByte)tz); + } + + public static + void Tangent3(Byte tx, Byte ty, Byte tz) + { + Delegates.glTangent3bEXT((SByte)tx, (SByte)ty, (SByte)tz); + } + + [System.CLSCompliant(false)] + public static + void Tangent3(SByte[] v) + { + unsafe + { + fixed (SByte* v_ptr = v) + { + Delegates.glTangent3bvEXT((SByte*)v_ptr); + } + } + } + + public static + void Tangent3(Byte[] v) + { + unsafe + { + fixed (Byte* v_ptr = v) + { + Delegates.glTangent3bvEXT((SByte*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void Tangent3(ref SByte v) + { + unsafe + { + fixed (SByte* v_ptr = &v) + { + Delegates.glTangent3bvEXT((SByte*)v_ptr); + } + } + } + + public static + void Tangent3(ref Byte v) + { + unsafe + { + fixed (Byte* v_ptr = &v) + { + Delegates.glTangent3bvEXT((SByte*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Tangent3(SByte* v) + { + Delegates.glTangent3bvEXT((SByte*)v); + } + + [System.CLSCompliant(false)] + public static + unsafe void Tangent3(Byte* v) + { + Delegates.glTangent3bvEXT((SByte*)v); + } + + public static + void Tangent3(Double tx, Double ty, Double tz) + { + Delegates.glTangent3dEXT((Double)tx, (Double)ty, (Double)tz); + } + + public static + void Tangent3(Double[] v) + { + unsafe + { + fixed (Double* v_ptr = v) + { + Delegates.glTangent3dvEXT((Double*)v_ptr); + } + } + } + + public static + void Tangent3(ref Double v) + { + unsafe + { + fixed (Double* v_ptr = &v) + { + Delegates.glTangent3dvEXT((Double*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Tangent3(Double* v) + { + Delegates.glTangent3dvEXT((Double*)v); + } + + public static + void Tangent3(Single tx, Single ty, Single tz) + { + Delegates.glTangent3fEXT((Single)tx, (Single)ty, (Single)tz); + } + + public static + void Tangent3(Single[] v) + { + unsafe + { + fixed (Single* v_ptr = v) + { + Delegates.glTangent3fvEXT((Single*)v_ptr); + } + } + } + + public static + void Tangent3(ref Single v) + { + unsafe + { + fixed (Single* v_ptr = &v) + { + Delegates.glTangent3fvEXT((Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Tangent3(Single* v) + { + Delegates.glTangent3fvEXT((Single*)v); + } + + public static + void Tangent3(Int32 tx, Int32 ty, Int32 tz) + { + Delegates.glTangent3iEXT((Int32)tx, (Int32)ty, (Int32)tz); + } + + public static + void Tangent3(Int32[] v) + { + unsafe + { + fixed (Int32* v_ptr = v) + { + Delegates.glTangent3ivEXT((Int32*)v_ptr); + } + } + } + + public static + void Tangent3(ref Int32 v) + { + unsafe + { + fixed (Int32* v_ptr = &v) + { + Delegates.glTangent3ivEXT((Int32*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Tangent3(Int32* v) + { + Delegates.glTangent3ivEXT((Int32*)v); + } + + public static + void Tangent3(Int16 tx, Int16 ty, Int16 tz) + { + Delegates.glTangent3sEXT((Int16)tx, (Int16)ty, (Int16)tz); + } + + public static + void Tangent3(Int16[] v) + { + unsafe + { + fixed (Int16* v_ptr = v) + { + Delegates.glTangent3svEXT((Int16*)v_ptr); + } + } + } + + public static + void Tangent3(ref Int16 v) + { + unsafe + { + fixed (Int16* v_ptr = &v) + { + Delegates.glTangent3svEXT((Int16*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Tangent3(Int16* v) + { + Delegates.glTangent3svEXT((Int16*)v); + } + + [System.CLSCompliant(false)] + public static + void Binormal3(SByte bx, SByte by, SByte bz) + { + Delegates.glBinormal3bEXT((SByte)bx, (SByte)by, (SByte)bz); + } + + public static + void Binormal3(Byte bx, Byte by, Byte bz) + { + Delegates.glBinormal3bEXT((SByte)bx, (SByte)by, (SByte)bz); + } + + [System.CLSCompliant(false)] + public static + void Binormal3(SByte[] v) + { + unsafe + { + fixed (SByte* v_ptr = v) + { + Delegates.glBinormal3bvEXT((SByte*)v_ptr); + } + } + } + + public static + void Binormal3(Byte[] v) + { + unsafe + { + fixed (Byte* v_ptr = v) + { + Delegates.glBinormal3bvEXT((SByte*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void Binormal3(ref SByte v) + { + unsafe + { + fixed (SByte* v_ptr = &v) + { + Delegates.glBinormal3bvEXT((SByte*)v_ptr); + } + } + } + + public static + void Binormal3(ref Byte v) + { + unsafe + { + fixed (Byte* v_ptr = &v) + { + Delegates.glBinormal3bvEXT((SByte*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Binormal3(SByte* v) + { + Delegates.glBinormal3bvEXT((SByte*)v); + } + + [System.CLSCompliant(false)] + public static + unsafe void Binormal3(Byte* v) + { + Delegates.glBinormal3bvEXT((SByte*)v); + } + + public static + void Binormal3(Double bx, Double by, Double bz) + { + Delegates.glBinormal3dEXT((Double)bx, (Double)by, (Double)bz); + } + + public static + void Binormal3(Double[] v) + { + unsafe + { + fixed (Double* v_ptr = v) + { + Delegates.glBinormal3dvEXT((Double*)v_ptr); + } + } + } + + public static + void Binormal3(ref Double v) + { + unsafe + { + fixed (Double* v_ptr = &v) + { + Delegates.glBinormal3dvEXT((Double*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Binormal3(Double* v) + { + Delegates.glBinormal3dvEXT((Double*)v); + } + + public static + void Binormal3(Single bx, Single by, Single bz) + { + Delegates.glBinormal3fEXT((Single)bx, (Single)by, (Single)bz); + } + + public static + void Binormal3(Single[] v) + { + unsafe + { + fixed (Single* v_ptr = v) + { + Delegates.glBinormal3fvEXT((Single*)v_ptr); + } + } + } + + public static + void Binormal3(ref Single v) + { + unsafe + { + fixed (Single* v_ptr = &v) + { + Delegates.glBinormal3fvEXT((Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Binormal3(Single* v) + { + Delegates.glBinormal3fvEXT((Single*)v); + } + + public static + void Binormal3(Int32 bx, Int32 by, Int32 bz) + { + Delegates.glBinormal3iEXT((Int32)bx, (Int32)by, (Int32)bz); + } + + public static + void Binormal3(Int32[] v) + { + unsafe + { + fixed (Int32* v_ptr = v) + { + Delegates.glBinormal3ivEXT((Int32*)v_ptr); + } + } + } + + public static + void Binormal3(ref Int32 v) + { + unsafe + { + fixed (Int32* v_ptr = &v) + { + Delegates.glBinormal3ivEXT((Int32*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Binormal3(Int32* v) + { + Delegates.glBinormal3ivEXT((Int32*)v); + } + + public static + void Binormal3(Int16 bx, Int16 by, Int16 bz) + { + Delegates.glBinormal3sEXT((Int16)bx, (Int16)by, (Int16)bz); + } + + public static + void Binormal3(Int16[] v) + { + unsafe + { + fixed (Int16* v_ptr = v) + { + Delegates.glBinormal3svEXT((Int16*)v_ptr); + } + } + } + + public static + void Binormal3(ref Int16 v) + { + unsafe + { + fixed (Int16* v_ptr = &v) + { + Delegates.glBinormal3svEXT((Int16*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Binormal3(Int16* v) + { + Delegates.glBinormal3svEXT((Int16*)v); + } + + public static + void TangentPointer(OpenTK.OpenGL.Enums.All type, Int32 stride, IntPtr pointer) + { + unsafe + { + Delegates.glTangentPointerEXT((OpenTK.OpenGL.Enums.All)type, (Int32)stride, (IntPtr)pointer); + } + } + + public static + void TangentPointer(OpenTK.OpenGL.Enums.All type, Int32 stride, [In, Out] object pointer) + { + unsafe + { + System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glTangentPointerEXT((OpenTK.OpenGL.Enums.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + } + finally + { + pointer_ptr.Free(); + } + } + } + + public static + void BinormalPointer(OpenTK.OpenGL.Enums.All type, Int32 stride, IntPtr pointer) + { + unsafe + { + Delegates.glBinormalPointerEXT((OpenTK.OpenGL.Enums.All)type, (Int32)stride, (IntPtr)pointer); + } + } + + public static + void BinormalPointer(OpenTK.OpenGL.Enums.All type, Int32 stride, [In, Out] object pointer) + { + unsafe + { + System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glBinormalPointerEXT((OpenTK.OpenGL.Enums.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + } + finally + { + pointer_ptr.Free(); + } + } + } + + public static + void BlendFuncSeparate(OpenTK.OpenGL.Enums.All sfactorRGB, OpenTK.OpenGL.Enums.All dfactorRGB, OpenTK.OpenGL.Enums.All sfactorAlpha, OpenTK.OpenGL.Enums.All dfactorAlpha) + { + Delegates.glBlendFuncSeparateEXT((OpenTK.OpenGL.Enums.All)sfactorRGB, (OpenTK.OpenGL.Enums.All)dfactorRGB, (OpenTK.OpenGL.Enums.All)sfactorAlpha, (OpenTK.OpenGL.Enums.All)dfactorAlpha); + } + + public static + void VertexWeight(Single weight) + { + Delegates.glVertexWeightfEXT((Single)weight); + } + + public static + void VertexWeightv(Single[] weight) + { + unsafe + { + fixed (Single* weight_ptr = weight) + { + Delegates.glVertexWeightfvEXT((Single*)weight_ptr); + } + } + } + + public static + void VertexWeightv(ref Single weight) + { + unsafe + { + fixed (Single* weight_ptr = &weight) + { + Delegates.glVertexWeightfvEXT((Single*)weight_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexWeightv(Single* weight) + { + Delegates.glVertexWeightfvEXT((Single*)weight); + } + + public static + void VertexWeightPointer(Int32 size, OpenTK.OpenGL.Enums.All type, Int32 stride, IntPtr pointer) + { + unsafe + { + Delegates.glVertexWeightPointerEXT((Int32)size, (OpenTK.OpenGL.Enums.All)type, (Int32)stride, (IntPtr)pointer); + } + } + + public static + void VertexWeightPointer(Int32 size, OpenTK.OpenGL.Enums.All type, Int32 stride, [In, Out] object pointer) + { + unsafe + { + System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glVertexWeightPointerEXT((Int32)size, (OpenTK.OpenGL.Enums.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + } + finally + { + pointer_ptr.Free(); + } + } + } + + public static + void SampleMask(Single value, bool invert) + { + Delegates.glSampleMaskEXT((Single)value, (bool)invert); + } + + public static + void SamplePattern(OpenTK.OpenGL.Enums.All pattern) + { + Delegates.glSamplePatternEXT((OpenTK.OpenGL.Enums.All)pattern); + } + + public static + void BeginVertexShader() + { + Delegates.glBeginVertexShaderEXT(); + } + + public static + void EndVertexShader() + { + Delegates.glEndVertexShaderEXT(); + } + + [System.CLSCompliant(false)] + public static + void BindVertexShader(UInt32 id) + { + Delegates.glBindVertexShaderEXT((UInt32)id); + } + + public static + void BindVertexShader(Int32 id) + { + Delegates.glBindVertexShaderEXT((UInt32)id); + } + + [System.CLSCompliant(false)] + public static + Int32 GenVertexShaders(UInt32 range) + { + return Delegates.glGenVertexShadersEXT((UInt32)range); + } + + public static + Int32 GenVertexShaders(Int32 range) + { + return Delegates.glGenVertexShadersEXT((UInt32)range); + } + + [System.CLSCompliant(false)] + public static + void DeleteVertexShader(UInt32 id) + { + Delegates.glDeleteVertexShaderEXT((UInt32)id); + } + + public static + void DeleteVertexShader(Int32 id) + { + Delegates.glDeleteVertexShaderEXT((UInt32)id); + } + + [System.CLSCompliant(false)] + public static + void ShaderOp1(OpenTK.OpenGL.Enums.All op, UInt32 res, UInt32 arg1) + { + Delegates.glShaderOp1EXT((OpenTK.OpenGL.Enums.All)op, (UInt32)res, (UInt32)arg1); + } + + public static + void ShaderOp1(OpenTK.OpenGL.Enums.All op, Int32 res, Int32 arg1) + { + Delegates.glShaderOp1EXT((OpenTK.OpenGL.Enums.All)op, (UInt32)res, (UInt32)arg1); + } + + [System.CLSCompliant(false)] + public static + void ShaderOp2(OpenTK.OpenGL.Enums.All op, UInt32 res, UInt32 arg1, UInt32 arg2) + { + Delegates.glShaderOp2EXT((OpenTK.OpenGL.Enums.All)op, (UInt32)res, (UInt32)arg1, (UInt32)arg2); + } + + public static + void ShaderOp2(OpenTK.OpenGL.Enums.All op, Int32 res, Int32 arg1, Int32 arg2) + { + Delegates.glShaderOp2EXT((OpenTK.OpenGL.Enums.All)op, (UInt32)res, (UInt32)arg1, (UInt32)arg2); + } + + [System.CLSCompliant(false)] + public static + void ShaderOp3(OpenTK.OpenGL.Enums.All op, UInt32 res, UInt32 arg1, UInt32 arg2, UInt32 arg3) + { + Delegates.glShaderOp3EXT((OpenTK.OpenGL.Enums.All)op, (UInt32)res, (UInt32)arg1, (UInt32)arg2, (UInt32)arg3); + } + + public static + void ShaderOp3(OpenTK.OpenGL.Enums.All op, Int32 res, Int32 arg1, Int32 arg2, Int32 arg3) + { + Delegates.glShaderOp3EXT((OpenTK.OpenGL.Enums.All)op, (UInt32)res, (UInt32)arg1, (UInt32)arg2, (UInt32)arg3); + } + + [System.CLSCompliant(false)] + public static + void Swizzle(UInt32 res, UInt32 @in, OpenTK.OpenGL.Enums.All outX, OpenTK.OpenGL.Enums.All outY, OpenTK.OpenGL.Enums.All outZ, OpenTK.OpenGL.Enums.All outW) + { + Delegates.glSwizzleEXT((UInt32)res, (UInt32)@in, (OpenTK.OpenGL.Enums.All)outX, (OpenTK.OpenGL.Enums.All)outY, (OpenTK.OpenGL.Enums.All)outZ, (OpenTK.OpenGL.Enums.All)outW); + } + + public static + void Swizzle(Int32 res, Int32 @in, OpenTK.OpenGL.Enums.All outX, OpenTK.OpenGL.Enums.All outY, OpenTK.OpenGL.Enums.All outZ, OpenTK.OpenGL.Enums.All outW) + { + Delegates.glSwizzleEXT((UInt32)res, (UInt32)@in, (OpenTK.OpenGL.Enums.All)outX, (OpenTK.OpenGL.Enums.All)outY, (OpenTK.OpenGL.Enums.All)outZ, (OpenTK.OpenGL.Enums.All)outW); + } + + [System.CLSCompliant(false)] + public static + void WriteMask(UInt32 res, UInt32 @in, OpenTK.OpenGL.Enums.All outX, OpenTK.OpenGL.Enums.All outY, OpenTK.OpenGL.Enums.All outZ, OpenTK.OpenGL.Enums.All outW) + { + Delegates.glWriteMaskEXT((UInt32)res, (UInt32)@in, (OpenTK.OpenGL.Enums.All)outX, (OpenTK.OpenGL.Enums.All)outY, (OpenTK.OpenGL.Enums.All)outZ, (OpenTK.OpenGL.Enums.All)outW); + } + + public static + void WriteMask(Int32 res, Int32 @in, OpenTK.OpenGL.Enums.All outX, OpenTK.OpenGL.Enums.All outY, OpenTK.OpenGL.Enums.All outZ, OpenTK.OpenGL.Enums.All outW) + { + Delegates.glWriteMaskEXT((UInt32)res, (UInt32)@in, (OpenTK.OpenGL.Enums.All)outX, (OpenTK.OpenGL.Enums.All)outY, (OpenTK.OpenGL.Enums.All)outZ, (OpenTK.OpenGL.Enums.All)outW); + } + + [System.CLSCompliant(false)] + public static + void InsertComponent(UInt32 res, UInt32 src, UInt32 num) + { + Delegates.glInsertComponentEXT((UInt32)res, (UInt32)src, (UInt32)num); + } + + public static + void InsertComponent(Int32 res, Int32 src, Int32 num) + { + Delegates.glInsertComponentEXT((UInt32)res, (UInt32)src, (UInt32)num); + } + + [System.CLSCompliant(false)] + public static + void ExtractComponent(UInt32 res, UInt32 src, UInt32 num) + { + Delegates.glExtractComponentEXT((UInt32)res, (UInt32)src, (UInt32)num); + } + + public static + void ExtractComponent(Int32 res, Int32 src, Int32 num) + { + Delegates.glExtractComponentEXT((UInt32)res, (UInt32)src, (UInt32)num); + } + + [System.CLSCompliant(false)] + public static + Int32 GenSymbol(OpenTK.OpenGL.Enums.All datatype, OpenTK.OpenGL.Enums.All storagetype, OpenTK.OpenGL.Enums.All range, UInt32 components) + { + return Delegates.glGenSymbolsEXT((OpenTK.OpenGL.Enums.All)datatype, (OpenTK.OpenGL.Enums.All)storagetype, (OpenTK.OpenGL.Enums.All)range, (UInt32)components); + } + + public static + Int32 GenSymbol(OpenTK.OpenGL.Enums.All datatype, OpenTK.OpenGL.Enums.All storagetype, OpenTK.OpenGL.Enums.All range, Int32 components) + { + return Delegates.glGenSymbolsEXT((OpenTK.OpenGL.Enums.All)datatype, (OpenTK.OpenGL.Enums.All)storagetype, (OpenTK.OpenGL.Enums.All)range, (UInt32)components); + } + + [System.CLSCompliant(false)] + public static + void SetInvariant(UInt32 id, OpenTK.OpenGL.Enums.All type, IntPtr addr) + { + unsafe + { + Delegates.glSetInvariantEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)type, (IntPtr)addr); + } + } + + public static + void SetInvariant(Int32 id, OpenTK.OpenGL.Enums.All type, IntPtr addr) + { + unsafe + { + Delegates.glSetInvariantEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)type, (IntPtr)addr); + } + } + + [System.CLSCompliant(false)] + public static + void SetInvariant(UInt32 id, OpenTK.OpenGL.Enums.All type, [In, Out] object addr) + { + unsafe + { + System.Runtime.InteropServices.GCHandle addr_ptr = System.Runtime.InteropServices.GCHandle.Alloc(addr, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glSetInvariantEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); + } + finally + { + addr_ptr.Free(); + } + } + } + + public static + void SetInvariant(Int32 id, OpenTK.OpenGL.Enums.All type, [In, Out] object addr) + { + unsafe + { + System.Runtime.InteropServices.GCHandle addr_ptr = System.Runtime.InteropServices.GCHandle.Alloc(addr, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glSetInvariantEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); + } + finally + { + addr_ptr.Free(); + } + } + } + + [System.CLSCompliant(false)] + public static + void SetLocalConstant(UInt32 id, OpenTK.OpenGL.Enums.All type, IntPtr addr) + { + unsafe + { + Delegates.glSetLocalConstantEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)type, (IntPtr)addr); + } + } + + public static + void SetLocalConstant(Int32 id, OpenTK.OpenGL.Enums.All type, IntPtr addr) + { + unsafe + { + Delegates.glSetLocalConstantEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)type, (IntPtr)addr); + } + } + + [System.CLSCompliant(false)] + public static + void SetLocalConstant(UInt32 id, OpenTK.OpenGL.Enums.All type, [In, Out] object addr) + { + unsafe + { + System.Runtime.InteropServices.GCHandle addr_ptr = System.Runtime.InteropServices.GCHandle.Alloc(addr, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glSetLocalConstantEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); + } + finally + { + addr_ptr.Free(); + } + } + } + + public static + void SetLocalConstant(Int32 id, OpenTK.OpenGL.Enums.All type, [In, Out] object addr) + { + unsafe + { + System.Runtime.InteropServices.GCHandle addr_ptr = System.Runtime.InteropServices.GCHandle.Alloc(addr, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glSetLocalConstantEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); + } + finally + { + addr_ptr.Free(); + } + } + } + + [System.CLSCompliant(false)] + public static + void Variant(UInt32 id, SByte[] addr) + { + unsafe + { + fixed (SByte* addr_ptr = addr) + { + Delegates.glVariantbvEXT((UInt32)id, (SByte*)addr_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void Variant(UInt32 id, ref SByte addr) + { + unsafe + { + fixed (SByte* addr_ptr = &addr) + { + Delegates.glVariantbvEXT((UInt32)id, (SByte*)addr_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Variant(UInt32 id, SByte* addr) + { + Delegates.glVariantbvEXT((UInt32)id, (SByte*)addr); + } + + [System.CLSCompliant(false)] + public static + void Variant(UInt32 id, Int16[] addr) + { + unsafe + { + fixed (Int16* addr_ptr = addr) + { + Delegates.glVariantsvEXT((UInt32)id, (Int16*)addr_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void Variant(UInt32 id, ref Int16 addr) + { + unsafe + { + fixed (Int16* addr_ptr = &addr) + { + Delegates.glVariantsvEXT((UInt32)id, (Int16*)addr_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Variant(UInt32 id, Int16* addr) + { + Delegates.glVariantsvEXT((UInt32)id, (Int16*)addr); + } + + [System.CLSCompliant(false)] + public static + void Variant(UInt32 id, Int32[] addr) + { + unsafe + { + fixed (Int32* addr_ptr = addr) + { + Delegates.glVariantivEXT((UInt32)id, (Int32*)addr_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void Variant(UInt32 id, ref Int32 addr) + { + unsafe + { + fixed (Int32* addr_ptr = &addr) + { + Delegates.glVariantivEXT((UInt32)id, (Int32*)addr_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Variant(UInt32 id, Int32* addr) + { + Delegates.glVariantivEXT((UInt32)id, (Int32*)addr); + } + + [System.CLSCompliant(false)] + public static + void Variant(UInt32 id, Single[] addr) + { + unsafe + { + fixed (Single* addr_ptr = addr) + { + Delegates.glVariantfvEXT((UInt32)id, (Single*)addr_ptr); + } + } + } + + public static + void Variant(Int32 id, Single[] addr) + { + unsafe + { + fixed (Single* addr_ptr = addr) + { + Delegates.glVariantfvEXT((UInt32)id, (Single*)addr_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void Variant(UInt32 id, ref Single addr) + { + unsafe + { + fixed (Single* addr_ptr = &addr) + { + Delegates.glVariantfvEXT((UInt32)id, (Single*)addr_ptr); + } + } + } + + public static + void Variant(Int32 id, ref Single addr) + { + unsafe + { + fixed (Single* addr_ptr = &addr) + { + Delegates.glVariantfvEXT((UInt32)id, (Single*)addr_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Variant(UInt32 id, Single* addr) + { + Delegates.glVariantfvEXT((UInt32)id, (Single*)addr); + } + + [System.CLSCompliant(false)] + public static + unsafe void Variant(Int32 id, Single* addr) + { + Delegates.glVariantfvEXT((UInt32)id, (Single*)addr); + } + + [System.CLSCompliant(false)] + public static + void Variant(UInt32 id, Double[] addr) + { + unsafe + { + fixed (Double* addr_ptr = addr) + { + Delegates.glVariantdvEXT((UInt32)id, (Double*)addr_ptr); + } + } + } + + public static + void Variant(Int32 id, Double[] addr) + { + unsafe + { + fixed (Double* addr_ptr = addr) + { + Delegates.glVariantdvEXT((UInt32)id, (Double*)addr_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void Variant(UInt32 id, ref Double addr) + { + unsafe + { + fixed (Double* addr_ptr = &addr) + { + Delegates.glVariantdvEXT((UInt32)id, (Double*)addr_ptr); + } + } + } + + public static + void Variant(Int32 id, ref Double addr) + { + unsafe + { + fixed (Double* addr_ptr = &addr) + { + Delegates.glVariantdvEXT((UInt32)id, (Double*)addr_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Variant(UInt32 id, Double* addr) + { + Delegates.glVariantdvEXT((UInt32)id, (Double*)addr); + } + + [System.CLSCompliant(false)] + public static + unsafe void Variant(Int32 id, Double* addr) + { + Delegates.glVariantdvEXT((UInt32)id, (Double*)addr); + } + + [System.CLSCompliant(false)] + public static + void Variant(UInt32 id, Byte[] addr) + { + unsafe + { + fixed (Byte* addr_ptr = addr) + { + Delegates.glVariantubvEXT((UInt32)id, (Byte*)addr_ptr); + } + } + } + + public static + void Variant(Int32 id, Byte[] addr) + { + unsafe + { + fixed (Byte* addr_ptr = addr) + { + Delegates.glVariantubvEXT((UInt32)id, (Byte*)addr_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void Variant(UInt32 id, ref Byte addr) + { + unsafe + { + fixed (Byte* addr_ptr = &addr) + { + Delegates.glVariantubvEXT((UInt32)id, (Byte*)addr_ptr); + } + } + } + + public static + void Variant(Int32 id, ref Byte addr) + { + unsafe + { + fixed (Byte* addr_ptr = &addr) + { + Delegates.glVariantubvEXT((UInt32)id, (Byte*)addr_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Variant(UInt32 id, Byte* addr) + { + Delegates.glVariantubvEXT((UInt32)id, (Byte*)addr); + } + + [System.CLSCompliant(false)] + public static + unsafe void Variant(Int32 id, Byte* addr) + { + Delegates.glVariantubvEXT((UInt32)id, (Byte*)addr); + } + + [System.CLSCompliant(false)] + public static + void Variant(UInt32 id, UInt16[] addr) + { + unsafe + { + fixed (UInt16* addr_ptr = addr) + { + Delegates.glVariantusvEXT((UInt32)id, (UInt16*)addr_ptr); + } + } + } + + public static + void Variant(Int32 id, Int16[] addr) + { + unsafe + { + fixed (Int16* addr_ptr = addr) + { + Delegates.glVariantusvEXT((UInt32)id, (UInt16*)addr_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void Variant(UInt32 id, ref UInt16 addr) + { + unsafe + { + fixed (UInt16* addr_ptr = &addr) + { + Delegates.glVariantusvEXT((UInt32)id, (UInt16*)addr_ptr); + } + } + } + + public static + void Variant(Int32 id, ref Int16 addr) + { + unsafe + { + fixed (Int16* addr_ptr = &addr) + { + Delegates.glVariantusvEXT((UInt32)id, (UInt16*)addr_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Variant(UInt32 id, UInt16* addr) + { + Delegates.glVariantusvEXT((UInt32)id, (UInt16*)addr); + } + + [System.CLSCompliant(false)] + public static + unsafe void Variant(Int32 id, Int16* addr) + { + Delegates.glVariantusvEXT((UInt32)id, (UInt16*)addr); + } + + [System.CLSCompliant(false)] + public static + void Variant(UInt32 id, UInt32[] addr) + { + unsafe + { + fixed (UInt32* addr_ptr = addr) + { + Delegates.glVariantuivEXT((UInt32)id, (UInt32*)addr_ptr); + } + } + } + + public static + void Variant(Int32 id, Int32[] addr) + { + unsafe + { + fixed (Int32* addr_ptr = addr) + { + Delegates.glVariantuivEXT((UInt32)id, (UInt32*)addr_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void Variant(UInt32 id, ref UInt32 addr) + { + unsafe + { + fixed (UInt32* addr_ptr = &addr) + { + Delegates.glVariantuivEXT((UInt32)id, (UInt32*)addr_ptr); + } + } + } + + public static + void Variant(Int32 id, ref Int32 addr) + { + unsafe + { + fixed (Int32* addr_ptr = &addr) + { + Delegates.glVariantuivEXT((UInt32)id, (UInt32*)addr_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Variant(UInt32 id, UInt32* addr) + { + Delegates.glVariantuivEXT((UInt32)id, (UInt32*)addr); + } + + [System.CLSCompliant(false)] + public static + unsafe void Variant(Int32 id, Int32* addr) + { + Delegates.glVariantuivEXT((UInt32)id, (UInt32*)addr); + } + + [System.CLSCompliant(false)] + public static + void VariantPointer(UInt32 id, OpenTK.OpenGL.Enums.All type, UInt32 stride, IntPtr addr) + { + unsafe + { + Delegates.glVariantPointerEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)type, (UInt32)stride, (IntPtr)addr); + } + } + + public static + void VariantPointer(Int32 id, OpenTK.OpenGL.Enums.All type, Int32 stride, IntPtr addr) + { + unsafe + { + Delegates.glVariantPointerEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)type, (UInt32)stride, (IntPtr)addr); + } + } + + [System.CLSCompliant(false)] + public static + void VariantPointer(UInt32 id, OpenTK.OpenGL.Enums.All type, UInt32 stride, [In, Out] object addr) + { + unsafe + { + System.Runtime.InteropServices.GCHandle addr_ptr = System.Runtime.InteropServices.GCHandle.Alloc(addr, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glVariantPointerEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)type, (UInt32)stride, (IntPtr)addr_ptr.AddrOfPinnedObject()); + } + finally + { + addr_ptr.Free(); + } + } + } + + public static + void VariantPointer(Int32 id, OpenTK.OpenGL.Enums.All type, Int32 stride, [In, Out] object addr) + { + unsafe + { + System.Runtime.InteropServices.GCHandle addr_ptr = System.Runtime.InteropServices.GCHandle.Alloc(addr, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glVariantPointerEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)type, (UInt32)stride, (IntPtr)addr_ptr.AddrOfPinnedObject()); + } + finally + { + addr_ptr.Free(); + } + } + } + + [System.CLSCompliant(false)] + public static + void EnableVariantClientState(UInt32 id) + { + Delegates.glEnableVariantClientStateEXT((UInt32)id); + } + + public static + void EnableVariantClientState(Int32 id) + { + Delegates.glEnableVariantClientStateEXT((UInt32)id); + } + + [System.CLSCompliant(false)] + public static + void DisableVariantClientState(UInt32 id) + { + Delegates.glDisableVariantClientStateEXT((UInt32)id); + } + + public static + void DisableVariantClientState(Int32 id) + { + Delegates.glDisableVariantClientStateEXT((UInt32)id); + } + + public static + Int32 BindLightParameter(OpenTK.OpenGL.Enums.LightName light, OpenTK.OpenGL.Enums.LightParameter value) + { + return Delegates.glBindLightParameterEXT((OpenTK.OpenGL.Enums.LightName)light, (OpenTK.OpenGL.Enums.LightParameter)value); + } + + public static + Int32 BindMaterialParameter(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter value) + { + return Delegates.glBindMaterialParameterEXT((OpenTK.OpenGL.Enums.MaterialFace)face, (OpenTK.OpenGL.Enums.MaterialParameter)value); + } + + public static + Int32 BindTexGenParameter(OpenTK.OpenGL.Enums.TextureUnit unit, OpenTK.OpenGL.Enums.TextureCoordName coord, OpenTK.OpenGL.Enums.TextureGenParameter value) + { + return Delegates.glBindTexGenParameterEXT((OpenTK.OpenGL.Enums.TextureUnit)unit, (OpenTK.OpenGL.Enums.TextureCoordName)coord, (OpenTK.OpenGL.Enums.TextureGenParameter)value); + } + + public static + Int32 BindTextureUnitParameter(OpenTK.OpenGL.Enums.TextureUnit unit, OpenTK.OpenGL.Enums.All value) + { + return Delegates.glBindTextureUnitParameterEXT((OpenTK.OpenGL.Enums.TextureUnit)unit, (OpenTK.OpenGL.Enums.All)value); + } + + public static + Int32 BindParameter(OpenTK.OpenGL.Enums.All value) + { + return Delegates.glBindParameterEXT((OpenTK.OpenGL.Enums.All)value); + } + + [System.CLSCompliant(false)] + public static + bool IsVariantEnabled(UInt32 id, OpenTK.OpenGL.Enums.All cap) + { + return Delegates.glIsVariantEnabledEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)cap); + } + + public static + bool IsVariantEnabled(Int32 id, OpenTK.OpenGL.Enums.All cap) + { + return Delegates.glIsVariantEnabledEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)cap); + } + + [System.CLSCompliant(false)] + public static + void GetVariantBoolean(UInt32 id, OpenTK.OpenGL.Enums.All value, [Out] bool[] data) + { + unsafe + { + fixed (bool* data_ptr = data) + { + Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (bool*)data_ptr); + } + } + } + + public static + void GetVariantBoolean(Int32 id, OpenTK.OpenGL.Enums.All value, [Out] bool[] data) + { + unsafe + { + fixed (bool* data_ptr = data) + { + Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (bool*)data_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetVariantBoolean(UInt32 id, OpenTK.OpenGL.Enums.All value, [Out] out bool data) + { + unsafe + { + fixed (bool* data_ptr = &data) + { + Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (bool*)data_ptr); + data = *data_ptr; + } + } + } + + public static + void GetVariantBoolean(Int32 id, OpenTK.OpenGL.Enums.All value, [Out] out bool data) + { + unsafe + { + fixed (bool* data_ptr = &data) + { + Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (bool*)data_ptr); + data = *data_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetVariantBoolean(UInt32 id, OpenTK.OpenGL.Enums.All value, [Out] bool* data) + { + Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (bool*)data); + } + + [System.CLSCompliant(false)] + public static + unsafe void GetVariantBoolean(Int32 id, OpenTK.OpenGL.Enums.All value, [Out] bool* data) + { + Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (bool*)data); + } + + [System.CLSCompliant(false)] + public static + void GetVariantInteger(UInt32 id, OpenTK.OpenGL.Enums.All value, [Out] Int32[] data) + { + unsafe + { + fixed (Int32* data_ptr = data) + { + Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (Int32*)data_ptr); + } + } + } + + public static + void GetVariantInteger(Int32 id, OpenTK.OpenGL.Enums.All value, [Out] Int32[] data) + { + unsafe + { + fixed (Int32* data_ptr = data) + { + Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (Int32*)data_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetVariantInteger(UInt32 id, OpenTK.OpenGL.Enums.All value, [Out] out Int32 data) + { + unsafe + { + fixed (Int32* data_ptr = &data) + { + Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (Int32*)data_ptr); + data = *data_ptr; + } + } + } + + public static + void GetVariantInteger(Int32 id, OpenTK.OpenGL.Enums.All value, [Out] out Int32 data) + { + unsafe + { + fixed (Int32* data_ptr = &data) + { + Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (Int32*)data_ptr); + data = *data_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetVariantInteger(UInt32 id, OpenTK.OpenGL.Enums.All value, [Out] Int32* data) + { + Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (Int32*)data); + } + + [System.CLSCompliant(false)] + public static + unsafe void GetVariantInteger(Int32 id, OpenTK.OpenGL.Enums.All value, [Out] Int32* data) + { + Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (Int32*)data); + } + + [System.CLSCompliant(false)] + public static + void GetVariantFloat(UInt32 id, OpenTK.OpenGL.Enums.All value, [Out] Single[] data) + { + unsafe + { + fixed (Single* data_ptr = data) + { + Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (Single*)data_ptr); + } + } + } + + public static + void GetVariantFloat(Int32 id, OpenTK.OpenGL.Enums.All value, [Out] Single[] data) + { + unsafe + { + fixed (Single* data_ptr = data) + { + Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (Single*)data_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetVariantFloat(UInt32 id, OpenTK.OpenGL.Enums.All value, [Out] out Single data) + { + unsafe + { + fixed (Single* data_ptr = &data) + { + Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (Single*)data_ptr); + data = *data_ptr; + } + } + } + + public static + void GetVariantFloat(Int32 id, OpenTK.OpenGL.Enums.All value, [Out] out Single data) + { + unsafe + { + fixed (Single* data_ptr = &data) + { + Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (Single*)data_ptr); + data = *data_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetVariantFloat(UInt32 id, OpenTK.OpenGL.Enums.All value, [Out] Single* data) + { + Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (Single*)data); + } + + [System.CLSCompliant(false)] + public static + unsafe void GetVariantFloat(Int32 id, OpenTK.OpenGL.Enums.All value, [Out] Single* data) + { + Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (Single*)data); + } + + [System.CLSCompliant(false)] + public static + void GetVariantPointer(UInt32 id, OpenTK.OpenGL.Enums.All value, [Out] IntPtr data) + { + unsafe + { + Delegates.glGetVariantPointervEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (IntPtr)data); + } + } + + public static + void GetVariantPointer(Int32 id, OpenTK.OpenGL.Enums.All value, [Out] IntPtr data) + { + unsafe + { + Delegates.glGetVariantPointervEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (IntPtr)data); + } + } + + [System.CLSCompliant(false)] + public static + void GetVariantPointer(UInt32 id, OpenTK.OpenGL.Enums.All value, [In, Out] object data) + { + unsafe + { + System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glGetVariantPointervEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (IntPtr)data_ptr.AddrOfPinnedObject()); + } + finally + { + data_ptr.Free(); + } + } + } + + public static + void GetVariantPointer(Int32 id, OpenTK.OpenGL.Enums.All value, [In, Out] object data) + { + unsafe + { + System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glGetVariantPointervEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (IntPtr)data_ptr.AddrOfPinnedObject()); + } + finally + { + data_ptr.Free(); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetInvariantBoolean(UInt32 id, OpenTK.OpenGL.Enums.All value, [Out] bool[] data) + { + unsafe + { + fixed (bool* data_ptr = data) + { + Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (bool*)data_ptr); + } + } + } + + public static + void GetInvariantBoolean(Int32 id, OpenTK.OpenGL.Enums.All value, [Out] bool[] data) + { + unsafe + { + fixed (bool* data_ptr = data) + { + Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (bool*)data_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetInvariantBoolean(UInt32 id, OpenTK.OpenGL.Enums.All value, [Out] out bool data) + { + unsafe + { + fixed (bool* data_ptr = &data) + { + Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (bool*)data_ptr); + data = *data_ptr; + } + } + } + + public static + void GetInvariantBoolean(Int32 id, OpenTK.OpenGL.Enums.All value, [Out] out bool data) + { + unsafe + { + fixed (bool* data_ptr = &data) + { + Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (bool*)data_ptr); + data = *data_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetInvariantBoolean(UInt32 id, OpenTK.OpenGL.Enums.All value, [Out] bool* data) + { + Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (bool*)data); + } + + [System.CLSCompliant(false)] + public static + unsafe void GetInvariantBoolean(Int32 id, OpenTK.OpenGL.Enums.All value, [Out] bool* data) + { + Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (bool*)data); + } + + [System.CLSCompliant(false)] + public static + void GetInvariantInteger(UInt32 id, OpenTK.OpenGL.Enums.All value, [Out] Int32[] data) + { + unsafe + { + fixed (Int32* data_ptr = data) + { + Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (Int32*)data_ptr); + } + } + } + + public static + void GetInvariantInteger(Int32 id, OpenTK.OpenGL.Enums.All value, [Out] Int32[] data) + { + unsafe + { + fixed (Int32* data_ptr = data) + { + Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (Int32*)data_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetInvariantInteger(UInt32 id, OpenTK.OpenGL.Enums.All value, [Out] out Int32 data) + { + unsafe + { + fixed (Int32* data_ptr = &data) + { + Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (Int32*)data_ptr); + data = *data_ptr; + } + } + } + + public static + void GetInvariantInteger(Int32 id, OpenTK.OpenGL.Enums.All value, [Out] out Int32 data) + { + unsafe + { + fixed (Int32* data_ptr = &data) + { + Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (Int32*)data_ptr); + data = *data_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetInvariantInteger(UInt32 id, OpenTK.OpenGL.Enums.All value, [Out] Int32* data) + { + Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (Int32*)data); + } + + [System.CLSCompliant(false)] + public static + unsafe void GetInvariantInteger(Int32 id, OpenTK.OpenGL.Enums.All value, [Out] Int32* data) + { + Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (Int32*)data); + } + + [System.CLSCompliant(false)] + public static + void GetInvariantFloat(UInt32 id, OpenTK.OpenGL.Enums.All value, [Out] Single[] data) + { + unsafe + { + fixed (Single* data_ptr = data) + { + Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (Single*)data_ptr); + } + } + } + + public static + void GetInvariantFloat(Int32 id, OpenTK.OpenGL.Enums.All value, [Out] Single[] data) + { + unsafe + { + fixed (Single* data_ptr = data) + { + Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (Single*)data_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetInvariantFloat(UInt32 id, OpenTK.OpenGL.Enums.All value, [Out] out Single data) + { + unsafe + { + fixed (Single* data_ptr = &data) + { + Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (Single*)data_ptr); + data = *data_ptr; + } + } + } + + public static + void GetInvariantFloat(Int32 id, OpenTK.OpenGL.Enums.All value, [Out] out Single data) + { + unsafe + { + fixed (Single* data_ptr = &data) + { + Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (Single*)data_ptr); + data = *data_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetInvariantFloat(UInt32 id, OpenTK.OpenGL.Enums.All value, [Out] Single* data) + { + Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (Single*)data); + } + + [System.CLSCompliant(false)] + public static + unsafe void GetInvariantFloat(Int32 id, OpenTK.OpenGL.Enums.All value, [Out] Single* data) + { + Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (Single*)data); + } + + [System.CLSCompliant(false)] + public static + void GetLocalConstantBoolean(UInt32 id, OpenTK.OpenGL.Enums.All value, [Out] bool[] data) + { + unsafe + { + fixed (bool* data_ptr = data) + { + Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (bool*)data_ptr); + } + } + } + + public static + void GetLocalConstantBoolean(Int32 id, OpenTK.OpenGL.Enums.All value, [Out] bool[] data) + { + unsafe + { + fixed (bool* data_ptr = data) + { + Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (bool*)data_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetLocalConstantBoolean(UInt32 id, OpenTK.OpenGL.Enums.All value, [Out] out bool data) + { + unsafe + { + fixed (bool* data_ptr = &data) + { + Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (bool*)data_ptr); + data = *data_ptr; + } + } + } + + public static + void GetLocalConstantBoolean(Int32 id, OpenTK.OpenGL.Enums.All value, [Out] out bool data) + { + unsafe + { + fixed (bool* data_ptr = &data) + { + Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (bool*)data_ptr); + data = *data_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetLocalConstantBoolean(UInt32 id, OpenTK.OpenGL.Enums.All value, [Out] bool* data) + { + Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (bool*)data); + } + + [System.CLSCompliant(false)] + public static + unsafe void GetLocalConstantBoolean(Int32 id, OpenTK.OpenGL.Enums.All value, [Out] bool* data) + { + Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (bool*)data); + } + + [System.CLSCompliant(false)] + public static + void GetLocalConstantInteger(UInt32 id, OpenTK.OpenGL.Enums.All value, [Out] Int32[] data) + { + unsafe + { + fixed (Int32* data_ptr = data) + { + Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (Int32*)data_ptr); + } + } + } + + public static + void GetLocalConstantInteger(Int32 id, OpenTK.OpenGL.Enums.All value, [Out] Int32[] data) + { + unsafe + { + fixed (Int32* data_ptr = data) + { + Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (Int32*)data_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetLocalConstantInteger(UInt32 id, OpenTK.OpenGL.Enums.All value, [Out] out Int32 data) + { + unsafe + { + fixed (Int32* data_ptr = &data) + { + Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (Int32*)data_ptr); + data = *data_ptr; + } + } + } + + public static + void GetLocalConstantInteger(Int32 id, OpenTK.OpenGL.Enums.All value, [Out] out Int32 data) + { + unsafe + { + fixed (Int32* data_ptr = &data) + { + Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (Int32*)data_ptr); + data = *data_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetLocalConstantInteger(UInt32 id, OpenTK.OpenGL.Enums.All value, [Out] Int32* data) + { + Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (Int32*)data); + } + + [System.CLSCompliant(false)] + public static + unsafe void GetLocalConstantInteger(Int32 id, OpenTK.OpenGL.Enums.All value, [Out] Int32* data) + { + Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (Int32*)data); + } + + [System.CLSCompliant(false)] + public static + void GetLocalConstantFloat(UInt32 id, OpenTK.OpenGL.Enums.All value, [Out] Single[] data) + { + unsafe + { + fixed (Single* data_ptr = data) + { + Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (Single*)data_ptr); + } + } + } + + public static + void GetLocalConstantFloat(Int32 id, OpenTK.OpenGL.Enums.All value, [Out] Single[] data) + { + unsafe + { + fixed (Single* data_ptr = data) + { + Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (Single*)data_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetLocalConstantFloat(UInt32 id, OpenTK.OpenGL.Enums.All value, [Out] out Single data) + { + unsafe + { + fixed (Single* data_ptr = &data) + { + Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (Single*)data_ptr); + data = *data_ptr; + } + } + } + + public static + void GetLocalConstantFloat(Int32 id, OpenTK.OpenGL.Enums.All value, [Out] out Single data) + { + unsafe + { + fixed (Single* data_ptr = &data) + { + Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (Single*)data_ptr); + data = *data_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetLocalConstantFloat(UInt32 id, OpenTK.OpenGL.Enums.All value, [Out] Single* data) + { + Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (Single*)data); + } + + [System.CLSCompliant(false)] + public static + unsafe void GetLocalConstantFloat(Int32 id, OpenTK.OpenGL.Enums.All value, [Out] Single* data) + { + Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)value, (Single*)data); + } + + public static + void ActiveStencilFace(OpenTK.OpenGL.Enums.All face) + { + Delegates.glActiveStencilFaceEXT((OpenTK.OpenGL.Enums.All)face); + } + + public static + void DepthBounds(Double zmin, Double zmax) + { + Delegates.glDepthBoundsEXT((Double)zmin, (Double)zmax); + } + + public static + void BlendEquationSeparate(OpenTK.OpenGL.Enums.All modeRGB, OpenTK.OpenGL.Enums.All modeAlpha) + { + Delegates.glBlendEquationSeparateEXT((OpenTK.OpenGL.Enums.All)modeRGB, (OpenTK.OpenGL.Enums.All)modeAlpha); + } + + [System.CLSCompliant(false)] + public static + bool IsRenderbuffer(UInt32 renderbuffer) + { + return Delegates.glIsRenderbufferEXT((UInt32)renderbuffer); + } + + public static + bool IsRenderbuffer(Int32 renderbuffer) + { + return Delegates.glIsRenderbufferEXT((UInt32)renderbuffer); + } + + [System.CLSCompliant(false)] + public static + void BindRenderbuffer(OpenTK.OpenGL.Enums.All target, UInt32 renderbuffer) + { + Delegates.glBindRenderbufferEXT((OpenTK.OpenGL.Enums.All)target, (UInt32)renderbuffer); + } + + public static + void BindRenderbuffer(OpenTK.OpenGL.Enums.All target, Int32 renderbuffer) + { + Delegates.glBindRenderbufferEXT((OpenTK.OpenGL.Enums.All)target, (UInt32)renderbuffer); + } + + [System.CLSCompliant(false)] + public static + void DeleteRenderbuffers(Int32 n, UInt32[] renderbuffers) + { + unsafe + { + fixed (UInt32* renderbuffers_ptr = renderbuffers) + { + Delegates.glDeleteRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers_ptr); + } + } + } + + public static + void DeleteRenderbuffers(Int32 n, Int32[] renderbuffers) + { + unsafe + { + fixed (Int32* renderbuffers_ptr = renderbuffers) + { + Delegates.glDeleteRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void DeleteRenderbuffers(Int32 n, ref UInt32 renderbuffers) + { + unsafe + { + fixed (UInt32* renderbuffers_ptr = &renderbuffers) + { + Delegates.glDeleteRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers_ptr); + } + } + } + + public static + void DeleteRenderbuffers(Int32 n, ref Int32 renderbuffers) + { + unsafe + { + fixed (Int32* renderbuffers_ptr = &renderbuffers) + { + Delegates.glDeleteRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void DeleteRenderbuffers(Int32 n, UInt32* renderbuffers) + { + Delegates.glDeleteRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers); + } + + [System.CLSCompliant(false)] + public static + unsafe void DeleteRenderbuffers(Int32 n, Int32* renderbuffers) + { + Delegates.glDeleteRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers); + } + + [System.CLSCompliant(false)] + public static + void GenRenderbuffers(Int32 n, [Out] UInt32[] renderbuffers) + { + unsafe + { + fixed (UInt32* renderbuffers_ptr = renderbuffers) + { + Delegates.glGenRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers_ptr); + } + } + } + + public static + void GenRenderbuffers(Int32 n, [Out] Int32[] renderbuffers) + { + unsafe + { + fixed (Int32* renderbuffers_ptr = renderbuffers) + { + Delegates.glGenRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void GenRenderbuffers(Int32 n, [Out] out UInt32 renderbuffers) + { + unsafe + { + fixed (UInt32* renderbuffers_ptr = &renderbuffers) + { + Delegates.glGenRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers_ptr); + renderbuffers = *renderbuffers_ptr; + } + } + } + + public static + void GenRenderbuffers(Int32 n, [Out] out Int32 renderbuffers) + { + unsafe + { + fixed (Int32* renderbuffers_ptr = &renderbuffers) + { + Delegates.glGenRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers_ptr); + renderbuffers = *renderbuffers_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GenRenderbuffers(Int32 n, [Out] UInt32* renderbuffers) + { + Delegates.glGenRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers); + } + + [System.CLSCompliant(false)] + public static + unsafe void GenRenderbuffers(Int32 n, [Out] Int32* renderbuffers) + { + Delegates.glGenRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers); + } + + public static + void RenderbufferStorage(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All internalformat, Int32 width, Int32 height) + { + Delegates.glRenderbufferStorageEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)internalformat, (Int32)width, (Int32)height); + } + + public static + void GetRenderbufferParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glGetRenderbufferParameterivEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + } + } + } + + public static + void GetRenderbufferParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glGetRenderbufferParameterivEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetRenderbufferParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) + { + Delegates.glGetRenderbufferParameterivEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); + } + + [System.CLSCompliant(false)] + public static + bool IsFramebuffer(UInt32 framebuffer) + { + return Delegates.glIsFramebufferEXT((UInt32)framebuffer); + } + + public static + bool IsFramebuffer(Int32 framebuffer) + { + return Delegates.glIsFramebufferEXT((UInt32)framebuffer); + } + + [System.CLSCompliant(false)] + public static + void BindFramebuffer(OpenTK.OpenGL.Enums.All target, UInt32 framebuffer) + { + Delegates.glBindFramebufferEXT((OpenTK.OpenGL.Enums.All)target, (UInt32)framebuffer); + } + + public static + void BindFramebuffer(OpenTK.OpenGL.Enums.All target, Int32 framebuffer) + { + Delegates.glBindFramebufferEXT((OpenTK.OpenGL.Enums.All)target, (UInt32)framebuffer); + } + + [System.CLSCompliant(false)] + public static + void DeleteFramebuffers(Int32 n, UInt32[] framebuffers) + { + unsafe + { + fixed (UInt32* framebuffers_ptr = framebuffers) + { + Delegates.glDeleteFramebuffersEXT((Int32)n, (UInt32*)framebuffers_ptr); + } + } + } + + public static + void DeleteFramebuffers(Int32 n, Int32[] framebuffers) + { + unsafe + { + fixed (Int32* framebuffers_ptr = framebuffers) + { + Delegates.glDeleteFramebuffersEXT((Int32)n, (UInt32*)framebuffers_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void DeleteFramebuffers(Int32 n, ref UInt32 framebuffers) + { + unsafe + { + fixed (UInt32* framebuffers_ptr = &framebuffers) + { + Delegates.glDeleteFramebuffersEXT((Int32)n, (UInt32*)framebuffers_ptr); + } + } + } + + public static + void DeleteFramebuffers(Int32 n, ref Int32 framebuffers) + { + unsafe + { + fixed (Int32* framebuffers_ptr = &framebuffers) + { + Delegates.glDeleteFramebuffersEXT((Int32)n, (UInt32*)framebuffers_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void DeleteFramebuffers(Int32 n, UInt32* framebuffers) + { + Delegates.glDeleteFramebuffersEXT((Int32)n, (UInt32*)framebuffers); + } + + [System.CLSCompliant(false)] + public static + unsafe void DeleteFramebuffers(Int32 n, Int32* framebuffers) + { + Delegates.glDeleteFramebuffersEXT((Int32)n, (UInt32*)framebuffers); + } + + [System.CLSCompliant(false)] + public static + void GenFramebuffers(Int32 n, [Out] UInt32[] framebuffers) + { + unsafe + { + fixed (UInt32* framebuffers_ptr = framebuffers) + { + Delegates.glGenFramebuffersEXT((Int32)n, (UInt32*)framebuffers_ptr); + } + } + } + + public static + void GenFramebuffers(Int32 n, [Out] Int32[] framebuffers) + { + unsafe + { + fixed (Int32* framebuffers_ptr = framebuffers) + { + Delegates.glGenFramebuffersEXT((Int32)n, (UInt32*)framebuffers_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void GenFramebuffers(Int32 n, [Out] out UInt32 framebuffers) + { + unsafe + { + fixed (UInt32* framebuffers_ptr = &framebuffers) + { + Delegates.glGenFramebuffersEXT((Int32)n, (UInt32*)framebuffers_ptr); + framebuffers = *framebuffers_ptr; + } + } + } + + public static + void GenFramebuffers(Int32 n, [Out] out Int32 framebuffers) + { + unsafe + { + fixed (Int32* framebuffers_ptr = &framebuffers) + { + Delegates.glGenFramebuffersEXT((Int32)n, (UInt32*)framebuffers_ptr); + framebuffers = *framebuffers_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GenFramebuffers(Int32 n, [Out] UInt32* framebuffers) + { + Delegates.glGenFramebuffersEXT((Int32)n, (UInt32*)framebuffers); + } + + [System.CLSCompliant(false)] + public static + unsafe void GenFramebuffers(Int32 n, [Out] Int32* framebuffers) + { + Delegates.glGenFramebuffersEXT((Int32)n, (UInt32*)framebuffers); + } + + public static + OpenTK.OpenGL.Enums.All CheckFramebufferStat(OpenTK.OpenGL.Enums.All target) + { + return Delegates.glCheckFramebufferStatusEXT((OpenTK.OpenGL.Enums.All)target); + } + + [System.CLSCompliant(false)] + public static + void FramebufferTexture1D(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All attachment, OpenTK.OpenGL.Enums.All textarget, UInt32 texture, Int32 level) + { + Delegates.glFramebufferTexture1DEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)attachment, (OpenTK.OpenGL.Enums.All)textarget, (UInt32)texture, (Int32)level); + } + + public static + void FramebufferTexture1D(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All attachment, OpenTK.OpenGL.Enums.All textarget, Int32 texture, Int32 level) + { + Delegates.glFramebufferTexture1DEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)attachment, (OpenTK.OpenGL.Enums.All)textarget, (UInt32)texture, (Int32)level); + } + + [System.CLSCompliant(false)] + public static + void FramebufferTexture2D(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All attachment, OpenTK.OpenGL.Enums.All textarget, UInt32 texture, Int32 level) + { + Delegates.glFramebufferTexture2DEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)attachment, (OpenTK.OpenGL.Enums.All)textarget, (UInt32)texture, (Int32)level); + } + + public static + void FramebufferTexture2D(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All attachment, OpenTK.OpenGL.Enums.All textarget, Int32 texture, Int32 level) + { + Delegates.glFramebufferTexture2DEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)attachment, (OpenTK.OpenGL.Enums.All)textarget, (UInt32)texture, (Int32)level); + } + + [System.CLSCompliant(false)] + public static + void FramebufferTexture3D(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All attachment, OpenTK.OpenGL.Enums.All textarget, UInt32 texture, Int32 level, Int32 zoffset) + { + Delegates.glFramebufferTexture3DEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)attachment, (OpenTK.OpenGL.Enums.All)textarget, (UInt32)texture, (Int32)level, (Int32)zoffset); + } + + public static + void FramebufferTexture3D(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All attachment, OpenTK.OpenGL.Enums.All textarget, Int32 texture, Int32 level, Int32 zoffset) + { + Delegates.glFramebufferTexture3DEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)attachment, (OpenTK.OpenGL.Enums.All)textarget, (UInt32)texture, (Int32)level, (Int32)zoffset); + } + + [System.CLSCompliant(false)] + public static + void FramebufferRenderbuffer(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All attachment, OpenTK.OpenGL.Enums.All renderbuffertarget, UInt32 renderbuffer) + { + Delegates.glFramebufferRenderbufferEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)attachment, (OpenTK.OpenGL.Enums.All)renderbuffertarget, (UInt32)renderbuffer); + } + + public static + void FramebufferRenderbuffer(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All attachment, OpenTK.OpenGL.Enums.All renderbuffertarget, Int32 renderbuffer) + { + Delegates.glFramebufferRenderbufferEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)attachment, (OpenTK.OpenGL.Enums.All)renderbuffertarget, (UInt32)renderbuffer); + } + + public static + void GetFramebufferAttachmentParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All attachment, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glGetFramebufferAttachmentParameterivEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)attachment, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + } + } + } + + public static + void GetFramebufferAttachmentParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All attachment, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glGetFramebufferAttachmentParameterivEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)attachment, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetFramebufferAttachmentParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All attachment, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) + { + Delegates.glGetFramebufferAttachmentParameterivEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)attachment, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); + } + + public static + void GenerateMipmap(OpenTK.OpenGL.Enums.All target) + { + Delegates.glGenerateMipmapEXT((OpenTK.OpenGL.Enums.All)target); + } + + [System.CLSCompliant(false)] + public static + void StencilClearTag(Int32 stencilTagBits, UInt32 stencilClearTag) + { + Delegates.glStencilClearTagEXT((Int32)stencilTagBits, (UInt32)stencilClearTag); + } + + public static + void StencilClearTag(Int32 stencilTagBits, Int32 stencilClearTag) + { + Delegates.glStencilClearTagEXT((Int32)stencilTagBits, (UInt32)stencilClearTag); + } + + public static + void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.OpenGL.Enums.ClearBufferMask mask, OpenTK.OpenGL.Enums.All filter) + { + Delegates.glBlitFramebufferEXT((Int32)srcX0, (Int32)srcY0, (Int32)srcX1, (Int32)srcY1, (Int32)dstX0, (Int32)dstY0, (Int32)dstX1, (Int32)dstY1, (OpenTK.OpenGL.Enums.ClearBufferMask)mask, (OpenTK.OpenGL.Enums.All)filter); + } + + public static + void RenderbufferStorageMultisample(OpenTK.OpenGL.Enums.All target, Int32 samples, OpenTK.OpenGL.Enums.All internalformat, Int32 width, Int32 height) + { + Delegates.glRenderbufferStorageMultisampleEXT((OpenTK.OpenGL.Enums.All)target, (Int32)samples, (OpenTK.OpenGL.Enums.All)internalformat, (Int32)width, (Int32)height); + } + + [System.CLSCompliant(false)] + public static + void GetQueryObjecti64(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] Int64[] @params) + { + unsafe + { + fixed (Int64* @params_ptr = @params) + { + Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (Int64*)@params_ptr); + } + } + } + + public static + void GetQueryObjecti64(Int32 id, OpenTK.OpenGL.Enums.All pname, [Out] Int64[] @params) + { + unsafe + { + fixed (Int64* @params_ptr = @params) + { + Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (Int64*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetQueryObjecti64(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] out Int64 @params) + { + unsafe + { + fixed (Int64* @params_ptr = &@params) + { + Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (Int64*)@params_ptr); + @params = *@params_ptr; + } + } + } + + public static + void GetQueryObjecti64(Int32 id, OpenTK.OpenGL.Enums.All pname, [Out] out Int64 @params) + { + unsafe + { + fixed (Int64* @params_ptr = &@params) + { + Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (Int64*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetQueryObjecti64(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] Int64* @params) + { + Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (Int64*)@params); + } + + [System.CLSCompliant(false)] + public static + unsafe void GetQueryObjecti64(Int32 id, OpenTK.OpenGL.Enums.All pname, [Out] Int64* @params) + { + Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (Int64*)@params); + } + + [System.CLSCompliant(false)] + public static + void GetQueryObjectui64(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] UInt64[] @params) + { + unsafe + { + fixed (UInt64* @params_ptr = @params) + { + Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (UInt64*)@params_ptr); + } + } + } + + public static + void GetQueryObjectui64(Int32 id, OpenTK.OpenGL.Enums.All pname, [Out] Int64[] @params) + { + unsafe + { + fixed (Int64* @params_ptr = @params) + { + Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (UInt64*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetQueryObjectui64(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] out UInt64 @params) + { + unsafe + { + fixed (UInt64* @params_ptr = &@params) + { + Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (UInt64*)@params_ptr); + @params = *@params_ptr; + } + } + } + + public static + void GetQueryObjectui64(Int32 id, OpenTK.OpenGL.Enums.All pname, [Out] out Int64 @params) + { + unsafe + { + fixed (Int64* @params_ptr = &@params) + { + Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (UInt64*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetQueryObjectui64(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] UInt64* @params) + { + Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (UInt64*)@params); + } + + [System.CLSCompliant(false)] + public static + unsafe void GetQueryObjectui64(Int32 id, OpenTK.OpenGL.Enums.All pname, [Out] Int64* @params) + { + Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (UInt64*)@params); + } + + [System.CLSCompliant(false)] + public static + void ProgramEnvParameters4(OpenTK.OpenGL.Enums.All target, UInt32 index, Int32 count, Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glProgramEnvParameters4fvEXT((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); + } + } + } + + public static + void ProgramEnvParameters4(OpenTK.OpenGL.Enums.All target, Int32 index, Int32 count, Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glProgramEnvParameters4fvEXT((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void ProgramEnvParameters4(OpenTK.OpenGL.Enums.All target, UInt32 index, Int32 count, ref Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glProgramEnvParameters4fvEXT((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); + } + } + } + + public static + void ProgramEnvParameters4(OpenTK.OpenGL.Enums.All target, Int32 index, Int32 count, ref Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glProgramEnvParameters4fvEXT((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void ProgramEnvParameters4(OpenTK.OpenGL.Enums.All target, UInt32 index, Int32 count, Single* @params) + { + Delegates.glProgramEnvParameters4fvEXT((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32)count, (Single*)@params); + } + + [System.CLSCompliant(false)] + public static + unsafe void ProgramEnvParameters4(OpenTK.OpenGL.Enums.All target, Int32 index, Int32 count, Single* @params) + { + Delegates.glProgramEnvParameters4fvEXT((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32)count, (Single*)@params); + } + + [System.CLSCompliant(false)] + public static + void ProgramLocalParameters4(OpenTK.OpenGL.Enums.All target, UInt32 index, Int32 count, Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glProgramLocalParameters4fvEXT((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); + } + } + } + + public static + void ProgramLocalParameters4(OpenTK.OpenGL.Enums.All target, Int32 index, Int32 count, Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glProgramLocalParameters4fvEXT((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void ProgramLocalParameters4(OpenTK.OpenGL.Enums.All target, UInt32 index, Int32 count, ref Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glProgramLocalParameters4fvEXT((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); + } + } + } + + public static + void ProgramLocalParameters4(OpenTK.OpenGL.Enums.All target, Int32 index, Int32 count, ref Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glProgramLocalParameters4fvEXT((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void ProgramLocalParameters4(OpenTK.OpenGL.Enums.All target, UInt32 index, Int32 count, Single* @params) + { + Delegates.glProgramLocalParameters4fvEXT((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32)count, (Single*)@params); + } + + [System.CLSCompliant(false)] + public static + unsafe void ProgramLocalParameters4(OpenTK.OpenGL.Enums.All target, Int32 index, Int32 count, Single* @params) + { + Delegates.glProgramLocalParameters4fvEXT((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32)count, (Single*)@params); + } + + [System.CLSCompliant(false)] + public static + void FramebufferTexture(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All attachment, UInt32 texture, Int32 level) + { + Delegates.glFramebufferTextureEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)attachment, (UInt32)texture, (Int32)level); + } + + public static + void FramebufferTexture(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All attachment, Int32 texture, Int32 level) + { + Delegates.glFramebufferTextureEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)attachment, (UInt32)texture, (Int32)level); + } + + [System.CLSCompliant(false)] + public static + void FramebufferTextureLayer(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All attachment, UInt32 texture, Int32 level, Int32 layer) + { + Delegates.glFramebufferTextureLayerEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)attachment, (UInt32)texture, (Int32)level, (Int32)layer); + } + + public static + void FramebufferTextureLayer(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All attachment, Int32 texture, Int32 level, Int32 layer) + { + Delegates.glFramebufferTextureLayerEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)attachment, (UInt32)texture, (Int32)level, (Int32)layer); + } + + [System.CLSCompliant(false)] + public static + void FramebufferTextureFace(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All attachment, UInt32 texture, Int32 level, OpenTK.OpenGL.Enums.TextureTarget face) + { + Delegates.glFramebufferTextureFaceEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)attachment, (UInt32)texture, (Int32)level, (OpenTK.OpenGL.Enums.TextureTarget)face); + } + + public static + void FramebufferTextureFace(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All attachment, Int32 texture, Int32 level, OpenTK.OpenGL.Enums.TextureTarget face) + { + Delegates.glFramebufferTextureFaceEXT((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)attachment, (UInt32)texture, (Int32)level, (OpenTK.OpenGL.Enums.TextureTarget)face); + } + + [System.CLSCompliant(false)] + public static + void ProgramParameter(UInt32 program, OpenTK.OpenGL.Enums.All pname, Int32 value) + { + Delegates.glProgramParameteriEXT((UInt32)program, (OpenTK.OpenGL.Enums.All)pname, (Int32)value); + } + + public static + void ProgramParameter(Int32 program, OpenTK.OpenGL.Enums.All pname, Int32 value) + { + Delegates.glProgramParameteriEXT((UInt32)program, (OpenTK.OpenGL.Enums.All)pname, (Int32)value); + } + + [System.CLSCompliant(false)] + public static + void VertexAttribI1(UInt32 index, Int32 x) + { + Delegates.glVertexAttribI1iEXT((UInt32)index, (Int32)x); + } + + [System.CLSCompliant(false)] + public static + void VertexAttribI2(UInt32 index, Int32 x, Int32 y) + { + Delegates.glVertexAttribI2iEXT((UInt32)index, (Int32)x, (Int32)y); + } + + [System.CLSCompliant(false)] + public static + void VertexAttribI3(UInt32 index, Int32 x, Int32 y, Int32 z) + { + Delegates.glVertexAttribI3iEXT((UInt32)index, (Int32)x, (Int32)y, (Int32)z); + } + + [System.CLSCompliant(false)] + public static + void VertexAttribI4(UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) + { + Delegates.glVertexAttribI4iEXT((UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); + } + + [System.CLSCompliant(false)] + public static + void VertexAttribI1(UInt32 index, UInt32 x) + { + Delegates.glVertexAttribI1uiEXT((UInt32)index, (UInt32)x); + } + + public static + void VertexAttribI1(Int32 index, Int32 x) + { + Delegates.glVertexAttribI1uiEXT((UInt32)index, (UInt32)x); + } + + [System.CLSCompliant(false)] + public static + void VertexAttribI2(UInt32 index, UInt32 x, UInt32 y) + { + Delegates.glVertexAttribI2uiEXT((UInt32)index, (UInt32)x, (UInt32)y); + } + + public static + void VertexAttribI2(Int32 index, Int32 x, Int32 y) + { + Delegates.glVertexAttribI2uiEXT((UInt32)index, (UInt32)x, (UInt32)y); + } + + [System.CLSCompliant(false)] + public static + void VertexAttribI3(UInt32 index, UInt32 x, UInt32 y, UInt32 z) + { + Delegates.glVertexAttribI3uiEXT((UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z); + } + + public static + void VertexAttribI3(Int32 index, Int32 x, Int32 y, Int32 z) + { + Delegates.glVertexAttribI3uiEXT((UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z); + } + + [System.CLSCompliant(false)] + public static + void VertexAttribI4(UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) + { + Delegates.glVertexAttribI4uiEXT((UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w); + } + + public static + void VertexAttribI4(Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) + { + Delegates.glVertexAttribI4uiEXT((UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w); + } + + [System.CLSCompliant(false)] + public static + void VertexAttribI1v(UInt32 index, Int32[] v) + { + unsafe + { + fixed (Int32* v_ptr = v) + { + Delegates.glVertexAttribI1ivEXT((UInt32)index, (Int32*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttribI1v(UInt32 index, ref Int32 v) + { + unsafe + { + fixed (Int32* v_ptr = &v) + { + Delegates.glVertexAttribI1ivEXT((UInt32)index, (Int32*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttribI1v(UInt32 index, Int32* v) + { + Delegates.glVertexAttribI1ivEXT((UInt32)index, (Int32*)v); + } + + [System.CLSCompliant(false)] + public static + void VertexAttribI2(UInt32 index, Int32[] v) + { + unsafe + { + fixed (Int32* v_ptr = v) + { + Delegates.glVertexAttribI2ivEXT((UInt32)index, (Int32*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttribI2(UInt32 index, ref Int32 v) + { + unsafe + { + fixed (Int32* v_ptr = &v) + { + Delegates.glVertexAttribI2ivEXT((UInt32)index, (Int32*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttribI2(UInt32 index, Int32* v) + { + Delegates.glVertexAttribI2ivEXT((UInt32)index, (Int32*)v); + } + + [System.CLSCompliant(false)] + public static + void VertexAttribI3(UInt32 index, Int32[] v) + { + unsafe + { + fixed (Int32* v_ptr = v) + { + Delegates.glVertexAttribI3ivEXT((UInt32)index, (Int32*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttribI3(UInt32 index, ref Int32 v) + { + unsafe + { + fixed (Int32* v_ptr = &v) + { + Delegates.glVertexAttribI3ivEXT((UInt32)index, (Int32*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttribI3(UInt32 index, Int32* v) + { + Delegates.glVertexAttribI3ivEXT((UInt32)index, (Int32*)v); + } + + [System.CLSCompliant(false)] + public static + void VertexAttribI4(UInt32 index, Int32[] v) + { + unsafe + { + fixed (Int32* v_ptr = v) + { + Delegates.glVertexAttribI4ivEXT((UInt32)index, (Int32*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttribI4(UInt32 index, ref Int32 v) + { + unsafe + { + fixed (Int32* v_ptr = &v) + { + Delegates.glVertexAttribI4ivEXT((UInt32)index, (Int32*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttribI4(UInt32 index, Int32* v) + { + Delegates.glVertexAttribI4ivEXT((UInt32)index, (Int32*)v); + } + + [System.CLSCompliant(false)] + public static + void VertexAttribI1v(UInt32 index, UInt32[] v) + { + unsafe + { + fixed (UInt32* v_ptr = v) + { + Delegates.glVertexAttribI1uivEXT((UInt32)index, (UInt32*)v_ptr); + } + } + } + + public static + void VertexAttribI1v(Int32 index, Int32[] v) + { + unsafe + { + fixed (Int32* v_ptr = v) + { + Delegates.glVertexAttribI1uivEXT((UInt32)index, (UInt32*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttribI1v(UInt32 index, ref UInt32 v) + { + unsafe + { + fixed (UInt32* v_ptr = &v) + { + Delegates.glVertexAttribI1uivEXT((UInt32)index, (UInt32*)v_ptr); + } + } + } + + public static + void VertexAttribI1v(Int32 index, ref Int32 v) + { + unsafe + { + fixed (Int32* v_ptr = &v) + { + Delegates.glVertexAttribI1uivEXT((UInt32)index, (UInt32*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttribI1v(UInt32 index, UInt32* v) + { + Delegates.glVertexAttribI1uivEXT((UInt32)index, (UInt32*)v); + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttribI1v(Int32 index, Int32* v) + { + Delegates.glVertexAttribI1uivEXT((UInt32)index, (UInt32*)v); + } + + [System.CLSCompliant(false)] + public static + void VertexAttribI2(UInt32 index, UInt32[] v) + { + unsafe + { + fixed (UInt32* v_ptr = v) + { + Delegates.glVertexAttribI2uivEXT((UInt32)index, (UInt32*)v_ptr); + } + } + } + + public static + void VertexAttribI2(Int32 index, Int32[] v) + { + unsafe + { + fixed (Int32* v_ptr = v) + { + Delegates.glVertexAttribI2uivEXT((UInt32)index, (UInt32*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttribI2(UInt32 index, ref UInt32 v) + { + unsafe + { + fixed (UInt32* v_ptr = &v) + { + Delegates.glVertexAttribI2uivEXT((UInt32)index, (UInt32*)v_ptr); + } + } + } + + public static + void VertexAttribI2(Int32 index, ref Int32 v) + { + unsafe + { + fixed (Int32* v_ptr = &v) + { + Delegates.glVertexAttribI2uivEXT((UInt32)index, (UInt32*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttribI2(UInt32 index, UInt32* v) + { + Delegates.glVertexAttribI2uivEXT((UInt32)index, (UInt32*)v); + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttribI2(Int32 index, Int32* v) + { + Delegates.glVertexAttribI2uivEXT((UInt32)index, (UInt32*)v); + } + + [System.CLSCompliant(false)] + public static + void VertexAttribI3(UInt32 index, UInt32[] v) + { + unsafe + { + fixed (UInt32* v_ptr = v) + { + Delegates.glVertexAttribI3uivEXT((UInt32)index, (UInt32*)v_ptr); + } + } + } + + public static + void VertexAttribI3(Int32 index, Int32[] v) + { + unsafe + { + fixed (Int32* v_ptr = v) + { + Delegates.glVertexAttribI3uivEXT((UInt32)index, (UInt32*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttribI3(UInt32 index, ref UInt32 v) + { + unsafe + { + fixed (UInt32* v_ptr = &v) + { + Delegates.glVertexAttribI3uivEXT((UInt32)index, (UInt32*)v_ptr); + } + } + } + + public static + void VertexAttribI3(Int32 index, ref Int32 v) + { + unsafe + { + fixed (Int32* v_ptr = &v) + { + Delegates.glVertexAttribI3uivEXT((UInt32)index, (UInt32*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttribI3(UInt32 index, UInt32* v) + { + Delegates.glVertexAttribI3uivEXT((UInt32)index, (UInt32*)v); + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttribI3(Int32 index, Int32* v) + { + Delegates.glVertexAttribI3uivEXT((UInt32)index, (UInt32*)v); + } + + [System.CLSCompliant(false)] + public static + void VertexAttribI4(UInt32 index, UInt32[] v) + { + unsafe + { + fixed (UInt32* v_ptr = v) + { + Delegates.glVertexAttribI4uivEXT((UInt32)index, (UInt32*)v_ptr); + } + } + } + + public static + void VertexAttribI4(Int32 index, Int32[] v) + { + unsafe + { + fixed (Int32* v_ptr = v) + { + Delegates.glVertexAttribI4uivEXT((UInt32)index, (UInt32*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttribI4(UInt32 index, ref UInt32 v) + { + unsafe + { + fixed (UInt32* v_ptr = &v) + { + Delegates.glVertexAttribI4uivEXT((UInt32)index, (UInt32*)v_ptr); + } + } + } + + public static + void VertexAttribI4(Int32 index, ref Int32 v) + { + unsafe + { + fixed (Int32* v_ptr = &v) + { + Delegates.glVertexAttribI4uivEXT((UInt32)index, (UInt32*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttribI4(UInt32 index, UInt32* v) + { + Delegates.glVertexAttribI4uivEXT((UInt32)index, (UInt32*)v); + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttribI4(Int32 index, Int32* v) + { + Delegates.glVertexAttribI4uivEXT((UInt32)index, (UInt32*)v); + } + + [System.CLSCompliant(false)] + public static + void VertexAttribI4(UInt32 index, SByte[] v) + { + unsafe + { + fixed (SByte* v_ptr = v) + { + Delegates.glVertexAttribI4bvEXT((UInt32)index, (SByte*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttribI4(UInt32 index, ref SByte v) + { + unsafe + { + fixed (SByte* v_ptr = &v) + { + Delegates.glVertexAttribI4bvEXT((UInt32)index, (SByte*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttribI4(UInt32 index, SByte* v) + { + Delegates.glVertexAttribI4bvEXT((UInt32)index, (SByte*)v); + } + + [System.CLSCompliant(false)] + public static + void VertexAttribI4(UInt32 index, Int16[] v) + { + unsafe + { + fixed (Int16* v_ptr = v) + { + Delegates.glVertexAttribI4svEXT((UInt32)index, (Int16*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttribI4(UInt32 index, ref Int16 v) + { + unsafe + { + fixed (Int16* v_ptr = &v) + { + Delegates.glVertexAttribI4svEXT((UInt32)index, (Int16*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttribI4(UInt32 index, Int16* v) + { + Delegates.glVertexAttribI4svEXT((UInt32)index, (Int16*)v); + } + + [System.CLSCompliant(false)] + public static + void VertexAttribI4(UInt32 index, Byte[] v) + { + unsafe + { + fixed (Byte* v_ptr = v) + { + Delegates.glVertexAttribI4ubvEXT((UInt32)index, (Byte*)v_ptr); + } + } + } + + public static + void VertexAttribI4(Int32 index, Byte[] v) + { + unsafe + { + fixed (Byte* v_ptr = v) + { + Delegates.glVertexAttribI4ubvEXT((UInt32)index, (Byte*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttribI4(UInt32 index, ref Byte v) + { + unsafe + { + fixed (Byte* v_ptr = &v) + { + Delegates.glVertexAttribI4ubvEXT((UInt32)index, (Byte*)v_ptr); + } + } + } + + public static + void VertexAttribI4(Int32 index, ref Byte v) + { + unsafe + { + fixed (Byte* v_ptr = &v) + { + Delegates.glVertexAttribI4ubvEXT((UInt32)index, (Byte*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttribI4(UInt32 index, Byte* v) + { + Delegates.glVertexAttribI4ubvEXT((UInt32)index, (Byte*)v); + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttribI4(Int32 index, Byte* v) + { + Delegates.glVertexAttribI4ubvEXT((UInt32)index, (Byte*)v); + } + + [System.CLSCompliant(false)] + public static + void VertexAttribI4(UInt32 index, UInt16[] v) + { + unsafe + { + fixed (UInt16* v_ptr = v) + { + Delegates.glVertexAttribI4usvEXT((UInt32)index, (UInt16*)v_ptr); + } + } + } + + public static + void VertexAttribI4(Int32 index, Int16[] v) + { + unsafe + { + fixed (Int16* v_ptr = v) + { + Delegates.glVertexAttribI4usvEXT((UInt32)index, (UInt16*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttribI4(UInt32 index, ref UInt16 v) + { + unsafe + { + fixed (UInt16* v_ptr = &v) + { + Delegates.glVertexAttribI4usvEXT((UInt32)index, (UInt16*)v_ptr); + } + } + } + + public static + void VertexAttribI4(Int32 index, ref Int16 v) + { + unsafe + { + fixed (Int16* v_ptr = &v) + { + Delegates.glVertexAttribI4usvEXT((UInt32)index, (UInt16*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttribI4(UInt32 index, UInt16* v) + { + Delegates.glVertexAttribI4usvEXT((UInt32)index, (UInt16*)v); + } + + [System.CLSCompliant(false)] + public static + unsafe void VertexAttribI4(Int32 index, Int16* v) + { + Delegates.glVertexAttribI4usvEXT((UInt32)index, (UInt16*)v); + } + + [System.CLSCompliant(false)] + public static + void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.OpenGL.Enums.All type, Int32 stride, IntPtr pointer) + { + unsafe + { + Delegates.glVertexAttribIPointerEXT((UInt32)index, (Int32)size, (OpenTK.OpenGL.Enums.All)type, (Int32)stride, (IntPtr)pointer); + } + } + + public static + void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.OpenGL.Enums.All type, Int32 stride, IntPtr pointer) + { + unsafe + { + Delegates.glVertexAttribIPointerEXT((UInt32)index, (Int32)size, (OpenTK.OpenGL.Enums.All)type, (Int32)stride, (IntPtr)pointer); + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.OpenGL.Enums.All type, Int32 stride, [In, Out] object pointer) + { + unsafe + { + System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glVertexAttribIPointerEXT((UInt32)index, (Int32)size, (OpenTK.OpenGL.Enums.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + } + finally + { + pointer_ptr.Free(); + } + } + } + + public static + void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.OpenGL.Enums.All type, Int32 stride, [In, Out] object pointer) + { + unsafe + { + System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glVertexAttribIPointerEXT((UInt32)index, (Int32)size, (OpenTK.OpenGL.Enums.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + } + finally + { + pointer_ptr.Free(); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetVertexAttribI(UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glGetVertexAttribIivEXT((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetVertexAttribI(UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glGetVertexAttribIivEXT((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetVertexAttribI(UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) + { + Delegates.glGetVertexAttribIivEXT((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); + } + + [System.CLSCompliant(false)] + public static + void GetVertexAttribI(UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] UInt32[] @params) + { + unsafe + { + fixed (UInt32* @params_ptr = @params) + { + Delegates.glGetVertexAttribIuivEXT((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (UInt32*)@params_ptr); + } + } + } + + public static + void GetVertexAttribI(Int32 index, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glGetVertexAttribIuivEXT((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (UInt32*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetVertexAttribI(UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] out UInt32 @params) + { + unsafe + { + fixed (UInt32* @params_ptr = &@params) + { + Delegates.glGetVertexAttribIuivEXT((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (UInt32*)@params_ptr); + @params = *@params_ptr; + } + } + } + + public static + void GetVertexAttribI(Int32 index, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glGetVertexAttribIuivEXT((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (UInt32*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetVertexAttribI(UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] UInt32* @params) + { + Delegates.glGetVertexAttribIuivEXT((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (UInt32*)@params); + } + + [System.CLSCompliant(false)] + public static + unsafe void GetVertexAttribI(Int32 index, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) + { + Delegates.glGetVertexAttribIuivEXT((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (UInt32*)@params); + } + + [System.CLSCompliant(false)] + public static + void GetUniform(UInt32 program, Int32 location, [Out] UInt32[] @params) + { + unsafe + { + fixed (UInt32* @params_ptr = @params) + { + Delegates.glGetUniformuivEXT((UInt32)program, (Int32)location, (UInt32*)@params_ptr); + } + } + } + + public static + void GetUniform(Int32 program, Int32 location, [Out] Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glGetUniformuivEXT((UInt32)program, (Int32)location, (UInt32*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetUniform(UInt32 program, Int32 location, [Out] out UInt32 @params) + { + unsafe + { + fixed (UInt32* @params_ptr = &@params) + { + Delegates.glGetUniformuivEXT((UInt32)program, (Int32)location, (UInt32*)@params_ptr); + @params = *@params_ptr; + } + } + } + + public static + void GetUniform(Int32 program, Int32 location, [Out] out Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glGetUniformuivEXT((UInt32)program, (Int32)location, (UInt32*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetUniform(UInt32 program, Int32 location, [Out] UInt32* @params) + { + Delegates.glGetUniformuivEXT((UInt32)program, (Int32)location, (UInt32*)@params); + } + + [System.CLSCompliant(false)] + public static + unsafe void GetUniform(Int32 program, Int32 location, [Out] Int32* @params) + { + Delegates.glGetUniformuivEXT((UInt32)program, (Int32)location, (UInt32*)@params); + } + + [System.CLSCompliant(false)] + public static + void BindFragDataLocation(UInt32 program, UInt32 color, System.String name) + { + Delegates.glBindFragDataLocationEXT((UInt32)program, (UInt32)color, (System.String)name); + } + + public static + void BindFragDataLocation(Int32 program, Int32 color, System.String name) + { + Delegates.glBindFragDataLocationEXT((UInt32)program, (UInt32)color, (System.String)name); + } + + [System.CLSCompliant(false)] + public static + Int32 GetFragDataLocation(UInt32 program, System.String name) + { + return Delegates.glGetFragDataLocationEXT((UInt32)program, (System.String)name); + } + + public static + Int32 GetFragDataLocation(Int32 program, System.String name) + { + return Delegates.glGetFragDataLocationEXT((UInt32)program, (System.String)name); + } + + [System.CLSCompliant(false)] + public static + void Uniform1(Int32 location, UInt32 v0) + { + Delegates.glUniform1uiEXT((Int32)location, (UInt32)v0); + } + + public static + void Uniform1(Int32 location, Int32 v0) + { + Delegates.glUniform1uiEXT((Int32)location, (UInt32)v0); + } + + [System.CLSCompliant(false)] + public static + void Uniform2(Int32 location, UInt32 v0, UInt32 v1) + { + Delegates.glUniform2uiEXT((Int32)location, (UInt32)v0, (UInt32)v1); + } + + public static + void Uniform2(Int32 location, Int32 v0, Int32 v1) + { + Delegates.glUniform2uiEXT((Int32)location, (UInt32)v0, (UInt32)v1); + } + + [System.CLSCompliant(false)] + public static + void Uniform3(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) + { + Delegates.glUniform3uiEXT((Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2); + } + + public static + void Uniform3(Int32 location, Int32 v0, Int32 v1, Int32 v2) + { + Delegates.glUniform3uiEXT((Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2); + } + + [System.CLSCompliant(false)] + public static + void Uniform4(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) + { + Delegates.glUniform4uiEXT((Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2, (UInt32)v3); + } + + public static + void Uniform4(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) + { + Delegates.glUniform4uiEXT((Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2, (UInt32)v3); + } + + [System.CLSCompliant(false)] + public static + void Uniform1(Int32 location, Int32 count, UInt32[] value) + { + unsafe + { + fixed (UInt32* value_ptr = value) + { + Delegates.glUniform1uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); + } + } + } + + public static + void Uniform1(Int32 location, Int32 count, Int32[] value) + { + unsafe + { + fixed (Int32* value_ptr = value) + { + Delegates.glUniform1uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void Uniform1(Int32 location, Int32 count, ref UInt32 value) + { + unsafe + { + fixed (UInt32* value_ptr = &value) + { + Delegates.glUniform1uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); + } + } + } + + public static + void Uniform1(Int32 location, Int32 count, ref Int32 value) + { + unsafe + { + fixed (Int32* value_ptr = &value) + { + Delegates.glUniform1uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Uniform1(Int32 location, Int32 count, UInt32* value) + { + Delegates.glUniform1uivEXT((Int32)location, (Int32)count, (UInt32*)value); + } + + [System.CLSCompliant(false)] + public static + unsafe void Uniform1(Int32 location, Int32 count, Int32* value) + { + Delegates.glUniform1uivEXT((Int32)location, (Int32)count, (UInt32*)value); + } + + [System.CLSCompliant(false)] + public static + void Uniform2v(Int32 location, Int32 count, UInt32[] value) + { + unsafe + { + fixed (UInt32* value_ptr = value) + { + Delegates.glUniform2uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); + } + } + } + + public static + void Uniform2v(Int32 location, Int32 count, Int32[] value) + { + unsafe + { + fixed (Int32* value_ptr = value) + { + Delegates.glUniform2uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void Uniform2v(Int32 location, Int32 count, ref UInt32 value) + { + unsafe + { + fixed (UInt32* value_ptr = &value) + { + Delegates.glUniform2uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); + } + } + } + + public static + void Uniform2v(Int32 location, Int32 count, ref Int32 value) + { + unsafe + { + fixed (Int32* value_ptr = &value) + { + Delegates.glUniform2uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Uniform2v(Int32 location, Int32 count, UInt32* value) + { + Delegates.glUniform2uivEXT((Int32)location, (Int32)count, (UInt32*)value); + } + + [System.CLSCompliant(false)] + public static + unsafe void Uniform2v(Int32 location, Int32 count, Int32* value) + { + Delegates.glUniform2uivEXT((Int32)location, (Int32)count, (UInt32*)value); + } + + [System.CLSCompliant(false)] + public static + void Uniform3(Int32 location, Int32 count, UInt32[] value) + { + unsafe + { + fixed (UInt32* value_ptr = value) + { + Delegates.glUniform3uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); + } + } + } + + public static + void Uniform3(Int32 location, Int32 count, Int32[] value) + { + unsafe + { + fixed (Int32* value_ptr = value) + { + Delegates.glUniform3uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void Uniform3(Int32 location, Int32 count, ref UInt32 value) + { + unsafe + { + fixed (UInt32* value_ptr = &value) + { + Delegates.glUniform3uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); + } + } + } + + public static + void Uniform3(Int32 location, Int32 count, ref Int32 value) + { + unsafe + { + fixed (Int32* value_ptr = &value) + { + Delegates.glUniform3uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Uniform3(Int32 location, Int32 count, UInt32* value) + { + Delegates.glUniform3uivEXT((Int32)location, (Int32)count, (UInt32*)value); + } + + [System.CLSCompliant(false)] + public static + unsafe void Uniform3(Int32 location, Int32 count, Int32* value) + { + Delegates.glUniform3uivEXT((Int32)location, (Int32)count, (UInt32*)value); + } + + [System.CLSCompliant(false)] + public static + void Uniform4(Int32 location, Int32 count, UInt32[] value) + { + unsafe + { + fixed (UInt32* value_ptr = value) + { + Delegates.glUniform4uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); + } + } + } + + public static + void Uniform4(Int32 location, Int32 count, Int32[] value) + { + unsafe + { + fixed (Int32* value_ptr = value) + { + Delegates.glUniform4uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void Uniform4(Int32 location, Int32 count, ref UInt32 value) + { + unsafe + { + fixed (UInt32* value_ptr = &value) + { + Delegates.glUniform4uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); + } + } + } + + public static + void Uniform4(Int32 location, Int32 count, ref Int32 value) + { + unsafe + { + fixed (Int32* value_ptr = &value) + { + Delegates.glUniform4uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Uniform4(Int32 location, Int32 count, UInt32* value) + { + Delegates.glUniform4uivEXT((Int32)location, (Int32)count, (UInt32*)value); + } + + [System.CLSCompliant(false)] + public static + unsafe void Uniform4(Int32 location, Int32 count, Int32* value) + { + Delegates.glUniform4uivEXT((Int32)location, (Int32)count, (UInt32*)value); + } + + public static + void DrawArraysInstance(OpenTK.OpenGL.Enums.BeginMode mode, Int32 start, Int32 count, Int32 primcount) + { + Delegates.glDrawArraysInstancedEXT((OpenTK.OpenGL.Enums.BeginMode)mode, (Int32)start, (Int32)count, (Int32)primcount); + } + + public static + void DrawElementsInstance(OpenTK.OpenGL.Enums.BeginMode mode, Int32 count, OpenTK.OpenGL.Enums.All type, IntPtr indices, Int32 primcount) + { + unsafe + { + Delegates.glDrawElementsInstancedEXT((OpenTK.OpenGL.Enums.BeginMode)mode, (Int32)count, (OpenTK.OpenGL.Enums.All)type, (IntPtr)indices, (Int32)primcount); + } + } + + public static + void DrawElementsInstance(OpenTK.OpenGL.Enums.BeginMode mode, Int32 count, OpenTK.OpenGL.Enums.All type, [In, Out] object indices, Int32 primcount) + { + unsafe + { + System.Runtime.InteropServices.GCHandle indices_ptr = System.Runtime.InteropServices.GCHandle.Alloc(indices, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glDrawElementsInstancedEXT((OpenTK.OpenGL.Enums.BeginMode)mode, (Int32)count, (OpenTK.OpenGL.Enums.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + } + finally + { + indices_ptr.Free(); + } + } + } + + [System.CLSCompliant(false)] + public static + void TexBuffer(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.All internalformat, UInt32 buffer) + { + Delegates.glTexBufferEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.All)internalformat, (UInt32)buffer); + } + + public static + void TexBuffer(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.All internalformat, Int32 buffer) + { + Delegates.glTexBufferEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.All)internalformat, (UInt32)buffer); + } + + [System.CLSCompliant(false)] + public static + void ColorMaskIndexe(UInt32 index, bool r, bool g, bool b, bool a) + { + Delegates.glColorMaskIndexedEXT((UInt32)index, (bool)r, (bool)g, (bool)b, (bool)a); + } + + public static + void ColorMaskIndexe(Int32 index, bool r, bool g, bool b, bool a) + { + Delegates.glColorMaskIndexedEXT((UInt32)index, (bool)r, (bool)g, (bool)b, (bool)a); + } + + [System.CLSCompliant(false)] + public static + void GetBooleanIndexed(OpenTK.OpenGL.Enums.All target, UInt32 index, [Out] bool[] data) + { + unsafe + { + fixed (bool* data_ptr = data) + { + Delegates.glGetBooleanIndexedvEXT((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (bool*)data_ptr); + } + } + } + + public static + void GetBooleanIndexed(OpenTK.OpenGL.Enums.All target, Int32 index, [Out] bool[] data) + { + unsafe + { + fixed (bool* data_ptr = data) + { + Delegates.glGetBooleanIndexedvEXT((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (bool*)data_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetBooleanIndexed(OpenTK.OpenGL.Enums.All target, UInt32 index, [Out] out bool data) + { + unsafe + { + fixed (bool* data_ptr = &data) + { + Delegates.glGetBooleanIndexedvEXT((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (bool*)data_ptr); + data = *data_ptr; + } + } + } + + public static + void GetBooleanIndexed(OpenTK.OpenGL.Enums.All target, Int32 index, [Out] out bool data) + { + unsafe + { + fixed (bool* data_ptr = &data) + { + Delegates.glGetBooleanIndexedvEXT((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (bool*)data_ptr); + data = *data_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetBooleanIndexed(OpenTK.OpenGL.Enums.All target, UInt32 index, [Out] bool* data) + { + Delegates.glGetBooleanIndexedvEXT((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (bool*)data); + } + + [System.CLSCompliant(false)] + public static + unsafe void GetBooleanIndexed(OpenTK.OpenGL.Enums.All target, Int32 index, [Out] bool* data) + { + Delegates.glGetBooleanIndexedvEXT((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (bool*)data); + } + + [System.CLSCompliant(false)] + public static + void GetIntegerIndexed(OpenTK.OpenGL.Enums.All target, UInt32 index, [Out] Int32[] data) + { + unsafe + { + fixed (Int32* data_ptr = data) + { + Delegates.glGetIntegerIndexedvEXT((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32*)data_ptr); + } + } + } + + public static + void GetIntegerIndexed(OpenTK.OpenGL.Enums.All target, Int32 index, [Out] Int32[] data) + { + unsafe + { + fixed (Int32* data_ptr = data) + { + Delegates.glGetIntegerIndexedvEXT((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32*)data_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetIntegerIndexed(OpenTK.OpenGL.Enums.All target, UInt32 index, [Out] out Int32 data) + { + unsafe + { + fixed (Int32* data_ptr = &data) + { + Delegates.glGetIntegerIndexedvEXT((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32*)data_ptr); + data = *data_ptr; + } + } + } + + public static + void GetIntegerIndexed(OpenTK.OpenGL.Enums.All target, Int32 index, [Out] out Int32 data) + { + unsafe + { + fixed (Int32* data_ptr = &data) + { + Delegates.glGetIntegerIndexedvEXT((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32*)data_ptr); + data = *data_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetIntegerIndexed(OpenTK.OpenGL.Enums.All target, UInt32 index, [Out] Int32* data) + { + Delegates.glGetIntegerIndexedvEXT((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32*)data); + } + + [System.CLSCompliant(false)] + public static + unsafe void GetIntegerIndexed(OpenTK.OpenGL.Enums.All target, Int32 index, [Out] Int32* data) + { + Delegates.glGetIntegerIndexedvEXT((OpenTK.OpenGL.Enums.All)target, (UInt32)index, (Int32*)data); + } + + [System.CLSCompliant(false)] + public static + void EnableIndexe(OpenTK.OpenGL.Enums.All target, UInt32 index) + { + Delegates.glEnableIndexedEXT((OpenTK.OpenGL.Enums.All)target, (UInt32)index); + } + + public static + void EnableIndexe(OpenTK.OpenGL.Enums.All target, Int32 index) + { + Delegates.glEnableIndexedEXT((OpenTK.OpenGL.Enums.All)target, (UInt32)index); + } + + [System.CLSCompliant(false)] + public static + void DisableIndexe(OpenTK.OpenGL.Enums.All target, UInt32 index) + { + Delegates.glDisableIndexedEXT((OpenTK.OpenGL.Enums.All)target, (UInt32)index); + } + + public static + void DisableIndexe(OpenTK.OpenGL.Enums.All target, Int32 index) + { + Delegates.glDisableIndexedEXT((OpenTK.OpenGL.Enums.All)target, (UInt32)index); + } + + [System.CLSCompliant(false)] + public static + bool IsEnabledIndexe(OpenTK.OpenGL.Enums.All target, UInt32 index) + { + return Delegates.glIsEnabledIndexedEXT((OpenTK.OpenGL.Enums.All)target, (UInt32)index); + } + + public static + bool IsEnabledIndexe(OpenTK.OpenGL.Enums.All target, Int32 index) + { + return Delegates.glIsEnabledIndexedEXT((OpenTK.OpenGL.Enums.All)target, (UInt32)index); + } + + [System.CLSCompliant(false)] + public static + void UniformBuffer(UInt32 program, Int32 location, UInt32 buffer) + { + Delegates.glUniformBufferEXT((UInt32)program, (Int32)location, (UInt32)buffer); + } + + public static + void UniformBuffer(Int32 program, Int32 location, Int32 buffer) + { + Delegates.glUniformBufferEXT((UInt32)program, (Int32)location, (UInt32)buffer); + } + + [System.CLSCompliant(false)] + public static + Int32 GetUniformBufferSize(UInt32 program, Int32 location) + { + return Delegates.glGetUniformBufferSizeEXT((UInt32)program, (Int32)location); + } + + public static + Int32 GetUniformBufferSize(Int32 program, Int32 location) + { + return Delegates.glGetUniformBufferSizeEXT((UInt32)program, (Int32)location); + } + + [System.CLSCompliant(false)] + public static + IntPtr GetUniformOffset(UInt32 program, Int32 location) + { + return Delegates.glGetUniformOffsetEXT((UInt32)program, (Int32)location); + } + + public static + IntPtr GetUniformOffset(Int32 program, Int32 location) + { + return Delegates.glGetUniformOffsetEXT((UInt32)program, (Int32)location); + } + + [System.CLSCompliant(false)] + public static + void TexParameterIv(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.TextureParameterName pname, UInt32[] @params) + { + unsafe + { + fixed (UInt32* @params_ptr = @params) + { + Delegates.glTexParameterIuivEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.TextureParameterName)pname, (UInt32*)@params_ptr); + } + } + } + + public static + void TexParameterIv(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.TextureParameterName pname, Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glTexParameterIuivEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.TextureParameterName)pname, (UInt32*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void TexParameterIv(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.TextureParameterName pname, ref UInt32 @params) + { + unsafe + { + fixed (UInt32* @params_ptr = &@params) + { + Delegates.glTexParameterIuivEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.TextureParameterName)pname, (UInt32*)@params_ptr); + } + } + } + + public static + void TexParameterIv(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.TextureParameterName pname, ref Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glTexParameterIuivEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.TextureParameterName)pname, (UInt32*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void TexParameterIv(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.TextureParameterName pname, UInt32* @params) + { + Delegates.glTexParameterIuivEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.TextureParameterName)pname, (UInt32*)@params); + } + + [System.CLSCompliant(false)] + public static + unsafe void TexParameterIv(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.TextureParameterName pname, Int32* @params) + { + Delegates.glTexParameterIuivEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.TextureParameterName)pname, (UInt32*)@params); + } + + [System.CLSCompliant(false)] + public static + void GetTexParameterI(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.GetTextureParameter pname, [Out] UInt32[] @params) + { + unsafe + { + fixed (UInt32* @params_ptr = @params) + { + Delegates.glGetTexParameterIuivEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.GetTextureParameter)pname, (UInt32*)@params_ptr); + } + } + } + + public static + void GetTexParameterI(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.GetTextureParameter pname, [Out] Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glGetTexParameterIuivEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.GetTextureParameter)pname, (UInt32*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetTexParameterI(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.GetTextureParameter pname, [Out] out UInt32 @params) + { + unsafe + { + fixed (UInt32* @params_ptr = &@params) + { + Delegates.glGetTexParameterIuivEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.GetTextureParameter)pname, (UInt32*)@params_ptr); + @params = *@params_ptr; + } + } + } + + public static + void GetTexParameterI(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.GetTextureParameter pname, [Out] out Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glGetTexParameterIuivEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.GetTextureParameter)pname, (UInt32*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetTexParameterI(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.GetTextureParameter pname, [Out] UInt32* @params) + { + Delegates.glGetTexParameterIuivEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.GetTextureParameter)pname, (UInt32*)@params); + } + + [System.CLSCompliant(false)] + public static + unsafe void GetTexParameterI(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.GetTextureParameter pname, [Out] Int32* @params) + { + Delegates.glGetTexParameterIuivEXT((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.GetTextureParameter)pname, (UInt32*)@params); + } + + [System.CLSCompliant(false)] + public static + void ClearColorI(UInt32 red, UInt32 green, UInt32 blue, UInt32 alpha) + { + Delegates.glClearColorIuiEXT((UInt32)red, (UInt32)green, (UInt32)blue, (UInt32)alpha); + } + + public static + void ClearColorI(Int32 red, Int32 green, Int32 blue, Int32 alpha) + { + Delegates.glClearColorIuiEXT((UInt32)red, (UInt32)green, (UInt32)blue, (UInt32)alpha); + } + + } + + public static partial class Sgis + { + public static + void GetTexFilterFunc(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.All filter, [Out] Single[] weights) + { + unsafe + { + fixed (Single* weights_ptr = weights) + { + Delegates.glGetTexFilterFuncSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.All)filter, (Single*)weights_ptr); + } + } + } + + public static + void GetTexFilterFunc(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.All filter, [Out] out Single weights) + { + unsafe + { + fixed (Single* weights_ptr = &weights) + { + Delegates.glGetTexFilterFuncSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.All)filter, (Single*)weights_ptr); + weights = *weights_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetTexFilterFunc(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.All filter, [Out] Single* weights) + { + Delegates.glGetTexFilterFuncSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.All)filter, (Single*)weights); + } + + public static + void TexFilterFunc(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.All filter, Int32 n, Single[] weights) + { + unsafe + { + fixed (Single* weights_ptr = weights) + { + Delegates.glTexFilterFuncSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.All)filter, (Int32)n, (Single*)weights_ptr); + } + } + } + + public static + void TexFilterFunc(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.All filter, Int32 n, ref Single weights) + { + unsafe + { + fixed (Single* weights_ptr = &weights) + { + Delegates.glTexFilterFuncSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.All)filter, (Int32)n, (Single*)weights_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void TexFilterFunc(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.All filter, Int32 n, Single* weights) + { + Delegates.glTexFilterFuncSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (OpenTK.OpenGL.Enums.All)filter, (Int32)n, (Single*)weights); + } + + public static + void PixelTexGenParameter(OpenTK.OpenGL.Enums.All pname, Int32 param) + { + Delegates.glPixelTexGenParameteriSGIS((OpenTK.OpenGL.Enums.All)pname, (Int32)param); + } + + public static + void PixelTexGenParameterv(OpenTK.OpenGL.Enums.All pname, Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glPixelTexGenParameterivSGIS((OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + } + } + } + + public static + void PixelTexGenParameterv(OpenTK.OpenGL.Enums.All pname, ref Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glPixelTexGenParameterivSGIS((OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void PixelTexGenParameterv(OpenTK.OpenGL.Enums.All pname, Int32* @params) + { + Delegates.glPixelTexGenParameterivSGIS((OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); + } + + public static + void PixelTexGenParameter(OpenTK.OpenGL.Enums.All pname, Single param) + { + Delegates.glPixelTexGenParameterfSGIS((OpenTK.OpenGL.Enums.All)pname, (Single)param); + } + + public static + void PixelTexGenParameterv(OpenTK.OpenGL.Enums.All pname, Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glPixelTexGenParameterfvSGIS((OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + } + } + } + + public static + void PixelTexGenParameterv(OpenTK.OpenGL.Enums.All pname, ref Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glPixelTexGenParameterfvSGIS((OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void PixelTexGenParameterv(OpenTK.OpenGL.Enums.All pname, Single* @params) + { + Delegates.glPixelTexGenParameterfvSGIS((OpenTK.OpenGL.Enums.All)pname, (Single*)@params); + } + + public static + void GetPixelTexGenParameter(OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glGetPixelTexGenParameterivSGIS((OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + } + } + } + + public static + void GetPixelTexGenParameter(OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glGetPixelTexGenParameterivSGIS((OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetPixelTexGenParameter(OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) + { + Delegates.glGetPixelTexGenParameterivSGIS((OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); + } + + public static + void GetPixelTexGenParameter(OpenTK.OpenGL.Enums.All pname, [Out] Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glGetPixelTexGenParameterfvSGIS((OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + } + } + } + + public static + void GetPixelTexGenParameter(OpenTK.OpenGL.Enums.All pname, [Out] out Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glGetPixelTexGenParameterfvSGIS((OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetPixelTexGenParameter(OpenTK.OpenGL.Enums.All pname, [Out] Single* @params) + { + Delegates.glGetPixelTexGenParameterfvSGIS((OpenTK.OpenGL.Enums.All)pname, (Single*)@params); + } + + public static + void TexImage4D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 size4d, Int32 border, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr pixels) + { + unsafe + { + Delegates.glTexImage4DSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)size4d, (Int32)border, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)pixels); + } + } + + public static + void TexImage4D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 size4d, Int32 border, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object pixels) + { + unsafe + { + System.Runtime.InteropServices.GCHandle pixels_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pixels, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glTexImage4DSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)size4d, (Int32)border, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + } + finally + { + pixels_ptr.Free(); + } + } + } + + public static + void TexSubImage4D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 woffset, Int32 width, Int32 height, Int32 depth, Int32 size4d, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr pixels) + { + unsafe + { + Delegates.glTexSubImage4DSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)woffset, (Int32)width, (Int32)height, (Int32)depth, (Int32)size4d, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)pixels); + } + } + + public static + void TexSubImage4D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 woffset, Int32 width, Int32 height, Int32 depth, Int32 size4d, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object pixels) + { + unsafe + { + System.Runtime.InteropServices.GCHandle pixels_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pixels, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glTexSubImage4DSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)woffset, (Int32)width, (Int32)height, (Int32)depth, (Int32)size4d, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + } + finally + { + pixels_ptr.Free(); + } + } + } + + public static + void DetailTexFunc(OpenTK.OpenGL.Enums.TextureTarget target, Int32 n, Single[] points) + { + unsafe + { + fixed (Single* points_ptr = points) + { + Delegates.glDetailTexFuncSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)n, (Single*)points_ptr); + } + } + } + + public static + void DetailTexFunc(OpenTK.OpenGL.Enums.TextureTarget target, Int32 n, ref Single points) + { + unsafe + { + fixed (Single* points_ptr = &points) + { + Delegates.glDetailTexFuncSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)n, (Single*)points_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void DetailTexFunc(OpenTK.OpenGL.Enums.TextureTarget target, Int32 n, Single* points) + { + Delegates.glDetailTexFuncSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)n, (Single*)points); + } + + public static + void GetDetailTexFunc(OpenTK.OpenGL.Enums.TextureTarget target, [Out] Single[] points) + { + unsafe + { + fixed (Single* points_ptr = points) + { + Delegates.glGetDetailTexFuncSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (Single*)points_ptr); + } + } + } + + public static + void GetDetailTexFunc(OpenTK.OpenGL.Enums.TextureTarget target, [Out] out Single points) + { + unsafe + { + fixed (Single* points_ptr = &points) + { + Delegates.glGetDetailTexFuncSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (Single*)points_ptr); + points = *points_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetDetailTexFunc(OpenTK.OpenGL.Enums.TextureTarget target, [Out] Single* points) + { + Delegates.glGetDetailTexFuncSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (Single*)points); + } + + public static + void SharpenTexFunc(OpenTK.OpenGL.Enums.TextureTarget target, Int32 n, Single[] points) + { + unsafe + { + fixed (Single* points_ptr = points) + { + Delegates.glSharpenTexFuncSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)n, (Single*)points_ptr); + } + } + } + + public static + void SharpenTexFunc(OpenTK.OpenGL.Enums.TextureTarget target, Int32 n, ref Single points) + { + unsafe + { + fixed (Single* points_ptr = &points) + { + Delegates.glSharpenTexFuncSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)n, (Single*)points_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void SharpenTexFunc(OpenTK.OpenGL.Enums.TextureTarget target, Int32 n, Single* points) + { + Delegates.glSharpenTexFuncSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (Int32)n, (Single*)points); + } + + public static + void GetSharpenTexFunc(OpenTK.OpenGL.Enums.TextureTarget target, [Out] Single[] points) + { + unsafe + { + fixed (Single* points_ptr = points) + { + Delegates.glGetSharpenTexFuncSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (Single*)points_ptr); + } + } + } + + public static + void GetSharpenTexFunc(OpenTK.OpenGL.Enums.TextureTarget target, [Out] out Single points) + { + unsafe + { + fixed (Single* points_ptr = &points) + { + Delegates.glGetSharpenTexFuncSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (Single*)points_ptr); + points = *points_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetSharpenTexFunc(OpenTK.OpenGL.Enums.TextureTarget target, [Out] Single* points) + { + Delegates.glGetSharpenTexFuncSGIS((OpenTK.OpenGL.Enums.TextureTarget)target, (Single*)points); + } + + public static + void SampleMask(Single value, bool invert) + { + Delegates.glSampleMaskSGIS((Single)value, (bool)invert); + } + + public static + void SamplePattern(OpenTK.OpenGL.Enums.All pattern) + { + Delegates.glSamplePatternSGIS((OpenTK.OpenGL.Enums.All)pattern); + } + + public static + void PointParameter(OpenTK.OpenGL.Enums.All pname, Single param) + { + Delegates.glPointParameterfSGIS((OpenTK.OpenGL.Enums.All)pname, (Single)param); + } + + public static + void PointParameterv(OpenTK.OpenGL.Enums.All pname, Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glPointParameterfvSGIS((OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + } + } + } + + public static + void PointParameterv(OpenTK.OpenGL.Enums.All pname, ref Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glPointParameterfvSGIS((OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void PointParameterv(OpenTK.OpenGL.Enums.All pname, Single* @params) + { + Delegates.glPointParameterfvSGIS((OpenTK.OpenGL.Enums.All)pname, (Single*)@params); + } + + public static + void FogFunc(Int32 n, Single[] points) + { + unsafe + { + fixed (Single* points_ptr = points) + { + Delegates.glFogFuncSGIS((Int32)n, (Single*)points_ptr); + } + } + } + + public static + void FogFunc(Int32 n, ref Single points) + { + unsafe + { + fixed (Single* points_ptr = &points) + { + Delegates.glFogFuncSGIS((Int32)n, (Single*)points_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void FogFunc(Int32 n, Single* points) + { + Delegates.glFogFuncSGIS((Int32)n, (Single*)points); + } + + public static + void GetFogFunc([Out] Single[] points) + { + unsafe + { + fixed (Single* points_ptr = points) + { + Delegates.glGetFogFuncSGIS((Single*)points_ptr); + } + } + } + + public static + void GetFogFunc([Out] out Single points) + { + unsafe + { + fixed (Single* points_ptr = &points) + { + Delegates.glGetFogFuncSGIS((Single*)points_ptr); + points = *points_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetFogFunc([Out] Single* points) + { + Delegates.glGetFogFuncSGIS((Single*)points); + } + + public static + void TextureColorMask(bool red, bool green, bool blue, bool alpha) + { + Delegates.glTextureColorMaskSGIS((bool)red, (bool)green, (bool)blue, (bool)alpha); + } + + } + + public static partial class Sgi + { + public static + void ColorTable(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr table) + { + unsafe + { + Delegates.glColorTableSGI((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)table); + } + } + + public static + void ColorTable(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object table) + { + unsafe + { + System.Runtime.InteropServices.GCHandle table_ptr = System.Runtime.InteropServices.GCHandle.Alloc(table, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glColorTableSGI((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); + } + finally + { + table_ptr.Free(); + } + } + } + + public static + void ColorTableParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glColorTableParameterfvSGI((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + } + } + } + + public static + void ColorTableParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, ref Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glColorTableParameterfvSGI((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void ColorTableParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Single* @params) + { + Delegates.glColorTableParameterfvSGI((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); + } + + public static + void ColorTableParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glColorTableParameterivSGI((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + } + } + } + + public static + void ColorTableParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, ref Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glColorTableParameterivSGI((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void ColorTableParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Int32* @params) + { + Delegates.glColorTableParameterivSGI((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); + } + + public static + void CopyColorTable(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) + { + Delegates.glCopyColorTableSGI((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width); + } + + public static + void GetColorTable(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr table) + { + unsafe + { + Delegates.glGetColorTableSGI((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)table); + } + } + + public static + void GetColorTable(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [In, Out] object table) + { + unsafe + { + System.Runtime.InteropServices.GCHandle table_ptr = System.Runtime.InteropServices.GCHandle.Alloc(table, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glGetColorTableSGI((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.PixelFormat)format, (OpenTK.OpenGL.Enums.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); + } + finally + { + table_ptr.Free(); + } + } + } + + public static + void GetColorTableParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glGetColorTableParameterfvSGI((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + } + } + } + + public static + void GetColorTableParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] out Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glGetColorTableParameterfvSGI((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetColorTableParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params) + { + Delegates.glGetColorTableParameterfvSGI((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); + } + + public static + void GetColorTableParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glGetColorTableParameterivSGI((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + } + } + } + + public static + void GetColorTableParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glGetColorTableParameterivSGI((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetColorTableParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) + { + Delegates.glGetColorTableParameterivSGI((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); + } + + } + + public static partial class Sgix + { + public static + void PixelTexGen(OpenTK.OpenGL.Enums.All mode) + { + Delegates.glPixelTexGenSGIX((OpenTK.OpenGL.Enums.All)mode); + } + + public static + void SpriteParameter(OpenTK.OpenGL.Enums.All pname, Single param) + { + Delegates.glSpriteParameterfSGIX((OpenTK.OpenGL.Enums.All)pname, (Single)param); + } + + public static + void SpriteParameterv(OpenTK.OpenGL.Enums.All pname, Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glSpriteParameterfvSGIX((OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + } + } + } + + public static + void SpriteParameterv(OpenTK.OpenGL.Enums.All pname, ref Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glSpriteParameterfvSGIX((OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void SpriteParameterv(OpenTK.OpenGL.Enums.All pname, Single* @params) + { + Delegates.glSpriteParameterfvSGIX((OpenTK.OpenGL.Enums.All)pname, (Single*)@params); + } + + public static + void SpriteParameter(OpenTK.OpenGL.Enums.All pname, Int32 param) + { + Delegates.glSpriteParameteriSGIX((OpenTK.OpenGL.Enums.All)pname, (Int32)param); + } + + public static + void SpriteParameterv(OpenTK.OpenGL.Enums.All pname, Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glSpriteParameterivSGIX((OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + } + } + } + + public static + void SpriteParameterv(OpenTK.OpenGL.Enums.All pname, ref Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glSpriteParameterivSGIX((OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void SpriteParameterv(OpenTK.OpenGL.Enums.All pname, Int32* @params) + { + Delegates.glSpriteParameterivSGIX((OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); + } + + public static + Int32 GetInstruments() + { + return Delegates.glGetInstrumentsSGIX(); + } + + public static + void InstrumentsBuffer(Int32 size, [Out] Int32[] buffer) + { + unsafe + { + fixed (Int32* buffer_ptr = buffer) + { + Delegates.glInstrumentsBufferSGIX((Int32)size, (Int32*)buffer_ptr); + } + } + } + + public static + void InstrumentsBuffer(Int32 size, [Out] out Int32 buffer) + { + unsafe + { + fixed (Int32* buffer_ptr = &buffer) + { + Delegates.glInstrumentsBufferSGIX((Int32)size, (Int32*)buffer_ptr); + buffer = *buffer_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void InstrumentsBuffer(Int32 size, [Out] Int32* buffer) + { + Delegates.glInstrumentsBufferSGIX((Int32)size, (Int32*)buffer); + } + + public static + Int32 PollInstruments([Out] Int32[] marker_p) + { + unsafe + { + fixed (Int32* marker_p_ptr = marker_p) + { + return Delegates.glPollInstrumentsSGIX((Int32*)marker_p_ptr); + } + } + } + + public static + Int32 PollInstruments([Out] out Int32 marker_p) + { + unsafe + { + fixed (Int32* marker_p_ptr = &marker_p) + { + Int32 retval = Delegates.glPollInstrumentsSGIX((Int32*)marker_p_ptr); + marker_p = *marker_p_ptr; + return retval; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe Int32 PollInstruments([Out] Int32* marker_p) + { + return Delegates.glPollInstrumentsSGIX((Int32*)marker_p); + } + + public static + void ReadInstruments(Int32 marker) + { + Delegates.glReadInstrumentsSGIX((Int32)marker); + } + + public static + void StartInstruments() + { + Delegates.glStartInstrumentsSGIX(); + } + + public static + void StopInstruments(Int32 marker) + { + Delegates.glStopInstrumentsSGIX((Int32)marker); + } + + public static + void FrameZoom(Int32 factor) + { + Delegates.glFrameZoomSGIX((Int32)factor); + } + + public static + void TagSampleBuffer() + { + Delegates.glTagSampleBufferSGIX(); + } + + public static + void DeformationMap3(OpenTK.OpenGL.Enums.All target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double w1, Double w2, Int32 wstride, Int32 worder, Double[] points) + { + unsafe + { + fixed (Double* points_ptr = points) + { + Delegates.glDeformationMap3dSGIX((OpenTK.OpenGL.Enums.All)target, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (Double)w1, (Double)w2, (Int32)wstride, (Int32)worder, (Double*)points_ptr); + } + } + } + + public static + void DeformationMap3(OpenTK.OpenGL.Enums.All target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double w1, Double w2, Int32 wstride, Int32 worder, ref Double points) + { + unsafe + { + fixed (Double* points_ptr = &points) + { + Delegates.glDeformationMap3dSGIX((OpenTK.OpenGL.Enums.All)target, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (Double)w1, (Double)w2, (Int32)wstride, (Int32)worder, (Double*)points_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void DeformationMap3(OpenTK.OpenGL.Enums.All target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double w1, Double w2, Int32 wstride, Int32 worder, Double* points) + { + Delegates.glDeformationMap3dSGIX((OpenTK.OpenGL.Enums.All)target, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (Double)w1, (Double)w2, (Int32)wstride, (Int32)worder, (Double*)points); + } + + public static + void DeformationMap3(OpenTK.OpenGL.Enums.All target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single w1, Single w2, Int32 wstride, Int32 worder, Single[] points) + { + unsafe + { + fixed (Single* points_ptr = points) + { + Delegates.glDeformationMap3fSGIX((OpenTK.OpenGL.Enums.All)target, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (Single)w1, (Single)w2, (Int32)wstride, (Int32)worder, (Single*)points_ptr); + } + } + } + + public static + void DeformationMap3(OpenTK.OpenGL.Enums.All target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single w1, Single w2, Int32 wstride, Int32 worder, ref Single points) + { + unsafe + { + fixed (Single* points_ptr = &points) + { + Delegates.glDeformationMap3fSGIX((OpenTK.OpenGL.Enums.All)target, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (Single)w1, (Single)w2, (Int32)wstride, (Int32)worder, (Single*)points_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void DeformationMap3(OpenTK.OpenGL.Enums.All target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single w1, Single w2, Int32 wstride, Int32 worder, Single* points) + { + Delegates.glDeformationMap3fSGIX((OpenTK.OpenGL.Enums.All)target, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (Single)w1, (Single)w2, (Int32)wstride, (Int32)worder, (Single*)points); + } + + [System.CLSCompliant(false)] + public static + void Deform(UInt32 mask) + { + Delegates.glDeformSGIX((UInt32)mask); + } + + public static + void Deform(Int32 mask) + { + Delegates.glDeformSGIX((UInt32)mask); + } + + [System.CLSCompliant(false)] + public static + void LoadIdentityDeformationMap(UInt32 mask) + { + Delegates.glLoadIdentityDeformationMapSGIX((UInt32)mask); + } + + public static + void LoadIdentityDeformationMap(Int32 mask) + { + Delegates.glLoadIdentityDeformationMapSGIX((UInt32)mask); + } + + public static + void ReferencePlane(Double[] equation) + { + unsafe + { + fixed (Double* equation_ptr = equation) + { + Delegates.glReferencePlaneSGIX((Double*)equation_ptr); + } + } + } + + public static + void ReferencePlane(ref Double equation) + { + unsafe + { + fixed (Double* equation_ptr = &equation) + { + Delegates.glReferencePlaneSGIX((Double*)equation_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void ReferencePlane(Double* equation) + { + Delegates.glReferencePlaneSGIX((Double*)equation); + } + + public static + void FlushRaster() + { + Delegates.glFlushRasterSGIX(); + } + + [System.CLSCompliant(false)] + public static + void GetListParameter(UInt32 list, OpenTK.OpenGL.Enums.ListParameterName pname, [Out] Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glGetListParameterfvSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Single*)@params_ptr); + } + } + } + + public static + void GetListParameter(Int32 list, OpenTK.OpenGL.Enums.ListParameterName pname, [Out] Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glGetListParameterfvSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Single*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetListParameter(UInt32 list, OpenTK.OpenGL.Enums.ListParameterName pname, [Out] out Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glGetListParameterfvSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Single*)@params_ptr); + @params = *@params_ptr; + } + } + } + + public static + void GetListParameter(Int32 list, OpenTK.OpenGL.Enums.ListParameterName pname, [Out] out Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glGetListParameterfvSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Single*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetListParameter(UInt32 list, OpenTK.OpenGL.Enums.ListParameterName pname, [Out] Single* @params) + { + Delegates.glGetListParameterfvSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Single*)@params); + } + + [System.CLSCompliant(false)] + public static + unsafe void GetListParameter(Int32 list, OpenTK.OpenGL.Enums.ListParameterName pname, [Out] Single* @params) + { + Delegates.glGetListParameterfvSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Single*)@params); + } + + [System.CLSCompliant(false)] + public static + void GetListParameter(UInt32 list, OpenTK.OpenGL.Enums.ListParameterName pname, [Out] Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glGetListParameterivSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Int32*)@params_ptr); + } + } + } + + public static + void GetListParameter(Int32 list, OpenTK.OpenGL.Enums.ListParameterName pname, [Out] Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glGetListParameterivSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Int32*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void GetListParameter(UInt32 list, OpenTK.OpenGL.Enums.ListParameterName pname, [Out] out Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glGetListParameterivSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Int32*)@params_ptr); + @params = *@params_ptr; + } + } + } + + public static + void GetListParameter(Int32 list, OpenTK.OpenGL.Enums.ListParameterName pname, [Out] out Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glGetListParameterivSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Int32*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetListParameter(UInt32 list, OpenTK.OpenGL.Enums.ListParameterName pname, [Out] Int32* @params) + { + Delegates.glGetListParameterivSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Int32*)@params); + } + + [System.CLSCompliant(false)] + public static + unsafe void GetListParameter(Int32 list, OpenTK.OpenGL.Enums.ListParameterName pname, [Out] Int32* @params) + { + Delegates.glGetListParameterivSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Int32*)@params); + } + + [System.CLSCompliant(false)] + public static + void ListParameter(UInt32 list, OpenTK.OpenGL.Enums.ListParameterName pname, Single param) + { + Delegates.glListParameterfSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Single)param); + } + + public static + void ListParameter(Int32 list, OpenTK.OpenGL.Enums.ListParameterName pname, Single param) + { + Delegates.glListParameterfSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Single)param); + } + + [System.CLSCompliant(false)] + public static + void ListParameterv(UInt32 list, OpenTK.OpenGL.Enums.ListParameterName pname, Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glListParameterfvSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Single*)@params_ptr); + } + } + } + + public static + void ListParameterv(Int32 list, OpenTK.OpenGL.Enums.ListParameterName pname, Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glListParameterfvSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Single*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void ListParameterv(UInt32 list, OpenTK.OpenGL.Enums.ListParameterName pname, ref Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glListParameterfvSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Single*)@params_ptr); + } + } + } + + public static + void ListParameterv(Int32 list, OpenTK.OpenGL.Enums.ListParameterName pname, ref Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glListParameterfvSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Single*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void ListParameterv(UInt32 list, OpenTK.OpenGL.Enums.ListParameterName pname, Single* @params) + { + Delegates.glListParameterfvSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Single*)@params); + } + + [System.CLSCompliant(false)] + public static + unsafe void ListParameterv(Int32 list, OpenTK.OpenGL.Enums.ListParameterName pname, Single* @params) + { + Delegates.glListParameterfvSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Single*)@params); + } + + [System.CLSCompliant(false)] + public static + void ListParameter(UInt32 list, OpenTK.OpenGL.Enums.ListParameterName pname, Int32 param) + { + Delegates.glListParameteriSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Int32)param); + } + + public static + void ListParameter(Int32 list, OpenTK.OpenGL.Enums.ListParameterName pname, Int32 param) + { + Delegates.glListParameteriSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Int32)param); + } + + [System.CLSCompliant(false)] + public static + void ListParameterv(UInt32 list, OpenTK.OpenGL.Enums.ListParameterName pname, Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glListParameterivSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Int32*)@params_ptr); + } + } + } + + public static + void ListParameterv(Int32 list, OpenTK.OpenGL.Enums.ListParameterName pname, Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glListParameterivSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Int32*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void ListParameterv(UInt32 list, OpenTK.OpenGL.Enums.ListParameterName pname, ref Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glListParameterivSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Int32*)@params_ptr); + } + } + } + + public static + void ListParameterv(Int32 list, OpenTK.OpenGL.Enums.ListParameterName pname, ref Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glListParameterivSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Int32*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void ListParameterv(UInt32 list, OpenTK.OpenGL.Enums.ListParameterName pname, Int32* @params) + { + Delegates.glListParameterivSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Int32*)@params); + } + + [System.CLSCompliant(false)] + public static + unsafe void ListParameterv(Int32 list, OpenTK.OpenGL.Enums.ListParameterName pname, Int32* @params) + { + Delegates.glListParameterivSGIX((UInt32)list, (OpenTK.OpenGL.Enums.ListParameterName)pname, (Int32*)@params); + } + + public static + void FragmentColorMaterial(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter mode) + { + Delegates.glFragmentColorMaterialSGIX((OpenTK.OpenGL.Enums.MaterialFace)face, (OpenTK.OpenGL.Enums.MaterialParameter)mode); + } + + public static + void FragmentLight(OpenTK.OpenGL.Enums.All light, OpenTK.OpenGL.Enums.All pname, Single param) + { + Delegates.glFragmentLightfSGIX((OpenTK.OpenGL.Enums.All)light, (OpenTK.OpenGL.Enums.All)pname, (Single)param); + } + + public static + void FragmentLightv(OpenTK.OpenGL.Enums.All light, OpenTK.OpenGL.Enums.All pname, Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glFragmentLightfvSGIX((OpenTK.OpenGL.Enums.All)light, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + } + } + } + + public static + void FragmentLightv(OpenTK.OpenGL.Enums.All light, OpenTK.OpenGL.Enums.All pname, ref Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glFragmentLightfvSGIX((OpenTK.OpenGL.Enums.All)light, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void FragmentLightv(OpenTK.OpenGL.Enums.All light, OpenTK.OpenGL.Enums.All pname, Single* @params) + { + Delegates.glFragmentLightfvSGIX((OpenTK.OpenGL.Enums.All)light, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); + } + + public static + void FragmentLight(OpenTK.OpenGL.Enums.All light, OpenTK.OpenGL.Enums.All pname, Int32 param) + { + Delegates.glFragmentLightiSGIX((OpenTK.OpenGL.Enums.All)light, (OpenTK.OpenGL.Enums.All)pname, (Int32)param); + } + + public static + void FragmentLightv(OpenTK.OpenGL.Enums.All light, OpenTK.OpenGL.Enums.All pname, Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glFragmentLightivSGIX((OpenTK.OpenGL.Enums.All)light, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + } + } + } + + public static + void FragmentLightv(OpenTK.OpenGL.Enums.All light, OpenTK.OpenGL.Enums.All pname, ref Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glFragmentLightivSGIX((OpenTK.OpenGL.Enums.All)light, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void FragmentLightv(OpenTK.OpenGL.Enums.All light, OpenTK.OpenGL.Enums.All pname, Int32* @params) + { + Delegates.glFragmentLightivSGIX((OpenTK.OpenGL.Enums.All)light, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); + } + + public static + void FragmentLightModel(OpenTK.OpenGL.Enums.All pname, Single param) + { + Delegates.glFragmentLightModelfSGIX((OpenTK.OpenGL.Enums.All)pname, (Single)param); + } + + public static + void FragmentLightModelv(OpenTK.OpenGL.Enums.All pname, Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glFragmentLightModelfvSGIX((OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + } + } + } + + public static + void FragmentLightModelv(OpenTK.OpenGL.Enums.All pname, ref Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glFragmentLightModelfvSGIX((OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void FragmentLightModelv(OpenTK.OpenGL.Enums.All pname, Single* @params) + { + Delegates.glFragmentLightModelfvSGIX((OpenTK.OpenGL.Enums.All)pname, (Single*)@params); + } + + public static + void FragmentLightModel(OpenTK.OpenGL.Enums.All pname, Int32 param) + { + Delegates.glFragmentLightModeliSGIX((OpenTK.OpenGL.Enums.All)pname, (Int32)param); + } + + public static + void FragmentLightModelv(OpenTK.OpenGL.Enums.All pname, Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glFragmentLightModelivSGIX((OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + } + } + } + + public static + void FragmentLightModelv(OpenTK.OpenGL.Enums.All pname, ref Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glFragmentLightModelivSGIX((OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void FragmentLightModelv(OpenTK.OpenGL.Enums.All pname, Int32* @params) + { + Delegates.glFragmentLightModelivSGIX((OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); + } + + public static + void FragmentMaterial(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter pname, Single param) + { + Delegates.glFragmentMaterialfSGIX((OpenTK.OpenGL.Enums.MaterialFace)face, (OpenTK.OpenGL.Enums.MaterialParameter)pname, (Single)param); + } + + public static + void FragmentMaterialv(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter pname, Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glFragmentMaterialfvSGIX((OpenTK.OpenGL.Enums.MaterialFace)face, (OpenTK.OpenGL.Enums.MaterialParameter)pname, (Single*)@params_ptr); + } + } + } + + public static + void FragmentMaterialv(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter pname, ref Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glFragmentMaterialfvSGIX((OpenTK.OpenGL.Enums.MaterialFace)face, (OpenTK.OpenGL.Enums.MaterialParameter)pname, (Single*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void FragmentMaterialv(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter pname, Single* @params) + { + Delegates.glFragmentMaterialfvSGIX((OpenTK.OpenGL.Enums.MaterialFace)face, (OpenTK.OpenGL.Enums.MaterialParameter)pname, (Single*)@params); + } + + public static + void FragmentMaterial(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter pname, Int32 param) + { + Delegates.glFragmentMaterialiSGIX((OpenTK.OpenGL.Enums.MaterialFace)face, (OpenTK.OpenGL.Enums.MaterialParameter)pname, (Int32)param); + } + + public static + void FragmentMaterialv(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter pname, Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glFragmentMaterialivSGIX((OpenTK.OpenGL.Enums.MaterialFace)face, (OpenTK.OpenGL.Enums.MaterialParameter)pname, (Int32*)@params_ptr); + } + } + } + + public static + void FragmentMaterialv(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter pname, ref Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glFragmentMaterialivSGIX((OpenTK.OpenGL.Enums.MaterialFace)face, (OpenTK.OpenGL.Enums.MaterialParameter)pname, (Int32*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void FragmentMaterialv(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter pname, Int32* @params) + { + Delegates.glFragmentMaterialivSGIX((OpenTK.OpenGL.Enums.MaterialFace)face, (OpenTK.OpenGL.Enums.MaterialParameter)pname, (Int32*)@params); + } + + public static + void GetFragmentLight(OpenTK.OpenGL.Enums.All light, OpenTK.OpenGL.Enums.All pname, [Out] Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glGetFragmentLightfvSGIX((OpenTK.OpenGL.Enums.All)light, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + } + } + } + + public static + void GetFragmentLight(OpenTK.OpenGL.Enums.All light, OpenTK.OpenGL.Enums.All pname, [Out] out Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glGetFragmentLightfvSGIX((OpenTK.OpenGL.Enums.All)light, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetFragmentLight(OpenTK.OpenGL.Enums.All light, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params) + { + Delegates.glGetFragmentLightfvSGIX((OpenTK.OpenGL.Enums.All)light, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); + } + + public static + void GetFragmentLight(OpenTK.OpenGL.Enums.All light, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glGetFragmentLightivSGIX((OpenTK.OpenGL.Enums.All)light, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + } + } + } + + public static + void GetFragmentLight(OpenTK.OpenGL.Enums.All light, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glGetFragmentLightivSGIX((OpenTK.OpenGL.Enums.All)light, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetFragmentLight(OpenTK.OpenGL.Enums.All light, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) + { + Delegates.glGetFragmentLightivSGIX((OpenTK.OpenGL.Enums.All)light, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); + } + + public static + void GetFragmentMaterial(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter pname, [Out] Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glGetFragmentMaterialfvSGIX((OpenTK.OpenGL.Enums.MaterialFace)face, (OpenTK.OpenGL.Enums.MaterialParameter)pname, (Single*)@params_ptr); + } + } + } + + public static + void GetFragmentMaterial(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter pname, [Out] out Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glGetFragmentMaterialfvSGIX((OpenTK.OpenGL.Enums.MaterialFace)face, (OpenTK.OpenGL.Enums.MaterialParameter)pname, (Single*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetFragmentMaterial(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter pname, [Out] Single* @params) + { + Delegates.glGetFragmentMaterialfvSGIX((OpenTK.OpenGL.Enums.MaterialFace)face, (OpenTK.OpenGL.Enums.MaterialParameter)pname, (Single*)@params); + } + + public static + void GetFragmentMaterial(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter pname, [Out] Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glGetFragmentMaterialivSGIX((OpenTK.OpenGL.Enums.MaterialFace)face, (OpenTK.OpenGL.Enums.MaterialParameter)pname, (Int32*)@params_ptr); + } + } + } + + public static + void GetFragmentMaterial(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter pname, [Out] out Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glGetFragmentMaterialivSGIX((OpenTK.OpenGL.Enums.MaterialFace)face, (OpenTK.OpenGL.Enums.MaterialParameter)pname, (Int32*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetFragmentMaterial(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter pname, [Out] Int32* @params) + { + Delegates.glGetFragmentMaterialivSGIX((OpenTK.OpenGL.Enums.MaterialFace)face, (OpenTK.OpenGL.Enums.MaterialParameter)pname, (Int32*)@params); + } + + public static + void LightEnv(OpenTK.OpenGL.Enums.All pname, Int32 param) + { + Delegates.glLightEnviSGIX((OpenTK.OpenGL.Enums.All)pname, (Int32)param); + } + + [System.CLSCompliant(false)] + public static + void AsyncMarker(UInt32 marker) + { + Delegates.glAsyncMarkerSGIX((UInt32)marker); + } + + public static + void AsyncMarker(Int32 marker) + { + Delegates.glAsyncMarkerSGIX((UInt32)marker); + } + + [System.CLSCompliant(false)] + public static + Int32 FinishAsync([Out] UInt32[] markerp) + { + unsafe + { + fixed (UInt32* markerp_ptr = markerp) + { + return Delegates.glFinishAsyncSGIX((UInt32*)markerp_ptr); + } + } + } + + public static + Int32 FinishAsync([Out] Int32[] markerp) + { + unsafe + { + fixed (Int32* markerp_ptr = markerp) + { + return Delegates.glFinishAsyncSGIX((UInt32*)markerp_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + Int32 FinishAsync([Out] out UInt32 markerp) + { + unsafe + { + fixed (UInt32* markerp_ptr = &markerp) + { + Int32 retval = Delegates.glFinishAsyncSGIX((UInt32*)markerp_ptr); + markerp = *markerp_ptr; + return retval; + } + } + } + + public static + Int32 FinishAsync([Out] out Int32 markerp) + { + unsafe + { + fixed (Int32* markerp_ptr = &markerp) + { + Int32 retval = Delegates.glFinishAsyncSGIX((UInt32*)markerp_ptr); + markerp = *markerp_ptr; + return retval; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe Int32 FinishAsync([Out] UInt32* markerp) + { + return Delegates.glFinishAsyncSGIX((UInt32*)markerp); + } + + [System.CLSCompliant(false)] + public static + unsafe Int32 FinishAsync([Out] Int32* markerp) + { + return Delegates.glFinishAsyncSGIX((UInt32*)markerp); + } + + [System.CLSCompliant(false)] + public static + Int32 PollAsync([Out] UInt32[] markerp) + { + unsafe + { + fixed (UInt32* markerp_ptr = markerp) + { + return Delegates.glPollAsyncSGIX((UInt32*)markerp_ptr); + } + } + } + + public static + Int32 PollAsync([Out] Int32[] markerp) + { + unsafe + { + fixed (Int32* markerp_ptr = markerp) + { + return Delegates.glPollAsyncSGIX((UInt32*)markerp_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + Int32 PollAsync([Out] out UInt32 markerp) + { + unsafe + { + fixed (UInt32* markerp_ptr = &markerp) + { + Int32 retval = Delegates.glPollAsyncSGIX((UInt32*)markerp_ptr); + markerp = *markerp_ptr; + return retval; + } + } + } + + public static + Int32 PollAsync([Out] out Int32 markerp) + { + unsafe + { + fixed (Int32* markerp_ptr = &markerp) + { + Int32 retval = Delegates.glPollAsyncSGIX((UInt32*)markerp_ptr); + markerp = *markerp_ptr; + return retval; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe Int32 PollAsync([Out] UInt32* markerp) + { + return Delegates.glPollAsyncSGIX((UInt32*)markerp); + } + + [System.CLSCompliant(false)] + public static + unsafe Int32 PollAsync([Out] Int32* markerp) + { + return Delegates.glPollAsyncSGIX((UInt32*)markerp); + } + + public static + Int32 GenAsyncMarkers(Int32 range) + { + return Delegates.glGenAsyncMarkersSGIX((Int32)range); + } + + [System.CLSCompliant(false)] + public static + void DeleteAsyncMarkers(UInt32 marker, Int32 range) + { + Delegates.glDeleteAsyncMarkersSGIX((UInt32)marker, (Int32)range); + } + + public static + void DeleteAsyncMarkers(Int32 marker, Int32 range) + { + Delegates.glDeleteAsyncMarkersSGIX((UInt32)marker, (Int32)range); + } + + [System.CLSCompliant(false)] + public static + bool IsAsyncMarker(UInt32 marker) + { + return Delegates.glIsAsyncMarkerSGIX((UInt32)marker); + } + + public static + bool IsAsyncMarker(Int32 marker) + { + return Delegates.glIsAsyncMarkerSGIX((UInt32)marker); + } + + public static + void IglooInterface(OpenTK.OpenGL.Enums.All pname, IntPtr @params) + { + unsafe + { + Delegates.glIglooInterfaceSGIX((OpenTK.OpenGL.Enums.All)pname, (IntPtr)@params); + } + } + + public static + void IglooInterface(OpenTK.OpenGL.Enums.All pname, [In, Out] object @params) + { + unsafe + { + System.Runtime.InteropServices.GCHandle @params_ptr = System.Runtime.InteropServices.GCHandle.Alloc(@params, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glIglooInterfaceSGIX((OpenTK.OpenGL.Enums.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + } + finally + { + @params_ptr.Free(); + } + } + } + + } + + public static partial class HP + { + public static + void ImageTransformParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Int32 param) + { + Delegates.glImageTransformParameteriHP((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32)param); + } + + public static + void ImageTransformParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Single param) + { + Delegates.glImageTransformParameterfHP((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single)param); + } + + public static + void ImageTransformParameterv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glImageTransformParameterivHP((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + } + } + } + + public static + void ImageTransformParameterv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, ref Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glImageTransformParameterivHP((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void ImageTransformParameterv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Int32* @params) + { + Delegates.glImageTransformParameterivHP((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); + } + + public static + void ImageTransformParameterv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glImageTransformParameterfvHP((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + } + } + } + + public static + void ImageTransformParameterv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, ref Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glImageTransformParameterfvHP((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void ImageTransformParameterv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Single* @params) + { + Delegates.glImageTransformParameterfvHP((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); + } + + public static + void GetImageTransformParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) + { + unsafe + { + fixed (Int32* @params_ptr = @params) + { + Delegates.glGetImageTransformParameterivHP((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + } + } + } + + public static + void GetImageTransformParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) + { + unsafe + { + fixed (Int32* @params_ptr = &@params) + { + Delegates.glGetImageTransformParameterivHP((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetImageTransformParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) + { + Delegates.glGetImageTransformParameterivHP((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); + } + + public static + void GetImageTransformParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Single[] @params) + { + unsafe + { + fixed (Single* @params_ptr = @params) + { + Delegates.glGetImageTransformParameterfvHP((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + } + } + } + + public static + void GetImageTransformParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] out Single @params) + { + unsafe + { + fixed (Single* @params_ptr = &@params) + { + Delegates.glGetImageTransformParameterfvHP((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); + @params = *@params_ptr; + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void GetImageTransformParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params) + { + Delegates.glGetImageTransformParameterfvHP((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); + } + + } + + public static partial class Pgi + { + public static + void Hint(OpenTK.OpenGL.Enums.All target, Int32 mode) + { + Delegates.glHintPGI((OpenTK.OpenGL.Enums.All)target, (Int32)mode); + } + + } + + public static partial class Intel + { + public static + void VertexPointer(Int32 size, OpenTK.OpenGL.Enums.VertexPointerType type, IntPtr pointer) + { + unsafe + { + Delegates.glVertexPointervINTEL((Int32)size, (OpenTK.OpenGL.Enums.VertexPointerType)type, (IntPtr)pointer); + } + } + + public static + void VertexPointer(Int32 size, OpenTK.OpenGL.Enums.VertexPointerType type, [In, Out] object pointer) + { + unsafe + { + System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glVertexPointervINTEL((Int32)size, (OpenTK.OpenGL.Enums.VertexPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + } + finally + { + pointer_ptr.Free(); + } + } + } + + public static + void NormalPointer(OpenTK.OpenGL.Enums.NormalPointerType type, IntPtr pointer) + { + unsafe + { + Delegates.glNormalPointervINTEL((OpenTK.OpenGL.Enums.NormalPointerType)type, (IntPtr)pointer); + } + } + + public static + void NormalPointer(OpenTK.OpenGL.Enums.NormalPointerType type, [In, Out] object pointer) + { + unsafe + { + System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glNormalPointervINTEL((OpenTK.OpenGL.Enums.NormalPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + } + finally + { + pointer_ptr.Free(); + } + } + } + + public static + void ColorPointer(Int32 size, OpenTK.OpenGL.Enums.VertexPointerType type, IntPtr pointer) + { + unsafe + { + Delegates.glColorPointervINTEL((Int32)size, (OpenTK.OpenGL.Enums.VertexPointerType)type, (IntPtr)pointer); + } + } + + public static + void ColorPointer(Int32 size, OpenTK.OpenGL.Enums.VertexPointerType type, [In, Out] object pointer) + { + unsafe + { + System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glColorPointervINTEL((Int32)size, (OpenTK.OpenGL.Enums.VertexPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + } + finally + { + pointer_ptr.Free(); + } + } + } + + public static + void TexCoordPointer(Int32 size, OpenTK.OpenGL.Enums.VertexPointerType type, IntPtr pointer) + { + unsafe + { + Delegates.glTexCoordPointervINTEL((Int32)size, (OpenTK.OpenGL.Enums.VertexPointerType)type, (IntPtr)pointer); + } + } + + public static + void TexCoordPointer(Int32 size, OpenTK.OpenGL.Enums.VertexPointerType type, [In, Out] object pointer) + { + unsafe + { + System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glTexCoordPointervINTEL((Int32)size, (OpenTK.OpenGL.Enums.VertexPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + } + finally + { + pointer_ptr.Free(); + } + } + } + + } + + public static partial class Sunx + { + public static + void FinishTexture() + { + Delegates.glFinishTextureSUNX(); + } + + } + + public static partial class Sun + { + [System.CLSCompliant(false)] + public static + void GlobalAlphaFactor(SByte factor) + { + Delegates.glGlobalAlphaFactorbSUN((SByte)factor); + } + + public static + void GlobalAlphaFactors(Int16 factor) + { + Delegates.glGlobalAlphaFactorsSUN((Int16)factor); + } + + public static + void GlobalAlphaFactor(Single factor) + { + Delegates.glGlobalAlphaFactorfSUN((Single)factor); + } + + public static + void GlobalAlphaFactor(Double factor) + { + Delegates.glGlobalAlphaFactordSUN((Double)factor); + } + + public static + void GlobalAlphaFactor(Byte factor) + { + Delegates.glGlobalAlphaFactorubSUN((Byte)factor); + } + + [System.CLSCompliant(false)] + public static + void GlobalAlphaFactor(UInt16 factor) + { + Delegates.glGlobalAlphaFactorusSUN((UInt16)factor); + } + + public static + void GlobalAlphaFactor(Int16 factor) + { + Delegates.glGlobalAlphaFactorusSUN((UInt16)factor); + } + + [System.CLSCompliant(false)] + public static + void GlobalAlphaFactor(UInt32 factor) + { + Delegates.glGlobalAlphaFactoruiSUN((UInt32)factor); + } + + public static + void GlobalAlphaFactor(Int32 factor) + { + Delegates.glGlobalAlphaFactoruiSUN((UInt32)factor); + } + + [System.CLSCompliant(false)] + public static + void ReplacementCode(UInt32 code) + { + Delegates.glReplacementCodeuiSUN((UInt32)code); + } + + public static + void ReplacementCode(Int32 code) + { + Delegates.glReplacementCodeuiSUN((UInt32)code); + } + + [System.CLSCompliant(false)] + public static + void ReplacementCode(UInt16 code) + { + Delegates.glReplacementCodeusSUN((UInt16)code); + } + + public static + void ReplacementCode(Int16 code) + { + Delegates.glReplacementCodeusSUN((UInt16)code); + } + + public static + void ReplacementCode(Byte code) + { + Delegates.glReplacementCodeubSUN((Byte)code); + } + + [System.CLSCompliant(false)] + public static + void ReplacementCodev(UInt32[] code) + { + unsafe + { + fixed (UInt32* code_ptr = code) + { + Delegates.glReplacementCodeuivSUN((UInt32*)code_ptr); + } + } + } + + public static + void ReplacementCodev(Int32[] code) + { + unsafe + { + fixed (Int32* code_ptr = code) + { + Delegates.glReplacementCodeuivSUN((UInt32*)code_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void ReplacementCodev(ref UInt32 code) + { + unsafe + { + fixed (UInt32* code_ptr = &code) + { + Delegates.glReplacementCodeuivSUN((UInt32*)code_ptr); + } + } + } + + public static + void ReplacementCodev(ref Int32 code) + { + unsafe + { + fixed (Int32* code_ptr = &code) + { + Delegates.glReplacementCodeuivSUN((UInt32*)code_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void ReplacementCodev(UInt32* code) + { + Delegates.glReplacementCodeuivSUN((UInt32*)code); + } + + [System.CLSCompliant(false)] + public static + unsafe void ReplacementCodev(Int32* code) + { + Delegates.glReplacementCodeuivSUN((UInt32*)code); + } + + [System.CLSCompliant(false)] + public static + void ReplacementCodev(UInt16[] code) + { + unsafe + { + fixed (UInt16* code_ptr = code) + { + Delegates.glReplacementCodeusvSUN((UInt16*)code_ptr); + } + } + } + + public static + void ReplacementCodev(Int16[] code) + { + unsafe + { + fixed (Int16* code_ptr = code) + { + Delegates.glReplacementCodeusvSUN((UInt16*)code_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void ReplacementCodev(ref UInt16 code) + { + unsafe + { + fixed (UInt16* code_ptr = &code) + { + Delegates.glReplacementCodeusvSUN((UInt16*)code_ptr); + } + } + } + + public static + void ReplacementCodev(ref Int16 code) + { + unsafe + { + fixed (Int16* code_ptr = &code) + { + Delegates.glReplacementCodeusvSUN((UInt16*)code_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void ReplacementCodev(UInt16* code) + { + Delegates.glReplacementCodeusvSUN((UInt16*)code); + } + + [System.CLSCompliant(false)] + public static + unsafe void ReplacementCodev(Int16* code) + { + Delegates.glReplacementCodeusvSUN((UInt16*)code); + } + + public static + void ReplacementCodev(Byte[] code) + { + unsafe + { + fixed (Byte* code_ptr = code) + { + Delegates.glReplacementCodeubvSUN((Byte*)code_ptr); + } + } + } + + public static + void ReplacementCodev(ref Byte code) + { + unsafe + { + fixed (Byte* code_ptr = &code) + { + Delegates.glReplacementCodeubvSUN((Byte*)code_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void ReplacementCodev(Byte* code) + { + Delegates.glReplacementCodeubvSUN((Byte*)code); + } + + public static + void ReplacementCodePointer(OpenTK.OpenGL.Enums.All type, Int32 stride, IntPtr pointer) + { + unsafe + { + Delegates.glReplacementCodePointerSUN((OpenTK.OpenGL.Enums.All)type, (Int32)stride, (IntPtr)pointer); + } + } + + public static + void ReplacementCodePointer(OpenTK.OpenGL.Enums.All type, Int32 stride, [In, Out] object pointer) + { + unsafe + { + System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); + try + { + Delegates.glReplacementCodePointerSUN((OpenTK.OpenGL.Enums.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + } + finally + { + pointer_ptr.Free(); + } + } + } + + public static + void Color4ubVertex2(Byte r, Byte g, Byte b, Byte a, Single x, Single y) + { + Delegates.glColor4ubVertex2fSUN((Byte)r, (Byte)g, (Byte)b, (Byte)a, (Single)x, (Single)y); + } + + public static + void Color4ubVertex2(Byte[] c, Single[] v) + { + unsafe + { + fixed (Byte* c_ptr = c) + fixed (Single* v_ptr = v) + { + Delegates.glColor4ubVertex2fvSUN((Byte*)c_ptr, (Single*)v_ptr); + } + } + } + + public static + void Color4ubVertex2(ref Byte c, ref Single v) + { + unsafe + { + fixed (Byte* c_ptr = &c) + fixed (Single* v_ptr = &v) + { + Delegates.glColor4ubVertex2fvSUN((Byte*)c_ptr, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Color4ubVertex2(Byte* c, Single* v) + { + Delegates.glColor4ubVertex2fvSUN((Byte*)c, (Single*)v); + } + + public static + void Color4ubVertex3(Byte r, Byte g, Byte b, Byte a, Single x, Single y, Single z) + { + Delegates.glColor4ubVertex3fSUN((Byte)r, (Byte)g, (Byte)b, (Byte)a, (Single)x, (Single)y, (Single)z); + } + + public static + void Color4ubVertex3(Byte[] c, Single[] v) + { + unsafe + { + fixed (Byte* c_ptr = c) + fixed (Single* v_ptr = v) + { + Delegates.glColor4ubVertex3fvSUN((Byte*)c_ptr, (Single*)v_ptr); + } + } + } + + public static + void Color4ubVertex3(ref Byte c, ref Single v) + { + unsafe + { + fixed (Byte* c_ptr = &c) + fixed (Single* v_ptr = &v) + { + Delegates.glColor4ubVertex3fvSUN((Byte*)c_ptr, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Color4ubVertex3(Byte* c, Single* v) + { + Delegates.glColor4ubVertex3fvSUN((Byte*)c, (Single*)v); + } + + public static + void Color3fVertex3(Single r, Single g, Single b, Single x, Single y, Single z) + { + Delegates.glColor3fVertex3fSUN((Single)r, (Single)g, (Single)b, (Single)x, (Single)y, (Single)z); + } + + public static + void Color3fVertex3(Single[] c, Single[] v) + { + unsafe + { + fixed (Single* c_ptr = c) + fixed (Single* v_ptr = v) + { + Delegates.glColor3fVertex3fvSUN((Single*)c_ptr, (Single*)v_ptr); + } + } + } + + public static + void Color3fVertex3(ref Single c, ref Single v) + { + unsafe + { + fixed (Single* c_ptr = &c) + fixed (Single* v_ptr = &v) + { + Delegates.glColor3fVertex3fvSUN((Single*)c_ptr, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Color3fVertex3(Single* c, Single* v) + { + Delegates.glColor3fVertex3fvSUN((Single*)c, (Single*)v); + } + + public static + void Normal3fVertex3(Single nx, Single ny, Single nz, Single x, Single y, Single z) + { + Delegates.glNormal3fVertex3fSUN((Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); + } + + public static + void Normal3fVertex3(Single[] n, Single[] v) + { + unsafe + { + fixed (Single* n_ptr = n) + fixed (Single* v_ptr = v) + { + Delegates.glNormal3fVertex3fvSUN((Single*)n_ptr, (Single*)v_ptr); + } + } + } + + public static + void Normal3fVertex3(ref Single n, ref Single v) + { + unsafe + { + fixed (Single* n_ptr = &n) + fixed (Single* v_ptr = &v) + { + Delegates.glNormal3fVertex3fvSUN((Single*)n_ptr, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Normal3fVertex3(Single* n, Single* v) + { + Delegates.glNormal3fVertex3fvSUN((Single*)n, (Single*)v); + } + + public static + void Color4fNormal3fVertex3(Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z) + { + Delegates.glColor4fNormal3fVertex3fSUN((Single)r, (Single)g, (Single)b, (Single)a, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); + } + + public static + void Color4fNormal3fVertex3(Single[] c, Single[] n, Single[] v) + { + unsafe + { + fixed (Single* c_ptr = c) + fixed (Single* n_ptr = n) + fixed (Single* v_ptr = v) + { + Delegates.glColor4fNormal3fVertex3fvSUN((Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); + } + } + } + + public static + void Color4fNormal3fVertex3(ref Single c, ref Single n, ref Single v) + { + unsafe + { + fixed (Single* c_ptr = &c) + fixed (Single* n_ptr = &n) + fixed (Single* v_ptr = &v) + { + Delegates.glColor4fNormal3fVertex3fvSUN((Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void Color4fNormal3fVertex3(Single* c, Single* n, Single* v) + { + Delegates.glColor4fNormal3fVertex3fvSUN((Single*)c, (Single*)n, (Single*)v); + } + + public static + void TexCoord2fVertex3(Single s, Single t, Single x, Single y, Single z) + { + Delegates.glTexCoord2fVertex3fSUN((Single)s, (Single)t, (Single)x, (Single)y, (Single)z); + } + + public static + void TexCoord2fVertex3(Single[] tc, Single[] v) + { + unsafe + { + fixed (Single* tc_ptr = tc) + fixed (Single* v_ptr = v) + { + Delegates.glTexCoord2fVertex3fvSUN((Single*)tc_ptr, (Single*)v_ptr); + } + } + } + + public static + void TexCoord2fVertex3(ref Single tc, ref Single v) + { + unsafe + { + fixed (Single* tc_ptr = &tc) + fixed (Single* v_ptr = &v) + { + Delegates.glTexCoord2fVertex3fvSUN((Single*)tc_ptr, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void TexCoord2fVertex3(Single* tc, Single* v) + { + Delegates.glTexCoord2fVertex3fvSUN((Single*)tc, (Single*)v); + } + + public static + void TexCoord4fVertex4(Single s, Single t, Single p, Single q, Single x, Single y, Single z, Single w) + { + Delegates.glTexCoord4fVertex4fSUN((Single)s, (Single)t, (Single)p, (Single)q, (Single)x, (Single)y, (Single)z, (Single)w); + } + + public static + void TexCoord4fVertex4(Single[] tc, Single[] v) + { + unsafe + { + fixed (Single* tc_ptr = tc) + fixed (Single* v_ptr = v) + { + Delegates.glTexCoord4fVertex4fvSUN((Single*)tc_ptr, (Single*)v_ptr); + } + } + } + + public static + void TexCoord4fVertex4(ref Single tc, ref Single v) + { + unsafe + { + fixed (Single* tc_ptr = &tc) + fixed (Single* v_ptr = &v) + { + Delegates.glTexCoord4fVertex4fvSUN((Single*)tc_ptr, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void TexCoord4fVertex4(Single* tc, Single* v) + { + Delegates.glTexCoord4fVertex4fvSUN((Single*)tc, (Single*)v); + } + + public static + void TexCoord2fColor4ubVertex3(Single s, Single t, Byte r, Byte g, Byte b, Byte a, Single x, Single y, Single z) + { + Delegates.glTexCoord2fColor4ubVertex3fSUN((Single)s, (Single)t, (Byte)r, (Byte)g, (Byte)b, (Byte)a, (Single)x, (Single)y, (Single)z); + } + + public static + void TexCoord2fColor4ubVertex3(Single[] tc, Byte[] c, Single[] v) + { + unsafe + { + fixed (Single* tc_ptr = tc) + fixed (Byte* c_ptr = c) + fixed (Single* v_ptr = v) + { + Delegates.glTexCoord2fColor4ubVertex3fvSUN((Single*)tc_ptr, (Byte*)c_ptr, (Single*)v_ptr); + } + } + } + + public static + void TexCoord2fColor4ubVertex3(ref Single tc, ref Byte c, ref Single v) + { + unsafe + { + fixed (Single* tc_ptr = &tc) + fixed (Byte* c_ptr = &c) + fixed (Single* v_ptr = &v) + { + Delegates.glTexCoord2fColor4ubVertex3fvSUN((Single*)tc_ptr, (Byte*)c_ptr, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void TexCoord2fColor4ubVertex3(Single* tc, Byte* c, Single* v) + { + Delegates.glTexCoord2fColor4ubVertex3fvSUN((Single*)tc, (Byte*)c, (Single*)v); + } + + public static + void TexCoord2fColor3fVertex3(Single s, Single t, Single r, Single g, Single b, Single x, Single y, Single z) + { + Delegates.glTexCoord2fColor3fVertex3fSUN((Single)s, (Single)t, (Single)r, (Single)g, (Single)b, (Single)x, (Single)y, (Single)z); + } + + public static + void TexCoord2fColor3fVertex3(Single[] tc, Single[] c, Single[] v) + { + unsafe + { + fixed (Single* tc_ptr = tc) + fixed (Single* c_ptr = c) + fixed (Single* v_ptr = v) + { + Delegates.glTexCoord2fColor3fVertex3fvSUN((Single*)tc_ptr, (Single*)c_ptr, (Single*)v_ptr); + } + } + } + + public static + void TexCoord2fColor3fVertex3(ref Single tc, ref Single c, ref Single v) + { + unsafe + { + fixed (Single* tc_ptr = &tc) + fixed (Single* c_ptr = &c) + fixed (Single* v_ptr = &v) + { + Delegates.glTexCoord2fColor3fVertex3fvSUN((Single*)tc_ptr, (Single*)c_ptr, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void TexCoord2fColor3fVertex3(Single* tc, Single* c, Single* v) + { + Delegates.glTexCoord2fColor3fVertex3fvSUN((Single*)tc, (Single*)c, (Single*)v); + } + + public static + void TexCoord2fNormal3fVertex3(Single s, Single t, Single nx, Single ny, Single nz, Single x, Single y, Single z) + { + Delegates.glTexCoord2fNormal3fVertex3fSUN((Single)s, (Single)t, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); + } + + public static + void TexCoord2fNormal3fVertex3(Single[] tc, Single[] n, Single[] v) + { + unsafe + { + fixed (Single* tc_ptr = tc) + fixed (Single* n_ptr = n) + fixed (Single* v_ptr = v) + { + Delegates.glTexCoord2fNormal3fVertex3fvSUN((Single*)tc_ptr, (Single*)n_ptr, (Single*)v_ptr); + } + } + } + + public static + void TexCoord2fNormal3fVertex3(ref Single tc, ref Single n, ref Single v) + { + unsafe + { + fixed (Single* tc_ptr = &tc) + fixed (Single* n_ptr = &n) + fixed (Single* v_ptr = &v) + { + Delegates.glTexCoord2fNormal3fVertex3fvSUN((Single*)tc_ptr, (Single*)n_ptr, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void TexCoord2fNormal3fVertex3(Single* tc, Single* n, Single* v) + { + Delegates.glTexCoord2fNormal3fVertex3fvSUN((Single*)tc, (Single*)n, (Single*)v); + } + + public static + void TexCoord2fColor4fNormal3fVertex3(Single s, Single t, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z) + { + Delegates.glTexCoord2fColor4fNormal3fVertex3fSUN((Single)s, (Single)t, (Single)r, (Single)g, (Single)b, (Single)a, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); + } + + public static + void TexCoord2fColor4fNormal3fVertex3(Single[] tc, Single[] c, Single[] n, Single[] v) + { + unsafe + { + fixed (Single* tc_ptr = tc) + fixed (Single* c_ptr = c) + fixed (Single* n_ptr = n) + fixed (Single* v_ptr = v) + { + Delegates.glTexCoord2fColor4fNormal3fVertex3fvSUN((Single*)tc_ptr, (Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); + } + } + } + + public static + void TexCoord2fColor4fNormal3fVertex3(ref Single tc, ref Single c, ref Single n, ref Single v) + { + unsafe + { + fixed (Single* tc_ptr = &tc) + fixed (Single* c_ptr = &c) + fixed (Single* n_ptr = &n) + fixed (Single* v_ptr = &v) + { + Delegates.glTexCoord2fColor4fNormal3fVertex3fvSUN((Single*)tc_ptr, (Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void TexCoord2fColor4fNormal3fVertex3(Single* tc, Single* c, Single* n, Single* v) + { + Delegates.glTexCoord2fColor4fNormal3fVertex3fvSUN((Single*)tc, (Single*)c, (Single*)n, (Single*)v); + } + + public static + void TexCoord4fColor4fNormal3fVertex4(Single s, Single t, Single p, Single q, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z, Single w) + { + Delegates.glTexCoord4fColor4fNormal3fVertex4fSUN((Single)s, (Single)t, (Single)p, (Single)q, (Single)r, (Single)g, (Single)b, (Single)a, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z, (Single)w); + } + + public static + void TexCoord4fColor4fNormal3fVertex4(Single[] tc, Single[] c, Single[] n, Single[] v) + { + unsafe + { + fixed (Single* tc_ptr = tc) + fixed (Single* c_ptr = c) + fixed (Single* n_ptr = n) + fixed (Single* v_ptr = v) + { + Delegates.glTexCoord4fColor4fNormal3fVertex4fvSUN((Single*)tc_ptr, (Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); + } + } + } + + public static + void TexCoord4fColor4fNormal3fVertex4(ref Single tc, ref Single c, ref Single n, ref Single v) + { + unsafe + { + fixed (Single* tc_ptr = &tc) + fixed (Single* c_ptr = &c) + fixed (Single* n_ptr = &n) + fixed (Single* v_ptr = &v) + { + Delegates.glTexCoord4fColor4fNormal3fVertex4fvSUN((Single*)tc_ptr, (Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void TexCoord4fColor4fNormal3fVertex4(Single* tc, Single* c, Single* n, Single* v) + { + Delegates.glTexCoord4fColor4fNormal3fVertex4fvSUN((Single*)tc, (Single*)c, (Single*)n, (Single*)v); + } + + [System.CLSCompliant(false)] + public static + void ReplacementCodeuiVertex3(UInt32 rc, Single x, Single y, Single z) + { + Delegates.glReplacementCodeuiVertex3fSUN((UInt32)rc, (Single)x, (Single)y, (Single)z); + } + + public static + void ReplacementCodeuiVertex3(Int32 rc, Single x, Single y, Single z) + { + Delegates.glReplacementCodeuiVertex3fSUN((UInt32)rc, (Single)x, (Single)y, (Single)z); + } + + [System.CLSCompliant(false)] + public static + void ReplacementCodeuiVertex3v(UInt32[] rc, Single[] v) + { + unsafe + { + fixed (UInt32* rc_ptr = rc) + fixed (Single* v_ptr = v) + { + Delegates.glReplacementCodeuiVertex3fvSUN((UInt32*)rc_ptr, (Single*)v_ptr); + } + } + } + + public static + void ReplacementCodeuiVertex3v(Int32[] rc, Single[] v) + { + unsafe + { + fixed (Int32* rc_ptr = rc) + fixed (Single* v_ptr = v) + { + Delegates.glReplacementCodeuiVertex3fvSUN((UInt32*)rc_ptr, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void ReplacementCodeuiVertex3v(ref UInt32 rc, ref Single v) + { + unsafe + { + fixed (UInt32* rc_ptr = &rc) + fixed (Single* v_ptr = &v) + { + Delegates.glReplacementCodeuiVertex3fvSUN((UInt32*)rc_ptr, (Single*)v_ptr); + } + } + } + + public static + void ReplacementCodeuiVertex3v(ref Int32 rc, ref Single v) + { + unsafe + { + fixed (Int32* rc_ptr = &rc) + fixed (Single* v_ptr = &v) + { + Delegates.glReplacementCodeuiVertex3fvSUN((UInt32*)rc_ptr, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void ReplacementCodeuiVertex3v(UInt32* rc, Single* v) + { + Delegates.glReplacementCodeuiVertex3fvSUN((UInt32*)rc, (Single*)v); + } + + [System.CLSCompliant(false)] + public static + unsafe void ReplacementCodeuiVertex3v(Int32* rc, Single* v) + { + Delegates.glReplacementCodeuiVertex3fvSUN((UInt32*)rc, (Single*)v); + } + + [System.CLSCompliant(false)] + public static + void ReplacementCodeuiColor4ubVertex3(UInt32 rc, Byte r, Byte g, Byte b, Byte a, Single x, Single y, Single z) + { + Delegates.glReplacementCodeuiColor4ubVertex3fSUN((UInt32)rc, (Byte)r, (Byte)g, (Byte)b, (Byte)a, (Single)x, (Single)y, (Single)z); + } + + public static + void ReplacementCodeuiColor4ubVertex3(Int32 rc, Byte r, Byte g, Byte b, Byte a, Single x, Single y, Single z) + { + Delegates.glReplacementCodeuiColor4ubVertex3fSUN((UInt32)rc, (Byte)r, (Byte)g, (Byte)b, (Byte)a, (Single)x, (Single)y, (Single)z); + } + + [System.CLSCompliant(false)] + public static + void ReplacementCodeuiColor4ubVertex3v(UInt32[] rc, Byte[] c, Single[] v) + { + unsafe + { + fixed (UInt32* rc_ptr = rc) + fixed (Byte* c_ptr = c) + fixed (Single* v_ptr = v) + { + Delegates.glReplacementCodeuiColor4ubVertex3fvSUN((UInt32*)rc_ptr, (Byte*)c_ptr, (Single*)v_ptr); + } + } + } + + public static + void ReplacementCodeuiColor4ubVertex3v(Int32[] rc, Byte[] c, Single[] v) + { + unsafe + { + fixed (Int32* rc_ptr = rc) + fixed (Byte* c_ptr = c) + fixed (Single* v_ptr = v) + { + Delegates.glReplacementCodeuiColor4ubVertex3fvSUN((UInt32*)rc_ptr, (Byte*)c_ptr, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void ReplacementCodeuiColor4ubVertex3v(ref UInt32 rc, ref Byte c, ref Single v) + { + unsafe + { + fixed (UInt32* rc_ptr = &rc) + fixed (Byte* c_ptr = &c) + fixed (Single* v_ptr = &v) + { + Delegates.glReplacementCodeuiColor4ubVertex3fvSUN((UInt32*)rc_ptr, (Byte*)c_ptr, (Single*)v_ptr); + } + } + } + + public static + void ReplacementCodeuiColor4ubVertex3v(ref Int32 rc, ref Byte c, ref Single v) + { + unsafe + { + fixed (Int32* rc_ptr = &rc) + fixed (Byte* c_ptr = &c) + fixed (Single* v_ptr = &v) + { + Delegates.glReplacementCodeuiColor4ubVertex3fvSUN((UInt32*)rc_ptr, (Byte*)c_ptr, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void ReplacementCodeuiColor4ubVertex3v(UInt32* rc, Byte* c, Single* v) + { + Delegates.glReplacementCodeuiColor4ubVertex3fvSUN((UInt32*)rc, (Byte*)c, (Single*)v); + } + + [System.CLSCompliant(false)] + public static + unsafe void ReplacementCodeuiColor4ubVertex3v(Int32* rc, Byte* c, Single* v) + { + Delegates.glReplacementCodeuiColor4ubVertex3fvSUN((UInt32*)rc, (Byte*)c, (Single*)v); + } + + [System.CLSCompliant(false)] + public static + void ReplacementCodeuiColor3fVertex3(UInt32 rc, Single r, Single g, Single b, Single x, Single y, Single z) + { + Delegates.glReplacementCodeuiColor3fVertex3fSUN((UInt32)rc, (Single)r, (Single)g, (Single)b, (Single)x, (Single)y, (Single)z); + } + + public static + void ReplacementCodeuiColor3fVertex3(Int32 rc, Single r, Single g, Single b, Single x, Single y, Single z) + { + Delegates.glReplacementCodeuiColor3fVertex3fSUN((UInt32)rc, (Single)r, (Single)g, (Single)b, (Single)x, (Single)y, (Single)z); + } + + [System.CLSCompliant(false)] + public static + void ReplacementCodeuiColor3fVertex3v(UInt32[] rc, Single[] c, Single[] v) + { + unsafe + { + fixed (UInt32* rc_ptr = rc) + fixed (Single* c_ptr = c) + fixed (Single* v_ptr = v) + { + Delegates.glReplacementCodeuiColor3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)c_ptr, (Single*)v_ptr); + } + } + } + + public static + void ReplacementCodeuiColor3fVertex3v(Int32[] rc, Single[] c, Single[] v) + { + unsafe + { + fixed (Int32* rc_ptr = rc) + fixed (Single* c_ptr = c) + fixed (Single* v_ptr = v) + { + Delegates.glReplacementCodeuiColor3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)c_ptr, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void ReplacementCodeuiColor3fVertex3v(ref UInt32 rc, ref Single c, ref Single v) + { + unsafe + { + fixed (UInt32* rc_ptr = &rc) + fixed (Single* c_ptr = &c) + fixed (Single* v_ptr = &v) + { + Delegates.glReplacementCodeuiColor3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)c_ptr, (Single*)v_ptr); + } + } + } + + public static + void ReplacementCodeuiColor3fVertex3v(ref Int32 rc, ref Single c, ref Single v) + { + unsafe + { + fixed (Int32* rc_ptr = &rc) + fixed (Single* c_ptr = &c) + fixed (Single* v_ptr = &v) + { + Delegates.glReplacementCodeuiColor3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)c_ptr, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void ReplacementCodeuiColor3fVertex3v(UInt32* rc, Single* c, Single* v) + { + Delegates.glReplacementCodeuiColor3fVertex3fvSUN((UInt32*)rc, (Single*)c, (Single*)v); + } + + [System.CLSCompliant(false)] + public static + unsafe void ReplacementCodeuiColor3fVertex3v(Int32* rc, Single* c, Single* v) + { + Delegates.glReplacementCodeuiColor3fVertex3fvSUN((UInt32*)rc, (Single*)c, (Single*)v); + } + + [System.CLSCompliant(false)] + public static + void ReplacementCodeuiNormal3fVertex3(UInt32 rc, Single nx, Single ny, Single nz, Single x, Single y, Single z) + { + Delegates.glReplacementCodeuiNormal3fVertex3fSUN((UInt32)rc, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); + } + + public static + void ReplacementCodeuiNormal3fVertex3(Int32 rc, Single nx, Single ny, Single nz, Single x, Single y, Single z) + { + Delegates.glReplacementCodeuiNormal3fVertex3fSUN((UInt32)rc, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); + } + + [System.CLSCompliant(false)] + public static + void ReplacementCodeuiNormal3fVertex3v(UInt32[] rc, Single[] n, Single[] v) + { + unsafe + { + fixed (UInt32* rc_ptr = rc) + fixed (Single* n_ptr = n) + fixed (Single* v_ptr = v) + { + Delegates.glReplacementCodeuiNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)n_ptr, (Single*)v_ptr); + } + } + } + + public static + void ReplacementCodeuiNormal3fVertex3v(Int32[] rc, Single[] n, Single[] v) + { + unsafe + { + fixed (Int32* rc_ptr = rc) + fixed (Single* n_ptr = n) + fixed (Single* v_ptr = v) + { + Delegates.glReplacementCodeuiNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)n_ptr, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void ReplacementCodeuiNormal3fVertex3v(ref UInt32 rc, ref Single n, ref Single v) + { + unsafe + { + fixed (UInt32* rc_ptr = &rc) + fixed (Single* n_ptr = &n) + fixed (Single* v_ptr = &v) + { + Delegates.glReplacementCodeuiNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)n_ptr, (Single*)v_ptr); + } + } + } + + public static + void ReplacementCodeuiNormal3fVertex3v(ref Int32 rc, ref Single n, ref Single v) + { + unsafe + { + fixed (Int32* rc_ptr = &rc) + fixed (Single* n_ptr = &n) + fixed (Single* v_ptr = &v) + { + Delegates.glReplacementCodeuiNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)n_ptr, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void ReplacementCodeuiNormal3fVertex3v(UInt32* rc, Single* n, Single* v) + { + Delegates.glReplacementCodeuiNormal3fVertex3fvSUN((UInt32*)rc, (Single*)n, (Single*)v); + } + + [System.CLSCompliant(false)] + public static + unsafe void ReplacementCodeuiNormal3fVertex3v(Int32* rc, Single* n, Single* v) + { + Delegates.glReplacementCodeuiNormal3fVertex3fvSUN((UInt32*)rc, (Single*)n, (Single*)v); + } + + [System.CLSCompliant(false)] + public static + void ReplacementCodeuiColor4fNormal3fVertex3(UInt32 rc, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z) + { + Delegates.glReplacementCodeuiColor4fNormal3fVertex3fSUN((UInt32)rc, (Single)r, (Single)g, (Single)b, (Single)a, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); + } + + public static + void ReplacementCodeuiColor4fNormal3fVertex3(Int32 rc, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z) + { + Delegates.glReplacementCodeuiColor4fNormal3fVertex3fSUN((UInt32)rc, (Single)r, (Single)g, (Single)b, (Single)a, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); + } + + [System.CLSCompliant(false)] + public static + void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32[] rc, Single[] c, Single[] n, Single[] v) + { + unsafe + { + fixed (UInt32* rc_ptr = rc) + fixed (Single* c_ptr = c) + fixed (Single* n_ptr = n) + fixed (Single* v_ptr = v) + { + Delegates.glReplacementCodeuiColor4fNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); + } + } + } + + public static + void ReplacementCodeuiColor4fNormal3fVertex3v(Int32[] rc, Single[] c, Single[] n, Single[] v) + { + unsafe + { + fixed (Int32* rc_ptr = rc) + fixed (Single* c_ptr = c) + fixed (Single* n_ptr = n) + fixed (Single* v_ptr = v) + { + Delegates.glReplacementCodeuiColor4fNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, ref Single c, ref Single n, ref Single v) + { + unsafe + { + fixed (UInt32* rc_ptr = &rc) + fixed (Single* c_ptr = &c) + fixed (Single* n_ptr = &n) + fixed (Single* v_ptr = &v) + { + Delegates.glReplacementCodeuiColor4fNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); + } + } + } + + public static + void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, ref Single c, ref Single n, ref Single v) + { + unsafe + { + fixed (Int32* rc_ptr = &rc) + fixed (Single* c_ptr = &c) + fixed (Single* n_ptr = &n) + fixed (Single* v_ptr = &v) + { + Delegates.glReplacementCodeuiColor4fNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, Single* c, Single* n, Single* v) + { + Delegates.glReplacementCodeuiColor4fNormal3fVertex3fvSUN((UInt32*)rc, (Single*)c, (Single*)n, (Single*)v); + } + + [System.CLSCompliant(false)] + public static + unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, Single* c, Single* n, Single* v) + { + Delegates.glReplacementCodeuiColor4fNormal3fVertex3fvSUN((UInt32*)rc, (Single*)c, (Single*)n, (Single*)v); + } + + [System.CLSCompliant(false)] + public static + void ReplacementCodeuiTexCoord2fVertex3(UInt32 rc, Single s, Single t, Single x, Single y, Single z) + { + Delegates.glReplacementCodeuiTexCoord2fVertex3fSUN((UInt32)rc, (Single)s, (Single)t, (Single)x, (Single)y, (Single)z); + } + + public static + void ReplacementCodeuiTexCoord2fVertex3(Int32 rc, Single s, Single t, Single x, Single y, Single z) + { + Delegates.glReplacementCodeuiTexCoord2fVertex3fSUN((UInt32)rc, (Single)s, (Single)t, (Single)x, (Single)y, (Single)z); + } + + [System.CLSCompliant(false)] + public static + void ReplacementCodeuiTexCoord2fVertex3v(UInt32[] rc, Single[] tc, Single[] v) + { + unsafe + { + fixed (UInt32* rc_ptr = rc) + fixed (Single* tc_ptr = tc) + fixed (Single* v_ptr = v) + { + Delegates.glReplacementCodeuiTexCoord2fVertex3fvSUN((UInt32*)rc_ptr, (Single*)tc_ptr, (Single*)v_ptr); + } + } + } + + public static + void ReplacementCodeuiTexCoord2fVertex3v(Int32[] rc, Single[] tc, Single[] v) + { + unsafe + { + fixed (Int32* rc_ptr = rc) + fixed (Single* tc_ptr = tc) + fixed (Single* v_ptr = v) + { + Delegates.glReplacementCodeuiTexCoord2fVertex3fvSUN((UInt32*)rc_ptr, (Single*)tc_ptr, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void ReplacementCodeuiTexCoord2fVertex3v(ref UInt32 rc, ref Single tc, ref Single v) + { + unsafe + { + fixed (UInt32* rc_ptr = &rc) + fixed (Single* tc_ptr = &tc) + fixed (Single* v_ptr = &v) + { + Delegates.glReplacementCodeuiTexCoord2fVertex3fvSUN((UInt32*)rc_ptr, (Single*)tc_ptr, (Single*)v_ptr); + } + } + } + + public static + void ReplacementCodeuiTexCoord2fVertex3v(ref Int32 rc, ref Single tc, ref Single v) + { + unsafe + { + fixed (Int32* rc_ptr = &rc) + fixed (Single* tc_ptr = &tc) + fixed (Single* v_ptr = &v) + { + Delegates.glReplacementCodeuiTexCoord2fVertex3fvSUN((UInt32*)rc_ptr, (Single*)tc_ptr, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void ReplacementCodeuiTexCoord2fVertex3v(UInt32* rc, Single* tc, Single* v) + { + Delegates.glReplacementCodeuiTexCoord2fVertex3fvSUN((UInt32*)rc, (Single*)tc, (Single*)v); + } + + [System.CLSCompliant(false)] + public static + unsafe void ReplacementCodeuiTexCoord2fVertex3v(Int32* rc, Single* tc, Single* v) + { + Delegates.glReplacementCodeuiTexCoord2fVertex3fvSUN((UInt32*)rc, (Single*)tc, (Single*)v); + } + + [System.CLSCompliant(false)] + public static + void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32 rc, Single s, Single t, Single nx, Single ny, Single nz, Single x, Single y, Single z) + { + Delegates.glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN((UInt32)rc, (Single)s, (Single)t, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); + } + + public static + void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32 rc, Single s, Single t, Single nx, Single ny, Single nz, Single x, Single y, Single z) + { + Delegates.glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN((UInt32)rc, (Single)s, (Single)t, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); + } + + [System.CLSCompliant(false)] + public static + void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32[] rc, Single[] tc, Single[] n, Single[] v) + { + unsafe + { + fixed (UInt32* rc_ptr = rc) + fixed (Single* tc_ptr = tc) + fixed (Single* n_ptr = n) + fixed (Single* v_ptr = v) + { + Delegates.glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)tc_ptr, (Single*)n_ptr, (Single*)v_ptr); + } + } + } + + public static + void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32[] rc, Single[] tc, Single[] n, Single[] v) + { + unsafe + { + fixed (Int32* rc_ptr = rc) + fixed (Single* tc_ptr = tc) + fixed (Single* n_ptr = n) + fixed (Single* v_ptr = v) + { + Delegates.glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)tc_ptr, (Single*)n_ptr, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, ref Single tc, ref Single n, ref Single v) + { + unsafe + { + fixed (UInt32* rc_ptr = &rc) + fixed (Single* tc_ptr = &tc) + fixed (Single* n_ptr = &n) + fixed (Single* v_ptr = &v) + { + Delegates.glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)tc_ptr, (Single*)n_ptr, (Single*)v_ptr); + } + } + } + + public static + void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, ref Single tc, ref Single n, ref Single v) + { + unsafe + { + fixed (Int32* rc_ptr = &rc) + fixed (Single* tc_ptr = &tc) + fixed (Single* n_ptr = &n) + fixed (Single* v_ptr = &v) + { + Delegates.glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)tc_ptr, (Single*)n_ptr, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, Single* tc, Single* n, Single* v) + { + Delegates.glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN((UInt32*)rc, (Single*)tc, (Single*)n, (Single*)v); + } + + [System.CLSCompliant(false)] + public static + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, Single* tc, Single* n, Single* v) + { + Delegates.glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN((UInt32*)rc, (Single*)tc, (Single*)n, (Single*)v); + } + + [System.CLSCompliant(false)] + public static + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32 rc, Single s, Single t, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z) + { + Delegates.glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN((UInt32)rc, (Single)s, (Single)t, (Single)r, (Single)g, (Single)b, (Single)a, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); + } + + public static + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32 rc, Single s, Single t, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z) + { + Delegates.glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN((UInt32)rc, (Single)s, (Single)t, (Single)r, (Single)g, (Single)b, (Single)a, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); + } + + [System.CLSCompliant(false)] + public static + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single[] tc, Single[] c, Single[] n, Single[] v) + { + unsafe + { + fixed (UInt32* rc_ptr = rc) + fixed (Single* tc_ptr = tc) + fixed (Single* c_ptr = c) + fixed (Single* n_ptr = n) + fixed (Single* v_ptr = v) + { + Delegates.glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)tc_ptr, (Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); + } + } + } + + public static + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single[] tc, Single[] c, Single[] n, Single[] v) + { + unsafe + { + fixed (Int32* rc_ptr = rc) + fixed (Single* tc_ptr = tc) + fixed (Single* c_ptr = c) + fixed (Single* n_ptr = n) + fixed (Single* v_ptr = v) + { + Delegates.glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)tc_ptr, (Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, ref Single c, ref Single n, ref Single v) + { + unsafe + { + fixed (UInt32* rc_ptr = &rc) + fixed (Single* tc_ptr = &tc) + fixed (Single* c_ptr = &c) + fixed (Single* n_ptr = &n) + fixed (Single* v_ptr = &v) + { + Delegates.glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)tc_ptr, (Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); + } + } + } + + public static + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, ref Single c, ref Single n, ref Single v) + { + unsafe + { + fixed (Int32* rc_ptr = &rc) + fixed (Single* tc_ptr = &tc) + fixed (Single* c_ptr = &c) + fixed (Single* n_ptr = &n) + fixed (Single* v_ptr = &v) + { + Delegates.glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)tc_ptr, (Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); + } + } + } + + [System.CLSCompliant(false)] + public static + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, Single* c, Single* n, Single* v) + { + Delegates.glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN((UInt32*)rc, (Single*)tc, (Single*)c, (Single*)n, (Single*)v); + } + + [System.CLSCompliant(false)] + public static + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, Single* c, Single* n, Single* v) + { + Delegates.glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN((UInt32*)rc, (Single*)tc, (Single*)c, (Single*)n, (Single*)v); + } + + public static + void DrawMeshArrays(OpenTK.OpenGL.Enums.BeginMode mode, Int32 first, Int32 count, Int32 width) + { + Delegates.glDrawMeshArraysSUN((OpenTK.OpenGL.Enums.BeginMode)mode, (Int32)first, (Int32)count, (Int32)width); + } + + } + + public static partial class Ingr + { + public static + void BlendFuncSeparate(OpenTK.OpenGL.Enums.All sfactorRGB, OpenTK.OpenGL.Enums.All dfactorRGB, OpenTK.OpenGL.Enums.All sfactorAlpha, OpenTK.OpenGL.Enums.All dfactorAlpha) + { + Delegates.glBlendFuncSeparateINGR((OpenTK.OpenGL.Enums.All)sfactorRGB, (OpenTK.OpenGL.Enums.All)dfactorRGB, (OpenTK.OpenGL.Enums.All)sfactorAlpha, (OpenTK.OpenGL.Enums.All)dfactorAlpha); + } + + } + public static partial class Mesa { public static @@ -37672,26 +37683,26 @@ namespace OpenTK.OpenGL } public static - void MultiModeDrawElements(OpenTK.OpenGL.Enums.BeginMode[] mode, Int32[] count, OpenTK.OpenGL.Enums.IbmMultimodeDrawArrays type, IntPtr indices, Int32 primcount, Int32 modestride) + void MultiModeDrawElements(OpenTK.OpenGL.Enums.BeginMode[] mode, Int32[] count, OpenTK.OpenGL.Enums.All type, IntPtr indices, Int32 primcount, Int32 modestride) { unsafe { fixed (OpenTK.OpenGL.Enums.BeginMode* mode_ptr = mode) fixed (Int32* count_ptr = count) { - Delegates.glMultiModeDrawElementsIBM((OpenTK.OpenGL.Enums.BeginMode*)mode_ptr, (Int32*)count_ptr, (OpenTK.OpenGL.Enums.IbmMultimodeDrawArrays)type, (IntPtr)indices, (Int32)primcount, (Int32)modestride); + Delegates.glMultiModeDrawElementsIBM((OpenTK.OpenGL.Enums.BeginMode*)mode_ptr, (Int32*)count_ptr, (OpenTK.OpenGL.Enums.All)type, (IntPtr)indices, (Int32)primcount, (Int32)modestride); } } } [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawElements(OpenTK.OpenGL.Enums.BeginMode* mode, Int32* count, OpenTK.OpenGL.Enums.IbmMultimodeDrawArrays type, [In, Out] object indices, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawElements(OpenTK.OpenGL.Enums.BeginMode* mode, Int32* count, OpenTK.OpenGL.Enums.All type, [In, Out] object indices, Int32 primcount, Int32 modestride) { System.Runtime.InteropServices.GCHandle indices_ptr = System.Runtime.InteropServices.GCHandle.Alloc(indices, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glMultiModeDrawElementsIBM((OpenTK.OpenGL.Enums.BeginMode*)mode, (Int32*)count, (OpenTK.OpenGL.Enums.IbmMultimodeDrawArrays)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)modestride); + Delegates.glMultiModeDrawElementsIBM((OpenTK.OpenGL.Enums.BeginMode*)mode, (Int32*)count, (OpenTK.OpenGL.Enums.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)modestride); } finally { @@ -37700,7 +37711,7 @@ namespace OpenTK.OpenGL } public static - void MultiModeDrawElements(ref OpenTK.OpenGL.Enums.BeginMode mode, ref Int32 count, OpenTK.OpenGL.Enums.IbmMultimodeDrawArrays type, [In, Out] object indices, Int32 primcount, Int32 modestride) + void MultiModeDrawElements(ref OpenTK.OpenGL.Enums.BeginMode mode, ref Int32 count, OpenTK.OpenGL.Enums.All type, [In, Out] object indices, Int32 primcount, Int32 modestride) { unsafe { @@ -37710,7 +37721,7 @@ namespace OpenTK.OpenGL System.Runtime.InteropServices.GCHandle indices_ptr = System.Runtime.InteropServices.GCHandle.Alloc(indices, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glMultiModeDrawElementsIBM((OpenTK.OpenGL.Enums.BeginMode*)mode_ptr, (Int32*)count_ptr, (OpenTK.OpenGL.Enums.IbmMultimodeDrawArrays)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)modestride); + Delegates.glMultiModeDrawElementsIBM((OpenTK.OpenGL.Enums.BeginMode*)mode_ptr, (Int32*)count_ptr, (OpenTK.OpenGL.Enums.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)modestride); } finally { @@ -37747,23 +37758,23 @@ namespace OpenTK.OpenGL } public static - void SecondaryColorPointerList(Int32 size, OpenTK.OpenGL.Enums.IbmVertexArrayLists type, Int32 stride, IntPtr pointer, Int32 ptrstride) + void SecondaryColorPointerList(Int32 size, OpenTK.OpenGL.Enums.All type, Int32 stride, IntPtr pointer, Int32 ptrstride) { unsafe { - Delegates.glSecondaryColorPointerListIBM((Int32)size, (OpenTK.OpenGL.Enums.IbmVertexArrayLists)type, (Int32)stride, (IntPtr)pointer, (Int32)ptrstride); + Delegates.glSecondaryColorPointerListIBM((Int32)size, (OpenTK.OpenGL.Enums.All)type, (Int32)stride, (IntPtr)pointer, (Int32)ptrstride); } } public static - void SecondaryColorPointerList(Int32 size, OpenTK.OpenGL.Enums.IbmVertexArrayLists type, Int32 stride, [In, Out] object pointer, Int32 ptrstride) + void SecondaryColorPointerList(Int32 size, OpenTK.OpenGL.Enums.All type, Int32 stride, [In, Out] object pointer, Int32 ptrstride) { unsafe { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glSecondaryColorPointerListIBM((Int32)size, (OpenTK.OpenGL.Enums.IbmVertexArrayLists)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + Delegates.glSecondaryColorPointerListIBM((Int32)size, (OpenTK.OpenGL.Enums.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); } finally { @@ -37804,23 +37815,23 @@ namespace OpenTK.OpenGL } public static - void FogCoordPointerList(OpenTK.OpenGL.Enums.IbmVertexArrayLists type, Int32 stride, IntPtr pointer, Int32 ptrstride) + void FogCoordPointerList(OpenTK.OpenGL.Enums.All type, Int32 stride, IntPtr pointer, Int32 ptrstride) { unsafe { - Delegates.glFogCoordPointerListIBM((OpenTK.OpenGL.Enums.IbmVertexArrayLists)type, (Int32)stride, (IntPtr)pointer, (Int32)ptrstride); + Delegates.glFogCoordPointerListIBM((OpenTK.OpenGL.Enums.All)type, (Int32)stride, (IntPtr)pointer, (Int32)ptrstride); } } public static - void FogCoordPointerList(OpenTK.OpenGL.Enums.IbmVertexArrayLists type, Int32 stride, [In, Out] object pointer, Int32 ptrstride) + void FogCoordPointerList(OpenTK.OpenGL.Enums.All type, Int32 stride, [In, Out] object pointer, Int32 ptrstride) { unsafe { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glFogCoordPointerListIBM((OpenTK.OpenGL.Enums.IbmVertexArrayLists)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + Delegates.glFogCoordPointerListIBM((OpenTK.OpenGL.Enums.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); } finally { @@ -37952,90 +37963,90 @@ namespace OpenTK.OpenGL } - public static partial class Ata + public static partial class Ati { public static - void TexBumpParameter(OpenTK.OpenGL.Enums.AtiEnvmapBumpmap pname, Int32[] param) + void TexBumpParameter(OpenTK.OpenGL.Enums.All pname, Int32[] param) { unsafe { fixed (Int32* param_ptr = param) { - Delegates.glTexBumpParameterivATI((OpenTK.OpenGL.Enums.AtiEnvmapBumpmap)pname, (Int32*)param_ptr); + Delegates.glTexBumpParameterivATI((OpenTK.OpenGL.Enums.All)pname, (Int32*)param_ptr); } } } public static - void TexBumpParameter(OpenTK.OpenGL.Enums.AtiEnvmapBumpmap pname, ref Int32 param) + void TexBumpParameter(OpenTK.OpenGL.Enums.All pname, ref Int32 param) { unsafe { fixed (Int32* param_ptr = ¶m) { - Delegates.glTexBumpParameterivATI((OpenTK.OpenGL.Enums.AtiEnvmapBumpmap)pname, (Int32*)param_ptr); + Delegates.glTexBumpParameterivATI((OpenTK.OpenGL.Enums.All)pname, (Int32*)param_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void TexBumpParameter(OpenTK.OpenGL.Enums.AtiEnvmapBumpmap pname, Int32* param) + unsafe void TexBumpParameter(OpenTK.OpenGL.Enums.All pname, Int32* param) { - Delegates.glTexBumpParameterivATI((OpenTK.OpenGL.Enums.AtiEnvmapBumpmap)pname, (Int32*)param); + Delegates.glTexBumpParameterivATI((OpenTK.OpenGL.Enums.All)pname, (Int32*)param); } public static - void TexBumpParameter(OpenTK.OpenGL.Enums.AtiEnvmapBumpmap pname, Single[] param) + void TexBumpParameter(OpenTK.OpenGL.Enums.All pname, Single[] param) { unsafe { fixed (Single* param_ptr = param) { - Delegates.glTexBumpParameterfvATI((OpenTK.OpenGL.Enums.AtiEnvmapBumpmap)pname, (Single*)param_ptr); + Delegates.glTexBumpParameterfvATI((OpenTK.OpenGL.Enums.All)pname, (Single*)param_ptr); } } } public static - void TexBumpParameter(OpenTK.OpenGL.Enums.AtiEnvmapBumpmap pname, ref Single param) + void TexBumpParameter(OpenTK.OpenGL.Enums.All pname, ref Single param) { unsafe { fixed (Single* param_ptr = ¶m) { - Delegates.glTexBumpParameterfvATI((OpenTK.OpenGL.Enums.AtiEnvmapBumpmap)pname, (Single*)param_ptr); + Delegates.glTexBumpParameterfvATI((OpenTK.OpenGL.Enums.All)pname, (Single*)param_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void TexBumpParameter(OpenTK.OpenGL.Enums.AtiEnvmapBumpmap pname, Single* param) + unsafe void TexBumpParameter(OpenTK.OpenGL.Enums.All pname, Single* param) { - Delegates.glTexBumpParameterfvATI((OpenTK.OpenGL.Enums.AtiEnvmapBumpmap)pname, (Single*)param); + Delegates.glTexBumpParameterfvATI((OpenTK.OpenGL.Enums.All)pname, (Single*)param); } public static - void GetTexBumpParameter(OpenTK.OpenGL.Enums.AtiEnvmapBumpmap pname, [Out] Int32[] param) + void GetTexBumpParameter(OpenTK.OpenGL.Enums.All pname, [Out] Int32[] param) { unsafe { fixed (Int32* param_ptr = param) { - Delegates.glGetTexBumpParameterivATI((OpenTK.OpenGL.Enums.AtiEnvmapBumpmap)pname, (Int32*)param_ptr); + Delegates.glGetTexBumpParameterivATI((OpenTK.OpenGL.Enums.All)pname, (Int32*)param_ptr); } } } public static - void GetTexBumpParameter(OpenTK.OpenGL.Enums.AtiEnvmapBumpmap pname, [Out] out Int32 param) + void GetTexBumpParameter(OpenTK.OpenGL.Enums.All pname, [Out] out Int32 param) { unsafe { fixed (Int32* param_ptr = ¶m) { - Delegates.glGetTexBumpParameterivATI((OpenTK.OpenGL.Enums.AtiEnvmapBumpmap)pname, (Int32*)param_ptr); + Delegates.glGetTexBumpParameterivATI((OpenTK.OpenGL.Enums.All)pname, (Int32*)param_ptr); param = *param_ptr; } } @@ -38043,31 +38054,31 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetTexBumpParameter(OpenTK.OpenGL.Enums.AtiEnvmapBumpmap pname, [Out] Int32* param) + unsafe void GetTexBumpParameter(OpenTK.OpenGL.Enums.All pname, [Out] Int32* param) { - Delegates.glGetTexBumpParameterivATI((OpenTK.OpenGL.Enums.AtiEnvmapBumpmap)pname, (Int32*)param); + Delegates.glGetTexBumpParameterivATI((OpenTK.OpenGL.Enums.All)pname, (Int32*)param); } public static - void GetTexBumpParameter(OpenTK.OpenGL.Enums.AtiEnvmapBumpmap pname, [Out] Single[] param) + void GetTexBumpParameter(OpenTK.OpenGL.Enums.All pname, [Out] Single[] param) { unsafe { fixed (Single* param_ptr = param) { - Delegates.glGetTexBumpParameterfvATI((OpenTK.OpenGL.Enums.AtiEnvmapBumpmap)pname, (Single*)param_ptr); + Delegates.glGetTexBumpParameterfvATI((OpenTK.OpenGL.Enums.All)pname, (Single*)param_ptr); } } } public static - void GetTexBumpParameter(OpenTK.OpenGL.Enums.AtiEnvmapBumpmap pname, [Out] out Single param) + void GetTexBumpParameter(OpenTK.OpenGL.Enums.All pname, [Out] out Single param) { unsafe { fixed (Single* param_ptr = ¶m) { - Delegates.glGetTexBumpParameterfvATI((OpenTK.OpenGL.Enums.AtiEnvmapBumpmap)pname, (Single*)param_ptr); + Delegates.glGetTexBumpParameterfvATI((OpenTK.OpenGL.Enums.All)pname, (Single*)param_ptr); param = *param_ptr; } } @@ -38075,9 +38086,9 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetTexBumpParameter(OpenTK.OpenGL.Enums.AtiEnvmapBumpmap pname, [Out] Single* param) + unsafe void GetTexBumpParameter(OpenTK.OpenGL.Enums.All pname, [Out] Single* param) { - Delegates.glGetTexBumpParameterfvATI((OpenTK.OpenGL.Enums.AtiEnvmapBumpmap)pname, (Single*)param); + Delegates.glGetTexBumpParameterfvATI((OpenTK.OpenGL.Enums.All)pname, (Single*)param); } [System.CLSCompliant(false)] @@ -38133,106 +38144,106 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void PassTexCoor(UInt32 dst, UInt32 coord, OpenTK.OpenGL.Enums.AtiFragmentShader swizzle) + void PassTexCoor(UInt32 dst, UInt32 coord, OpenTK.OpenGL.Enums.All swizzle) { - Delegates.glPassTexCoordATI((UInt32)dst, (UInt32)coord, (OpenTK.OpenGL.Enums.AtiFragmentShader)swizzle); + Delegates.glPassTexCoordATI((UInt32)dst, (UInt32)coord, (OpenTK.OpenGL.Enums.All)swizzle); } public static - void PassTexCoor(Int32 dst, Int32 coord, OpenTK.OpenGL.Enums.AtiFragmentShader swizzle) + void PassTexCoor(Int32 dst, Int32 coord, OpenTK.OpenGL.Enums.All swizzle) { - Delegates.glPassTexCoordATI((UInt32)dst, (UInt32)coord, (OpenTK.OpenGL.Enums.AtiFragmentShader)swizzle); + Delegates.glPassTexCoordATI((UInt32)dst, (UInt32)coord, (OpenTK.OpenGL.Enums.All)swizzle); } [System.CLSCompliant(false)] public static - void SampleMap(UInt32 dst, UInt32 interp, OpenTK.OpenGL.Enums.AtiFragmentShader swizzle) + void SampleMap(UInt32 dst, UInt32 interp, OpenTK.OpenGL.Enums.All swizzle) { - Delegates.glSampleMapATI((UInt32)dst, (UInt32)interp, (OpenTK.OpenGL.Enums.AtiFragmentShader)swizzle); + Delegates.glSampleMapATI((UInt32)dst, (UInt32)interp, (OpenTK.OpenGL.Enums.All)swizzle); } public static - void SampleMap(Int32 dst, Int32 interp, OpenTK.OpenGL.Enums.AtiFragmentShader swizzle) + void SampleMap(Int32 dst, Int32 interp, OpenTK.OpenGL.Enums.All swizzle) { - Delegates.glSampleMapATI((UInt32)dst, (UInt32)interp, (OpenTK.OpenGL.Enums.AtiFragmentShader)swizzle); + Delegates.glSampleMapATI((UInt32)dst, (UInt32)interp, (OpenTK.OpenGL.Enums.All)swizzle); } [System.CLSCompliant(false)] public static - void ColorFragmentOp1(OpenTK.OpenGL.Enums.AtiFragmentShader op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod) + void ColorFragmentOp1(OpenTK.OpenGL.Enums.All op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod) { - Delegates.glColorFragmentOp1ATI((OpenTK.OpenGL.Enums.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod); + Delegates.glColorFragmentOp1ATI((OpenTK.OpenGL.Enums.All)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod); } public static - void ColorFragmentOp1(OpenTK.OpenGL.Enums.AtiFragmentShader op, Int32 dst, Int32 dstMask, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod) + void ColorFragmentOp1(OpenTK.OpenGL.Enums.All op, Int32 dst, Int32 dstMask, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod) { - Delegates.glColorFragmentOp1ATI((OpenTK.OpenGL.Enums.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod); + Delegates.glColorFragmentOp1ATI((OpenTK.OpenGL.Enums.All)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod); } [System.CLSCompliant(false)] public static - void ColorFragmentOp2(OpenTK.OpenGL.Enums.AtiFragmentShader op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod) + void ColorFragmentOp2(OpenTK.OpenGL.Enums.All op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod) { - Delegates.glColorFragmentOp2ATI((OpenTK.OpenGL.Enums.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod); + Delegates.glColorFragmentOp2ATI((OpenTK.OpenGL.Enums.All)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod); } public static - void ColorFragmentOp2(OpenTK.OpenGL.Enums.AtiFragmentShader op, Int32 dst, Int32 dstMask, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod) + void ColorFragmentOp2(OpenTK.OpenGL.Enums.All op, Int32 dst, Int32 dstMask, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod) { - Delegates.glColorFragmentOp2ATI((OpenTK.OpenGL.Enums.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod); + Delegates.glColorFragmentOp2ATI((OpenTK.OpenGL.Enums.All)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod); } [System.CLSCompliant(false)] public static - void ColorFragmentOp3(OpenTK.OpenGL.Enums.AtiFragmentShader op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod, UInt32 arg3, UInt32 arg3Rep, UInt32 arg3Mod) + void ColorFragmentOp3(OpenTK.OpenGL.Enums.All op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod, UInt32 arg3, UInt32 arg3Rep, UInt32 arg3Mod) { - Delegates.glColorFragmentOp3ATI((OpenTK.OpenGL.Enums.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod, (UInt32)arg3, (UInt32)arg3Rep, (UInt32)arg3Mod); + Delegates.glColorFragmentOp3ATI((OpenTK.OpenGL.Enums.All)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod, (UInt32)arg3, (UInt32)arg3Rep, (UInt32)arg3Mod); } public static - void ColorFragmentOp3(OpenTK.OpenGL.Enums.AtiFragmentShader op, Int32 dst, Int32 dstMask, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod, Int32 arg3, Int32 arg3Rep, Int32 arg3Mod) + void ColorFragmentOp3(OpenTK.OpenGL.Enums.All op, Int32 dst, Int32 dstMask, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod, Int32 arg3, Int32 arg3Rep, Int32 arg3Mod) { - Delegates.glColorFragmentOp3ATI((OpenTK.OpenGL.Enums.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod, (UInt32)arg3, (UInt32)arg3Rep, (UInt32)arg3Mod); + Delegates.glColorFragmentOp3ATI((OpenTK.OpenGL.Enums.All)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod, (UInt32)arg3, (UInt32)arg3Rep, (UInt32)arg3Mod); } [System.CLSCompliant(false)] public static - void AlphaFragmentOp1(OpenTK.OpenGL.Enums.AtiFragmentShader op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod) + void AlphaFragmentOp1(OpenTK.OpenGL.Enums.All op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod) { - Delegates.glAlphaFragmentOp1ATI((OpenTK.OpenGL.Enums.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod); + Delegates.glAlphaFragmentOp1ATI((OpenTK.OpenGL.Enums.All)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod); } public static - void AlphaFragmentOp1(OpenTK.OpenGL.Enums.AtiFragmentShader op, Int32 dst, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod) + void AlphaFragmentOp1(OpenTK.OpenGL.Enums.All op, Int32 dst, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod) { - Delegates.glAlphaFragmentOp1ATI((OpenTK.OpenGL.Enums.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod); + Delegates.glAlphaFragmentOp1ATI((OpenTK.OpenGL.Enums.All)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod); } [System.CLSCompliant(false)] public static - void AlphaFragmentOp2(OpenTK.OpenGL.Enums.AtiFragmentShader op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod) + void AlphaFragmentOp2(OpenTK.OpenGL.Enums.All op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod) { - Delegates.glAlphaFragmentOp2ATI((OpenTK.OpenGL.Enums.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod); + Delegates.glAlphaFragmentOp2ATI((OpenTK.OpenGL.Enums.All)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod); } public static - void AlphaFragmentOp2(OpenTK.OpenGL.Enums.AtiFragmentShader op, Int32 dst, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod) + void AlphaFragmentOp2(OpenTK.OpenGL.Enums.All op, Int32 dst, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod) { - Delegates.glAlphaFragmentOp2ATI((OpenTK.OpenGL.Enums.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod); + Delegates.glAlphaFragmentOp2ATI((OpenTK.OpenGL.Enums.All)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod); } [System.CLSCompliant(false)] public static - void AlphaFragmentOp3(OpenTK.OpenGL.Enums.AtiFragmentShader op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod, UInt32 arg3, UInt32 arg3Rep, UInt32 arg3Mod) + void AlphaFragmentOp3(OpenTK.OpenGL.Enums.All op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod, UInt32 arg3, UInt32 arg3Rep, UInt32 arg3Mod) { - Delegates.glAlphaFragmentOp3ATI((OpenTK.OpenGL.Enums.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod, (UInt32)arg3, (UInt32)arg3Rep, (UInt32)arg3Mod); + Delegates.glAlphaFragmentOp3ATI((OpenTK.OpenGL.Enums.All)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod, (UInt32)arg3, (UInt32)arg3Rep, (UInt32)arg3Mod); } public static - void AlphaFragmentOp3(OpenTK.OpenGL.Enums.AtiFragmentShader op, Int32 dst, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod, Int32 arg3, Int32 arg3Rep, Int32 arg3Mod) + void AlphaFragmentOp3(OpenTK.OpenGL.Enums.All op, Int32 dst, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod, Int32 arg3, Int32 arg3Rep, Int32 arg3Mod) { - Delegates.glAlphaFragmentOp3ATI((OpenTK.OpenGL.Enums.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod, (UInt32)arg3, (UInt32)arg3Rep, (UInt32)arg3Mod); + Delegates.glAlphaFragmentOp3ATI((OpenTK.OpenGL.Enums.All)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod, (UInt32)arg3, (UInt32)arg3Rep, (UInt32)arg3Mod); } [System.CLSCompliant(false)] @@ -38300,35 +38311,35 @@ namespace OpenTK.OpenGL } public static - void PNTriangles(OpenTK.OpenGL.Enums.AtiPnTriangles pname, Int32 param) + void PNTriangles(OpenTK.OpenGL.Enums.All pname, Int32 param) { - Delegates.glPNTrianglesiATI((OpenTK.OpenGL.Enums.AtiPnTriangles)pname, (Int32)param); + Delegates.glPNTrianglesiATI((OpenTK.OpenGL.Enums.All)pname, (Int32)param); } public static - void PNTriangles(OpenTK.OpenGL.Enums.AtiPnTriangles pname, Single param) + void PNTriangles(OpenTK.OpenGL.Enums.All pname, Single param) { - Delegates.glPNTrianglesfATI((OpenTK.OpenGL.Enums.AtiPnTriangles)pname, (Single)param); + Delegates.glPNTrianglesfATI((OpenTK.OpenGL.Enums.All)pname, (Single)param); } public static - Int32 NewObjectBuffer(Int32 size, IntPtr pointer, OpenTK.OpenGL.Enums.AtiVertexArrayObject usage) + Int32 NewObjectBuffer(Int32 size, IntPtr pointer, OpenTK.OpenGL.Enums.All usage) { unsafe { - return Delegates.glNewObjectBufferATI((Int32)size, (IntPtr)pointer, (OpenTK.OpenGL.Enums.AtiVertexArrayObject)usage); + return Delegates.glNewObjectBufferATI((Int32)size, (IntPtr)pointer, (OpenTK.OpenGL.Enums.All)usage); } } public static - Int32 NewObjectBuffer(Int32 size, [In, Out] object pointer, OpenTK.OpenGL.Enums.AtiVertexArrayObject usage) + Int32 NewObjectBuffer(Int32 size, [In, Out] object pointer, OpenTK.OpenGL.Enums.All usage) { unsafe { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); try { - return Delegates.glNewObjectBufferATI((Int32)size, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (OpenTK.OpenGL.Enums.AtiVertexArrayObject)usage); + return Delegates.glNewObjectBufferATI((Int32)size, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (OpenTK.OpenGL.Enums.All)usage); } finally { @@ -38352,33 +38363,33 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void UpdateObjectBuffer(UInt32 buffer, UInt32 offset, Int32 size, IntPtr pointer, OpenTK.OpenGL.Enums.AtiVertexArrayObject preserve) + void UpdateObjectBuffer(UInt32 buffer, UInt32 offset, Int32 size, IntPtr pointer, OpenTK.OpenGL.Enums.All preserve) { unsafe { - Delegates.glUpdateObjectBufferATI((UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer, (OpenTK.OpenGL.Enums.AtiVertexArrayObject)preserve); + Delegates.glUpdateObjectBufferATI((UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer, (OpenTK.OpenGL.Enums.All)preserve); } } public static - void UpdateObjectBuffer(Int32 buffer, Int32 offset, Int32 size, IntPtr pointer, OpenTK.OpenGL.Enums.AtiVertexArrayObject preserve) + void UpdateObjectBuffer(Int32 buffer, Int32 offset, Int32 size, IntPtr pointer, OpenTK.OpenGL.Enums.All preserve) { unsafe { - Delegates.glUpdateObjectBufferATI((UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer, (OpenTK.OpenGL.Enums.AtiVertexArrayObject)preserve); + Delegates.glUpdateObjectBufferATI((UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer, (OpenTK.OpenGL.Enums.All)preserve); } } [System.CLSCompliant(false)] public static - void UpdateObjectBuffer(UInt32 buffer, UInt32 offset, Int32 size, [In, Out] object pointer, OpenTK.OpenGL.Enums.AtiVertexArrayObject preserve) + void UpdateObjectBuffer(UInt32 buffer, UInt32 offset, Int32 size, [In, Out] object pointer, OpenTK.OpenGL.Enums.All preserve) { unsafe { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glUpdateObjectBufferATI((UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (OpenTK.OpenGL.Enums.AtiVertexArrayObject)preserve); + Delegates.glUpdateObjectBufferATI((UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (OpenTK.OpenGL.Enums.All)preserve); } finally { @@ -38388,14 +38399,14 @@ namespace OpenTK.OpenGL } public static - void UpdateObjectBuffer(Int32 buffer, Int32 offset, Int32 size, [In, Out] object pointer, OpenTK.OpenGL.Enums.AtiVertexArrayObject preserve) + void UpdateObjectBuffer(Int32 buffer, Int32 offset, Int32 size, [In, Out] object pointer, OpenTK.OpenGL.Enums.All preserve) { unsafe { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glUpdateObjectBufferATI((UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (OpenTK.OpenGL.Enums.AtiVertexArrayObject)preserve); + Delegates.glUpdateObjectBufferATI((UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (OpenTK.OpenGL.Enums.All)preserve); } finally { @@ -38406,51 +38417,51 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetObjectBuffer(UInt32 buffer, OpenTK.OpenGL.Enums.AtiVertexArrayObject pname, [Out] Single[] @params) + void GetObjectBuffer(UInt32 buffer, OpenTK.OpenGL.Enums.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.OpenGL.Enums.AtiVertexArrayObject)pname, (Single*)@params_ptr); + Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); } } } public static - void GetObjectBuffer(Int32 buffer, OpenTK.OpenGL.Enums.AtiVertexArrayObject pname, [Out] Single[] @params) + void GetObjectBuffer(Int32 buffer, OpenTK.OpenGL.Enums.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.OpenGL.Enums.AtiVertexArrayObject)pname, (Single*)@params_ptr); + Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetObjectBuffer(UInt32 buffer, OpenTK.OpenGL.Enums.AtiVertexArrayObject pname, [Out] out Single @params) + void GetObjectBuffer(UInt32 buffer, OpenTK.OpenGL.Enums.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.OpenGL.Enums.AtiVertexArrayObject)pname, (Single*)@params_ptr); + Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } } public static - void GetObjectBuffer(Int32 buffer, OpenTK.OpenGL.Enums.AtiVertexArrayObject pname, [Out] out Single @params) + void GetObjectBuffer(Int32 buffer, OpenTK.OpenGL.Enums.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.OpenGL.Enums.AtiVertexArrayObject)pname, (Single*)@params_ptr); + Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -38458,65 +38469,65 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetObjectBuffer(UInt32 buffer, OpenTK.OpenGL.Enums.AtiVertexArrayObject pname, [Out] Single* @params) + unsafe void GetObjectBuffer(UInt32 buffer, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params) { - Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.OpenGL.Enums.AtiVertexArrayObject)pname, (Single*)@params); + Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetObjectBuffer(Int32 buffer, OpenTK.OpenGL.Enums.AtiVertexArrayObject pname, [Out] Single* @params) + unsafe void GetObjectBuffer(Int32 buffer, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params) { - Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.OpenGL.Enums.AtiVertexArrayObject)pname, (Single*)@params); + Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); } [System.CLSCompliant(false)] public static - void GetObjectBuffer(UInt32 buffer, OpenTK.OpenGL.Enums.AtiVertexArrayObject pname, [Out] Int32[] @params) + void GetObjectBuffer(UInt32 buffer, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.OpenGL.Enums.AtiVertexArrayObject)pname, (Int32*)@params_ptr); + Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); } } } public static - void GetObjectBuffer(Int32 buffer, OpenTK.OpenGL.Enums.AtiVertexArrayObject pname, [Out] Int32[] @params) + void GetObjectBuffer(Int32 buffer, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.OpenGL.Enums.AtiVertexArrayObject)pname, (Int32*)@params_ptr); + Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetObjectBuffer(UInt32 buffer, OpenTK.OpenGL.Enums.AtiVertexArrayObject pname, [Out] out Int32 @params) + void GetObjectBuffer(UInt32 buffer, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.OpenGL.Enums.AtiVertexArrayObject)pname, (Int32*)@params_ptr); + Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } } public static - void GetObjectBuffer(Int32 buffer, OpenTK.OpenGL.Enums.AtiVertexArrayObject pname, [Out] out Int32 @params) + void GetObjectBuffer(Int32 buffer, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.OpenGL.Enums.AtiVertexArrayObject)pname, (Int32*)@params_ptr); + Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -38524,16 +38535,16 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetObjectBuffer(UInt32 buffer, OpenTK.OpenGL.Enums.AtiVertexArrayObject pname, [Out] Int32* @params) + unsafe void GetObjectBuffer(UInt32 buffer, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) { - Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.OpenGL.Enums.AtiVertexArrayObject)pname, (Int32*)@params); + Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetObjectBuffer(Int32 buffer, OpenTK.OpenGL.Enums.AtiVertexArrayObject pname, [Out] Int32* @params) + unsafe void GetObjectBuffer(Int32 buffer, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) { - Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.OpenGL.Enums.AtiVertexArrayObject)pname, (Int32*)@params); + Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] @@ -38551,37 +38562,37 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ArrayObject(OpenTK.OpenGL.Enums.EnableCap array, Int32 size, OpenTK.OpenGL.Enums.AtiVertexArrayObject type, Int32 stride, UInt32 buffer, UInt32 offset) + void ArrayObject(OpenTK.OpenGL.Enums.EnableCap array, Int32 size, OpenTK.OpenGL.Enums.All type, Int32 stride, UInt32 buffer, UInt32 offset) { - Delegates.glArrayObjectATI((OpenTK.OpenGL.Enums.EnableCap)array, (Int32)size, (OpenTK.OpenGL.Enums.AtiVertexArrayObject)type, (Int32)stride, (UInt32)buffer, (UInt32)offset); + Delegates.glArrayObjectATI((OpenTK.OpenGL.Enums.EnableCap)array, (Int32)size, (OpenTK.OpenGL.Enums.All)type, (Int32)stride, (UInt32)buffer, (UInt32)offset); } public static - void ArrayObject(OpenTK.OpenGL.Enums.EnableCap array, Int32 size, OpenTK.OpenGL.Enums.AtiVertexArrayObject type, Int32 stride, Int32 buffer, Int32 offset) + void ArrayObject(OpenTK.OpenGL.Enums.EnableCap array, Int32 size, OpenTK.OpenGL.Enums.All type, Int32 stride, Int32 buffer, Int32 offset) { - Delegates.glArrayObjectATI((OpenTK.OpenGL.Enums.EnableCap)array, (Int32)size, (OpenTK.OpenGL.Enums.AtiVertexArrayObject)type, (Int32)stride, (UInt32)buffer, (UInt32)offset); + Delegates.glArrayObjectATI((OpenTK.OpenGL.Enums.EnableCap)array, (Int32)size, (OpenTK.OpenGL.Enums.All)type, (Int32)stride, (UInt32)buffer, (UInt32)offset); } public static - void GetArrayObject(OpenTK.OpenGL.Enums.EnableCap array, OpenTK.OpenGL.Enums.AtiVertexArrayObject pname, [Out] Single[] @params) + void GetArrayObject(OpenTK.OpenGL.Enums.EnableCap array, OpenTK.OpenGL.Enums.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetArrayObjectfvATI((OpenTK.OpenGL.Enums.EnableCap)array, (OpenTK.OpenGL.Enums.AtiVertexArrayObject)pname, (Single*)@params_ptr); + Delegates.glGetArrayObjectfvATI((OpenTK.OpenGL.Enums.EnableCap)array, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); } } } public static - void GetArrayObject(OpenTK.OpenGL.Enums.EnableCap array, OpenTK.OpenGL.Enums.AtiVertexArrayObject pname, [Out] out Single @params) + void GetArrayObject(OpenTK.OpenGL.Enums.EnableCap array, OpenTK.OpenGL.Enums.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetArrayObjectfvATI((OpenTK.OpenGL.Enums.EnableCap)array, (OpenTK.OpenGL.Enums.AtiVertexArrayObject)pname, (Single*)@params_ptr); + Delegates.glGetArrayObjectfvATI((OpenTK.OpenGL.Enums.EnableCap)array, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -38589,31 +38600,31 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetArrayObject(OpenTK.OpenGL.Enums.EnableCap array, OpenTK.OpenGL.Enums.AtiVertexArrayObject pname, [Out] Single* @params) + unsafe void GetArrayObject(OpenTK.OpenGL.Enums.EnableCap array, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params) { - Delegates.glGetArrayObjectfvATI((OpenTK.OpenGL.Enums.EnableCap)array, (OpenTK.OpenGL.Enums.AtiVertexArrayObject)pname, (Single*)@params); + Delegates.glGetArrayObjectfvATI((OpenTK.OpenGL.Enums.EnableCap)array, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); } public static - void GetArrayObject(OpenTK.OpenGL.Enums.EnableCap array, OpenTK.OpenGL.Enums.AtiVertexArrayObject pname, [Out] Int32[] @params) + void GetArrayObject(OpenTK.OpenGL.Enums.EnableCap array, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetArrayObjectivATI((OpenTK.OpenGL.Enums.EnableCap)array, (OpenTK.OpenGL.Enums.AtiVertexArrayObject)pname, (Int32*)@params_ptr); + Delegates.glGetArrayObjectivATI((OpenTK.OpenGL.Enums.EnableCap)array, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); } } } public static - void GetArrayObject(OpenTK.OpenGL.Enums.EnableCap array, OpenTK.OpenGL.Enums.AtiVertexArrayObject pname, [Out] out Int32 @params) + void GetArrayObject(OpenTK.OpenGL.Enums.EnableCap array, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetArrayObjectivATI((OpenTK.OpenGL.Enums.EnableCap)array, (OpenTK.OpenGL.Enums.AtiVertexArrayObject)pname, (Int32*)@params_ptr); + Delegates.glGetArrayObjectivATI((OpenTK.OpenGL.Enums.EnableCap)array, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -38621,71 +38632,71 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetArrayObject(OpenTK.OpenGL.Enums.EnableCap array, OpenTK.OpenGL.Enums.AtiVertexArrayObject pname, [Out] Int32* @params) + unsafe void GetArrayObject(OpenTK.OpenGL.Enums.EnableCap array, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) { - Delegates.glGetArrayObjectivATI((OpenTK.OpenGL.Enums.EnableCap)array, (OpenTK.OpenGL.Enums.AtiVertexArrayObject)pname, (Int32*)@params); + Delegates.glGetArrayObjectivATI((OpenTK.OpenGL.Enums.EnableCap)array, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - void VariantArrayObject(UInt32 id, OpenTK.OpenGL.Enums.AtiVertexArrayObject type, Int32 stride, UInt32 buffer, UInt32 offset) + void VariantArrayObject(UInt32 id, OpenTK.OpenGL.Enums.All type, Int32 stride, UInt32 buffer, UInt32 offset) { - Delegates.glVariantArrayObjectATI((UInt32)id, (OpenTK.OpenGL.Enums.AtiVertexArrayObject)type, (Int32)stride, (UInt32)buffer, (UInt32)offset); + Delegates.glVariantArrayObjectATI((UInt32)id, (OpenTK.OpenGL.Enums.All)type, (Int32)stride, (UInt32)buffer, (UInt32)offset); } public static - void VariantArrayObject(Int32 id, OpenTK.OpenGL.Enums.AtiVertexArrayObject type, Int32 stride, Int32 buffer, Int32 offset) + void VariantArrayObject(Int32 id, OpenTK.OpenGL.Enums.All type, Int32 stride, Int32 buffer, Int32 offset) { - Delegates.glVariantArrayObjectATI((UInt32)id, (OpenTK.OpenGL.Enums.AtiVertexArrayObject)type, (Int32)stride, (UInt32)buffer, (UInt32)offset); + Delegates.glVariantArrayObjectATI((UInt32)id, (OpenTK.OpenGL.Enums.All)type, (Int32)stride, (UInt32)buffer, (UInt32)offset); } [System.CLSCompliant(false)] public static - void GetVariantArrayObject(UInt32 id, OpenTK.OpenGL.Enums.AtiVertexArrayObject pname, [Out] Single[] @params) + void GetVariantArrayObject(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.OpenGL.Enums.AtiVertexArrayObject)pname, (Single*)@params_ptr); + Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); } } } public static - void GetVariantArrayObject(Int32 id, OpenTK.OpenGL.Enums.AtiVertexArrayObject pname, [Out] Single[] @params) + void GetVariantArrayObject(Int32 id, OpenTK.OpenGL.Enums.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.OpenGL.Enums.AtiVertexArrayObject)pname, (Single*)@params_ptr); + Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetVariantArrayObject(UInt32 id, OpenTK.OpenGL.Enums.AtiVertexArrayObject pname, [Out] out Single @params) + void GetVariantArrayObject(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.OpenGL.Enums.AtiVertexArrayObject)pname, (Single*)@params_ptr); + Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } } public static - void GetVariantArrayObject(Int32 id, OpenTK.OpenGL.Enums.AtiVertexArrayObject pname, [Out] out Single @params) + void GetVariantArrayObject(Int32 id, OpenTK.OpenGL.Enums.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.OpenGL.Enums.AtiVertexArrayObject)pname, (Single*)@params_ptr); + Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -38693,65 +38704,65 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVariantArrayObject(UInt32 id, OpenTK.OpenGL.Enums.AtiVertexArrayObject pname, [Out] Single* @params) + unsafe void GetVariantArrayObject(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params) { - Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.OpenGL.Enums.AtiVertexArrayObject)pname, (Single*)@params); + Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetVariantArrayObject(Int32 id, OpenTK.OpenGL.Enums.AtiVertexArrayObject pname, [Out] Single* @params) + unsafe void GetVariantArrayObject(Int32 id, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params) { - Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.OpenGL.Enums.AtiVertexArrayObject)pname, (Single*)@params); + Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); } [System.CLSCompliant(false)] public static - void GetVariantArrayObject(UInt32 id, OpenTK.OpenGL.Enums.AtiVertexArrayObject pname, [Out] Int32[] @params) + void GetVariantArrayObject(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.OpenGL.Enums.AtiVertexArrayObject)pname, (Int32*)@params_ptr); + Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); } } } public static - void GetVariantArrayObject(Int32 id, OpenTK.OpenGL.Enums.AtiVertexArrayObject pname, [Out] Int32[] @params) + void GetVariantArrayObject(Int32 id, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.OpenGL.Enums.AtiVertexArrayObject)pname, (Int32*)@params_ptr); + Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetVariantArrayObject(UInt32 id, OpenTK.OpenGL.Enums.AtiVertexArrayObject pname, [Out] out Int32 @params) + void GetVariantArrayObject(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.OpenGL.Enums.AtiVertexArrayObject)pname, (Int32*)@params_ptr); + Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } } public static - void GetVariantArrayObject(Int32 id, OpenTK.OpenGL.Enums.AtiVertexArrayObject pname, [Out] out Int32 @params) + void GetVariantArrayObject(Int32 id, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.OpenGL.Enums.AtiVertexArrayObject)pname, (Int32*)@params_ptr); + Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -38759,871 +38770,871 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVariantArrayObject(UInt32 id, OpenTK.OpenGL.Enums.AtiVertexArrayObject pname, [Out] Int32* @params) + unsafe void GetVariantArrayObject(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) { - Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.OpenGL.Enums.AtiVertexArrayObject)pname, (Int32*)@params); + Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetVariantArrayObject(Int32 id, OpenTK.OpenGL.Enums.AtiVertexArrayObject pname, [Out] Int32* @params) + unsafe void GetVariantArrayObject(Int32 id, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) { - Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.OpenGL.Enums.AtiVertexArrayObject)pname, (Int32*)@params); + Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); } public static - void VertexStream1(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int16 x) + void VertexStream1(OpenTK.OpenGL.Enums.All stream, Int16 x) { - Delegates.glVertexStream1sATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int16)x); + Delegates.glVertexStream1sATI((OpenTK.OpenGL.Enums.All)stream, (Int16)x); } public static - void VertexStream1v(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int16[] coords) + void VertexStream1v(OpenTK.OpenGL.Enums.All stream, Int16[] coords) { unsafe { fixed (Int16* coords_ptr = coords) { - Delegates.glVertexStream1svATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int16*)coords_ptr); + Delegates.glVertexStream1svATI((OpenTK.OpenGL.Enums.All)stream, (Int16*)coords_ptr); } } } public static - void VertexStream1v(OpenTK.OpenGL.Enums.AtiVertexStreams stream, ref Int16 coords) + void VertexStream1v(OpenTK.OpenGL.Enums.All stream, ref Int16 coords) { unsafe { fixed (Int16* coords_ptr = &coords) { - Delegates.glVertexStream1svATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int16*)coords_ptr); + Delegates.glVertexStream1svATI((OpenTK.OpenGL.Enums.All)stream, (Int16*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void VertexStream1v(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int16* coords) + unsafe void VertexStream1v(OpenTK.OpenGL.Enums.All stream, Int16* coords) { - Delegates.glVertexStream1svATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int16*)coords); + Delegates.glVertexStream1svATI((OpenTK.OpenGL.Enums.All)stream, (Int16*)coords); } public static - void VertexStream1(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int32 x) + void VertexStream1(OpenTK.OpenGL.Enums.All stream, Int32 x) { - Delegates.glVertexStream1iATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int32)x); + Delegates.glVertexStream1iATI((OpenTK.OpenGL.Enums.All)stream, (Int32)x); } public static - void VertexStream1v(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int32[] coords) + void VertexStream1v(OpenTK.OpenGL.Enums.All stream, Int32[] coords) { unsafe { fixed (Int32* coords_ptr = coords) { - Delegates.glVertexStream1ivATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int32*)coords_ptr); + Delegates.glVertexStream1ivATI((OpenTK.OpenGL.Enums.All)stream, (Int32*)coords_ptr); } } } public static - void VertexStream1v(OpenTK.OpenGL.Enums.AtiVertexStreams stream, ref Int32 coords) + void VertexStream1v(OpenTK.OpenGL.Enums.All stream, ref Int32 coords) { unsafe { fixed (Int32* coords_ptr = &coords) { - Delegates.glVertexStream1ivATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int32*)coords_ptr); + Delegates.glVertexStream1ivATI((OpenTK.OpenGL.Enums.All)stream, (Int32*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void VertexStream1v(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int32* coords) + unsafe void VertexStream1v(OpenTK.OpenGL.Enums.All stream, Int32* coords) { - Delegates.glVertexStream1ivATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int32*)coords); + Delegates.glVertexStream1ivATI((OpenTK.OpenGL.Enums.All)stream, (Int32*)coords); } public static - void VertexStream1(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Single x) + void VertexStream1(OpenTK.OpenGL.Enums.All stream, Single x) { - Delegates.glVertexStream1fATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Single)x); + Delegates.glVertexStream1fATI((OpenTK.OpenGL.Enums.All)stream, (Single)x); } public static - void VertexStream1v(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Single[] coords) + void VertexStream1v(OpenTK.OpenGL.Enums.All stream, Single[] coords) { unsafe { fixed (Single* coords_ptr = coords) { - Delegates.glVertexStream1fvATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Single*)coords_ptr); + Delegates.glVertexStream1fvATI((OpenTK.OpenGL.Enums.All)stream, (Single*)coords_ptr); } } } public static - void VertexStream1v(OpenTK.OpenGL.Enums.AtiVertexStreams stream, ref Single coords) + void VertexStream1v(OpenTK.OpenGL.Enums.All stream, ref Single coords) { unsafe { fixed (Single* coords_ptr = &coords) { - Delegates.glVertexStream1fvATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Single*)coords_ptr); + Delegates.glVertexStream1fvATI((OpenTK.OpenGL.Enums.All)stream, (Single*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void VertexStream1v(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Single* coords) + unsafe void VertexStream1v(OpenTK.OpenGL.Enums.All stream, Single* coords) { - Delegates.glVertexStream1fvATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Single*)coords); + Delegates.glVertexStream1fvATI((OpenTK.OpenGL.Enums.All)stream, (Single*)coords); } public static - void VertexStream1(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Double x) + void VertexStream1(OpenTK.OpenGL.Enums.All stream, Double x) { - Delegates.glVertexStream1dATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Double)x); + Delegates.glVertexStream1dATI((OpenTK.OpenGL.Enums.All)stream, (Double)x); } public static - void VertexStream1v(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Double[] coords) + void VertexStream1v(OpenTK.OpenGL.Enums.All stream, Double[] coords) { unsafe { fixed (Double* coords_ptr = coords) { - Delegates.glVertexStream1dvATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Double*)coords_ptr); + Delegates.glVertexStream1dvATI((OpenTK.OpenGL.Enums.All)stream, (Double*)coords_ptr); } } } public static - void VertexStream1v(OpenTK.OpenGL.Enums.AtiVertexStreams stream, ref Double coords) + void VertexStream1v(OpenTK.OpenGL.Enums.All stream, ref Double coords) { unsafe { fixed (Double* coords_ptr = &coords) { - Delegates.glVertexStream1dvATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Double*)coords_ptr); + Delegates.glVertexStream1dvATI((OpenTK.OpenGL.Enums.All)stream, (Double*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void VertexStream1v(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Double* coords) + unsafe void VertexStream1v(OpenTK.OpenGL.Enums.All stream, Double* coords) { - Delegates.glVertexStream1dvATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Double*)coords); + Delegates.glVertexStream1dvATI((OpenTK.OpenGL.Enums.All)stream, (Double*)coords); } public static - void VertexStream2(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int16 x, Int16 y) + void VertexStream2(OpenTK.OpenGL.Enums.All stream, Int16 x, Int16 y) { - Delegates.glVertexStream2sATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int16)x, (Int16)y); + Delegates.glVertexStream2sATI((OpenTK.OpenGL.Enums.All)stream, (Int16)x, (Int16)y); } public static - void VertexStream2(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int16[] coords) + void VertexStream2(OpenTK.OpenGL.Enums.All stream, Int16[] coords) { unsafe { fixed (Int16* coords_ptr = coords) { - Delegates.glVertexStream2svATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int16*)coords_ptr); + Delegates.glVertexStream2svATI((OpenTK.OpenGL.Enums.All)stream, (Int16*)coords_ptr); } } } public static - void VertexStream2(OpenTK.OpenGL.Enums.AtiVertexStreams stream, ref Int16 coords) + void VertexStream2(OpenTK.OpenGL.Enums.All stream, ref Int16 coords) { unsafe { fixed (Int16* coords_ptr = &coords) { - Delegates.glVertexStream2svATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int16*)coords_ptr); + Delegates.glVertexStream2svATI((OpenTK.OpenGL.Enums.All)stream, (Int16*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void VertexStream2(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int16* coords) + unsafe void VertexStream2(OpenTK.OpenGL.Enums.All stream, Int16* coords) { - Delegates.glVertexStream2svATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int16*)coords); + Delegates.glVertexStream2svATI((OpenTK.OpenGL.Enums.All)stream, (Int16*)coords); } public static - void VertexStream2(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int32 x, Int32 y) + void VertexStream2(OpenTK.OpenGL.Enums.All stream, Int32 x, Int32 y) { - Delegates.glVertexStream2iATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int32)x, (Int32)y); + Delegates.glVertexStream2iATI((OpenTK.OpenGL.Enums.All)stream, (Int32)x, (Int32)y); } public static - void VertexStream2(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int32[] coords) + void VertexStream2(OpenTK.OpenGL.Enums.All stream, Int32[] coords) { unsafe { fixed (Int32* coords_ptr = coords) { - Delegates.glVertexStream2ivATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int32*)coords_ptr); + Delegates.glVertexStream2ivATI((OpenTK.OpenGL.Enums.All)stream, (Int32*)coords_ptr); } } } public static - void VertexStream2(OpenTK.OpenGL.Enums.AtiVertexStreams stream, ref Int32 coords) + void VertexStream2(OpenTK.OpenGL.Enums.All stream, ref Int32 coords) { unsafe { fixed (Int32* coords_ptr = &coords) { - Delegates.glVertexStream2ivATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int32*)coords_ptr); + Delegates.glVertexStream2ivATI((OpenTK.OpenGL.Enums.All)stream, (Int32*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void VertexStream2(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int32* coords) + unsafe void VertexStream2(OpenTK.OpenGL.Enums.All stream, Int32* coords) { - Delegates.glVertexStream2ivATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int32*)coords); + Delegates.glVertexStream2ivATI((OpenTK.OpenGL.Enums.All)stream, (Int32*)coords); } public static - void VertexStream2(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Single x, Single y) + void VertexStream2(OpenTK.OpenGL.Enums.All stream, Single x, Single y) { - Delegates.glVertexStream2fATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Single)x, (Single)y); + Delegates.glVertexStream2fATI((OpenTK.OpenGL.Enums.All)stream, (Single)x, (Single)y); } public static - void VertexStream2(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Single[] coords) + void VertexStream2(OpenTK.OpenGL.Enums.All stream, Single[] coords) { unsafe { fixed (Single* coords_ptr = coords) { - Delegates.glVertexStream2fvATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Single*)coords_ptr); + Delegates.glVertexStream2fvATI((OpenTK.OpenGL.Enums.All)stream, (Single*)coords_ptr); } } } public static - void VertexStream2(OpenTK.OpenGL.Enums.AtiVertexStreams stream, ref Single coords) + void VertexStream2(OpenTK.OpenGL.Enums.All stream, ref Single coords) { unsafe { fixed (Single* coords_ptr = &coords) { - Delegates.glVertexStream2fvATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Single*)coords_ptr); + Delegates.glVertexStream2fvATI((OpenTK.OpenGL.Enums.All)stream, (Single*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void VertexStream2(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Single* coords) + unsafe void VertexStream2(OpenTK.OpenGL.Enums.All stream, Single* coords) { - Delegates.glVertexStream2fvATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Single*)coords); + Delegates.glVertexStream2fvATI((OpenTK.OpenGL.Enums.All)stream, (Single*)coords); } public static - void VertexStream2(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Double x, Double y) + void VertexStream2(OpenTK.OpenGL.Enums.All stream, Double x, Double y) { - Delegates.glVertexStream2dATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Double)x, (Double)y); + Delegates.glVertexStream2dATI((OpenTK.OpenGL.Enums.All)stream, (Double)x, (Double)y); } public static - void VertexStream2(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Double[] coords) + void VertexStream2(OpenTK.OpenGL.Enums.All stream, Double[] coords) { unsafe { fixed (Double* coords_ptr = coords) { - Delegates.glVertexStream2dvATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Double*)coords_ptr); + Delegates.glVertexStream2dvATI((OpenTK.OpenGL.Enums.All)stream, (Double*)coords_ptr); } } } public static - void VertexStream2(OpenTK.OpenGL.Enums.AtiVertexStreams stream, ref Double coords) + void VertexStream2(OpenTK.OpenGL.Enums.All stream, ref Double coords) { unsafe { fixed (Double* coords_ptr = &coords) { - Delegates.glVertexStream2dvATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Double*)coords_ptr); + Delegates.glVertexStream2dvATI((OpenTK.OpenGL.Enums.All)stream, (Double*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void VertexStream2(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Double* coords) + unsafe void VertexStream2(OpenTK.OpenGL.Enums.All stream, Double* coords) { - Delegates.glVertexStream2dvATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Double*)coords); + Delegates.glVertexStream2dvATI((OpenTK.OpenGL.Enums.All)stream, (Double*)coords); } public static - void VertexStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int16 x, Int16 y, Int16 z) + void VertexStream3(OpenTK.OpenGL.Enums.All stream, Int16 x, Int16 y, Int16 z) { - Delegates.glVertexStream3sATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int16)x, (Int16)y, (Int16)z); + Delegates.glVertexStream3sATI((OpenTK.OpenGL.Enums.All)stream, (Int16)x, (Int16)y, (Int16)z); } public static - void VertexStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int16[] coords) + void VertexStream3(OpenTK.OpenGL.Enums.All stream, Int16[] coords) { unsafe { fixed (Int16* coords_ptr = coords) { - Delegates.glVertexStream3svATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int16*)coords_ptr); + Delegates.glVertexStream3svATI((OpenTK.OpenGL.Enums.All)stream, (Int16*)coords_ptr); } } } public static - void VertexStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, ref Int16 coords) + void VertexStream3(OpenTK.OpenGL.Enums.All stream, ref Int16 coords) { unsafe { fixed (Int16* coords_ptr = &coords) { - Delegates.glVertexStream3svATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int16*)coords_ptr); + Delegates.glVertexStream3svATI((OpenTK.OpenGL.Enums.All)stream, (Int16*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void VertexStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int16* coords) + unsafe void VertexStream3(OpenTK.OpenGL.Enums.All stream, Int16* coords) { - Delegates.glVertexStream3svATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int16*)coords); + Delegates.glVertexStream3svATI((OpenTK.OpenGL.Enums.All)stream, (Int16*)coords); } public static - void VertexStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int32 x, Int32 y, Int32 z) + void VertexStream3(OpenTK.OpenGL.Enums.All stream, Int32 x, Int32 y, Int32 z) { - Delegates.glVertexStream3iATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int32)x, (Int32)y, (Int32)z); + Delegates.glVertexStream3iATI((OpenTK.OpenGL.Enums.All)stream, (Int32)x, (Int32)y, (Int32)z); } public static - void VertexStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int32[] coords) + void VertexStream3(OpenTK.OpenGL.Enums.All stream, Int32[] coords) { unsafe { fixed (Int32* coords_ptr = coords) { - Delegates.glVertexStream3ivATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int32*)coords_ptr); + Delegates.glVertexStream3ivATI((OpenTK.OpenGL.Enums.All)stream, (Int32*)coords_ptr); } } } public static - void VertexStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, ref Int32 coords) + void VertexStream3(OpenTK.OpenGL.Enums.All stream, ref Int32 coords) { unsafe { fixed (Int32* coords_ptr = &coords) { - Delegates.glVertexStream3ivATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int32*)coords_ptr); + Delegates.glVertexStream3ivATI((OpenTK.OpenGL.Enums.All)stream, (Int32*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void VertexStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int32* coords) + unsafe void VertexStream3(OpenTK.OpenGL.Enums.All stream, Int32* coords) { - Delegates.glVertexStream3ivATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int32*)coords); + Delegates.glVertexStream3ivATI((OpenTK.OpenGL.Enums.All)stream, (Int32*)coords); } public static - void VertexStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Single x, Single y, Single z) + void VertexStream3(OpenTK.OpenGL.Enums.All stream, Single x, Single y, Single z) { - Delegates.glVertexStream3fATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Single)x, (Single)y, (Single)z); + Delegates.glVertexStream3fATI((OpenTK.OpenGL.Enums.All)stream, (Single)x, (Single)y, (Single)z); } public static - void VertexStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Single[] coords) + void VertexStream3(OpenTK.OpenGL.Enums.All stream, Single[] coords) { unsafe { fixed (Single* coords_ptr = coords) { - Delegates.glVertexStream3fvATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Single*)coords_ptr); + Delegates.glVertexStream3fvATI((OpenTK.OpenGL.Enums.All)stream, (Single*)coords_ptr); } } } public static - void VertexStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, ref Single coords) + void VertexStream3(OpenTK.OpenGL.Enums.All stream, ref Single coords) { unsafe { fixed (Single* coords_ptr = &coords) { - Delegates.glVertexStream3fvATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Single*)coords_ptr); + Delegates.glVertexStream3fvATI((OpenTK.OpenGL.Enums.All)stream, (Single*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void VertexStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Single* coords) + unsafe void VertexStream3(OpenTK.OpenGL.Enums.All stream, Single* coords) { - Delegates.glVertexStream3fvATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Single*)coords); + Delegates.glVertexStream3fvATI((OpenTK.OpenGL.Enums.All)stream, (Single*)coords); } public static - void VertexStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Double x, Double y, Double z) + void VertexStream3(OpenTK.OpenGL.Enums.All stream, Double x, Double y, Double z) { - Delegates.glVertexStream3dATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Double)x, (Double)y, (Double)z); + Delegates.glVertexStream3dATI((OpenTK.OpenGL.Enums.All)stream, (Double)x, (Double)y, (Double)z); } public static - void VertexStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Double[] coords) + void VertexStream3(OpenTK.OpenGL.Enums.All stream, Double[] coords) { unsafe { fixed (Double* coords_ptr = coords) { - Delegates.glVertexStream3dvATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Double*)coords_ptr); + Delegates.glVertexStream3dvATI((OpenTK.OpenGL.Enums.All)stream, (Double*)coords_ptr); } } } public static - void VertexStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, ref Double coords) + void VertexStream3(OpenTK.OpenGL.Enums.All stream, ref Double coords) { unsafe { fixed (Double* coords_ptr = &coords) { - Delegates.glVertexStream3dvATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Double*)coords_ptr); + Delegates.glVertexStream3dvATI((OpenTK.OpenGL.Enums.All)stream, (Double*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void VertexStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Double* coords) + unsafe void VertexStream3(OpenTK.OpenGL.Enums.All stream, Double* coords) { - Delegates.glVertexStream3dvATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Double*)coords); + Delegates.glVertexStream3dvATI((OpenTK.OpenGL.Enums.All)stream, (Double*)coords); } public static - void VertexStream4(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int16 x, Int16 y, Int16 z, Int16 w) + void VertexStream4(OpenTK.OpenGL.Enums.All stream, Int16 x, Int16 y, Int16 z, Int16 w) { - Delegates.glVertexStream4sATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int16)x, (Int16)y, (Int16)z, (Int16)w); + Delegates.glVertexStream4sATI((OpenTK.OpenGL.Enums.All)stream, (Int16)x, (Int16)y, (Int16)z, (Int16)w); } public static - void VertexStream4(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int16[] coords) + void VertexStream4(OpenTK.OpenGL.Enums.All stream, Int16[] coords) { unsafe { fixed (Int16* coords_ptr = coords) { - Delegates.glVertexStream4svATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int16*)coords_ptr); + Delegates.glVertexStream4svATI((OpenTK.OpenGL.Enums.All)stream, (Int16*)coords_ptr); } } } public static - void VertexStream4(OpenTK.OpenGL.Enums.AtiVertexStreams stream, ref Int16 coords) + void VertexStream4(OpenTK.OpenGL.Enums.All stream, ref Int16 coords) { unsafe { fixed (Int16* coords_ptr = &coords) { - Delegates.glVertexStream4svATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int16*)coords_ptr); + Delegates.glVertexStream4svATI((OpenTK.OpenGL.Enums.All)stream, (Int16*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void VertexStream4(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int16* coords) + unsafe void VertexStream4(OpenTK.OpenGL.Enums.All stream, Int16* coords) { - Delegates.glVertexStream4svATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int16*)coords); + Delegates.glVertexStream4svATI((OpenTK.OpenGL.Enums.All)stream, (Int16*)coords); } public static - void VertexStream4(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int32 x, Int32 y, Int32 z, Int32 w) + void VertexStream4(OpenTK.OpenGL.Enums.All stream, Int32 x, Int32 y, Int32 z, Int32 w) { - Delegates.glVertexStream4iATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int32)x, (Int32)y, (Int32)z, (Int32)w); + Delegates.glVertexStream4iATI((OpenTK.OpenGL.Enums.All)stream, (Int32)x, (Int32)y, (Int32)z, (Int32)w); } public static - void VertexStream4(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int32[] coords) + void VertexStream4(OpenTK.OpenGL.Enums.All stream, Int32[] coords) { unsafe { fixed (Int32* coords_ptr = coords) { - Delegates.glVertexStream4ivATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int32*)coords_ptr); + Delegates.glVertexStream4ivATI((OpenTK.OpenGL.Enums.All)stream, (Int32*)coords_ptr); } } } public static - void VertexStream4(OpenTK.OpenGL.Enums.AtiVertexStreams stream, ref Int32 coords) + void VertexStream4(OpenTK.OpenGL.Enums.All stream, ref Int32 coords) { unsafe { fixed (Int32* coords_ptr = &coords) { - Delegates.glVertexStream4ivATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int32*)coords_ptr); + Delegates.glVertexStream4ivATI((OpenTK.OpenGL.Enums.All)stream, (Int32*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void VertexStream4(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int32* coords) + unsafe void VertexStream4(OpenTK.OpenGL.Enums.All stream, Int32* coords) { - Delegates.glVertexStream4ivATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int32*)coords); + Delegates.glVertexStream4ivATI((OpenTK.OpenGL.Enums.All)stream, (Int32*)coords); } public static - void VertexStream4(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Single x, Single y, Single z, Single w) + void VertexStream4(OpenTK.OpenGL.Enums.All stream, Single x, Single y, Single z, Single w) { - Delegates.glVertexStream4fATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Single)x, (Single)y, (Single)z, (Single)w); + Delegates.glVertexStream4fATI((OpenTK.OpenGL.Enums.All)stream, (Single)x, (Single)y, (Single)z, (Single)w); } public static - void VertexStream4(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Single[] coords) + void VertexStream4(OpenTK.OpenGL.Enums.All stream, Single[] coords) { unsafe { fixed (Single* coords_ptr = coords) { - Delegates.glVertexStream4fvATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Single*)coords_ptr); + Delegates.glVertexStream4fvATI((OpenTK.OpenGL.Enums.All)stream, (Single*)coords_ptr); } } } public static - void VertexStream4(OpenTK.OpenGL.Enums.AtiVertexStreams stream, ref Single coords) + void VertexStream4(OpenTK.OpenGL.Enums.All stream, ref Single coords) { unsafe { fixed (Single* coords_ptr = &coords) { - Delegates.glVertexStream4fvATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Single*)coords_ptr); + Delegates.glVertexStream4fvATI((OpenTK.OpenGL.Enums.All)stream, (Single*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void VertexStream4(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Single* coords) + unsafe void VertexStream4(OpenTK.OpenGL.Enums.All stream, Single* coords) { - Delegates.glVertexStream4fvATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Single*)coords); + Delegates.glVertexStream4fvATI((OpenTK.OpenGL.Enums.All)stream, (Single*)coords); } public static - void VertexStream4(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Double x, Double y, Double z, Double w) + void VertexStream4(OpenTK.OpenGL.Enums.All stream, Double x, Double y, Double z, Double w) { - Delegates.glVertexStream4dATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Double)x, (Double)y, (Double)z, (Double)w); + Delegates.glVertexStream4dATI((OpenTK.OpenGL.Enums.All)stream, (Double)x, (Double)y, (Double)z, (Double)w); } public static - void VertexStream4(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Double[] coords) + void VertexStream4(OpenTK.OpenGL.Enums.All stream, Double[] coords) { unsafe { fixed (Double* coords_ptr = coords) { - Delegates.glVertexStream4dvATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Double*)coords_ptr); + Delegates.glVertexStream4dvATI((OpenTK.OpenGL.Enums.All)stream, (Double*)coords_ptr); } } } public static - void VertexStream4(OpenTK.OpenGL.Enums.AtiVertexStreams stream, ref Double coords) + void VertexStream4(OpenTK.OpenGL.Enums.All stream, ref Double coords) { unsafe { fixed (Double* coords_ptr = &coords) { - Delegates.glVertexStream4dvATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Double*)coords_ptr); + Delegates.glVertexStream4dvATI((OpenTK.OpenGL.Enums.All)stream, (Double*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void VertexStream4(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Double* coords) + unsafe void VertexStream4(OpenTK.OpenGL.Enums.All stream, Double* coords) { - Delegates.glVertexStream4dvATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Double*)coords); + Delegates.glVertexStream4dvATI((OpenTK.OpenGL.Enums.All)stream, (Double*)coords); } [System.CLSCompliant(false)] public static - void NormalStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, SByte nx, SByte ny, SByte nz) + void NormalStream3(OpenTK.OpenGL.Enums.All stream, SByte nx, SByte ny, SByte nz) { - Delegates.glNormalStream3bATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (SByte)nx, (SByte)ny, (SByte)nz); + Delegates.glNormalStream3bATI((OpenTK.OpenGL.Enums.All)stream, (SByte)nx, (SByte)ny, (SByte)nz); } public static - void NormalStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Byte nx, Byte ny, Byte nz) + void NormalStream3(OpenTK.OpenGL.Enums.All stream, Byte nx, Byte ny, Byte nz) { - Delegates.glNormalStream3bATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (SByte)nx, (SByte)ny, (SByte)nz); + Delegates.glNormalStream3bATI((OpenTK.OpenGL.Enums.All)stream, (SByte)nx, (SByte)ny, (SByte)nz); } [System.CLSCompliant(false)] public static - void NormalStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, SByte[] coords) + void NormalStream3(OpenTK.OpenGL.Enums.All stream, SByte[] coords) { unsafe { fixed (SByte* coords_ptr = coords) { - Delegates.glNormalStream3bvATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (SByte*)coords_ptr); + Delegates.glNormalStream3bvATI((OpenTK.OpenGL.Enums.All)stream, (SByte*)coords_ptr); } } } public static - void NormalStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Byte[] coords) + void NormalStream3(OpenTK.OpenGL.Enums.All stream, Byte[] coords) { unsafe { fixed (Byte* coords_ptr = coords) { - Delegates.glNormalStream3bvATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (SByte*)coords_ptr); + Delegates.glNormalStream3bvATI((OpenTK.OpenGL.Enums.All)stream, (SByte*)coords_ptr); } } } [System.CLSCompliant(false)] public static - void NormalStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, ref SByte coords) + void NormalStream3(OpenTK.OpenGL.Enums.All stream, ref SByte coords) { unsafe { fixed (SByte* coords_ptr = &coords) { - Delegates.glNormalStream3bvATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (SByte*)coords_ptr); + Delegates.glNormalStream3bvATI((OpenTK.OpenGL.Enums.All)stream, (SByte*)coords_ptr); } } } public static - void NormalStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, ref Byte coords) + void NormalStream3(OpenTK.OpenGL.Enums.All stream, ref Byte coords) { unsafe { fixed (Byte* coords_ptr = &coords) { - Delegates.glNormalStream3bvATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (SByte*)coords_ptr); + Delegates.glNormalStream3bvATI((OpenTK.OpenGL.Enums.All)stream, (SByte*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void NormalStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, SByte* coords) + unsafe void NormalStream3(OpenTK.OpenGL.Enums.All stream, SByte* coords) { - Delegates.glNormalStream3bvATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (SByte*)coords); + Delegates.glNormalStream3bvATI((OpenTK.OpenGL.Enums.All)stream, (SByte*)coords); } [System.CLSCompliant(false)] public static - unsafe void NormalStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Byte* coords) + unsafe void NormalStream3(OpenTK.OpenGL.Enums.All stream, Byte* coords) { - Delegates.glNormalStream3bvATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (SByte*)coords); + Delegates.glNormalStream3bvATI((OpenTK.OpenGL.Enums.All)stream, (SByte*)coords); } public static - void NormalStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int16 nx, Int16 ny, Int16 nz) + void NormalStream3(OpenTK.OpenGL.Enums.All stream, Int16 nx, Int16 ny, Int16 nz) { - Delegates.glNormalStream3sATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int16)nx, (Int16)ny, (Int16)nz); + Delegates.glNormalStream3sATI((OpenTK.OpenGL.Enums.All)stream, (Int16)nx, (Int16)ny, (Int16)nz); } public static - void NormalStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int16[] coords) + void NormalStream3(OpenTK.OpenGL.Enums.All stream, Int16[] coords) { unsafe { fixed (Int16* coords_ptr = coords) { - Delegates.glNormalStream3svATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int16*)coords_ptr); + Delegates.glNormalStream3svATI((OpenTK.OpenGL.Enums.All)stream, (Int16*)coords_ptr); } } } public static - void NormalStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, ref Int16 coords) + void NormalStream3(OpenTK.OpenGL.Enums.All stream, ref Int16 coords) { unsafe { fixed (Int16* coords_ptr = &coords) { - Delegates.glNormalStream3svATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int16*)coords_ptr); + Delegates.glNormalStream3svATI((OpenTK.OpenGL.Enums.All)stream, (Int16*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void NormalStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int16* coords) + unsafe void NormalStream3(OpenTK.OpenGL.Enums.All stream, Int16* coords) { - Delegates.glNormalStream3svATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int16*)coords); + Delegates.glNormalStream3svATI((OpenTK.OpenGL.Enums.All)stream, (Int16*)coords); } public static - void NormalStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int32 nx, Int32 ny, Int32 nz) + void NormalStream3(OpenTK.OpenGL.Enums.All stream, Int32 nx, Int32 ny, Int32 nz) { - Delegates.glNormalStream3iATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int32)nx, (Int32)ny, (Int32)nz); + Delegates.glNormalStream3iATI((OpenTK.OpenGL.Enums.All)stream, (Int32)nx, (Int32)ny, (Int32)nz); } public static - void NormalStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int32[] coords) + void NormalStream3(OpenTK.OpenGL.Enums.All stream, Int32[] coords) { unsafe { fixed (Int32* coords_ptr = coords) { - Delegates.glNormalStream3ivATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int32*)coords_ptr); + Delegates.glNormalStream3ivATI((OpenTK.OpenGL.Enums.All)stream, (Int32*)coords_ptr); } } } public static - void NormalStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, ref Int32 coords) + void NormalStream3(OpenTK.OpenGL.Enums.All stream, ref Int32 coords) { unsafe { fixed (Int32* coords_ptr = &coords) { - Delegates.glNormalStream3ivATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int32*)coords_ptr); + Delegates.glNormalStream3ivATI((OpenTK.OpenGL.Enums.All)stream, (Int32*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void NormalStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int32* coords) + unsafe void NormalStream3(OpenTK.OpenGL.Enums.All stream, Int32* coords) { - Delegates.glNormalStream3ivATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Int32*)coords); + Delegates.glNormalStream3ivATI((OpenTK.OpenGL.Enums.All)stream, (Int32*)coords); } public static - void NormalStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Single nx, Single ny, Single nz) + void NormalStream3(OpenTK.OpenGL.Enums.All stream, Single nx, Single ny, Single nz) { - Delegates.glNormalStream3fATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Single)nx, (Single)ny, (Single)nz); + Delegates.glNormalStream3fATI((OpenTK.OpenGL.Enums.All)stream, (Single)nx, (Single)ny, (Single)nz); } public static - void NormalStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Single[] coords) + void NormalStream3(OpenTK.OpenGL.Enums.All stream, Single[] coords) { unsafe { fixed (Single* coords_ptr = coords) { - Delegates.glNormalStream3fvATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Single*)coords_ptr); + Delegates.glNormalStream3fvATI((OpenTK.OpenGL.Enums.All)stream, (Single*)coords_ptr); } } } public static - void NormalStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, ref Single coords) + void NormalStream3(OpenTK.OpenGL.Enums.All stream, ref Single coords) { unsafe { fixed (Single* coords_ptr = &coords) { - Delegates.glNormalStream3fvATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Single*)coords_ptr); + Delegates.glNormalStream3fvATI((OpenTK.OpenGL.Enums.All)stream, (Single*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void NormalStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Single* coords) + unsafe void NormalStream3(OpenTK.OpenGL.Enums.All stream, Single* coords) { - Delegates.glNormalStream3fvATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Single*)coords); + Delegates.glNormalStream3fvATI((OpenTK.OpenGL.Enums.All)stream, (Single*)coords); } public static - void NormalStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Double nx, Double ny, Double nz) + void NormalStream3(OpenTK.OpenGL.Enums.All stream, Double nx, Double ny, Double nz) { - Delegates.glNormalStream3dATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Double)nx, (Double)ny, (Double)nz); + Delegates.glNormalStream3dATI((OpenTK.OpenGL.Enums.All)stream, (Double)nx, (Double)ny, (Double)nz); } public static - void NormalStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Double[] coords) + void NormalStream3(OpenTK.OpenGL.Enums.All stream, Double[] coords) { unsafe { fixed (Double* coords_ptr = coords) { - Delegates.glNormalStream3dvATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Double*)coords_ptr); + Delegates.glNormalStream3dvATI((OpenTK.OpenGL.Enums.All)stream, (Double*)coords_ptr); } } } public static - void NormalStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, ref Double coords) + void NormalStream3(OpenTK.OpenGL.Enums.All stream, ref Double coords) { unsafe { fixed (Double* coords_ptr = &coords) { - Delegates.glNormalStream3dvATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Double*)coords_ptr); + Delegates.glNormalStream3dvATI((OpenTK.OpenGL.Enums.All)stream, (Double*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void NormalStream3(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Double* coords) + unsafe void NormalStream3(OpenTK.OpenGL.Enums.All stream, Double* coords) { - Delegates.glNormalStream3dvATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream, (Double*)coords); + Delegates.glNormalStream3dvATI((OpenTK.OpenGL.Enums.All)stream, (Double*)coords); } public static - void ClientActiveVertexStream(OpenTK.OpenGL.Enums.AtiVertexStreams stream) + void ClientActiveVertexStream(OpenTK.OpenGL.Enums.All stream) { - Delegates.glClientActiveVertexStreamATI((OpenTK.OpenGL.Enums.AtiVertexStreams)stream); + Delegates.glClientActiveVertexStreamATI((OpenTK.OpenGL.Enums.All)stream); } public static - void VertexBlendEnv(OpenTK.OpenGL.Enums.AtiVertexStreams pname, Int32 param) + void VertexBlendEnv(OpenTK.OpenGL.Enums.All pname, Int32 param) { - Delegates.glVertexBlendEnviATI((OpenTK.OpenGL.Enums.AtiVertexStreams)pname, (Int32)param); + Delegates.glVertexBlendEnviATI((OpenTK.OpenGL.Enums.All)pname, (Int32)param); } public static - void VertexBlendEnv(OpenTK.OpenGL.Enums.AtiVertexStreams pname, Single param) + void VertexBlendEnv(OpenTK.OpenGL.Enums.All pname, Single param) { - Delegates.glVertexBlendEnvfATI((OpenTK.OpenGL.Enums.AtiVertexStreams)pname, (Single)param); + Delegates.glVertexBlendEnvfATI((OpenTK.OpenGL.Enums.All)pname, (Single)param); } public static - void ElementPointer(OpenTK.OpenGL.Enums.AtiElementArray type, IntPtr pointer) + void ElementPointer(OpenTK.OpenGL.Enums.All type, IntPtr pointer) { unsafe { - Delegates.glElementPointerATI((OpenTK.OpenGL.Enums.AtiElementArray)type, (IntPtr)pointer); + Delegates.glElementPointerATI((OpenTK.OpenGL.Enums.All)type, (IntPtr)pointer); } } public static - void ElementPointer(OpenTK.OpenGL.Enums.AtiElementArray type, [In, Out] object pointer) + void ElementPointer(OpenTK.OpenGL.Enums.All type, [In, Out] object pointer) { unsafe { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glElementPointerATI((OpenTK.OpenGL.Enums.AtiElementArray)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glElementPointerATI((OpenTK.OpenGL.Enums.All)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -39652,34 +39663,34 @@ namespace OpenTK.OpenGL } public static - void DrawBuffers(Int32 n, OpenTK.OpenGL.Enums.AtiDrawBuffers[] bufs) + void DrawBuffers(Int32 n, OpenTK.OpenGL.Enums.All[] bufs) { unsafe { - fixed (OpenTK.OpenGL.Enums.AtiDrawBuffers* bufs_ptr = bufs) + fixed (OpenTK.OpenGL.Enums.All* bufs_ptr = bufs) { - Delegates.glDrawBuffersATI((Int32)n, (OpenTK.OpenGL.Enums.AtiDrawBuffers*)bufs_ptr); + Delegates.glDrawBuffersATI((Int32)n, (OpenTK.OpenGL.Enums.All*)bufs_ptr); } } } public static - void DrawBuffers(Int32 n, ref OpenTK.OpenGL.Enums.AtiDrawBuffers bufs) + void DrawBuffers(Int32 n, ref OpenTK.OpenGL.Enums.All bufs) { unsafe { - fixed (OpenTK.OpenGL.Enums.AtiDrawBuffers* bufs_ptr = &bufs) + fixed (OpenTK.OpenGL.Enums.All* bufs_ptr = &bufs) { - Delegates.glDrawBuffersATI((Int32)n, (OpenTK.OpenGL.Enums.AtiDrawBuffers*)bufs_ptr); + Delegates.glDrawBuffersATI((Int32)n, (OpenTK.OpenGL.Enums.All*)bufs_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void DrawBuffers(Int32 n, OpenTK.OpenGL.Enums.AtiDrawBuffers* bufs) + unsafe void DrawBuffers(Int32 n, OpenTK.OpenGL.Enums.All* bufs) { - Delegates.glDrawBuffersATI((Int32)n, (OpenTK.OpenGL.Enums.AtiDrawBuffers*)bufs); + Delegates.glDrawBuffersATI((Int32)n, (OpenTK.OpenGL.Enums.All*)bufs); } [System.CLSCompliant(false)] @@ -39710,9 +39721,9 @@ namespace OpenTK.OpenGL } public static - void StencilOpSeparate(OpenTK.OpenGL.Enums.AtiSeparateStencil face, OpenTK.OpenGL.Enums.StencilOp sfail, OpenTK.OpenGL.Enums.StencilOp dpfail, OpenTK.OpenGL.Enums.StencilOp dppass) + void StencilOpSeparate(OpenTK.OpenGL.Enums.All face, OpenTK.OpenGL.Enums.StencilOp sfail, OpenTK.OpenGL.Enums.StencilOp dpfail, OpenTK.OpenGL.Enums.StencilOp dppass) { - Delegates.glStencilOpSeparateATI((OpenTK.OpenGL.Enums.AtiSeparateStencil)face, (OpenTK.OpenGL.Enums.StencilOp)sfail, (OpenTK.OpenGL.Enums.StencilOp)dpfail, (OpenTK.OpenGL.Enums.StencilOp)dppass); + Delegates.glStencilOpSeparateATI((OpenTK.OpenGL.Enums.All)face, (OpenTK.OpenGL.Enums.StencilOp)sfail, (OpenTK.OpenGL.Enums.StencilOp)dpfail, (OpenTK.OpenGL.Enums.StencilOp)dppass); } [System.CLSCompliant(false)] @@ -39730,64 +39741,64 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribArrayObject(UInt32 index, Int32 size, OpenTK.OpenGL.Enums.AtiVertexAttribArrayObject type, bool normalized, Int32 stride, UInt32 buffer, UInt32 offset) + void VertexAttribArrayObject(UInt32 index, Int32 size, OpenTK.OpenGL.Enums.All type, bool normalized, Int32 stride, UInt32 buffer, UInt32 offset) { - Delegates.glVertexAttribArrayObjectATI((UInt32)index, (Int32)size, (OpenTK.OpenGL.Enums.AtiVertexAttribArrayObject)type, (bool)normalized, (Int32)stride, (UInt32)buffer, (UInt32)offset); + Delegates.glVertexAttribArrayObjectATI((UInt32)index, (Int32)size, (OpenTK.OpenGL.Enums.All)type, (bool)normalized, (Int32)stride, (UInt32)buffer, (UInt32)offset); } public static - void VertexAttribArrayObject(Int32 index, Int32 size, OpenTK.OpenGL.Enums.AtiVertexAttribArrayObject type, bool normalized, Int32 stride, Int32 buffer, Int32 offset) + void VertexAttribArrayObject(Int32 index, Int32 size, OpenTK.OpenGL.Enums.All type, bool normalized, Int32 stride, Int32 buffer, Int32 offset) { - Delegates.glVertexAttribArrayObjectATI((UInt32)index, (Int32)size, (OpenTK.OpenGL.Enums.AtiVertexAttribArrayObject)type, (bool)normalized, (Int32)stride, (UInt32)buffer, (UInt32)offset); + Delegates.glVertexAttribArrayObjectATI((UInt32)index, (Int32)size, (OpenTK.OpenGL.Enums.All)type, (bool)normalized, (Int32)stride, (UInt32)buffer, (UInt32)offset); } [System.CLSCompliant(false)] public static - void GetVertexAttribArrayObject(UInt32 index, OpenTK.OpenGL.Enums.AtiVertexAttribArrayObject pname, [Out] Single[] @params) + void GetVertexAttribArrayObject(UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.OpenGL.Enums.AtiVertexAttribArrayObject)pname, (Single*)@params_ptr); + Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); } } } public static - void GetVertexAttribArrayObject(Int32 index, OpenTK.OpenGL.Enums.AtiVertexAttribArrayObject pname, [Out] Single[] @params) + void GetVertexAttribArrayObject(Int32 index, OpenTK.OpenGL.Enums.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.OpenGL.Enums.AtiVertexAttribArrayObject)pname, (Single*)@params_ptr); + Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetVertexAttribArrayObject(UInt32 index, OpenTK.OpenGL.Enums.AtiVertexAttribArrayObject pname, [Out] out Single @params) + void GetVertexAttribArrayObject(UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.OpenGL.Enums.AtiVertexAttribArrayObject)pname, (Single*)@params_ptr); + Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } } public static - void GetVertexAttribArrayObject(Int32 index, OpenTK.OpenGL.Enums.AtiVertexAttribArrayObject pname, [Out] out Single @params) + void GetVertexAttribArrayObject(Int32 index, OpenTK.OpenGL.Enums.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.OpenGL.Enums.AtiVertexAttribArrayObject)pname, (Single*)@params_ptr); + Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -39795,65 +39806,65 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribArrayObject(UInt32 index, OpenTK.OpenGL.Enums.AtiVertexAttribArrayObject pname, [Out] Single* @params) + unsafe void GetVertexAttribArrayObject(UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params) { - Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.OpenGL.Enums.AtiVertexAttribArrayObject)pname, (Single*)@params); + Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribArrayObject(Int32 index, OpenTK.OpenGL.Enums.AtiVertexAttribArrayObject pname, [Out] Single* @params) + unsafe void GetVertexAttribArrayObject(Int32 index, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params) { - Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.OpenGL.Enums.AtiVertexAttribArrayObject)pname, (Single*)@params); + Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Single*)@params); } [System.CLSCompliant(false)] public static - void GetVertexAttribArrayObject(UInt32 index, OpenTK.OpenGL.Enums.AtiVertexAttribArrayObject pname, [Out] Int32[] @params) + void GetVertexAttribArrayObject(UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.OpenGL.Enums.AtiVertexAttribArrayObject)pname, (Int32*)@params_ptr); + Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); } } } public static - void GetVertexAttribArrayObject(Int32 index, OpenTK.OpenGL.Enums.AtiVertexAttribArrayObject pname, [Out] Int32[] @params) + void GetVertexAttribArrayObject(Int32 index, OpenTK.OpenGL.Enums.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.OpenGL.Enums.AtiVertexAttribArrayObject)pname, (Int32*)@params_ptr); + Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetVertexAttribArrayObject(UInt32 index, OpenTK.OpenGL.Enums.AtiVertexAttribArrayObject pname, [Out] out Int32 @params) + void GetVertexAttribArrayObject(UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.OpenGL.Enums.AtiVertexAttribArrayObject)pname, (Int32*)@params_ptr); + Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } } public static - void GetVertexAttribArrayObject(Int32 index, OpenTK.OpenGL.Enums.AtiVertexAttribArrayObject pname, [Out] out Int32 @params) + void GetVertexAttribArrayObject(Int32 index, OpenTK.OpenGL.Enums.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.OpenGL.Enums.AtiVertexAttribArrayObject)pname, (Int32*)@params_ptr); + Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -39861,16 +39872,16 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribArrayObject(UInt32 index, OpenTK.OpenGL.Enums.AtiVertexAttribArrayObject pname, [Out] Int32* @params) + unsafe void GetVertexAttribArrayObject(UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) { - Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.OpenGL.Enums.AtiVertexAttribArrayObject)pname, (Int32*)@params); + Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribArrayObject(Int32 index, OpenTK.OpenGL.Enums.AtiVertexAttribArrayObject pname, [Out] Int32* @params) + unsafe void GetVertexAttribArrayObject(Int32 index, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params) { - Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.OpenGL.Enums.AtiVertexAttribArrayObject)pname, (Int32*)@params); + Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.OpenGL.Enums.All)pname, (Int32*)@params); } } @@ -39878,23 +39889,23 @@ namespace OpenTK.OpenGL public static partial class Apple { public static - void ElementPointer(OpenTK.OpenGL.Enums.AppleElementArray type, IntPtr pointer) + void ElementPointer(OpenTK.OpenGL.Enums.All type, IntPtr pointer) { unsafe { - Delegates.glElementPointerAPPLE((OpenTK.OpenGL.Enums.AppleElementArray)type, (IntPtr)pointer); + Delegates.glElementPointerAPPLE((OpenTK.OpenGL.Enums.All)type, (IntPtr)pointer); } } public static - void ElementPointer(OpenTK.OpenGL.Enums.AppleElementArray type, [In, Out] object pointer) + void ElementPointer(OpenTK.OpenGL.Enums.All type, [In, Out] object pointer) { unsafe { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glElementPointerAPPLE((OpenTK.OpenGL.Enums.AppleElementArray)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glElementPointerAPPLE((OpenTK.OpenGL.Enums.All)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -40207,21 +40218,21 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - bool TestObject(OpenTK.OpenGL.Enums.AppleFence @object, UInt32 name) + bool TestObject(OpenTK.OpenGL.Enums.All @object, UInt32 name) { - return Delegates.glTestObjectAPPLE((OpenTK.OpenGL.Enums.AppleFence)@object, (UInt32)name); + return Delegates.glTestObjectAPPLE((OpenTK.OpenGL.Enums.All)@object, (UInt32)name); } public static - bool TestObject(OpenTK.OpenGL.Enums.AppleFence @object, Int32 name) + bool TestObject(OpenTK.OpenGL.Enums.All @object, Int32 name) { - return Delegates.glTestObjectAPPLE((OpenTK.OpenGL.Enums.AppleFence)@object, (UInt32)name); + return Delegates.glTestObjectAPPLE((OpenTK.OpenGL.Enums.All)@object, (UInt32)name); } public static - void FinishObject(OpenTK.OpenGL.Enums.AppleFence @object, Int32 name) + void FinishObject(OpenTK.OpenGL.Enums.All @object, Int32 name) { - Delegates.glFinishObjectAPPLE((OpenTK.OpenGL.Enums.AppleFence)@object, (Int32)name); + Delegates.glFinishObjectAPPLE((OpenTK.OpenGL.Enums.All)@object, (Int32)name); } [System.CLSCompliant(false)] @@ -40433,21 +40444,21 @@ namespace OpenTK.OpenGL } public static - void VertexArrayParameter(OpenTK.OpenGL.Enums.AppleVertexArrayRange pname, Int32 param) + void VertexArrayParameter(OpenTK.OpenGL.Enums.All pname, Int32 param) { - Delegates.glVertexArrayParameteriAPPLE((OpenTK.OpenGL.Enums.AppleVertexArrayRange)pname, (Int32)param); + Delegates.glVertexArrayParameteriAPPLE((OpenTK.OpenGL.Enums.All)pname, (Int32)param); } public static - void BufferParameter(OpenTK.OpenGL.Enums.AppleFlushBufferRange target, OpenTK.OpenGL.Enums.AppleFlushBufferRange pname, Int32 param) + void BufferParameter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Int32 param) { - Delegates.glBufferParameteriAPPLE((OpenTK.OpenGL.Enums.AppleFlushBufferRange)target, (OpenTK.OpenGL.Enums.AppleFlushBufferRange)pname, (Int32)param); + Delegates.glBufferParameteriAPPLE((OpenTK.OpenGL.Enums.All)target, (OpenTK.OpenGL.Enums.All)pname, (Int32)param); } public static - void FlushMappedBufferRange(OpenTK.OpenGL.Enums.AppleFlushBufferRange target, IntPtr offset, IntPtr size) + void FlushMappedBufferRange(OpenTK.OpenGL.Enums.All target, IntPtr offset, IntPtr size) { - Delegates.glFlushMappedBufferRangeAPPLE((OpenTK.OpenGL.Enums.AppleFlushBufferRange)target, (IntPtr)offset, (IntPtr)size); + Delegates.glFlushMappedBufferRangeAPPLE((OpenTK.OpenGL.Enums.All)target, (IntPtr)offset, (IntPtr)size); } } diff --git a/Source/OpenTK/OpenGL/Bindings/GLCore.cs b/Source/OpenTK/OpenGL/Bindings/GLCore.cs index c7444f67..307cb42e 100644 --- a/Source/OpenTK/OpenGL/Bindings/GLCore.cs +++ b/Source/OpenTK/OpenGL/Bindings/GLCore.cs @@ -784,9 +784,6 @@ namespace OpenTK.OpenGL [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawPixels", ExactSpelling = true)] internal extern static void DrawPixels(Int32 width, Int32 height, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr pixels); [System.Security.SuppressUnmanagedCodeSecurity()] - [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetBooleanv", ExactSpelling = true)] - internal extern static unsafe void GetBooleanv(OpenTK.OpenGL.Enums.GetPName pname, [Out] bool* @params); - [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetClipPlane", ExactSpelling = true)] internal extern static unsafe void GetClipPlane(OpenTK.OpenGL.Enums.ClipPlaneName plane, [Out] Double* equation); [System.Security.SuppressUnmanagedCodeSecurity()] @@ -1022,106 +1019,106 @@ namespace OpenTK.OpenGL internal extern static void BlendColor(Single red, Single green, Single blue, Single alpha); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBlendEquation", ExactSpelling = true)] - internal extern static void BlendEquation(OpenTK.OpenGL.Enums.Version12 mode); + internal extern static void BlendEquation(OpenTK.OpenGL.Enums.All mode); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawRangeElements", ExactSpelling = true)] - internal extern static void DrawRangeElements(OpenTK.OpenGL.Enums.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.OpenGL.Enums.Version12 type, IntPtr indices); + internal extern static void DrawRangeElements(OpenTK.OpenGL.Enums.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.OpenGL.Enums.All type, IntPtr indices); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorTable", ExactSpelling = true)] - internal extern static void ColorTable(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr table); + internal extern static void ColorTable(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr table); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorTableParameterfv", ExactSpelling = true)] - internal extern static unsafe void ColorTableParameterfv(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, Single* @params); + internal extern static unsafe void ColorTableParameterfv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Single* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorTableParameteriv", ExactSpelling = true)] - internal extern static unsafe void ColorTableParameteriv(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, Int32* @params); + internal extern static unsafe void ColorTableParameteriv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Int32* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyColorTable", ExactSpelling = true)] - internal extern static void CopyColorTable(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width); + internal extern static void CopyColorTable(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetColorTable", ExactSpelling = true)] - internal extern static void GetColorTable(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr table); + internal extern static void GetColorTable(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr table); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetColorTableParameterfv", ExactSpelling = true)] - internal extern static unsafe void GetColorTableParameterfv(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] Single* @params); + internal extern static unsafe void GetColorTableParameterfv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetColorTableParameteriv", ExactSpelling = true)] - internal extern static unsafe void GetColorTableParameteriv(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] Int32* @params); + internal extern static unsafe void GetColorTableParameteriv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorSubTable", ExactSpelling = true)] - internal extern static void ColorSubTable(OpenTK.OpenGL.Enums.Version12 target, Int32 start, Int32 count, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr data); + internal extern static void ColorSubTable(OpenTK.OpenGL.Enums.All target, Int32 start, Int32 count, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr data); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyColorSubTable", ExactSpelling = true)] - internal extern static void CopyColorSubTable(OpenTK.OpenGL.Enums.Version12 target, Int32 start, Int32 x, Int32 y, Int32 width); + internal extern static void CopyColorSubTable(OpenTK.OpenGL.Enums.All target, Int32 start, Int32 x, Int32 y, Int32 width); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionFilter1D", ExactSpelling = true)] - internal extern static void ConvolutionFilter1D(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr image); + internal extern static void ConvolutionFilter1D(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr image); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionFilter2D", ExactSpelling = true)] - internal extern static void ConvolutionFilter2D(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr image); + internal extern static void ConvolutionFilter2D(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr image); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionParameterf", ExactSpelling = true)] - internal extern static void ConvolutionParameterf(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, Single @params); + internal extern static void ConvolutionParameterf(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Single @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionParameterfv", ExactSpelling = true)] - internal extern static unsafe void ConvolutionParameterfv(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, Single* @params); + internal extern static unsafe void ConvolutionParameterfv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Single* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionParameteri", ExactSpelling = true)] - internal extern static void ConvolutionParameteri(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, Int32 @params); + internal extern static void ConvolutionParameteri(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Int32 @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionParameteriv", ExactSpelling = true)] - internal extern static unsafe void ConvolutionParameteriv(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, Int32* @params); + internal extern static unsafe void ConvolutionParameteriv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Int32* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyConvolutionFilter1D", ExactSpelling = true)] - internal extern static void CopyConvolutionFilter1D(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width); + internal extern static void CopyConvolutionFilter1D(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyConvolutionFilter2D", ExactSpelling = true)] - internal extern static void CopyConvolutionFilter2D(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height); + internal extern static void CopyConvolutionFilter2D(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetConvolutionFilter", ExactSpelling = true)] - internal extern static void GetConvolutionFilter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr image); + internal extern static void GetConvolutionFilter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr image); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetConvolutionParameterfv", ExactSpelling = true)] - internal extern static unsafe void GetConvolutionParameterfv(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] Single* @params); + internal extern static unsafe void GetConvolutionParameterfv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetConvolutionParameteriv", ExactSpelling = true)] - internal extern static unsafe void GetConvolutionParameteriv(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] Int32* @params); + internal extern static unsafe void GetConvolutionParameteriv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetSeparableFilter", ExactSpelling = true)] - internal extern static void GetSeparableFilter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr row, [Out] IntPtr column, [Out] IntPtr span); + internal extern static void GetSeparableFilter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr row, [Out] IntPtr column, [Out] IntPtr span); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSeparableFilter2D", ExactSpelling = true)] - internal extern static void SeparableFilter2D(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr row, IntPtr column); + internal extern static void SeparableFilter2D(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr row, IntPtr column); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetHistogram", ExactSpelling = true)] - internal extern static void GetHistogram(OpenTK.OpenGL.Enums.Version12 target, bool reset, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr values); + internal extern static void GetHistogram(OpenTK.OpenGL.Enums.All target, bool reset, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr values); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetHistogramParameterfv", ExactSpelling = true)] - internal extern static unsafe void GetHistogramParameterfv(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] Single* @params); + internal extern static unsafe void GetHistogramParameterfv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetHistogramParameteriv", ExactSpelling = true)] - internal extern static unsafe void GetHistogramParameteriv(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] Int32* @params); + internal extern static unsafe void GetHistogramParameteriv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMinmax", ExactSpelling = true)] - internal extern static void GetMinmax(OpenTK.OpenGL.Enums.Version12 target, bool reset, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr values); + internal extern static void GetMinmax(OpenTK.OpenGL.Enums.All target, bool reset, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr values); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMinmaxParameterfv", ExactSpelling = true)] - internal extern static unsafe void GetMinmaxParameterfv(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] Single* @params); + internal extern static unsafe void GetMinmaxParameterfv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMinmaxParameteriv", ExactSpelling = true)] - internal extern static unsafe void GetMinmaxParameteriv(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] Int32* @params); + internal extern static unsafe void GetMinmaxParameteriv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glHistogram", ExactSpelling = true)] - internal extern static void Histogram(OpenTK.OpenGL.Enums.Version12 target, Int32 width, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, bool sink); + internal extern static void Histogram(OpenTK.OpenGL.Enums.All target, Int32 width, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, bool sink); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMinmax", ExactSpelling = true)] - internal extern static void Minmax(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, bool sink); + internal extern static void Minmax(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, bool sink); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glResetHistogram", ExactSpelling = true)] - internal extern static void ResetHistogram(OpenTK.OpenGL.Enums.Version12 target); + internal extern static void ResetHistogram(OpenTK.OpenGL.Enums.All target); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glResetMinmax", ExactSpelling = true)] - internal extern static void ResetMinmax(OpenTK.OpenGL.Enums.Version12 target); + internal extern static void ResetMinmax(OpenTK.OpenGL.Enums.All target); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexImage3D", ExactSpelling = true)] internal extern static void TexImage3D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr pixels); @@ -1133,106 +1130,106 @@ namespace OpenTK.OpenGL internal extern static void CopyTexSubImage3D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glActiveTexture", ExactSpelling = true)] - internal extern static void ActiveTexture(OpenTK.OpenGL.Enums.Version13 texture); + internal extern static void ActiveTexture(OpenTK.OpenGL.Enums.TextureUnit texture); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClientActiveTexture", ExactSpelling = true)] - internal extern static void ClientActiveTexture(OpenTK.OpenGL.Enums.Version13 texture); + internal extern static void ClientActiveTexture(OpenTK.OpenGL.Enums.TextureUnit texture); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord1d", ExactSpelling = true)] - internal extern static void MultiTexCoord1d(OpenTK.OpenGL.Enums.Version13 target, Double s); + internal extern static void MultiTexCoord1d(OpenTK.OpenGL.Enums.TextureUnit target, Double s); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord1dv", ExactSpelling = true)] - internal extern static unsafe void MultiTexCoord1dv(OpenTK.OpenGL.Enums.Version13 target, Double* v); + internal extern static unsafe void MultiTexCoord1dv(OpenTK.OpenGL.Enums.TextureUnit target, Double* v); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord1f", ExactSpelling = true)] - internal extern static void MultiTexCoord1f(OpenTK.OpenGL.Enums.Version13 target, Single s); + internal extern static void MultiTexCoord1f(OpenTK.OpenGL.Enums.TextureUnit target, Single s); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord1fv", ExactSpelling = true)] - internal extern static unsafe void MultiTexCoord1fv(OpenTK.OpenGL.Enums.Version13 target, Single* v); + internal extern static unsafe void MultiTexCoord1fv(OpenTK.OpenGL.Enums.TextureUnit target, Single* v); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord1i", ExactSpelling = true)] - internal extern static void MultiTexCoord1i(OpenTK.OpenGL.Enums.Version13 target, Int32 s); + internal extern static void MultiTexCoord1i(OpenTK.OpenGL.Enums.TextureUnit target, Int32 s); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord1iv", ExactSpelling = true)] - internal extern static unsafe void MultiTexCoord1iv(OpenTK.OpenGL.Enums.Version13 target, Int32* v); + internal extern static unsafe void MultiTexCoord1iv(OpenTK.OpenGL.Enums.TextureUnit target, Int32* v); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord1s", ExactSpelling = true)] - internal extern static void MultiTexCoord1s(OpenTK.OpenGL.Enums.Version13 target, Int16 s); + internal extern static void MultiTexCoord1s(OpenTK.OpenGL.Enums.TextureUnit target, Int16 s); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord1sv", ExactSpelling = true)] - internal extern static unsafe void MultiTexCoord1sv(OpenTK.OpenGL.Enums.Version13 target, Int16* v); + internal extern static unsafe void MultiTexCoord1sv(OpenTK.OpenGL.Enums.TextureUnit target, Int16* v); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord2d", ExactSpelling = true)] - internal extern static void MultiTexCoord2d(OpenTK.OpenGL.Enums.Version13 target, Double s, Double t); + internal extern static void MultiTexCoord2d(OpenTK.OpenGL.Enums.TextureUnit target, Double s, Double t); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord2dv", ExactSpelling = true)] - internal extern static unsafe void MultiTexCoord2dv(OpenTK.OpenGL.Enums.Version13 target, Double* v); + internal extern static unsafe void MultiTexCoord2dv(OpenTK.OpenGL.Enums.TextureUnit target, Double* v); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord2f", ExactSpelling = true)] - internal extern static void MultiTexCoord2f(OpenTK.OpenGL.Enums.Version13 target, Single s, Single t); + internal extern static void MultiTexCoord2f(OpenTK.OpenGL.Enums.TextureUnit target, Single s, Single t); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord2fv", ExactSpelling = true)] - internal extern static unsafe void MultiTexCoord2fv(OpenTK.OpenGL.Enums.Version13 target, Single* v); + internal extern static unsafe void MultiTexCoord2fv(OpenTK.OpenGL.Enums.TextureUnit target, Single* v); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord2i", ExactSpelling = true)] - internal extern static void MultiTexCoord2i(OpenTK.OpenGL.Enums.Version13 target, Int32 s, Int32 t); + internal extern static void MultiTexCoord2i(OpenTK.OpenGL.Enums.TextureUnit target, Int32 s, Int32 t); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord2iv", ExactSpelling = true)] - internal extern static unsafe void MultiTexCoord2iv(OpenTK.OpenGL.Enums.Version13 target, Int32* v); + internal extern static unsafe void MultiTexCoord2iv(OpenTK.OpenGL.Enums.TextureUnit target, Int32* v); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord2s", ExactSpelling = true)] - internal extern static void MultiTexCoord2s(OpenTK.OpenGL.Enums.Version13 target, Int16 s, Int16 t); + internal extern static void MultiTexCoord2s(OpenTK.OpenGL.Enums.TextureUnit target, Int16 s, Int16 t); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord2sv", ExactSpelling = true)] - internal extern static unsafe void MultiTexCoord2sv(OpenTK.OpenGL.Enums.Version13 target, Int16* v); + internal extern static unsafe void MultiTexCoord2sv(OpenTK.OpenGL.Enums.TextureUnit target, Int16* v); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord3d", ExactSpelling = true)] - internal extern static void MultiTexCoord3d(OpenTK.OpenGL.Enums.Version13 target, Double s, Double t, Double r); + internal extern static void MultiTexCoord3d(OpenTK.OpenGL.Enums.TextureUnit target, Double s, Double t, Double r); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord3dv", ExactSpelling = true)] - internal extern static unsafe void MultiTexCoord3dv(OpenTK.OpenGL.Enums.Version13 target, Double* v); + internal extern static unsafe void MultiTexCoord3dv(OpenTK.OpenGL.Enums.TextureUnit target, Double* v); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord3f", ExactSpelling = true)] - internal extern static void MultiTexCoord3f(OpenTK.OpenGL.Enums.Version13 target, Single s, Single t, Single r); + internal extern static void MultiTexCoord3f(OpenTK.OpenGL.Enums.TextureUnit target, Single s, Single t, Single r); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord3fv", ExactSpelling = true)] - internal extern static unsafe void MultiTexCoord3fv(OpenTK.OpenGL.Enums.Version13 target, Single* v); + internal extern static unsafe void MultiTexCoord3fv(OpenTK.OpenGL.Enums.TextureUnit target, Single* v); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord3i", ExactSpelling = true)] - internal extern static void MultiTexCoord3i(OpenTK.OpenGL.Enums.Version13 target, Int32 s, Int32 t, Int32 r); + internal extern static void MultiTexCoord3i(OpenTK.OpenGL.Enums.TextureUnit target, Int32 s, Int32 t, Int32 r); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord3iv", ExactSpelling = true)] - internal extern static unsafe void MultiTexCoord3iv(OpenTK.OpenGL.Enums.Version13 target, Int32* v); + internal extern static unsafe void MultiTexCoord3iv(OpenTK.OpenGL.Enums.TextureUnit target, Int32* v); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord3s", ExactSpelling = true)] - internal extern static void MultiTexCoord3s(OpenTK.OpenGL.Enums.Version13 target, Int16 s, Int16 t, Int16 r); + internal extern static void MultiTexCoord3s(OpenTK.OpenGL.Enums.TextureUnit target, Int16 s, Int16 t, Int16 r); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord3sv", ExactSpelling = true)] - internal extern static unsafe void MultiTexCoord3sv(OpenTK.OpenGL.Enums.Version13 target, Int16* v); + internal extern static unsafe void MultiTexCoord3sv(OpenTK.OpenGL.Enums.TextureUnit target, Int16* v); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord4d", ExactSpelling = true)] - internal extern static void MultiTexCoord4d(OpenTK.OpenGL.Enums.Version13 target, Double s, Double t, Double r, Double q); + internal extern static void MultiTexCoord4d(OpenTK.OpenGL.Enums.TextureUnit target, Double s, Double t, Double r, Double q); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord4dv", ExactSpelling = true)] - internal extern static unsafe void MultiTexCoord4dv(OpenTK.OpenGL.Enums.Version13 target, Double* v); + internal extern static unsafe void MultiTexCoord4dv(OpenTK.OpenGL.Enums.TextureUnit target, Double* v); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord4f", ExactSpelling = true)] - internal extern static void MultiTexCoord4f(OpenTK.OpenGL.Enums.Version13 target, Single s, Single t, Single r, Single q); + internal extern static void MultiTexCoord4f(OpenTK.OpenGL.Enums.TextureUnit target, Single s, Single t, Single r, Single q); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord4fv", ExactSpelling = true)] - internal extern static unsafe void MultiTexCoord4fv(OpenTK.OpenGL.Enums.Version13 target, Single* v); + internal extern static unsafe void MultiTexCoord4fv(OpenTK.OpenGL.Enums.TextureUnit target, Single* v); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord4i", ExactSpelling = true)] - internal extern static void MultiTexCoord4i(OpenTK.OpenGL.Enums.Version13 target, Int32 s, Int32 t, Int32 r, Int32 q); + internal extern static void MultiTexCoord4i(OpenTK.OpenGL.Enums.TextureUnit target, Int32 s, Int32 t, Int32 r, Int32 q); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord4iv", ExactSpelling = true)] - internal extern static unsafe void MultiTexCoord4iv(OpenTK.OpenGL.Enums.Version13 target, Int32* v); + internal extern static unsafe void MultiTexCoord4iv(OpenTK.OpenGL.Enums.TextureUnit target, Int32* v); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord4s", ExactSpelling = true)] - internal extern static void MultiTexCoord4s(OpenTK.OpenGL.Enums.Version13 target, Int16 s, Int16 t, Int16 r, Int16 q); + internal extern static void MultiTexCoord4s(OpenTK.OpenGL.Enums.TextureUnit target, Int16 s, Int16 t, Int16 r, Int16 q); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord4sv", ExactSpelling = true)] - internal extern static unsafe void MultiTexCoord4sv(OpenTK.OpenGL.Enums.Version13 target, Int16* v); + internal extern static unsafe void MultiTexCoord4sv(OpenTK.OpenGL.Enums.TextureUnit target, Int16* v); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLoadTransposeMatrixf", ExactSpelling = true)] internal extern static unsafe void LoadTransposeMatrixf(Single* m); @@ -1271,7 +1268,7 @@ namespace OpenTK.OpenGL internal extern static void GetCompressedTexImage(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, [Out] IntPtr img); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBlendFuncSeparate", ExactSpelling = true)] - internal extern static void BlendFuncSeparate(OpenTK.OpenGL.Enums.Version14 sfactorRGB, OpenTK.OpenGL.Enums.Version14 dfactorRGB, OpenTK.OpenGL.Enums.Version14 sfactorAlpha, OpenTK.OpenGL.Enums.Version14 dfactorAlpha); + internal extern static void BlendFuncSeparate(OpenTK.OpenGL.Enums.BlendingFactorSrc sfactorRGB, OpenTK.OpenGL.Enums.BlendingFactorDest dfactorRGB, OpenTK.OpenGL.Enums.BlendingFactorSrc sfactorAlpha, OpenTK.OpenGL.Enums.BlendingFactorDest dfactorAlpha); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFogCoordf", ExactSpelling = true)] internal extern static void FogCoordf(Single coord); @@ -1286,25 +1283,25 @@ namespace OpenTK.OpenGL internal extern static unsafe void FogCoorddv(Double* coord); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFogCoordPointer", ExactSpelling = true)] - internal extern static void FogCoordPointer(OpenTK.OpenGL.Enums.Version14 type, Int32 stride, IntPtr pointer); + internal extern static void FogCoordPointer(OpenTK.OpenGL.Enums.FogPointerType type, Int32 stride, IntPtr pointer); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiDrawArrays", ExactSpelling = true)] internal extern static unsafe void MultiDrawArrays(OpenTK.OpenGL.Enums.BeginMode mode, [Out] Int32* first, [Out] Int32* count, Int32 primcount); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiDrawElements", ExactSpelling = true)] - internal extern static unsafe void MultiDrawElements(OpenTK.OpenGL.Enums.BeginMode mode, Int32* count, OpenTK.OpenGL.Enums.Version14 type, IntPtr indices, Int32 primcount); + internal extern static unsafe void MultiDrawElements(OpenTK.OpenGL.Enums.BeginMode mode, Int32* count, OpenTK.OpenGL.Enums.All type, IntPtr indices, Int32 primcount); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPointParameterf", ExactSpelling = true)] - internal extern static void PointParameterf(OpenTK.OpenGL.Enums.Version14 pname, Single param); + internal extern static void PointParameterf(OpenTK.OpenGL.Enums.PointParameterName pname, Single param); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPointParameterfv", ExactSpelling = true)] - internal extern static unsafe void PointParameterfv(OpenTK.OpenGL.Enums.Version14 pname, Single* @params); + internal extern static unsafe void PointParameterfv(OpenTK.OpenGL.Enums.PointParameterName pname, Single* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPointParameteri", ExactSpelling = true)] - internal extern static void PointParameteri(OpenTK.OpenGL.Enums.Version14 pname, Int32 param); + internal extern static void PointParameteri(OpenTK.OpenGL.Enums.PointParameterName pname, Int32 param); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPointParameteriv", ExactSpelling = true)] - internal extern static unsafe void PointParameteriv(OpenTK.OpenGL.Enums.Version14 pname, Int32* @params); + internal extern static unsafe void PointParameteriv(OpenTK.OpenGL.Enums.PointParameterName pname, Int32* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSecondaryColor3b", ExactSpelling = true)] internal extern static void SecondaryColor3b(SByte red, SByte green, SByte blue); @@ -1415,22 +1412,22 @@ namespace OpenTK.OpenGL internal extern static bool IsQuery(UInt32 id); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBeginQuery", ExactSpelling = true)] - internal extern static void BeginQuery(OpenTK.OpenGL.Enums.Version15 target, UInt32 id); + internal extern static void BeginQuery(OpenTK.OpenGL.Enums.QueryTarget target, UInt32 id); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEndQuery", ExactSpelling = true)] - internal extern static void EndQuery(OpenTK.OpenGL.Enums.Version15 target); + internal extern static void EndQuery(OpenTK.OpenGL.Enums.QueryTarget target); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetQueryiv", ExactSpelling = true)] - internal extern static unsafe void GetQueryiv(OpenTK.OpenGL.Enums.Version15 target, OpenTK.OpenGL.Enums.Version15 pname, [Out] Int32* @params); + internal extern static unsafe void GetQueryiv(OpenTK.OpenGL.Enums.QueryTarget target, OpenTK.OpenGL.Enums.GetQueryParam pname, [Out] Int32* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetQueryObjectiv", ExactSpelling = true)] - internal extern static unsafe void GetQueryObjectiv(UInt32 id, OpenTK.OpenGL.Enums.Version15 pname, [Out] Int32* @params); + internal extern static unsafe void GetQueryObjectiv(UInt32 id, OpenTK.OpenGL.Enums.GetQueryObjectParam pname, [Out] Int32* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetQueryObjectuiv", ExactSpelling = true)] - internal extern static unsafe void GetQueryObjectuiv(UInt32 id, OpenTK.OpenGL.Enums.Version15 pname, [Out] UInt32* @params); + internal extern static unsafe void GetQueryObjectuiv(UInt32 id, OpenTK.OpenGL.Enums.GetQueryObjectParam pname, [Out] UInt32* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindBuffer", ExactSpelling = true)] - internal extern static void BindBuffer(OpenTK.OpenGL.Enums.Version15 target, UInt32 buffer); + internal extern static void BindBuffer(OpenTK.OpenGL.Enums.BufferTarget target, UInt32 buffer); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteBuffers", ExactSpelling = true)] internal extern static unsafe void DeleteBuffers(Int32 n, UInt32* buffers); @@ -1442,40 +1439,40 @@ namespace OpenTK.OpenGL internal extern static bool IsBuffer(UInt32 buffer); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBufferData", ExactSpelling = true)] - internal extern static void BufferData(OpenTK.OpenGL.Enums.Version15 target, IntPtr size, IntPtr data, OpenTK.OpenGL.Enums.Version15 usage); + internal extern static void BufferData(OpenTK.OpenGL.Enums.BufferTarget target, IntPtr size, IntPtr data, OpenTK.OpenGL.Enums.BufferUsageHint usage); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBufferSubData", ExactSpelling = true)] - internal extern static void BufferSubData(OpenTK.OpenGL.Enums.Version15 target, IntPtr offset, IntPtr size, IntPtr data); + internal extern static void BufferSubData(OpenTK.OpenGL.Enums.BufferTarget target, IntPtr offset, IntPtr size, IntPtr data); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetBufferSubData", ExactSpelling = true)] - internal extern static void GetBufferSubData(OpenTK.OpenGL.Enums.Version15 target, IntPtr offset, IntPtr size, [Out] IntPtr data); + internal extern static void GetBufferSubData(OpenTK.OpenGL.Enums.BufferTarget target, IntPtr offset, IntPtr size, [Out] IntPtr data); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMapBuffer", ExactSpelling = true)] - internal extern static unsafe IntPtr MapBuffer(OpenTK.OpenGL.Enums.Version15 target, OpenTK.OpenGL.Enums.Version15 access); + internal extern static unsafe IntPtr MapBuffer(OpenTK.OpenGL.Enums.BufferTarget target, OpenTK.OpenGL.Enums.BufferAccess access); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUnmapBuffer", ExactSpelling = true)] - internal extern static bool UnmapBuffer(OpenTK.OpenGL.Enums.Version15 target); + internal extern static bool UnmapBuffer(OpenTK.OpenGL.Enums.BufferTarget target); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetBufferParameteriv", ExactSpelling = true)] - internal extern static unsafe void GetBufferParameteriv(OpenTK.OpenGL.Enums.Version15 target, OpenTK.OpenGL.Enums.Version15 pname, [Out] Int32* @params); + internal extern static unsafe void GetBufferParameteriv(OpenTK.OpenGL.Enums.BufferTarget target, OpenTK.OpenGL.Enums.BufferParameterName pname, [Out] Int32* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetBufferPointerv", ExactSpelling = true)] - internal extern static void GetBufferPointerv(OpenTK.OpenGL.Enums.Version15 target, OpenTK.OpenGL.Enums.Version15 pname, [Out] IntPtr @params); + internal extern static void GetBufferPointerv(OpenTK.OpenGL.Enums.BufferTarget target, OpenTK.OpenGL.Enums.BufferPointer pname, [Out] IntPtr @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBlendEquationSeparate", ExactSpelling = true)] - internal extern static void BlendEquationSeparate(OpenTK.OpenGL.Enums.BlendEquationModeExt modeRGB, OpenTK.OpenGL.Enums.BlendEquationModeExt modeAlpha); + internal extern static void BlendEquationSeparate(OpenTK.OpenGL.Enums.All modeRGB, OpenTK.OpenGL.Enums.All modeAlpha); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawBuffers", ExactSpelling = true)] - internal extern static unsafe void DrawBuffers(Int32 n, OpenTK.OpenGL.Enums.Version20* bufs); + internal extern static unsafe void DrawBuffers(Int32 n, OpenTK.OpenGL.Enums.DrawBuffersEnum* bufs); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glStencilOpSeparate", ExactSpelling = true)] - internal extern static void StencilOpSeparate(OpenTK.OpenGL.Enums.Version20 face, OpenTK.OpenGL.Enums.StencilOp sfail, OpenTK.OpenGL.Enums.StencilOp dpfail, OpenTK.OpenGL.Enums.StencilOp dppass); + internal extern static void StencilOpSeparate(OpenTK.OpenGL.Enums.All face, OpenTK.OpenGL.Enums.StencilOp sfail, OpenTK.OpenGL.Enums.StencilOp dpfail, OpenTK.OpenGL.Enums.StencilOp dppass); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glStencilFuncSeparate", ExactSpelling = true)] internal extern static void StencilFuncSeparate(OpenTK.OpenGL.Enums.StencilFunction frontfunc, OpenTK.OpenGL.Enums.StencilFunction backfunc, Int32 @ref, UInt32 mask); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glStencilMaskSeparate", ExactSpelling = true)] - internal extern static void StencilMaskSeparate(OpenTK.OpenGL.Enums.Version20 face, UInt32 mask); + internal extern static void StencilMaskSeparate(OpenTK.OpenGL.Enums.All face, UInt32 mask); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glAttachShader", ExactSpelling = true)] internal extern static void AttachShader(UInt32 program, UInt32 shader); @@ -1490,7 +1487,7 @@ namespace OpenTK.OpenGL internal extern static Int32 CreateProgram(); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCreateShader", ExactSpelling = true)] - internal extern static Int32 CreateShader(OpenTK.OpenGL.Enums.Version20 type); + internal extern static Int32 CreateShader(OpenTK.OpenGL.Enums.ShaderType type); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteProgram", ExactSpelling = true)] internal extern static void DeleteProgram(UInt32 program); @@ -1508,10 +1505,10 @@ namespace OpenTK.OpenGL internal extern static void EnableVertexAttribArray(UInt32 index); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetActiveAttrib", ExactSpelling = true)] - internal extern static unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.OpenGL.Enums.Version20* type, [Out] System.Text.StringBuilder name); + internal extern static unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.OpenGL.Enums.ActiveAttribType* type, [Out] System.Text.StringBuilder name); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetActiveUniform", ExactSpelling = true)] - internal extern static unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.OpenGL.Enums.Version20* type, [Out] System.Text.StringBuilder name); + internal extern static unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.OpenGL.Enums.ActiveUniformType* type, [Out] System.Text.StringBuilder name); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetAttachedShaders", ExactSpelling = true)] internal extern static unsafe void GetAttachedShaders(UInt32 program, Int32 maxCount, [Out] Int32* count, [Out] UInt32* obj); @@ -1520,13 +1517,13 @@ namespace OpenTK.OpenGL internal extern static Int32 GetAttribLocation(UInt32 program, System.String name); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetProgramiv", ExactSpelling = true)] - internal extern static unsafe void GetProgramiv(UInt32 program, OpenTK.OpenGL.Enums.Version20 pname, [Out] Int32* @params); + internal extern static unsafe void GetProgramiv(UInt32 program, OpenTK.OpenGL.Enums.ProgramParameter pname, [Out] Int32* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetProgramInfoLog", ExactSpelling = true)] internal extern static unsafe void GetProgramInfoLog(UInt32 program, Int32 bufSize, [Out] Int32* length, [Out] System.Text.StringBuilder infoLog); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetShaderiv", ExactSpelling = true)] - internal extern static unsafe void GetShaderiv(UInt32 shader, OpenTK.OpenGL.Enums.Version20 pname, [Out] Int32* @params); + internal extern static unsafe void GetShaderiv(UInt32 shader, OpenTK.OpenGL.Enums.ShaderParameter pname, [Out] Int32* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetShaderInfoLog", ExactSpelling = true)] internal extern static unsafe void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [Out] Int32* length, [Out] System.Text.StringBuilder infoLog); @@ -1544,16 +1541,16 @@ namespace OpenTK.OpenGL internal extern static unsafe void GetUniformiv(UInt32 program, Int32 location, [Out] Int32* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetVertexAttribdv", ExactSpelling = true)] - internal extern static unsafe void GetVertexAttribdv(UInt32 index, OpenTK.OpenGL.Enums.Version20 pname, [Out] Double* @params); + internal extern static unsafe void GetVertexAttribdv(UInt32 index, OpenTK.OpenGL.Enums.VertexAttribParameter pname, [Out] Double* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetVertexAttribfv", ExactSpelling = true)] - internal extern static unsafe void GetVertexAttribfv(UInt32 index, OpenTK.OpenGL.Enums.Version20 pname, [Out] Single* @params); + internal extern static unsafe void GetVertexAttribfv(UInt32 index, OpenTK.OpenGL.Enums.VertexAttribParameter pname, [Out] Single* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetVertexAttribiv", ExactSpelling = true)] - internal extern static unsafe void GetVertexAttribiv(UInt32 index, OpenTK.OpenGL.Enums.Version20 pname, [Out] Int32* @params); + internal extern static unsafe void GetVertexAttribiv(UInt32 index, OpenTK.OpenGL.Enums.VertexAttribParameter pname, [Out] Int32* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetVertexAttribPointerv", ExactSpelling = true)] - internal extern static void GetVertexAttribPointerv(UInt32 index, OpenTK.OpenGL.Enums.Version20 pname, [Out] IntPtr pointer); + internal extern static void GetVertexAttribPointerv(UInt32 index, OpenTK.OpenGL.Enums.VertexAttribPointerParameter pname, [Out] IntPtr pointer); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsProgram", ExactSpelling = true)] internal extern static bool IsProgram(UInt32 program); @@ -1739,7 +1736,7 @@ namespace OpenTK.OpenGL internal extern static unsafe void VertexAttrib4usv(UInt32 index, UInt16* v); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttribPointer", ExactSpelling = true)] - internal extern static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.OpenGL.Enums.Version20 type, bool normalized, Int32 stride, IntPtr pointer); + internal extern static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.OpenGL.Enums.VertexAttribPointerType type, bool normalized, Int32 stride, IntPtr pointer); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniformMatrix2x3fv", ExactSpelling = true)] internal extern static unsafe void UniformMatrix2x3fv(Int32 location, Int32 count, bool transpose, Single* value); diff --git a/Source/OpenTK/OpenGL/Bindings/GLDelegates.cs b/Source/OpenTK/OpenGL/Bindings/GLDelegates.cs index 9dc9673d..88988ad1 100644 --- a/Source/OpenTK/OpenGL/Bindings/GLDelegates.cs +++ b/Source/OpenTK/OpenGL/Bindings/GLDelegates.cs @@ -1020,106 +1020,106 @@ namespace OpenTK.OpenGL internal delegate void BlendColor(Single red, Single green, Single blue, Single alpha); internal static BlendColor glBlendColor; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BlendEquation(OpenTK.OpenGL.Enums.Version12 mode); + internal delegate void BlendEquation(OpenTK.OpenGL.Enums.All mode); internal static BlendEquation glBlendEquation; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void DrawRangeElements(OpenTK.OpenGL.Enums.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.OpenGL.Enums.Version12 type, IntPtr indices); + internal delegate void DrawRangeElements(OpenTK.OpenGL.Enums.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.OpenGL.Enums.All type, IntPtr indices); internal static DrawRangeElements glDrawRangeElements; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ColorTable(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr table); + internal delegate void ColorTable(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr table); internal static ColorTable glColorTable; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ColorTableParameterfv(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, Single* @params); + internal unsafe delegate void ColorTableParameterfv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Single* @params); internal unsafe static ColorTableParameterfv glColorTableParameterfv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ColorTableParameteriv(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, Int32* @params); + internal unsafe delegate void ColorTableParameteriv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Int32* @params); internal unsafe static ColorTableParameteriv glColorTableParameteriv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CopyColorTable(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width); + internal delegate void CopyColorTable(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width); internal static CopyColorTable glCopyColorTable; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetColorTable(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr table); + internal delegate void GetColorTable(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr table); internal static GetColorTable glGetColorTable; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetColorTableParameterfv(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] Single* @params); + internal unsafe delegate void GetColorTableParameterfv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params); internal unsafe static GetColorTableParameterfv glGetColorTableParameterfv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetColorTableParameteriv(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] Int32* @params); + internal unsafe delegate void GetColorTableParameteriv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params); internal unsafe static GetColorTableParameteriv glGetColorTableParameteriv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ColorSubTable(OpenTK.OpenGL.Enums.Version12 target, Int32 start, Int32 count, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr data); + internal delegate void ColorSubTable(OpenTK.OpenGL.Enums.All target, Int32 start, Int32 count, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr data); internal static ColorSubTable glColorSubTable; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CopyColorSubTable(OpenTK.OpenGL.Enums.Version12 target, Int32 start, Int32 x, Int32 y, Int32 width); + internal delegate void CopyColorSubTable(OpenTK.OpenGL.Enums.All target, Int32 start, Int32 x, Int32 y, Int32 width); internal static CopyColorSubTable glCopyColorSubTable; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ConvolutionFilter1D(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr image); + internal delegate void ConvolutionFilter1D(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr image); internal static ConvolutionFilter1D glConvolutionFilter1D; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ConvolutionFilter2D(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr image); + internal delegate void ConvolutionFilter2D(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr image); internal static ConvolutionFilter2D glConvolutionFilter2D; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ConvolutionParameterf(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, Single @params); + internal delegate void ConvolutionParameterf(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Single @params); internal static ConvolutionParameterf glConvolutionParameterf; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ConvolutionParameterfv(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, Single* @params); + internal unsafe delegate void ConvolutionParameterfv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Single* @params); internal unsafe static ConvolutionParameterfv glConvolutionParameterfv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ConvolutionParameteri(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, Int32 @params); + internal delegate void ConvolutionParameteri(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Int32 @params); internal static ConvolutionParameteri glConvolutionParameteri; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ConvolutionParameteriv(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, Int32* @params); + internal unsafe delegate void ConvolutionParameteriv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Int32* @params); internal unsafe static ConvolutionParameteriv glConvolutionParameteriv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CopyConvolutionFilter1D(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width); + internal delegate void CopyConvolutionFilter1D(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width); internal static CopyConvolutionFilter1D glCopyConvolutionFilter1D; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CopyConvolutionFilter2D(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height); + internal delegate void CopyConvolutionFilter2D(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height); internal static CopyConvolutionFilter2D glCopyConvolutionFilter2D; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetConvolutionFilter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr image); + internal delegate void GetConvolutionFilter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr image); internal static GetConvolutionFilter glGetConvolutionFilter; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetConvolutionParameterfv(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] Single* @params); + internal unsafe delegate void GetConvolutionParameterfv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params); internal unsafe static GetConvolutionParameterfv glGetConvolutionParameterfv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetConvolutionParameteriv(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] Int32* @params); + internal unsafe delegate void GetConvolutionParameteriv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params); internal unsafe static GetConvolutionParameteriv glGetConvolutionParameteriv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetSeparableFilter(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr row, [Out] IntPtr column, [Out] IntPtr span); + internal delegate void GetSeparableFilter(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr row, [Out] IntPtr column, [Out] IntPtr span); internal static GetSeparableFilter glGetSeparableFilter; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void SeparableFilter2D(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr row, IntPtr column); + internal delegate void SeparableFilter2D(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr row, IntPtr column); internal static SeparableFilter2D glSeparableFilter2D; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetHistogram(OpenTK.OpenGL.Enums.Version12 target, bool reset, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr values); + internal delegate void GetHistogram(OpenTK.OpenGL.Enums.All target, bool reset, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr values); internal static GetHistogram glGetHistogram; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetHistogramParameterfv(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] Single* @params); + internal unsafe delegate void GetHistogramParameterfv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params); internal unsafe static GetHistogramParameterfv glGetHistogramParameterfv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetHistogramParameteriv(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] Int32* @params); + internal unsafe delegate void GetHistogramParameteriv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params); internal unsafe static GetHistogramParameteriv glGetHistogramParameteriv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetMinmax(OpenTK.OpenGL.Enums.Version12 target, bool reset, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr values); + internal delegate void GetMinmax(OpenTK.OpenGL.Enums.All target, bool reset, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr values); internal static GetMinmax glGetMinmax; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetMinmaxParameterfv(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] Single* @params); + internal unsafe delegate void GetMinmaxParameterfv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params); internal unsafe static GetMinmaxParameterfv glGetMinmaxParameterfv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetMinmaxParameteriv(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.Version12 pname, [Out] Int32* @params); + internal unsafe delegate void GetMinmaxParameteriv(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params); internal unsafe static GetMinmaxParameteriv glGetMinmaxParameteriv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void Histogram(OpenTK.OpenGL.Enums.Version12 target, Int32 width, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, bool sink); + internal delegate void Histogram(OpenTK.OpenGL.Enums.All target, Int32 width, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, bool sink); internal static Histogram glHistogram; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void Minmax(OpenTK.OpenGL.Enums.Version12 target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, bool sink); + internal delegate void Minmax(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, bool sink); internal static Minmax glMinmax; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ResetHistogram(OpenTK.OpenGL.Enums.Version12 target); + internal delegate void ResetHistogram(OpenTK.OpenGL.Enums.All target); internal static ResetHistogram glResetHistogram; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ResetMinmax(OpenTK.OpenGL.Enums.Version12 target); + internal delegate void ResetMinmax(OpenTK.OpenGL.Enums.All target); internal static ResetMinmax glResetMinmax; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void TexImage3D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr pixels); @@ -1131,106 +1131,106 @@ namespace OpenTK.OpenGL internal delegate void CopyTexSubImage3D(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height); internal static CopyTexSubImage3D glCopyTexSubImage3D; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ActiveTexture(OpenTK.OpenGL.Enums.Version13 texture); + internal delegate void ActiveTexture(OpenTK.OpenGL.Enums.TextureUnit texture); internal static ActiveTexture glActiveTexture; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ClientActiveTexture(OpenTK.OpenGL.Enums.Version13 texture); + internal delegate void ClientActiveTexture(OpenTK.OpenGL.Enums.TextureUnit texture); internal static ClientActiveTexture glClientActiveTexture; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord1d(OpenTK.OpenGL.Enums.Version13 target, Double s); + internal delegate void MultiTexCoord1d(OpenTK.OpenGL.Enums.TextureUnit target, Double s); internal static MultiTexCoord1d glMultiTexCoord1d; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord1dv(OpenTK.OpenGL.Enums.Version13 target, Double* v); + internal unsafe delegate void MultiTexCoord1dv(OpenTK.OpenGL.Enums.TextureUnit target, Double* v); internal unsafe static MultiTexCoord1dv glMultiTexCoord1dv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord1f(OpenTK.OpenGL.Enums.Version13 target, Single s); + internal delegate void MultiTexCoord1f(OpenTK.OpenGL.Enums.TextureUnit target, Single s); internal static MultiTexCoord1f glMultiTexCoord1f; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord1fv(OpenTK.OpenGL.Enums.Version13 target, Single* v); + internal unsafe delegate void MultiTexCoord1fv(OpenTK.OpenGL.Enums.TextureUnit target, Single* v); internal unsafe static MultiTexCoord1fv glMultiTexCoord1fv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord1i(OpenTK.OpenGL.Enums.Version13 target, Int32 s); + internal delegate void MultiTexCoord1i(OpenTK.OpenGL.Enums.TextureUnit target, Int32 s); internal static MultiTexCoord1i glMultiTexCoord1i; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord1iv(OpenTK.OpenGL.Enums.Version13 target, Int32* v); + internal unsafe delegate void MultiTexCoord1iv(OpenTK.OpenGL.Enums.TextureUnit target, Int32* v); internal unsafe static MultiTexCoord1iv glMultiTexCoord1iv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord1s(OpenTK.OpenGL.Enums.Version13 target, Int16 s); + internal delegate void MultiTexCoord1s(OpenTK.OpenGL.Enums.TextureUnit target, Int16 s); internal static MultiTexCoord1s glMultiTexCoord1s; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord1sv(OpenTK.OpenGL.Enums.Version13 target, Int16* v); + internal unsafe delegate void MultiTexCoord1sv(OpenTK.OpenGL.Enums.TextureUnit target, Int16* v); internal unsafe static MultiTexCoord1sv glMultiTexCoord1sv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord2d(OpenTK.OpenGL.Enums.Version13 target, Double s, Double t); + internal delegate void MultiTexCoord2d(OpenTK.OpenGL.Enums.TextureUnit target, Double s, Double t); internal static MultiTexCoord2d glMultiTexCoord2d; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord2dv(OpenTK.OpenGL.Enums.Version13 target, Double* v); + internal unsafe delegate void MultiTexCoord2dv(OpenTK.OpenGL.Enums.TextureUnit target, Double* v); internal unsafe static MultiTexCoord2dv glMultiTexCoord2dv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord2f(OpenTK.OpenGL.Enums.Version13 target, Single s, Single t); + internal delegate void MultiTexCoord2f(OpenTK.OpenGL.Enums.TextureUnit target, Single s, Single t); internal static MultiTexCoord2f glMultiTexCoord2f; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord2fv(OpenTK.OpenGL.Enums.Version13 target, Single* v); + internal unsafe delegate void MultiTexCoord2fv(OpenTK.OpenGL.Enums.TextureUnit target, Single* v); internal unsafe static MultiTexCoord2fv glMultiTexCoord2fv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord2i(OpenTK.OpenGL.Enums.Version13 target, Int32 s, Int32 t); + internal delegate void MultiTexCoord2i(OpenTK.OpenGL.Enums.TextureUnit target, Int32 s, Int32 t); internal static MultiTexCoord2i glMultiTexCoord2i; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord2iv(OpenTK.OpenGL.Enums.Version13 target, Int32* v); + internal unsafe delegate void MultiTexCoord2iv(OpenTK.OpenGL.Enums.TextureUnit target, Int32* v); internal unsafe static MultiTexCoord2iv glMultiTexCoord2iv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord2s(OpenTK.OpenGL.Enums.Version13 target, Int16 s, Int16 t); + internal delegate void MultiTexCoord2s(OpenTK.OpenGL.Enums.TextureUnit target, Int16 s, Int16 t); internal static MultiTexCoord2s glMultiTexCoord2s; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord2sv(OpenTK.OpenGL.Enums.Version13 target, Int16* v); + internal unsafe delegate void MultiTexCoord2sv(OpenTK.OpenGL.Enums.TextureUnit target, Int16* v); internal unsafe static MultiTexCoord2sv glMultiTexCoord2sv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord3d(OpenTK.OpenGL.Enums.Version13 target, Double s, Double t, Double r); + internal delegate void MultiTexCoord3d(OpenTK.OpenGL.Enums.TextureUnit target, Double s, Double t, Double r); internal static MultiTexCoord3d glMultiTexCoord3d; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord3dv(OpenTK.OpenGL.Enums.Version13 target, Double* v); + internal unsafe delegate void MultiTexCoord3dv(OpenTK.OpenGL.Enums.TextureUnit target, Double* v); internal unsafe static MultiTexCoord3dv glMultiTexCoord3dv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord3f(OpenTK.OpenGL.Enums.Version13 target, Single s, Single t, Single r); + internal delegate void MultiTexCoord3f(OpenTK.OpenGL.Enums.TextureUnit target, Single s, Single t, Single r); internal static MultiTexCoord3f glMultiTexCoord3f; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord3fv(OpenTK.OpenGL.Enums.Version13 target, Single* v); + internal unsafe delegate void MultiTexCoord3fv(OpenTK.OpenGL.Enums.TextureUnit target, Single* v); internal unsafe static MultiTexCoord3fv glMultiTexCoord3fv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord3i(OpenTK.OpenGL.Enums.Version13 target, Int32 s, Int32 t, Int32 r); + internal delegate void MultiTexCoord3i(OpenTK.OpenGL.Enums.TextureUnit target, Int32 s, Int32 t, Int32 r); internal static MultiTexCoord3i glMultiTexCoord3i; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord3iv(OpenTK.OpenGL.Enums.Version13 target, Int32* v); + internal unsafe delegate void MultiTexCoord3iv(OpenTK.OpenGL.Enums.TextureUnit target, Int32* v); internal unsafe static MultiTexCoord3iv glMultiTexCoord3iv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord3s(OpenTK.OpenGL.Enums.Version13 target, Int16 s, Int16 t, Int16 r); + internal delegate void MultiTexCoord3s(OpenTK.OpenGL.Enums.TextureUnit target, Int16 s, Int16 t, Int16 r); internal static MultiTexCoord3s glMultiTexCoord3s; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord3sv(OpenTK.OpenGL.Enums.Version13 target, Int16* v); + internal unsafe delegate void MultiTexCoord3sv(OpenTK.OpenGL.Enums.TextureUnit target, Int16* v); internal unsafe static MultiTexCoord3sv glMultiTexCoord3sv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord4d(OpenTK.OpenGL.Enums.Version13 target, Double s, Double t, Double r, Double q); + internal delegate void MultiTexCoord4d(OpenTK.OpenGL.Enums.TextureUnit target, Double s, Double t, Double r, Double q); internal static MultiTexCoord4d glMultiTexCoord4d; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord4dv(OpenTK.OpenGL.Enums.Version13 target, Double* v); + internal unsafe delegate void MultiTexCoord4dv(OpenTK.OpenGL.Enums.TextureUnit target, Double* v); internal unsafe static MultiTexCoord4dv glMultiTexCoord4dv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord4f(OpenTK.OpenGL.Enums.Version13 target, Single s, Single t, Single r, Single q); + internal delegate void MultiTexCoord4f(OpenTK.OpenGL.Enums.TextureUnit target, Single s, Single t, Single r, Single q); internal static MultiTexCoord4f glMultiTexCoord4f; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord4fv(OpenTK.OpenGL.Enums.Version13 target, Single* v); + internal unsafe delegate void MultiTexCoord4fv(OpenTK.OpenGL.Enums.TextureUnit target, Single* v); internal unsafe static MultiTexCoord4fv glMultiTexCoord4fv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord4i(OpenTK.OpenGL.Enums.Version13 target, Int32 s, Int32 t, Int32 r, Int32 q); + internal delegate void MultiTexCoord4i(OpenTK.OpenGL.Enums.TextureUnit target, Int32 s, Int32 t, Int32 r, Int32 q); internal static MultiTexCoord4i glMultiTexCoord4i; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord4iv(OpenTK.OpenGL.Enums.Version13 target, Int32* v); + internal unsafe delegate void MultiTexCoord4iv(OpenTK.OpenGL.Enums.TextureUnit target, Int32* v); internal unsafe static MultiTexCoord4iv glMultiTexCoord4iv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord4s(OpenTK.OpenGL.Enums.Version13 target, Int16 s, Int16 t, Int16 r, Int16 q); + internal delegate void MultiTexCoord4s(OpenTK.OpenGL.Enums.TextureUnit target, Int16 s, Int16 t, Int16 r, Int16 q); internal static MultiTexCoord4s glMultiTexCoord4s; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord4sv(OpenTK.OpenGL.Enums.Version13 target, Int16* v); + internal unsafe delegate void MultiTexCoord4sv(OpenTK.OpenGL.Enums.TextureUnit target, Int16* v); internal unsafe static MultiTexCoord4sv glMultiTexCoord4sv; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void LoadTransposeMatrixf(Single* m); @@ -1269,7 +1269,7 @@ namespace OpenTK.OpenGL internal delegate void GetCompressedTexImage(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, [Out] IntPtr img); internal static GetCompressedTexImage glGetCompressedTexImage; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BlendFuncSeparate(OpenTK.OpenGL.Enums.Version14 sfactorRGB, OpenTK.OpenGL.Enums.Version14 dfactorRGB, OpenTK.OpenGL.Enums.Version14 sfactorAlpha, OpenTK.OpenGL.Enums.Version14 dfactorAlpha); + internal delegate void BlendFuncSeparate(OpenTK.OpenGL.Enums.BlendingFactorSrc sfactorRGB, OpenTK.OpenGL.Enums.BlendingFactorDest dfactorRGB, OpenTK.OpenGL.Enums.BlendingFactorSrc sfactorAlpha, OpenTK.OpenGL.Enums.BlendingFactorDest dfactorAlpha); internal static BlendFuncSeparate glBlendFuncSeparate; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void FogCoordf(Single coord); @@ -1284,25 +1284,25 @@ namespace OpenTK.OpenGL internal unsafe delegate void FogCoorddv(Double* coord); internal unsafe static FogCoorddv glFogCoorddv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FogCoordPointer(OpenTK.OpenGL.Enums.Version14 type, Int32 stride, IntPtr pointer); + internal delegate void FogCoordPointer(OpenTK.OpenGL.Enums.FogPointerType type, Int32 stride, IntPtr pointer); internal static FogCoordPointer glFogCoordPointer; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void MultiDrawArrays(OpenTK.OpenGL.Enums.BeginMode mode, [Out] Int32* first, [Out] Int32* count, Int32 primcount); internal unsafe static MultiDrawArrays glMultiDrawArrays; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiDrawElements(OpenTK.OpenGL.Enums.BeginMode mode, Int32* count, OpenTK.OpenGL.Enums.Version14 type, IntPtr indices, Int32 primcount); + internal unsafe delegate void MultiDrawElements(OpenTK.OpenGL.Enums.BeginMode mode, Int32* count, OpenTK.OpenGL.Enums.All type, IntPtr indices, Int32 primcount); internal unsafe static MultiDrawElements glMultiDrawElements; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void PointParameterf(OpenTK.OpenGL.Enums.Version14 pname, Single param); + internal delegate void PointParameterf(OpenTK.OpenGL.Enums.PointParameterName pname, Single param); internal static PointParameterf glPointParameterf; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void PointParameterfv(OpenTK.OpenGL.Enums.Version14 pname, Single* @params); + internal unsafe delegate void PointParameterfv(OpenTK.OpenGL.Enums.PointParameterName pname, Single* @params); internal unsafe static PointParameterfv glPointParameterfv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void PointParameteri(OpenTK.OpenGL.Enums.Version14 pname, Int32 param); + internal delegate void PointParameteri(OpenTK.OpenGL.Enums.PointParameterName pname, Int32 param); internal static PointParameteri glPointParameteri; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void PointParameteriv(OpenTK.OpenGL.Enums.Version14 pname, Int32* @params); + internal unsafe delegate void PointParameteriv(OpenTK.OpenGL.Enums.PointParameterName pname, Int32* @params); internal unsafe static PointParameteriv glPointParameteriv; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void SecondaryColor3b(SByte red, SByte green, SByte blue); @@ -1413,22 +1413,22 @@ namespace OpenTK.OpenGL internal delegate bool IsQuery(UInt32 id); internal static IsQuery glIsQuery; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BeginQuery(OpenTK.OpenGL.Enums.Version15 target, UInt32 id); + internal delegate void BeginQuery(OpenTK.OpenGL.Enums.QueryTarget target, UInt32 id); internal static BeginQuery glBeginQuery; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void EndQuery(OpenTK.OpenGL.Enums.Version15 target); + internal delegate void EndQuery(OpenTK.OpenGL.Enums.QueryTarget target); internal static EndQuery glEndQuery; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetQueryiv(OpenTK.OpenGL.Enums.Version15 target, OpenTK.OpenGL.Enums.Version15 pname, [Out] Int32* @params); + internal unsafe delegate void GetQueryiv(OpenTK.OpenGL.Enums.QueryTarget target, OpenTK.OpenGL.Enums.GetQueryParam pname, [Out] Int32* @params); internal unsafe static GetQueryiv glGetQueryiv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetQueryObjectiv(UInt32 id, OpenTK.OpenGL.Enums.Version15 pname, [Out] Int32* @params); + internal unsafe delegate void GetQueryObjectiv(UInt32 id, OpenTK.OpenGL.Enums.GetQueryObjectParam pname, [Out] Int32* @params); internal unsafe static GetQueryObjectiv glGetQueryObjectiv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetQueryObjectuiv(UInt32 id, OpenTK.OpenGL.Enums.Version15 pname, [Out] UInt32* @params); + internal unsafe delegate void GetQueryObjectuiv(UInt32 id, OpenTK.OpenGL.Enums.GetQueryObjectParam pname, [Out] UInt32* @params); internal unsafe static GetQueryObjectuiv glGetQueryObjectuiv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BindBuffer(OpenTK.OpenGL.Enums.Version15 target, UInt32 buffer); + internal delegate void BindBuffer(OpenTK.OpenGL.Enums.BufferTarget target, UInt32 buffer); internal static BindBuffer glBindBuffer; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void DeleteBuffers(Int32 n, UInt32* buffers); @@ -1440,40 +1440,40 @@ namespace OpenTK.OpenGL internal delegate bool IsBuffer(UInt32 buffer); internal static IsBuffer glIsBuffer; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BufferData(OpenTK.OpenGL.Enums.Version15 target, IntPtr size, IntPtr data, OpenTK.OpenGL.Enums.Version15 usage); + internal delegate void BufferData(OpenTK.OpenGL.Enums.BufferTarget target, IntPtr size, IntPtr data, OpenTK.OpenGL.Enums.BufferUsageHint usage); internal static BufferData glBufferData; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BufferSubData(OpenTK.OpenGL.Enums.Version15 target, IntPtr offset, IntPtr size, IntPtr data); + internal delegate void BufferSubData(OpenTK.OpenGL.Enums.BufferTarget target, IntPtr offset, IntPtr size, IntPtr data); internal static BufferSubData glBufferSubData; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetBufferSubData(OpenTK.OpenGL.Enums.Version15 target, IntPtr offset, IntPtr size, [Out] IntPtr data); + internal delegate void GetBufferSubData(OpenTK.OpenGL.Enums.BufferTarget target, IntPtr offset, IntPtr size, [Out] IntPtr data); internal static GetBufferSubData glGetBufferSubData; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate IntPtr MapBuffer(OpenTK.OpenGL.Enums.Version15 target, OpenTK.OpenGL.Enums.Version15 access); + internal unsafe delegate IntPtr MapBuffer(OpenTK.OpenGL.Enums.BufferTarget target, OpenTK.OpenGL.Enums.BufferAccess access); internal unsafe static MapBuffer glMapBuffer; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate bool UnmapBuffer(OpenTK.OpenGL.Enums.Version15 target); + internal delegate bool UnmapBuffer(OpenTK.OpenGL.Enums.BufferTarget target); internal static UnmapBuffer glUnmapBuffer; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetBufferParameteriv(OpenTK.OpenGL.Enums.Version15 target, OpenTK.OpenGL.Enums.Version15 pname, [Out] Int32* @params); + internal unsafe delegate void GetBufferParameteriv(OpenTK.OpenGL.Enums.BufferTarget target, OpenTK.OpenGL.Enums.BufferParameterName pname, [Out] Int32* @params); internal unsafe static GetBufferParameteriv glGetBufferParameteriv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetBufferPointerv(OpenTK.OpenGL.Enums.Version15 target, OpenTK.OpenGL.Enums.Version15 pname, [Out] IntPtr @params); + internal delegate void GetBufferPointerv(OpenTK.OpenGL.Enums.BufferTarget target, OpenTK.OpenGL.Enums.BufferPointer pname, [Out] IntPtr @params); internal static GetBufferPointerv glGetBufferPointerv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BlendEquationSeparate(OpenTK.OpenGL.Enums.BlendEquationModeExt modeRGB, OpenTK.OpenGL.Enums.BlendEquationModeExt modeAlpha); + internal delegate void BlendEquationSeparate(OpenTK.OpenGL.Enums.All modeRGB, OpenTK.OpenGL.Enums.All modeAlpha); internal static BlendEquationSeparate glBlendEquationSeparate; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void DrawBuffers(Int32 n, OpenTK.OpenGL.Enums.Version20* bufs); + internal unsafe delegate void DrawBuffers(Int32 n, OpenTK.OpenGL.Enums.DrawBuffersEnum* bufs); internal unsafe static DrawBuffers glDrawBuffers; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void StencilOpSeparate(OpenTK.OpenGL.Enums.Version20 face, OpenTK.OpenGL.Enums.StencilOp sfail, OpenTK.OpenGL.Enums.StencilOp dpfail, OpenTK.OpenGL.Enums.StencilOp dppass); + internal delegate void StencilOpSeparate(OpenTK.OpenGL.Enums.All face, OpenTK.OpenGL.Enums.StencilOp sfail, OpenTK.OpenGL.Enums.StencilOp dpfail, OpenTK.OpenGL.Enums.StencilOp dppass); internal static StencilOpSeparate glStencilOpSeparate; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void StencilFuncSeparate(OpenTK.OpenGL.Enums.StencilFunction frontfunc, OpenTK.OpenGL.Enums.StencilFunction backfunc, Int32 @ref, UInt32 mask); internal static StencilFuncSeparate glStencilFuncSeparate; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void StencilMaskSeparate(OpenTK.OpenGL.Enums.Version20 face, UInt32 mask); + internal delegate void StencilMaskSeparate(OpenTK.OpenGL.Enums.All face, UInt32 mask); internal static StencilMaskSeparate glStencilMaskSeparate; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void AttachShader(UInt32 program, UInt32 shader); @@ -1488,7 +1488,7 @@ namespace OpenTK.OpenGL internal delegate Int32 CreateProgram(); internal static CreateProgram glCreateProgram; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate Int32 CreateShader(OpenTK.OpenGL.Enums.Version20 type); + internal delegate Int32 CreateShader(OpenTK.OpenGL.Enums.ShaderType type); internal static CreateShader glCreateShader; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void DeleteProgram(UInt32 program); @@ -1506,10 +1506,10 @@ namespace OpenTK.OpenGL internal delegate void EnableVertexAttribArray(UInt32 index); internal static EnableVertexAttribArray glEnableVertexAttribArray; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.OpenGL.Enums.Version20* type, [Out] System.Text.StringBuilder name); + internal unsafe delegate void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.OpenGL.Enums.ActiveAttribType* type, [Out] System.Text.StringBuilder name); internal unsafe static GetActiveAttrib glGetActiveAttrib; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.OpenGL.Enums.Version20* type, [Out] System.Text.StringBuilder name); + internal unsafe delegate void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.OpenGL.Enums.ActiveUniformType* type, [Out] System.Text.StringBuilder name); internal unsafe static GetActiveUniform glGetActiveUniform; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void GetAttachedShaders(UInt32 program, Int32 maxCount, [Out] Int32* count, [Out] UInt32* obj); @@ -1518,13 +1518,13 @@ namespace OpenTK.OpenGL internal delegate Int32 GetAttribLocation(UInt32 program, System.String name); internal static GetAttribLocation glGetAttribLocation; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetProgramiv(UInt32 program, OpenTK.OpenGL.Enums.Version20 pname, [Out] Int32* @params); + internal unsafe delegate void GetProgramiv(UInt32 program, OpenTK.OpenGL.Enums.ProgramParameter pname, [Out] Int32* @params); internal unsafe static GetProgramiv glGetProgramiv; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void GetProgramInfoLog(UInt32 program, Int32 bufSize, [Out] Int32* length, [Out] System.Text.StringBuilder infoLog); internal unsafe static GetProgramInfoLog glGetProgramInfoLog; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetShaderiv(UInt32 shader, OpenTK.OpenGL.Enums.Version20 pname, [Out] Int32* @params); + internal unsafe delegate void GetShaderiv(UInt32 shader, OpenTK.OpenGL.Enums.ShaderParameter pname, [Out] Int32* @params); internal unsafe static GetShaderiv glGetShaderiv; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [Out] Int32* length, [Out] System.Text.StringBuilder infoLog); @@ -1542,16 +1542,16 @@ namespace OpenTK.OpenGL internal unsafe delegate void GetUniformiv(UInt32 program, Int32 location, [Out] Int32* @params); internal unsafe static GetUniformiv glGetUniformiv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetVertexAttribdv(UInt32 index, OpenTK.OpenGL.Enums.Version20 pname, [Out] Double* @params); + internal unsafe delegate void GetVertexAttribdv(UInt32 index, OpenTK.OpenGL.Enums.VertexAttribParameter pname, [Out] Double* @params); internal unsafe static GetVertexAttribdv glGetVertexAttribdv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetVertexAttribfv(UInt32 index, OpenTK.OpenGL.Enums.Version20 pname, [Out] Single* @params); + internal unsafe delegate void GetVertexAttribfv(UInt32 index, OpenTK.OpenGL.Enums.VertexAttribParameter pname, [Out] Single* @params); internal unsafe static GetVertexAttribfv glGetVertexAttribfv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetVertexAttribiv(UInt32 index, OpenTK.OpenGL.Enums.Version20 pname, [Out] Int32* @params); + internal unsafe delegate void GetVertexAttribiv(UInt32 index, OpenTK.OpenGL.Enums.VertexAttribParameter pname, [Out] Int32* @params); internal unsafe static GetVertexAttribiv glGetVertexAttribiv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetVertexAttribPointerv(UInt32 index, OpenTK.OpenGL.Enums.Version20 pname, [Out] IntPtr pointer); + internal delegate void GetVertexAttribPointerv(UInt32 index, OpenTK.OpenGL.Enums.VertexAttribPointerParameter pname, [Out] IntPtr pointer); internal static GetVertexAttribPointerv glGetVertexAttribPointerv; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate bool IsProgram(UInt32 program); @@ -1737,7 +1737,7 @@ namespace OpenTK.OpenGL internal unsafe delegate void VertexAttrib4usv(UInt32 index, UInt16* v); internal unsafe static VertexAttrib4usv glVertexAttrib4usv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.OpenGL.Enums.Version20 type, bool normalized, Int32 stride, IntPtr pointer); + internal delegate void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.OpenGL.Enums.VertexAttribPointerType type, bool normalized, Int32 stride, IntPtr pointer); internal static VertexAttribPointer glVertexAttribPointer; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void UniformMatrix2x3fv(Int32 location, Int32 count, bool transpose, Single* value); @@ -1758,106 +1758,106 @@ namespace OpenTK.OpenGL internal unsafe delegate void UniformMatrix4x3fv(Int32 location, Int32 count, bool transpose, Single* value); internal unsafe static UniformMatrix4x3fv glUniformMatrix4x3fv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ActiveTextureARB(OpenTK.OpenGL.Enums.ArbMultitexture texture); + internal delegate void ActiveTextureARB(OpenTK.OpenGL.Enums.TextureUnit texture); internal static ActiveTextureARB glActiveTextureARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ClientActiveTextureARB(OpenTK.OpenGL.Enums.ArbMultitexture texture); + internal delegate void ClientActiveTextureARB(OpenTK.OpenGL.Enums.TextureUnit texture); internal static ClientActiveTextureARB glClientActiveTextureARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord1dARB(OpenTK.OpenGL.Enums.ArbMultitexture target, Double s); + internal delegate void MultiTexCoord1dARB(OpenTK.OpenGL.Enums.TextureUnit target, Double s); internal static MultiTexCoord1dARB glMultiTexCoord1dARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord1dvARB(OpenTK.OpenGL.Enums.ArbMultitexture target, Double* v); + internal unsafe delegate void MultiTexCoord1dvARB(OpenTK.OpenGL.Enums.TextureUnit target, Double* v); internal unsafe static MultiTexCoord1dvARB glMultiTexCoord1dvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord1fARB(OpenTK.OpenGL.Enums.ArbMultitexture target, Single s); + internal delegate void MultiTexCoord1fARB(OpenTK.OpenGL.Enums.TextureUnit target, Single s); internal static MultiTexCoord1fARB glMultiTexCoord1fARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord1fvARB(OpenTK.OpenGL.Enums.ArbMultitexture target, Single* v); + internal unsafe delegate void MultiTexCoord1fvARB(OpenTK.OpenGL.Enums.TextureUnit target, Single* v); internal unsafe static MultiTexCoord1fvARB glMultiTexCoord1fvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord1iARB(OpenTK.OpenGL.Enums.ArbMultitexture target, Int32 s); + internal delegate void MultiTexCoord1iARB(OpenTK.OpenGL.Enums.TextureUnit target, Int32 s); internal static MultiTexCoord1iARB glMultiTexCoord1iARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord1ivARB(OpenTK.OpenGL.Enums.ArbMultitexture target, Int32* v); + internal unsafe delegate void MultiTexCoord1ivARB(OpenTK.OpenGL.Enums.TextureUnit target, Int32* v); internal unsafe static MultiTexCoord1ivARB glMultiTexCoord1ivARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord1sARB(OpenTK.OpenGL.Enums.ArbMultitexture target, Int16 s); + internal delegate void MultiTexCoord1sARB(OpenTK.OpenGL.Enums.TextureUnit target, Int16 s); internal static MultiTexCoord1sARB glMultiTexCoord1sARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord1svARB(OpenTK.OpenGL.Enums.ArbMultitexture target, Int16* v); + internal unsafe delegate void MultiTexCoord1svARB(OpenTK.OpenGL.Enums.TextureUnit target, Int16* v); internal unsafe static MultiTexCoord1svARB glMultiTexCoord1svARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord2dARB(OpenTK.OpenGL.Enums.ArbMultitexture target, Double s, Double t); + internal delegate void MultiTexCoord2dARB(OpenTK.OpenGL.Enums.TextureUnit target, Double s, Double t); internal static MultiTexCoord2dARB glMultiTexCoord2dARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord2dvARB(OpenTK.OpenGL.Enums.ArbMultitexture target, Double* v); + internal unsafe delegate void MultiTexCoord2dvARB(OpenTK.OpenGL.Enums.TextureUnit target, Double* v); internal unsafe static MultiTexCoord2dvARB glMultiTexCoord2dvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord2fARB(OpenTK.OpenGL.Enums.ArbMultitexture target, Single s, Single t); + internal delegate void MultiTexCoord2fARB(OpenTK.OpenGL.Enums.TextureUnit target, Single s, Single t); internal static MultiTexCoord2fARB glMultiTexCoord2fARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord2fvARB(OpenTK.OpenGL.Enums.ArbMultitexture target, Single* v); + internal unsafe delegate void MultiTexCoord2fvARB(OpenTK.OpenGL.Enums.TextureUnit target, Single* v); internal unsafe static MultiTexCoord2fvARB glMultiTexCoord2fvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord2iARB(OpenTK.OpenGL.Enums.ArbMultitexture target, Int32 s, Int32 t); + internal delegate void MultiTexCoord2iARB(OpenTK.OpenGL.Enums.TextureUnit target, Int32 s, Int32 t); internal static MultiTexCoord2iARB glMultiTexCoord2iARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord2ivARB(OpenTK.OpenGL.Enums.ArbMultitexture target, Int32* v); + internal unsafe delegate void MultiTexCoord2ivARB(OpenTK.OpenGL.Enums.TextureUnit target, Int32* v); internal unsafe static MultiTexCoord2ivARB glMultiTexCoord2ivARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord2sARB(OpenTK.OpenGL.Enums.ArbMultitexture target, Int16 s, Int16 t); + internal delegate void MultiTexCoord2sARB(OpenTK.OpenGL.Enums.TextureUnit target, Int16 s, Int16 t); internal static MultiTexCoord2sARB glMultiTexCoord2sARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord2svARB(OpenTK.OpenGL.Enums.ArbMultitexture target, Int16* v); + internal unsafe delegate void MultiTexCoord2svARB(OpenTK.OpenGL.Enums.TextureUnit target, Int16* v); internal unsafe static MultiTexCoord2svARB glMultiTexCoord2svARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord3dARB(OpenTK.OpenGL.Enums.ArbMultitexture target, Double s, Double t, Double r); + internal delegate void MultiTexCoord3dARB(OpenTK.OpenGL.Enums.TextureUnit target, Double s, Double t, Double r); internal static MultiTexCoord3dARB glMultiTexCoord3dARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord3dvARB(OpenTK.OpenGL.Enums.ArbMultitexture target, Double* v); + internal unsafe delegate void MultiTexCoord3dvARB(OpenTK.OpenGL.Enums.TextureUnit target, Double* v); internal unsafe static MultiTexCoord3dvARB glMultiTexCoord3dvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord3fARB(OpenTK.OpenGL.Enums.ArbMultitexture target, Single s, Single t, Single r); + internal delegate void MultiTexCoord3fARB(OpenTK.OpenGL.Enums.TextureUnit target, Single s, Single t, Single r); internal static MultiTexCoord3fARB glMultiTexCoord3fARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord3fvARB(OpenTK.OpenGL.Enums.ArbMultitexture target, Single* v); + internal unsafe delegate void MultiTexCoord3fvARB(OpenTK.OpenGL.Enums.TextureUnit target, Single* v); internal unsafe static MultiTexCoord3fvARB glMultiTexCoord3fvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord3iARB(OpenTK.OpenGL.Enums.ArbMultitexture target, Int32 s, Int32 t, Int32 r); + internal delegate void MultiTexCoord3iARB(OpenTK.OpenGL.Enums.TextureUnit target, Int32 s, Int32 t, Int32 r); internal static MultiTexCoord3iARB glMultiTexCoord3iARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord3ivARB(OpenTK.OpenGL.Enums.ArbMultitexture target, Int32* v); + internal unsafe delegate void MultiTexCoord3ivARB(OpenTK.OpenGL.Enums.TextureUnit target, Int32* v); internal unsafe static MultiTexCoord3ivARB glMultiTexCoord3ivARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord3sARB(OpenTK.OpenGL.Enums.ArbMultitexture target, Int16 s, Int16 t, Int16 r); + internal delegate void MultiTexCoord3sARB(OpenTK.OpenGL.Enums.TextureUnit target, Int16 s, Int16 t, Int16 r); internal static MultiTexCoord3sARB glMultiTexCoord3sARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord3svARB(OpenTK.OpenGL.Enums.ArbMultitexture target, Int16* v); + internal unsafe delegate void MultiTexCoord3svARB(OpenTK.OpenGL.Enums.TextureUnit target, Int16* v); internal unsafe static MultiTexCoord3svARB glMultiTexCoord3svARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord4dARB(OpenTK.OpenGL.Enums.ArbMultitexture target, Double s, Double t, Double r, Double q); + internal delegate void MultiTexCoord4dARB(OpenTK.OpenGL.Enums.TextureUnit target, Double s, Double t, Double r, Double q); internal static MultiTexCoord4dARB glMultiTexCoord4dARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord4dvARB(OpenTK.OpenGL.Enums.ArbMultitexture target, Double* v); + internal unsafe delegate void MultiTexCoord4dvARB(OpenTK.OpenGL.Enums.TextureUnit target, Double* v); internal unsafe static MultiTexCoord4dvARB glMultiTexCoord4dvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord4fARB(OpenTK.OpenGL.Enums.ArbMultitexture target, Single s, Single t, Single r, Single q); + internal delegate void MultiTexCoord4fARB(OpenTK.OpenGL.Enums.TextureUnit target, Single s, Single t, Single r, Single q); internal static MultiTexCoord4fARB glMultiTexCoord4fARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord4fvARB(OpenTK.OpenGL.Enums.ArbMultitexture target, Single* v); + internal unsafe delegate void MultiTexCoord4fvARB(OpenTK.OpenGL.Enums.TextureUnit target, Single* v); internal unsafe static MultiTexCoord4fvARB glMultiTexCoord4fvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord4iARB(OpenTK.OpenGL.Enums.ArbMultitexture target, Int32 s, Int32 t, Int32 r, Int32 q); + internal delegate void MultiTexCoord4iARB(OpenTK.OpenGL.Enums.TextureUnit target, Int32 s, Int32 t, Int32 r, Int32 q); internal static MultiTexCoord4iARB glMultiTexCoord4iARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord4ivARB(OpenTK.OpenGL.Enums.ArbMultitexture target, Int32* v); + internal unsafe delegate void MultiTexCoord4ivARB(OpenTK.OpenGL.Enums.TextureUnit target, Int32* v); internal unsafe static MultiTexCoord4ivARB glMultiTexCoord4ivARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord4sARB(OpenTK.OpenGL.Enums.ArbMultitexture target, Int16 s, Int16 t, Int16 r, Int16 q); + internal delegate void MultiTexCoord4sARB(OpenTK.OpenGL.Enums.TextureUnit target, Int16 s, Int16 t, Int16 r, Int16 q); internal static MultiTexCoord4sARB glMultiTexCoord4sARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord4svARB(OpenTK.OpenGL.Enums.ArbMultitexture target, Int16* v); + internal unsafe delegate void MultiTexCoord4svARB(OpenTK.OpenGL.Enums.TextureUnit target, Int16* v); internal unsafe static MultiTexCoord4svARB glMultiTexCoord4svARB; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void LoadTransposeMatrixfARB(Single* m); @@ -1896,10 +1896,10 @@ namespace OpenTK.OpenGL internal delegate void GetCompressedTexImageARB(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, [Out] IntPtr img); internal static GetCompressedTexImageARB glGetCompressedTexImageARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void PointParameterfARB(OpenTK.OpenGL.Enums.ArbPointParameters pname, Single param); + internal delegate void PointParameterfARB(OpenTK.OpenGL.Enums.All pname, Single param); internal static PointParameterfARB glPointParameterfARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void PointParameterfvARB(OpenTK.OpenGL.Enums.ArbPointParameters pname, Single* @params); + internal unsafe delegate void PointParameterfvARB(OpenTK.OpenGL.Enums.All pname, Single* @params); internal unsafe static PointParameterfvARB glPointParameterfvARB; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void WeightbvARB(Int32 size, SByte* weights); @@ -1926,7 +1926,7 @@ namespace OpenTK.OpenGL internal unsafe delegate void WeightuivARB(Int32 size, UInt32* weights); internal unsafe static WeightuivARB glWeightuivARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void WeightPointerARB(Int32 size, OpenTK.OpenGL.Enums.ArbVertexBlend type, Int32 stride, IntPtr pointer); + internal delegate void WeightPointerARB(Int32 size, OpenTK.OpenGL.Enums.All type, Int32 stride, IntPtr pointer); internal static WeightPointerARB glWeightPointerARB; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void VertexBlendARB(Int32 count); @@ -1944,7 +1944,7 @@ namespace OpenTK.OpenGL internal unsafe delegate void MatrixIndexuivARB(Int32 size, UInt32* indices); internal unsafe static MatrixIndexuivARB glMatrixIndexuivARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MatrixIndexPointerARB(Int32 size, OpenTK.OpenGL.Enums.ArbMatrixPalette type, Int32 stride, IntPtr pointer); + internal delegate void MatrixIndexPointerARB(Int32 size, OpenTK.OpenGL.Enums.All type, Int32 stride, IntPtr pointer); internal static MatrixIndexPointerARB glMatrixIndexPointerARB; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void WindowPos2dARB(Double x, Double y); @@ -2103,7 +2103,7 @@ namespace OpenTK.OpenGL internal unsafe delegate void VertexAttrib4usvARB(UInt32 index, UInt16* v); internal unsafe static VertexAttrib4usvARB glVertexAttrib4usvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexAttribPointerARB(UInt32 index, Int32 size, OpenTK.OpenGL.Enums.ArbVertexProgram type, bool normalized, Int32 stride, IntPtr pointer); + internal delegate void VertexAttribPointerARB(UInt32 index, Int32 size, OpenTK.OpenGL.Enums.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, IntPtr pointer); internal static VertexAttribPointerARB glVertexAttribPointerARB; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void EnableVertexAttribArrayARB(UInt32 index); @@ -2112,10 +2112,10 @@ namespace OpenTK.OpenGL internal delegate void DisableVertexAttribArrayARB(UInt32 index); internal static DisableVertexAttribArrayARB glDisableVertexAttribArrayARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ProgramStringARB(OpenTK.OpenGL.Enums.ArbVertexProgram target, OpenTK.OpenGL.Enums.ArbVertexProgram format, Int32 len, IntPtr @string); + internal delegate void ProgramStringARB(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, OpenTK.OpenGL.Enums.AssemblyProgramFormatArb format, Int32 len, IntPtr @string); internal static ProgramStringARB glProgramStringARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BindProgramARB(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 program); + internal delegate void BindProgramARB(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 program); internal static BindProgramARB glBindProgramARB; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void DeleteProgramsARB(Int32 n, UInt32* programs); @@ -2124,64 +2124,64 @@ namespace OpenTK.OpenGL internal unsafe delegate void GenProgramsARB(Int32 n, [Out] UInt32* programs); internal unsafe static GenProgramsARB glGenProgramsARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ProgramEnvParameter4dARB(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, Double x, Double y, Double z, Double w); + internal delegate void ProgramEnvParameter4dARB(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, Double x, Double y, Double z, Double w); internal static ProgramEnvParameter4dARB glProgramEnvParameter4dARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ProgramEnvParameter4dvARB(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, Double* @params); + internal unsafe delegate void ProgramEnvParameter4dvARB(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, Double* @params); internal unsafe static ProgramEnvParameter4dvARB glProgramEnvParameter4dvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ProgramEnvParameter4fARB(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, Single x, Single y, Single z, Single w); + internal delegate void ProgramEnvParameter4fARB(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, Single x, Single y, Single z, Single w); internal static ProgramEnvParameter4fARB glProgramEnvParameter4fARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ProgramEnvParameter4fvARB(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, Single* @params); + internal unsafe delegate void ProgramEnvParameter4fvARB(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, Single* @params); internal unsafe static ProgramEnvParameter4fvARB glProgramEnvParameter4fvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ProgramLocalParameter4dARB(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, Double x, Double y, Double z, Double w); + internal delegate void ProgramLocalParameter4dARB(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, Double x, Double y, Double z, Double w); internal static ProgramLocalParameter4dARB glProgramLocalParameter4dARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ProgramLocalParameter4dvARB(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, Double* @params); + internal unsafe delegate void ProgramLocalParameter4dvARB(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, Double* @params); internal unsafe static ProgramLocalParameter4dvARB glProgramLocalParameter4dvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ProgramLocalParameter4fARB(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, Single x, Single y, Single z, Single w); + internal delegate void ProgramLocalParameter4fARB(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, Single x, Single y, Single z, Single w); internal static ProgramLocalParameter4fARB glProgramLocalParameter4fARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ProgramLocalParameter4fvARB(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, Single* @params); + internal unsafe delegate void ProgramLocalParameter4fvARB(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, Single* @params); internal unsafe static ProgramLocalParameter4fvARB glProgramLocalParameter4fvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetProgramEnvParameterdvARB(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, [Out] Double* @params); + internal unsafe delegate void GetProgramEnvParameterdvARB(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, [Out] Double* @params); internal unsafe static GetProgramEnvParameterdvARB glGetProgramEnvParameterdvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetProgramEnvParameterfvARB(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, [Out] Single* @params); + internal unsafe delegate void GetProgramEnvParameterfvARB(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, [Out] Single* @params); internal unsafe static GetProgramEnvParameterfvARB glGetProgramEnvParameterfvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetProgramLocalParameterdvARB(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, [Out] Double* @params); + internal unsafe delegate void GetProgramLocalParameterdvARB(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, [Out] Double* @params); internal unsafe static GetProgramLocalParameterdvARB glGetProgramLocalParameterdvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetProgramLocalParameterfvARB(OpenTK.OpenGL.Enums.ArbVertexProgram target, UInt32 index, [Out] Single* @params); + internal unsafe delegate void GetProgramLocalParameterfvARB(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, UInt32 index, [Out] Single* @params); internal unsafe static GetProgramLocalParameterfvARB glGetProgramLocalParameterfvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetProgramivARB(OpenTK.OpenGL.Enums.ArbVertexProgram target, OpenTK.OpenGL.Enums.ArbVertexProgram pname, [Out] Int32* @params); + internal unsafe delegate void GetProgramivARB(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, OpenTK.OpenGL.Enums.AssemblyProgramParameterArb pname, [Out] Int32* @params); internal unsafe static GetProgramivARB glGetProgramivARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetProgramStringARB(OpenTK.OpenGL.Enums.ArbVertexProgram target, OpenTK.OpenGL.Enums.ArbVertexProgram pname, [Out] IntPtr @string); + internal delegate void GetProgramStringARB(OpenTK.OpenGL.Enums.AssemblyProgramTargetArb target, OpenTK.OpenGL.Enums.AssemblyProgramStringParameterArb pname, [Out] IntPtr @string); internal static GetProgramStringARB glGetProgramStringARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetVertexAttribdvARB(UInt32 index, OpenTK.OpenGL.Enums.ArbVertexProgram pname, [Out] Double* @params); + internal unsafe delegate void GetVertexAttribdvARB(UInt32 index, OpenTK.OpenGL.Enums.VertexAttribParameterArb pname, [Out] Double* @params); internal unsafe static GetVertexAttribdvARB glGetVertexAttribdvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetVertexAttribfvARB(UInt32 index, OpenTK.OpenGL.Enums.ArbVertexProgram pname, [Out] Single* @params); + internal unsafe delegate void GetVertexAttribfvARB(UInt32 index, OpenTK.OpenGL.Enums.VertexAttribParameterArb pname, [Out] Single* @params); internal unsafe static GetVertexAttribfvARB glGetVertexAttribfvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetVertexAttribivARB(UInt32 index, OpenTK.OpenGL.Enums.ArbVertexProgram pname, [Out] Int32* @params); + internal unsafe delegate void GetVertexAttribivARB(UInt32 index, OpenTK.OpenGL.Enums.VertexAttribParameterArb pname, [Out] Int32* @params); internal unsafe static GetVertexAttribivARB glGetVertexAttribivARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetVertexAttribPointervARB(UInt32 index, OpenTK.OpenGL.Enums.ArbVertexProgram pname, [Out] IntPtr pointer); + internal delegate void GetVertexAttribPointervARB(UInt32 index, OpenTK.OpenGL.Enums.VertexAttribPointerParameterArb pname, [Out] IntPtr pointer); internal static GetVertexAttribPointervARB glGetVertexAttribPointervARB; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate bool IsProgramARB(UInt32 program); internal static IsProgramARB glIsProgramARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BindBufferARB(OpenTK.OpenGL.Enums.ArbVertexBufferObject target, UInt32 buffer); + internal delegate void BindBufferARB(OpenTK.OpenGL.Enums.BufferTargetArb target, UInt32 buffer); internal static BindBufferARB glBindBufferARB; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void DeleteBuffersARB(Int32 n, UInt32* buffers); @@ -2193,25 +2193,25 @@ namespace OpenTK.OpenGL internal delegate bool IsBufferARB(UInt32 buffer); internal static IsBufferARB glIsBufferARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BufferDataARB(OpenTK.OpenGL.Enums.ArbVertexBufferObject target, IntPtr size, IntPtr data, OpenTK.OpenGL.Enums.ArbVertexBufferObject usage); + internal delegate void BufferDataARB(OpenTK.OpenGL.Enums.BufferTargetArb target, IntPtr size, IntPtr data, OpenTK.OpenGL.Enums.BufferUsageArb usage); internal static BufferDataARB glBufferDataARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BufferSubDataARB(OpenTK.OpenGL.Enums.ArbVertexBufferObject target, IntPtr offset, IntPtr size, IntPtr data); + internal delegate void BufferSubDataARB(OpenTK.OpenGL.Enums.BufferTargetArb target, IntPtr offset, IntPtr size, IntPtr data); internal static BufferSubDataARB glBufferSubDataARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetBufferSubDataARB(OpenTK.OpenGL.Enums.ArbVertexBufferObject target, IntPtr offset, IntPtr size, [Out] IntPtr data); + internal delegate void GetBufferSubDataARB(OpenTK.OpenGL.Enums.BufferTargetArb target, IntPtr offset, IntPtr size, [Out] IntPtr data); internal static GetBufferSubDataARB glGetBufferSubDataARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate IntPtr MapBufferARB(OpenTK.OpenGL.Enums.ArbVertexBufferObject target, OpenTK.OpenGL.Enums.ArbVertexBufferObject access); + internal unsafe delegate IntPtr MapBufferARB(OpenTK.OpenGL.Enums.BufferTargetArb target, OpenTK.OpenGL.Enums.BufferAccessArb access); internal unsafe static MapBufferARB glMapBufferARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate bool UnmapBufferARB(OpenTK.OpenGL.Enums.ArbVertexBufferObject target); + internal delegate bool UnmapBufferARB(OpenTK.OpenGL.Enums.BufferTargetArb target); internal static UnmapBufferARB glUnmapBufferARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetBufferParameterivARB(OpenTK.OpenGL.Enums.ArbVertexBufferObject target, OpenTK.OpenGL.Enums.ArbVertexBufferObject pname, [Out] Int32* @params); + internal unsafe delegate void GetBufferParameterivARB(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.BufferParameterNameArb pname, [Out] Int32* @params); internal unsafe static GetBufferParameterivARB glGetBufferParameterivARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetBufferPointervARB(OpenTK.OpenGL.Enums.ArbVertexBufferObject target, OpenTK.OpenGL.Enums.ArbVertexBufferObject pname, [Out] IntPtr @params); + internal delegate void GetBufferPointervARB(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.BufferPointerNameArb pname, [Out] IntPtr @params); internal static GetBufferPointervARB glGetBufferPointervARB; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void GenQueriesARB(Int32 n, [Out] UInt32* ids); @@ -2223,31 +2223,31 @@ namespace OpenTK.OpenGL internal delegate bool IsQueryARB(UInt32 id); internal static IsQueryARB glIsQueryARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BeginQueryARB(OpenTK.OpenGL.Enums.ArbOcclusionQuery target, UInt32 id); + internal delegate void BeginQueryARB(OpenTK.OpenGL.Enums.All target, UInt32 id); internal static BeginQueryARB glBeginQueryARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void EndQueryARB(OpenTK.OpenGL.Enums.ArbOcclusionQuery target); + internal delegate void EndQueryARB(OpenTK.OpenGL.Enums.All target); internal static EndQueryARB glEndQueryARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetQueryivARB(OpenTK.OpenGL.Enums.ArbOcclusionQuery target, OpenTK.OpenGL.Enums.ArbOcclusionQuery pname, [Out] Int32* @params); + internal unsafe delegate void GetQueryivARB(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params); internal unsafe static GetQueryivARB glGetQueryivARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetQueryObjectivARB(UInt32 id, OpenTK.OpenGL.Enums.ArbOcclusionQuery pname, [Out] Int32* @params); + internal unsafe delegate void GetQueryObjectivARB(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params); internal unsafe static GetQueryObjectivARB glGetQueryObjectivARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetQueryObjectuivARB(UInt32 id, OpenTK.OpenGL.Enums.ArbOcclusionQuery pname, [Out] UInt32* @params); + internal unsafe delegate void GetQueryObjectuivARB(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] UInt32* @params); internal unsafe static GetQueryObjectuivARB glGetQueryObjectuivARB; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void DeleteObjectARB(UInt32 obj); internal static DeleteObjectARB glDeleteObjectARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate Int32 GetHandleARB(OpenTK.OpenGL.Enums.ArbShaderObjects pname); + internal delegate Int32 GetHandleARB(OpenTK.OpenGL.Enums.All pname); internal static GetHandleARB glGetHandleARB; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void DetachObjectARB(UInt32 containerObj, UInt32 attachedObj); internal static DetachObjectARB glDetachObjectARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate Int32 CreateShaderObjectARB(OpenTK.OpenGL.Enums.ArbShaderObjects shaderType); + internal delegate Int32 CreateShaderObjectARB(OpenTK.OpenGL.Enums.All shaderType); internal static CreateShaderObjectARB glCreateShaderObjectARB; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void ShaderSourceARB(UInt32 shaderObj, Int32 count, System.String[] @string, Int32* length); @@ -2328,10 +2328,10 @@ namespace OpenTK.OpenGL internal unsafe delegate void UniformMatrix4fvARB(Int32 location, Int32 count, bool transpose, Single* value); internal unsafe static UniformMatrix4fvARB glUniformMatrix4fvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetObjectParameterfvARB(UInt32 obj, OpenTK.OpenGL.Enums.ArbShaderObjects pname, [Out] Single* @params); + internal unsafe delegate void GetObjectParameterfvARB(UInt32 obj, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params); internal unsafe static GetObjectParameterfvARB glGetObjectParameterfvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetObjectParameterivARB(UInt32 obj, OpenTK.OpenGL.Enums.ArbShaderObjects pname, [Out] Int32* @params); + internal unsafe delegate void GetObjectParameterivARB(UInt32 obj, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params); internal unsafe static GetObjectParameterivARB glGetObjectParameterivARB; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void GetInfoLogARB(UInt32 obj, Int32 maxLength, [Out] Int32* length, [Out] System.Text.StringBuilder infoLog); @@ -2343,7 +2343,7 @@ namespace OpenTK.OpenGL internal delegate Int32 GetUniformLocationARB(UInt32 programObj, System.String name); internal static GetUniformLocationARB glGetUniformLocationARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetActiveUniformARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.OpenGL.Enums.ArbShaderObjects* type, [Out] System.Text.StringBuilder name); + internal unsafe delegate void GetActiveUniformARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.OpenGL.Enums.All* type, [Out] System.Text.StringBuilder name); internal unsafe static GetActiveUniformARB glGetActiveUniformARB; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void GetUniformfvARB(UInt32 programObj, Int32 location, [Out] Single* @params); @@ -2358,16 +2358,16 @@ namespace OpenTK.OpenGL internal delegate void BindAttribLocationARB(UInt32 programObj, UInt32 index, System.String name); internal static BindAttribLocationARB glBindAttribLocationARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetActiveAttribARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.OpenGL.Enums.ArbVertexShader* type, [Out] System.Text.StringBuilder name); + internal unsafe delegate void GetActiveAttribARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.OpenGL.Enums.All* type, [Out] System.Text.StringBuilder name); internal unsafe static GetActiveAttribARB glGetActiveAttribARB; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate Int32 GetAttribLocationARB(UInt32 programObj, System.String name); internal static GetAttribLocationARB glGetAttribLocationARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void DrawBuffersARB(Int32 n, OpenTK.OpenGL.Enums.ArbDrawBuffers* bufs); + internal unsafe delegate void DrawBuffersARB(Int32 n, OpenTK.OpenGL.Enums.All* bufs); internal unsafe static DrawBuffersARB glDrawBuffersARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ClampColorARB(OpenTK.OpenGL.Enums.ArbColorBufferFloat target, OpenTK.OpenGL.Enums.ArbColorBufferFloat clamp); + internal delegate void ClampColorARB(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All clamp); internal static ClampColorARB glClampColorARB; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void BlendColorEXT(Single red, Single green, Single blue, Single alpha); @@ -2382,10 +2382,10 @@ namespace OpenTK.OpenGL internal delegate void TexSubImage3DEXT(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr pixels); internal static TexSubImage3DEXT glTexSubImage3DEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetTexFilterFuncSGIS(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.SgisTextureFilter4 filter, [Out] Single* weights); + internal unsafe delegate void GetTexFilterFuncSGIS(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.All filter, [Out] Single* weights); internal unsafe static GetTexFilterFuncSGIS glGetTexFilterFuncSGIS; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void TexFilterFuncSGIS(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.SgisTextureFilter4 filter, Int32 n, Single* weights); + internal unsafe delegate void TexFilterFuncSGIS(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.All filter, Int32 n, Single* weights); internal unsafe static TexFilterFuncSGIS glTexFilterFuncSGIS; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void TexSubImage1DEXT(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr pixels); @@ -2409,115 +2409,115 @@ namespace OpenTK.OpenGL internal delegate void CopyTexSubImage3DEXT(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height); internal static CopyTexSubImage3DEXT glCopyTexSubImage3DEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetHistogramEXT(OpenTK.OpenGL.Enums.HistogramTargetExt target, bool reset, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr values); + internal delegate void GetHistogramEXT(OpenTK.OpenGL.Enums.All target, bool reset, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr values); internal static GetHistogramEXT glGetHistogramEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetHistogramParameterfvEXT(OpenTK.OpenGL.Enums.HistogramTargetExt target, OpenTK.OpenGL.Enums.GetHistogramParameterPNameExt pname, [Out] Single* @params); + internal unsafe delegate void GetHistogramParameterfvEXT(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params); internal unsafe static GetHistogramParameterfvEXT glGetHistogramParameterfvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetHistogramParameterivEXT(OpenTK.OpenGL.Enums.HistogramTargetExt target, OpenTK.OpenGL.Enums.GetHistogramParameterPNameExt pname, [Out] Int32* @params); + internal unsafe delegate void GetHistogramParameterivEXT(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params); internal unsafe static GetHistogramParameterivEXT glGetHistogramParameterivEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetMinmaxEXT(OpenTK.OpenGL.Enums.MinmaxTargetExt target, bool reset, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr values); + internal delegate void GetMinmaxEXT(OpenTK.OpenGL.Enums.All target, bool reset, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr values); internal static GetMinmaxEXT glGetMinmaxEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetMinmaxParameterfvEXT(OpenTK.OpenGL.Enums.MinmaxTargetExt target, OpenTK.OpenGL.Enums.GetMinmaxParameterPNameExt pname, [Out] Single* @params); + internal unsafe delegate void GetMinmaxParameterfvEXT(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params); internal unsafe static GetMinmaxParameterfvEXT glGetMinmaxParameterfvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetMinmaxParameterivEXT(OpenTK.OpenGL.Enums.MinmaxTargetExt target, OpenTK.OpenGL.Enums.GetMinmaxParameterPNameExt pname, [Out] Int32* @params); + internal unsafe delegate void GetMinmaxParameterivEXT(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params); internal unsafe static GetMinmaxParameterivEXT glGetMinmaxParameterivEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void HistogramEXT(OpenTK.OpenGL.Enums.HistogramTargetExt target, Int32 width, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, bool sink); + internal delegate void HistogramEXT(OpenTK.OpenGL.Enums.All target, Int32 width, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, bool sink); internal static HistogramEXT glHistogramEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MinmaxEXT(OpenTK.OpenGL.Enums.MinmaxTargetExt target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, bool sink); + internal delegate void MinmaxEXT(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, bool sink); internal static MinmaxEXT glMinmaxEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ResetHistogramEXT(OpenTK.OpenGL.Enums.HistogramTargetExt target); + internal delegate void ResetHistogramEXT(OpenTK.OpenGL.Enums.All target); internal static ResetHistogramEXT glResetHistogramEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ResetMinmaxEXT(OpenTK.OpenGL.Enums.MinmaxTargetExt target); + internal delegate void ResetMinmaxEXT(OpenTK.OpenGL.Enums.All target); internal static ResetMinmaxEXT glResetMinmaxEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ConvolutionFilter1DEXT(OpenTK.OpenGL.Enums.ConvolutionTargetExt target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr image); + internal delegate void ConvolutionFilter1DEXT(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr image); internal static ConvolutionFilter1DEXT glConvolutionFilter1DEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ConvolutionFilter2DEXT(OpenTK.OpenGL.Enums.ConvolutionTargetExt target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr image); + internal delegate void ConvolutionFilter2DEXT(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr image); internal static ConvolutionFilter2DEXT glConvolutionFilter2DEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ConvolutionParameterfEXT(OpenTK.OpenGL.Enums.ConvolutionTargetExt target, OpenTK.OpenGL.Enums.ConvolutionParameterExt pname, Single @params); + internal delegate void ConvolutionParameterfEXT(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Single @params); internal static ConvolutionParameterfEXT glConvolutionParameterfEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ConvolutionParameterfvEXT(OpenTK.OpenGL.Enums.ConvolutionTargetExt target, OpenTK.OpenGL.Enums.ConvolutionParameterExt pname, Single* @params); + internal unsafe delegate void ConvolutionParameterfvEXT(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Single* @params); internal unsafe static ConvolutionParameterfvEXT glConvolutionParameterfvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ConvolutionParameteriEXT(OpenTK.OpenGL.Enums.ConvolutionTargetExt target, OpenTK.OpenGL.Enums.ConvolutionParameterExt pname, Int32 @params); + internal delegate void ConvolutionParameteriEXT(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Int32 @params); internal static ConvolutionParameteriEXT glConvolutionParameteriEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ConvolutionParameterivEXT(OpenTK.OpenGL.Enums.ConvolutionTargetExt target, OpenTK.OpenGL.Enums.ConvolutionParameterExt pname, Int32* @params); + internal unsafe delegate void ConvolutionParameterivEXT(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Int32* @params); internal unsafe static ConvolutionParameterivEXT glConvolutionParameterivEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CopyConvolutionFilter1DEXT(OpenTK.OpenGL.Enums.ConvolutionTargetExt target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width); + internal delegate void CopyConvolutionFilter1DEXT(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width); internal static CopyConvolutionFilter1DEXT glCopyConvolutionFilter1DEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CopyConvolutionFilter2DEXT(OpenTK.OpenGL.Enums.ConvolutionTargetExt target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height); + internal delegate void CopyConvolutionFilter2DEXT(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height); internal static CopyConvolutionFilter2DEXT glCopyConvolutionFilter2DEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetConvolutionFilterEXT(OpenTK.OpenGL.Enums.ConvolutionTargetExt target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr image); + internal delegate void GetConvolutionFilterEXT(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr image); internal static GetConvolutionFilterEXT glGetConvolutionFilterEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetConvolutionParameterfvEXT(OpenTK.OpenGL.Enums.ConvolutionTargetExt target, OpenTK.OpenGL.Enums.ConvolutionParameterExt pname, [Out] Single* @params); + internal unsafe delegate void GetConvolutionParameterfvEXT(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params); internal unsafe static GetConvolutionParameterfvEXT glGetConvolutionParameterfvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetConvolutionParameterivEXT(OpenTK.OpenGL.Enums.ConvolutionTargetExt target, OpenTK.OpenGL.Enums.ConvolutionParameterExt pname, [Out] Int32* @params); + internal unsafe delegate void GetConvolutionParameterivEXT(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params); internal unsafe static GetConvolutionParameterivEXT glGetConvolutionParameterivEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetSeparableFilterEXT(OpenTK.OpenGL.Enums.SeparableTargetExt target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr row, [Out] IntPtr column, [Out] IntPtr span); + internal delegate void GetSeparableFilterEXT(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr row, [Out] IntPtr column, [Out] IntPtr span); internal static GetSeparableFilterEXT glGetSeparableFilterEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void SeparableFilter2DEXT(OpenTK.OpenGL.Enums.SeparableTargetExt target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr row, IntPtr column); + internal delegate void SeparableFilter2DEXT(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr row, IntPtr column); internal static SeparableFilter2DEXT glSeparableFilter2DEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ColorTableSGI(OpenTK.OpenGL.Enums.ColorTableTargetSgi target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr table); + internal delegate void ColorTableSGI(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr table); internal static ColorTableSGI glColorTableSGI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ColorTableParameterfvSGI(OpenTK.OpenGL.Enums.ColorTableTargetSgi target, OpenTK.OpenGL.Enums.ColorTableParameterPNameSgi pname, Single* @params); + internal unsafe delegate void ColorTableParameterfvSGI(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Single* @params); internal unsafe static ColorTableParameterfvSGI glColorTableParameterfvSGI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ColorTableParameterivSGI(OpenTK.OpenGL.Enums.ColorTableTargetSgi target, OpenTK.OpenGL.Enums.ColorTableParameterPNameSgi pname, Int32* @params); + internal unsafe delegate void ColorTableParameterivSGI(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Int32* @params); internal unsafe static ColorTableParameterivSGI glColorTableParameterivSGI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CopyColorTableSGI(OpenTK.OpenGL.Enums.ColorTableTargetSgi target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width); + internal delegate void CopyColorTableSGI(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width); internal static CopyColorTableSGI glCopyColorTableSGI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetColorTableSGI(OpenTK.OpenGL.Enums.ColorTableTargetSgi target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr table); + internal delegate void GetColorTableSGI(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr table); internal static GetColorTableSGI glGetColorTableSGI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetColorTableParameterfvSGI(OpenTK.OpenGL.Enums.ColorTableTargetSgi target, OpenTK.OpenGL.Enums.GetColorTableParameterPNameSgi pname, [Out] Single* @params); + internal unsafe delegate void GetColorTableParameterfvSGI(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params); internal unsafe static GetColorTableParameterfvSGI glGetColorTableParameterfvSGI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetColorTableParameterivSGI(OpenTK.OpenGL.Enums.ColorTableTargetSgi target, OpenTK.OpenGL.Enums.GetColorTableParameterPNameSgi pname, [Out] Int32* @params); + internal unsafe delegate void GetColorTableParameterivSGI(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params); internal unsafe static GetColorTableParameterivSGI glGetColorTableParameterivSGI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void PixelTexGenSGIX(OpenTK.OpenGL.Enums.SgixPixelTexture mode); + internal delegate void PixelTexGenSGIX(OpenTK.OpenGL.Enums.All mode); internal static PixelTexGenSGIX glPixelTexGenSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void PixelTexGenParameteriSGIS(OpenTK.OpenGL.Enums.PixelTexGenParameterNameSgis pname, Int32 param); + internal delegate void PixelTexGenParameteriSGIS(OpenTK.OpenGL.Enums.All pname, Int32 param); internal static PixelTexGenParameteriSGIS glPixelTexGenParameteriSGIS; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void PixelTexGenParameterivSGIS(OpenTK.OpenGL.Enums.PixelTexGenParameterNameSgis pname, Int32* @params); + internal unsafe delegate void PixelTexGenParameterivSGIS(OpenTK.OpenGL.Enums.All pname, Int32* @params); internal unsafe static PixelTexGenParameterivSGIS glPixelTexGenParameterivSGIS; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void PixelTexGenParameterfSGIS(OpenTK.OpenGL.Enums.PixelTexGenParameterNameSgis pname, Single param); + internal delegate void PixelTexGenParameterfSGIS(OpenTK.OpenGL.Enums.All pname, Single param); internal static PixelTexGenParameterfSGIS glPixelTexGenParameterfSGIS; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void PixelTexGenParameterfvSGIS(OpenTK.OpenGL.Enums.PixelTexGenParameterNameSgis pname, Single* @params); + internal unsafe delegate void PixelTexGenParameterfvSGIS(OpenTK.OpenGL.Enums.All pname, Single* @params); internal unsafe static PixelTexGenParameterfvSGIS glPixelTexGenParameterfvSGIS; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetPixelTexGenParameterivSGIS(OpenTK.OpenGL.Enums.PixelTexGenParameterNameSgis pname, [Out] Int32* @params); + internal unsafe delegate void GetPixelTexGenParameterivSGIS(OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params); internal unsafe static GetPixelTexGenParameterivSGIS glGetPixelTexGenParameterivSGIS; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetPixelTexGenParameterfvSGIS(OpenTK.OpenGL.Enums.PixelTexGenParameterNameSgis pname, [Out] Single* @params); + internal unsafe delegate void GetPixelTexGenParameterfvSGIS(OpenTK.OpenGL.Enums.All pname, [Out] Single* @params); internal unsafe static GetPixelTexGenParameterfvSGIS glGetPixelTexGenParameterfvSGIS; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void TexImage4DSGIS(OpenTK.OpenGL.Enums.TextureTarget target, Int32 level, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 size4d, Int32 border, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr pixels); @@ -2559,7 +2559,7 @@ namespace OpenTK.OpenGL internal delegate void SampleMaskSGIS(Single value, bool invert); internal static SampleMaskSGIS glSampleMaskSGIS; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void SamplePatternSGIS(OpenTK.OpenGL.Enums.SamplePatternSgis pattern); + internal delegate void SamplePatternSGIS(OpenTK.OpenGL.Enums.All pattern); internal static SamplePatternSGIS glSamplePatternSGIS; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void ArrayElementEXT(Int32 i); @@ -2589,31 +2589,31 @@ namespace OpenTK.OpenGL internal delegate void VertexPointerEXT(Int32 size, OpenTK.OpenGL.Enums.VertexPointerType type, Int32 stride, Int32 count, IntPtr pointer); internal static VertexPointerEXT glVertexPointerEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BlendEquationEXT(OpenTK.OpenGL.Enums.BlendEquationModeExt mode); + internal delegate void BlendEquationEXT(OpenTK.OpenGL.Enums.All mode); internal static BlendEquationEXT glBlendEquationEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void SpriteParameterfSGIX(OpenTK.OpenGL.Enums.SgixSprite pname, Single param); + internal delegate void SpriteParameterfSGIX(OpenTK.OpenGL.Enums.All pname, Single param); internal static SpriteParameterfSGIX glSpriteParameterfSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void SpriteParameterfvSGIX(OpenTK.OpenGL.Enums.SgixSprite pname, Single* @params); + internal unsafe delegate void SpriteParameterfvSGIX(OpenTK.OpenGL.Enums.All pname, Single* @params); internal unsafe static SpriteParameterfvSGIX glSpriteParameterfvSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void SpriteParameteriSGIX(OpenTK.OpenGL.Enums.SgixSprite pname, Int32 param); + internal delegate void SpriteParameteriSGIX(OpenTK.OpenGL.Enums.All pname, Int32 param); internal static SpriteParameteriSGIX glSpriteParameteriSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void SpriteParameterivSGIX(OpenTK.OpenGL.Enums.SgixSprite pname, Int32* @params); + internal unsafe delegate void SpriteParameterivSGIX(OpenTK.OpenGL.Enums.All pname, Int32* @params); internal unsafe static SpriteParameterivSGIX glSpriteParameterivSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void PointParameterfEXT(OpenTK.OpenGL.Enums.ExtPointParameters pname, Single param); + internal delegate void PointParameterfEXT(OpenTK.OpenGL.Enums.All pname, Single param); internal static PointParameterfEXT glPointParameterfEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void PointParameterfvEXT(OpenTK.OpenGL.Enums.ExtPointParameters pname, Single* @params); + internal unsafe delegate void PointParameterfvEXT(OpenTK.OpenGL.Enums.All pname, Single* @params); internal unsafe static PointParameterfvEXT glPointParameterfvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void PointParameterfSGIS(OpenTK.OpenGL.Enums.SgisPointParameters pname, Single param); + internal delegate void PointParameterfSGIS(OpenTK.OpenGL.Enums.All pname, Single param); internal static PointParameterfSGIS glPointParameterfSGIS; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void PointParameterfvSGIS(OpenTK.OpenGL.Enums.SgisPointParameters pname, Single* @params); + internal unsafe delegate void PointParameterfvSGIS(OpenTK.OpenGL.Enums.All pname, Single* @params); internal unsafe static PointParameterfvSGIS glPointParameterfvSGIS; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate Int32 GetInstrumentsSGIX(); @@ -2640,16 +2640,16 @@ namespace OpenTK.OpenGL internal delegate void TagSampleBufferSGIX(); internal static TagSampleBufferSGIX glTagSampleBufferSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void DeformationMap3dSGIX(OpenTK.OpenGL.Enums.FfdTargetSgix target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double w1, Double w2, Int32 wstride, Int32 worder, Double* points); + internal unsafe delegate void DeformationMap3dSGIX(OpenTK.OpenGL.Enums.All target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double w1, Double w2, Int32 wstride, Int32 worder, Double* points); internal unsafe static DeformationMap3dSGIX glDeformationMap3dSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void DeformationMap3fSGIX(OpenTK.OpenGL.Enums.FfdTargetSgix target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single w1, Single w2, Int32 wstride, Int32 worder, Single* points); + internal unsafe delegate void DeformationMap3fSGIX(OpenTK.OpenGL.Enums.All target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single w1, Single w2, Int32 wstride, Int32 worder, Single* points); internal unsafe static DeformationMap3fSGIX glDeformationMap3fSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void DeformSGIX(OpenTK.OpenGL.Enums.FfdMaskSgix mask); + internal delegate void DeformSGIX(UInt32 mask); internal static DeformSGIX glDeformSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void LoadIdentityDeformationMapSGIX(OpenTK.OpenGL.Enums.FfdMaskSgix mask); + internal delegate void LoadIdentityDeformationMapSGIX(UInt32 mask); internal static LoadIdentityDeformationMapSGIX glLoadIdentityDeformationMapSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void ReferencePlaneSGIX(Double* equation); @@ -2664,43 +2664,43 @@ namespace OpenTK.OpenGL internal unsafe delegate void GetFogFuncSGIS([Out] Single* points); internal unsafe static GetFogFuncSGIS glGetFogFuncSGIS; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ImageTransformParameteriHP(OpenTK.OpenGL.Enums.HpImageTransform target, OpenTK.OpenGL.Enums.HpImageTransform pname, Int32 param); + internal delegate void ImageTransformParameteriHP(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Int32 param); internal static ImageTransformParameteriHP glImageTransformParameteriHP; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ImageTransformParameterfHP(OpenTK.OpenGL.Enums.HpImageTransform target, OpenTK.OpenGL.Enums.HpImageTransform pname, Single param); + internal delegate void ImageTransformParameterfHP(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Single param); internal static ImageTransformParameterfHP glImageTransformParameterfHP; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ImageTransformParameterivHP(OpenTK.OpenGL.Enums.HpImageTransform target, OpenTK.OpenGL.Enums.HpImageTransform pname, Int32* @params); + internal unsafe delegate void ImageTransformParameterivHP(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Int32* @params); internal unsafe static ImageTransformParameterivHP glImageTransformParameterivHP; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ImageTransformParameterfvHP(OpenTK.OpenGL.Enums.HpImageTransform target, OpenTK.OpenGL.Enums.HpImageTransform pname, Single* @params); + internal unsafe delegate void ImageTransformParameterfvHP(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Single* @params); internal unsafe static ImageTransformParameterfvHP glImageTransformParameterfvHP; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetImageTransformParameterivHP(OpenTK.OpenGL.Enums.HpImageTransform target, OpenTK.OpenGL.Enums.HpImageTransform pname, [Out] Int32* @params); + internal unsafe delegate void GetImageTransformParameterivHP(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params); internal unsafe static GetImageTransformParameterivHP glGetImageTransformParameterivHP; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetImageTransformParameterfvHP(OpenTK.OpenGL.Enums.HpImageTransform target, OpenTK.OpenGL.Enums.HpImageTransform pname, [Out] Single* @params); + internal unsafe delegate void GetImageTransformParameterfvHP(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params); internal unsafe static GetImageTransformParameterfvHP glGetImageTransformParameterfvHP; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ColorSubTableEXT(OpenTK.OpenGL.Enums.ExtColorSubtable target, Int32 start, Int32 count, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr data); + internal delegate void ColorSubTableEXT(OpenTK.OpenGL.Enums.All target, Int32 start, Int32 count, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr data); internal static ColorSubTableEXT glColorSubTableEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CopyColorSubTableEXT(OpenTK.OpenGL.Enums.ExtColorSubtable target, Int32 start, Int32 x, Int32 y, Int32 width); + internal delegate void CopyColorSubTableEXT(OpenTK.OpenGL.Enums.All target, Int32 start, Int32 x, Int32 y, Int32 width); internal static CopyColorSubTableEXT glCopyColorSubTableEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void HintPGI(OpenTK.OpenGL.Enums.PgiMiscHints target, Int32 mode); + internal delegate void HintPGI(OpenTK.OpenGL.Enums.All target, Int32 mode); internal static HintPGI glHintPGI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ColorTableEXT(OpenTK.OpenGL.Enums.ExtPalettedTexture target, OpenTK.OpenGL.Enums.PixelInternalFormat internalFormat, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr table); + internal delegate void ColorTableEXT(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelInternalFormat internalFormat, Int32 width, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, IntPtr table); internal static ColorTableEXT glColorTableEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetColorTableEXT(OpenTK.OpenGL.Enums.ExtPalettedTexture target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr data); + internal delegate void GetColorTableEXT(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.PixelFormat format, OpenTK.OpenGL.Enums.PixelType type, [Out] IntPtr data); internal static GetColorTableEXT glGetColorTableEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetColorTableParameterivEXT(OpenTK.OpenGL.Enums.ExtPalettedTexture target, OpenTK.OpenGL.Enums.ExtPalettedTexture pname, [Out] Int32* @params); + internal unsafe delegate void GetColorTableParameterivEXT(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params); internal unsafe static GetColorTableParameterivEXT glGetColorTableParameterivEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetColorTableParameterfvEXT(OpenTK.OpenGL.Enums.ExtPalettedTexture target, OpenTK.OpenGL.Enums.ExtPalettedTexture pname, [Out] Single* @params); + internal unsafe delegate void GetColorTableParameterfvEXT(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params); internal unsafe static GetColorTableParameterfvEXT glGetColorTableParameterfvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void GetListParameterfvSGIX(UInt32 list, OpenTK.OpenGL.Enums.ListParameterName pname, [Out] Single* @params); @@ -2721,10 +2721,10 @@ namespace OpenTK.OpenGL internal unsafe delegate void ListParameterivSGIX(UInt32 list, OpenTK.OpenGL.Enums.ListParameterName pname, Int32* @params); internal unsafe static ListParameterivSGIX glListParameterivSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void IndexMaterialEXT(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.ExtIndexMaterial mode); + internal delegate void IndexMaterialEXT(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.All mode); internal static IndexMaterialEXT glIndexMaterialEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void IndexFuncEXT(OpenTK.OpenGL.Enums.ExtIndexFunc func, Single @ref); + internal delegate void IndexFuncEXT(OpenTK.OpenGL.Enums.All func, Single @ref); internal static IndexFuncEXT glIndexFuncEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void LockArraysEXT(Int32 first, Int32 count); @@ -2733,37 +2733,37 @@ namespace OpenTK.OpenGL internal delegate void UnlockArraysEXT(); internal static UnlockArraysEXT glUnlockArraysEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void CullParameterdvEXT(OpenTK.OpenGL.Enums.ExtCullVertex pname, [Out] Double* @params); + internal unsafe delegate void CullParameterdvEXT(OpenTK.OpenGL.Enums.All pname, [Out] Double* @params); internal unsafe static CullParameterdvEXT glCullParameterdvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void CullParameterfvEXT(OpenTK.OpenGL.Enums.ExtCullVertex pname, [Out] Single* @params); + internal unsafe delegate void CullParameterfvEXT(OpenTK.OpenGL.Enums.All pname, [Out] Single* @params); internal unsafe static CullParameterfvEXT glCullParameterfvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void FragmentColorMaterialSGIX(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter mode); internal static FragmentColorMaterialSGIX glFragmentColorMaterialSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FragmentLightfSGIX(OpenTK.OpenGL.Enums.SgixFragmentLighting light, OpenTK.OpenGL.Enums.SgixFragmentLighting pname, Single param); + internal delegate void FragmentLightfSGIX(OpenTK.OpenGL.Enums.All light, OpenTK.OpenGL.Enums.All pname, Single param); internal static FragmentLightfSGIX glFragmentLightfSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void FragmentLightfvSGIX(OpenTK.OpenGL.Enums.SgixFragmentLighting light, OpenTK.OpenGL.Enums.SgixFragmentLighting pname, Single* @params); + internal unsafe delegate void FragmentLightfvSGIX(OpenTK.OpenGL.Enums.All light, OpenTK.OpenGL.Enums.All pname, Single* @params); internal unsafe static FragmentLightfvSGIX glFragmentLightfvSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FragmentLightiSGIX(OpenTK.OpenGL.Enums.SgixFragmentLighting light, OpenTK.OpenGL.Enums.SgixFragmentLighting pname, Int32 param); + internal delegate void FragmentLightiSGIX(OpenTK.OpenGL.Enums.All light, OpenTK.OpenGL.Enums.All pname, Int32 param); internal static FragmentLightiSGIX glFragmentLightiSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void FragmentLightivSGIX(OpenTK.OpenGL.Enums.SgixFragmentLighting light, OpenTK.OpenGL.Enums.SgixFragmentLighting pname, Int32* @params); + internal unsafe delegate void FragmentLightivSGIX(OpenTK.OpenGL.Enums.All light, OpenTK.OpenGL.Enums.All pname, Int32* @params); internal unsafe static FragmentLightivSGIX glFragmentLightivSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FragmentLightModelfSGIX(OpenTK.OpenGL.Enums.FragmentLightModelParameterSgix pname, Single param); + internal delegate void FragmentLightModelfSGIX(OpenTK.OpenGL.Enums.All pname, Single param); internal static FragmentLightModelfSGIX glFragmentLightModelfSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void FragmentLightModelfvSGIX(OpenTK.OpenGL.Enums.FragmentLightModelParameterSgix pname, Single* @params); + internal unsafe delegate void FragmentLightModelfvSGIX(OpenTK.OpenGL.Enums.All pname, Single* @params); internal unsafe static FragmentLightModelfvSGIX glFragmentLightModelfvSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FragmentLightModeliSGIX(OpenTK.OpenGL.Enums.FragmentLightModelParameterSgix pname, Int32 param); + internal delegate void FragmentLightModeliSGIX(OpenTK.OpenGL.Enums.All pname, Int32 param); internal static FragmentLightModeliSGIX glFragmentLightModeliSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void FragmentLightModelivSGIX(OpenTK.OpenGL.Enums.FragmentLightModelParameterSgix pname, Int32* @params); + internal unsafe delegate void FragmentLightModelivSGIX(OpenTK.OpenGL.Enums.All pname, Int32* @params); internal unsafe static FragmentLightModelivSGIX glFragmentLightModelivSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void FragmentMaterialfSGIX(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter pname, Single param); @@ -2778,10 +2778,10 @@ namespace OpenTK.OpenGL internal unsafe delegate void FragmentMaterialivSGIX(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter pname, Int32* @params); internal unsafe static FragmentMaterialivSGIX glFragmentMaterialivSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetFragmentLightfvSGIX(OpenTK.OpenGL.Enums.SgixFragmentLighting light, OpenTK.OpenGL.Enums.SgixFragmentLighting pname, [Out] Single* @params); + internal unsafe delegate void GetFragmentLightfvSGIX(OpenTK.OpenGL.Enums.All light, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params); internal unsafe static GetFragmentLightfvSGIX glGetFragmentLightfvSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetFragmentLightivSGIX(OpenTK.OpenGL.Enums.SgixFragmentLighting light, OpenTK.OpenGL.Enums.SgixFragmentLighting pname, [Out] Int32* @params); + internal unsafe delegate void GetFragmentLightivSGIX(OpenTK.OpenGL.Enums.All light, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params); internal unsafe static GetFragmentLightivSGIX glGetFragmentLightivSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void GetFragmentMaterialfvSGIX(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter pname, [Out] Single* @params); @@ -2790,16 +2790,16 @@ namespace OpenTK.OpenGL internal unsafe delegate void GetFragmentMaterialivSGIX(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter pname, [Out] Int32* @params); internal unsafe static GetFragmentMaterialivSGIX glGetFragmentMaterialivSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void LightEnviSGIX(OpenTK.OpenGL.Enums.LightEnvParameterSgix pname, Int32 param); + internal delegate void LightEnviSGIX(OpenTK.OpenGL.Enums.All pname, Int32 param); internal static LightEnviSGIX glLightEnviSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void DrawRangeElementsEXT(OpenTK.OpenGL.Enums.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.OpenGL.Enums.ExtDrawRangeElements type, IntPtr indices); + internal delegate void DrawRangeElementsEXT(OpenTK.OpenGL.Enums.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.OpenGL.Enums.All type, IntPtr indices); internal static DrawRangeElementsEXT glDrawRangeElementsEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ApplyTextureEXT(OpenTK.OpenGL.Enums.ExtLightTexture mode); + internal delegate void ApplyTextureEXT(OpenTK.OpenGL.Enums.All mode); internal static ApplyTextureEXT glApplyTextureEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void TextureLightEXT(OpenTK.OpenGL.Enums.ExtLightTexture pname); + internal delegate void TextureLightEXT(OpenTK.OpenGL.Enums.All pname); internal static TextureLightEXT glTextureLightEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void TextureMaterialEXT(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter mode); @@ -2835,16 +2835,16 @@ namespace OpenTK.OpenGL internal delegate void TexCoordPointervINTEL(Int32 size, OpenTK.OpenGL.Enums.VertexPointerType type, IntPtr pointer); internal static TexCoordPointervINTEL glTexCoordPointervINTEL; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void PixelTransformParameteriEXT(OpenTK.OpenGL.Enums.ExtPixelTransform target, OpenTK.OpenGL.Enums.ExtPixelTransform pname, Int32 param); + internal delegate void PixelTransformParameteriEXT(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Int32 param); internal static PixelTransformParameteriEXT glPixelTransformParameteriEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void PixelTransformParameterfEXT(OpenTK.OpenGL.Enums.ExtPixelTransform target, OpenTK.OpenGL.Enums.ExtPixelTransform pname, Single param); + internal delegate void PixelTransformParameterfEXT(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Single param); internal static PixelTransformParameterfEXT glPixelTransformParameterfEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void PixelTransformParameterivEXT(OpenTK.OpenGL.Enums.ExtPixelTransform target, OpenTK.OpenGL.Enums.ExtPixelTransform pname, Int32* @params); + internal unsafe delegate void PixelTransformParameterivEXT(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Int32* @params); internal unsafe static PixelTransformParameterivEXT glPixelTransformParameterivEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void PixelTransformParameterfvEXT(OpenTK.OpenGL.Enums.ExtPixelTransform target, OpenTK.OpenGL.Enums.ExtPixelTransform pname, Single* @params); + internal unsafe delegate void PixelTransformParameterfvEXT(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Single* @params); internal unsafe static PixelTransformParameterfvEXT glPixelTransformParameterfvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void SecondaryColor3bEXT(SByte red, SByte green, SByte blue); @@ -2898,13 +2898,13 @@ namespace OpenTK.OpenGL internal delegate void SecondaryColorPointerEXT(Int32 size, OpenTK.OpenGL.Enums.ColorPointerType type, Int32 stride, IntPtr pointer); internal static SecondaryColorPointerEXT glSecondaryColorPointerEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void TextureNormalEXT(OpenTK.OpenGL.Enums.ExtTexturePerturbNormal mode); + internal delegate void TextureNormalEXT(OpenTK.OpenGL.Enums.All mode); internal static TextureNormalEXT glTextureNormalEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void MultiDrawArraysEXT(OpenTK.OpenGL.Enums.BeginMode mode, [Out] Int32* first, [Out] Int32* count, Int32 primcount); internal unsafe static MultiDrawArraysEXT glMultiDrawArraysEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiDrawElementsEXT(OpenTK.OpenGL.Enums.BeginMode mode, Int32* count, OpenTK.OpenGL.Enums.ExtMultiDrawArrays type, IntPtr indices, Int32 primcount); + internal unsafe delegate void MultiDrawElementsEXT(OpenTK.OpenGL.Enums.BeginMode mode, Int32* count, OpenTK.OpenGL.Enums.All type, IntPtr indices, Int32 primcount); internal unsafe static MultiDrawElementsEXT glMultiDrawElementsEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void FogCoordfEXT(Single coord); @@ -2919,7 +2919,7 @@ namespace OpenTK.OpenGL internal unsafe delegate void FogCoorddvEXT(Double* coord); internal unsafe static FogCoorddvEXT glFogCoorddvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FogCoordPointerEXT(OpenTK.OpenGL.Enums.ExtFogCoord type, Int32 stride, IntPtr pointer); + internal delegate void FogCoordPointerEXT(OpenTK.OpenGL.Enums.All type, Int32 stride, IntPtr pointer); internal static FogCoordPointerEXT glFogCoordPointerEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void Tangent3bEXT(SByte tx, SByte ty, SByte tz); @@ -2982,10 +2982,10 @@ namespace OpenTK.OpenGL internal unsafe delegate void Binormal3svEXT(Int16* v); internal unsafe static Binormal3svEXT glBinormal3svEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void TangentPointerEXT(OpenTK.OpenGL.Enums.ExtCoordinateFrame type, Int32 stride, IntPtr pointer); + internal delegate void TangentPointerEXT(OpenTK.OpenGL.Enums.All type, Int32 stride, IntPtr pointer); internal static TangentPointerEXT glTangentPointerEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BinormalPointerEXT(OpenTK.OpenGL.Enums.ExtCoordinateFrame type, Int32 stride, IntPtr pointer); + internal delegate void BinormalPointerEXT(OpenTK.OpenGL.Enums.All type, Int32 stride, IntPtr pointer); internal static BinormalPointerEXT glBinormalPointerEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void FinishTextureSUNX(); @@ -3033,7 +3033,7 @@ namespace OpenTK.OpenGL internal unsafe delegate void ReplacementCodeubvSUN(Byte* code); internal unsafe static ReplacementCodeubvSUN glReplacementCodeubvSUN; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ReplacementCodePointerSUN(OpenTK.OpenGL.Enums.SunTriangleList type, Int32 stride, IntPtr pointer); + internal delegate void ReplacementCodePointerSUN(OpenTK.OpenGL.Enums.All type, Int32 stride, IntPtr pointer); internal static ReplacementCodePointerSUN glReplacementCodePointerSUN; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void Color4ubVertex2fSUN(Byte r, Byte g, Byte b, Byte a, Single x, Single y); @@ -3156,7 +3156,7 @@ namespace OpenTK.OpenGL internal unsafe delegate void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN(UInt32* rc, Single* tc, Single* c, Single* n, Single* v); internal unsafe static ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BlendFuncSeparateEXT(OpenTK.OpenGL.Enums.ExtBlendFuncSeparate sfactorRGB, OpenTK.OpenGL.Enums.ExtBlendFuncSeparate dfactorRGB, OpenTK.OpenGL.Enums.ExtBlendFuncSeparate sfactorAlpha, OpenTK.OpenGL.Enums.ExtBlendFuncSeparate dfactorAlpha); + internal delegate void BlendFuncSeparateEXT(OpenTK.OpenGL.Enums.All sfactorRGB, OpenTK.OpenGL.Enums.All dfactorRGB, OpenTK.OpenGL.Enums.All sfactorAlpha, OpenTK.OpenGL.Enums.All dfactorAlpha); internal static BlendFuncSeparateEXT glBlendFuncSeparateEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void BlendFuncSeparateINGR(OpenTK.OpenGL.Enums.All sfactorRGB, OpenTK.OpenGL.Enums.All dfactorRGB, OpenTK.OpenGL.Enums.All sfactorAlpha, OpenTK.OpenGL.Enums.All dfactorAlpha); @@ -3168,7 +3168,7 @@ namespace OpenTK.OpenGL internal unsafe delegate void VertexWeightfvEXT(Single* weight); internal unsafe static VertexWeightfvEXT glVertexWeightfvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexWeightPointerEXT(Int32 size, OpenTK.OpenGL.Enums.ExtVertexWeighting type, Int32 stride, IntPtr pointer); + internal delegate void VertexWeightPointerEXT(Int32 size, OpenTK.OpenGL.Enums.All type, Int32 stride, IntPtr pointer); internal static VertexWeightPointerEXT glVertexWeightPointerEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void FlushVertexArrayRangeNV(); @@ -3177,43 +3177,43 @@ namespace OpenTK.OpenGL internal delegate void VertexArrayRangeNV(Int32 length, IntPtr pointer); internal static VertexArrayRangeNV glVertexArrayRangeNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void CombinerParameterfvNV(OpenTK.OpenGL.Enums.NvRegisterCombiners pname, Single* @params); + internal unsafe delegate void CombinerParameterfvNV(OpenTK.OpenGL.Enums.All pname, Single* @params); internal unsafe static CombinerParameterfvNV glCombinerParameterfvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CombinerParameterfNV(OpenTK.OpenGL.Enums.NvRegisterCombiners pname, Single param); + internal delegate void CombinerParameterfNV(OpenTK.OpenGL.Enums.All pname, Single param); internal static CombinerParameterfNV glCombinerParameterfNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void CombinerParameterivNV(OpenTK.OpenGL.Enums.NvRegisterCombiners pname, Int32* @params); + internal unsafe delegate void CombinerParameterivNV(OpenTK.OpenGL.Enums.All pname, Int32* @params); internal unsafe static CombinerParameterivNV glCombinerParameterivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CombinerParameteriNV(OpenTK.OpenGL.Enums.NvRegisterCombiners pname, Int32 param); + internal delegate void CombinerParameteriNV(OpenTK.OpenGL.Enums.All pname, Int32 param); internal static CombinerParameteriNV glCombinerParameteriNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CombinerInputNV(OpenTK.OpenGL.Enums.NvRegisterCombiners stage, OpenTK.OpenGL.Enums.NvRegisterCombiners portion, OpenTK.OpenGL.Enums.NvRegisterCombiners variable, OpenTK.OpenGL.Enums.NvRegisterCombiners input, OpenTK.OpenGL.Enums.NvRegisterCombiners mapping, OpenTK.OpenGL.Enums.NvRegisterCombiners componentUsage); + internal delegate void CombinerInputNV(OpenTK.OpenGL.Enums.All stage, OpenTK.OpenGL.Enums.All portion, OpenTK.OpenGL.Enums.All variable, OpenTK.OpenGL.Enums.All input, OpenTK.OpenGL.Enums.All mapping, OpenTK.OpenGL.Enums.All componentUsage); internal static CombinerInputNV glCombinerInputNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CombinerOutputNV(OpenTK.OpenGL.Enums.NvRegisterCombiners stage, OpenTK.OpenGL.Enums.NvRegisterCombiners portion, OpenTK.OpenGL.Enums.NvRegisterCombiners abOutput, OpenTK.OpenGL.Enums.NvRegisterCombiners cdOutput, OpenTK.OpenGL.Enums.NvRegisterCombiners sumOutput, OpenTK.OpenGL.Enums.NvRegisterCombiners scale, OpenTK.OpenGL.Enums.NvRegisterCombiners bias, bool abDotProduct, bool cdDotProduct, bool muxSum); + internal delegate void CombinerOutputNV(OpenTK.OpenGL.Enums.All stage, OpenTK.OpenGL.Enums.All portion, OpenTK.OpenGL.Enums.All abOutput, OpenTK.OpenGL.Enums.All cdOutput, OpenTK.OpenGL.Enums.All sumOutput, OpenTK.OpenGL.Enums.All scale, OpenTK.OpenGL.Enums.All bias, bool abDotProduct, bool cdDotProduct, bool muxSum); internal static CombinerOutputNV glCombinerOutputNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FinalCombinerInputNV(OpenTK.OpenGL.Enums.NvRegisterCombiners variable, OpenTK.OpenGL.Enums.NvRegisterCombiners input, OpenTK.OpenGL.Enums.NvRegisterCombiners mapping, OpenTK.OpenGL.Enums.NvRegisterCombiners componentUsage); + internal delegate void FinalCombinerInputNV(OpenTK.OpenGL.Enums.All variable, OpenTK.OpenGL.Enums.All input, OpenTK.OpenGL.Enums.All mapping, OpenTK.OpenGL.Enums.All componentUsage); internal static FinalCombinerInputNV glFinalCombinerInputNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetCombinerInputParameterfvNV(OpenTK.OpenGL.Enums.NvRegisterCombiners stage, OpenTK.OpenGL.Enums.NvRegisterCombiners portion, OpenTK.OpenGL.Enums.NvRegisterCombiners variable, OpenTK.OpenGL.Enums.NvRegisterCombiners pname, [Out] Single* @params); + internal unsafe delegate void GetCombinerInputParameterfvNV(OpenTK.OpenGL.Enums.All stage, OpenTK.OpenGL.Enums.All portion, OpenTK.OpenGL.Enums.All variable, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params); internal unsafe static GetCombinerInputParameterfvNV glGetCombinerInputParameterfvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetCombinerInputParameterivNV(OpenTK.OpenGL.Enums.NvRegisterCombiners stage, OpenTK.OpenGL.Enums.NvRegisterCombiners portion, OpenTK.OpenGL.Enums.NvRegisterCombiners variable, OpenTK.OpenGL.Enums.NvRegisterCombiners pname, [Out] Int32* @params); + internal unsafe delegate void GetCombinerInputParameterivNV(OpenTK.OpenGL.Enums.All stage, OpenTK.OpenGL.Enums.All portion, OpenTK.OpenGL.Enums.All variable, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params); internal unsafe static GetCombinerInputParameterivNV glGetCombinerInputParameterivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetCombinerOutputParameterfvNV(OpenTK.OpenGL.Enums.NvRegisterCombiners stage, OpenTK.OpenGL.Enums.NvRegisterCombiners portion, OpenTK.OpenGL.Enums.NvRegisterCombiners pname, [Out] Single* @params); + internal unsafe delegate void GetCombinerOutputParameterfvNV(OpenTK.OpenGL.Enums.All stage, OpenTK.OpenGL.Enums.All portion, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params); internal unsafe static GetCombinerOutputParameterfvNV glGetCombinerOutputParameterfvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetCombinerOutputParameterivNV(OpenTK.OpenGL.Enums.NvRegisterCombiners stage, OpenTK.OpenGL.Enums.NvRegisterCombiners portion, OpenTK.OpenGL.Enums.NvRegisterCombiners pname, [Out] Int32* @params); + internal unsafe delegate void GetCombinerOutputParameterivNV(OpenTK.OpenGL.Enums.All stage, OpenTK.OpenGL.Enums.All portion, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params); internal unsafe static GetCombinerOutputParameterivNV glGetCombinerOutputParameterivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetFinalCombinerInputParameterfvNV(OpenTK.OpenGL.Enums.NvRegisterCombiners variable, OpenTK.OpenGL.Enums.NvRegisterCombiners pname, [Out] Single* @params); + internal unsafe delegate void GetFinalCombinerInputParameterfvNV(OpenTK.OpenGL.Enums.All variable, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params); internal unsafe static GetFinalCombinerInputParameterfvNV glGetFinalCombinerInputParameterfvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetFinalCombinerInputParameterivNV(OpenTK.OpenGL.Enums.NvRegisterCombiners variable, OpenTK.OpenGL.Enums.NvRegisterCombiners pname, [Out] Int32* @params); + internal unsafe delegate void GetFinalCombinerInputParameterivNV(OpenTK.OpenGL.Enums.All variable, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params); internal unsafe static GetFinalCombinerInputParameterivNV glGetFinalCombinerInputParameterivNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void ResizeBuffersMESA(); @@ -3294,19 +3294,19 @@ namespace OpenTK.OpenGL internal unsafe delegate void MultiModeDrawArraysIBM(OpenTK.OpenGL.Enums.BeginMode* mode, Int32* first, Int32* count, Int32 primcount, Int32 modestride); internal unsafe static MultiModeDrawArraysIBM glMultiModeDrawArraysIBM; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiModeDrawElementsIBM(OpenTK.OpenGL.Enums.BeginMode* mode, Int32* count, OpenTK.OpenGL.Enums.IbmMultimodeDrawArrays type, IntPtr indices, Int32 primcount, Int32 modestride); + internal unsafe delegate void MultiModeDrawElementsIBM(OpenTK.OpenGL.Enums.BeginMode* mode, Int32* count, OpenTK.OpenGL.Enums.All type, IntPtr indices, Int32 primcount, Int32 modestride); internal unsafe static MultiModeDrawElementsIBM glMultiModeDrawElementsIBM; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void ColorPointerListIBM(Int32 size, OpenTK.OpenGL.Enums.ColorPointerType type, Int32 stride, IntPtr pointer, Int32 ptrstride); internal static ColorPointerListIBM glColorPointerListIBM; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void SecondaryColorPointerListIBM(Int32 size, OpenTK.OpenGL.Enums.IbmVertexArrayLists type, Int32 stride, IntPtr pointer, Int32 ptrstride); + internal delegate void SecondaryColorPointerListIBM(Int32 size, OpenTK.OpenGL.Enums.All type, Int32 stride, IntPtr pointer, Int32 ptrstride); internal static SecondaryColorPointerListIBM glSecondaryColorPointerListIBM; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void EdgeFlagPointerListIBM(Int32 stride, bool* pointer, Int32 ptrstride); internal unsafe static EdgeFlagPointerListIBM glEdgeFlagPointerListIBM; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FogCoordPointerListIBM(OpenTK.OpenGL.Enums.IbmVertexArrayLists type, Int32 stride, IntPtr pointer, Int32 ptrstride); + internal delegate void FogCoordPointerListIBM(OpenTK.OpenGL.Enums.All type, Int32 stride, IntPtr pointer, Int32 ptrstride); internal static FogCoordPointerListIBM glFogCoordPointerListIBM; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void IndexPointerListIBM(OpenTK.OpenGL.Enums.IndexPointerType type, Int32 stride, IntPtr pointer, Int32 ptrstride); @@ -3327,7 +3327,7 @@ namespace OpenTK.OpenGL internal delegate void SampleMaskEXT(Single value, bool invert); internal static SampleMaskEXT glSampleMaskEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void SamplePatternEXT(OpenTK.OpenGL.Enums.ExtMultisample pattern); + internal delegate void SamplePatternEXT(OpenTK.OpenGL.Enums.All pattern); internal static SamplePatternEXT glSamplePatternEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void TextureColorMaskSGIS(bool red, bool green, bool blue, bool alpha); @@ -3348,121 +3348,121 @@ namespace OpenTK.OpenGL internal delegate bool TestFenceNV(UInt32 fence); internal static TestFenceNV glTestFenceNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetFenceivNV(UInt32 fence, OpenTK.OpenGL.Enums.NvFence pname, [Out] Int32* @params); + internal unsafe delegate void GetFenceivNV(UInt32 fence, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params); internal unsafe static GetFenceivNV glGetFenceivNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void FinishFenceNV(UInt32 fence); internal static FinishFenceNV glFinishFenceNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void SetFenceNV(UInt32 fence, OpenTK.OpenGL.Enums.NvFence condition); + internal delegate void SetFenceNV(UInt32 fence, OpenTK.OpenGL.Enums.All condition); internal static SetFenceNV glSetFenceNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MapControlPointsNV(OpenTK.OpenGL.Enums.NvEvaluators target, UInt32 index, OpenTK.OpenGL.Enums.NvEvaluators type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, IntPtr points); + internal delegate void MapControlPointsNV(OpenTK.OpenGL.Enums.All target, UInt32 index, OpenTK.OpenGL.Enums.All type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, IntPtr points); internal static MapControlPointsNV glMapControlPointsNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MapParameterivNV(OpenTK.OpenGL.Enums.NvEvaluators target, OpenTK.OpenGL.Enums.NvEvaluators pname, Int32* @params); + internal unsafe delegate void MapParameterivNV(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Int32* @params); internal unsafe static MapParameterivNV glMapParameterivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MapParameterfvNV(OpenTK.OpenGL.Enums.NvEvaluators target, OpenTK.OpenGL.Enums.NvEvaluators pname, Single* @params); + internal unsafe delegate void MapParameterfvNV(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Single* @params); internal unsafe static MapParameterfvNV glMapParameterfvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetMapControlPointsNV(OpenTK.OpenGL.Enums.NvEvaluators target, UInt32 index, OpenTK.OpenGL.Enums.NvEvaluators type, Int32 ustride, Int32 vstride, bool packed, [Out] IntPtr points); + internal delegate void GetMapControlPointsNV(OpenTK.OpenGL.Enums.All target, UInt32 index, OpenTK.OpenGL.Enums.All type, Int32 ustride, Int32 vstride, bool packed, [Out] IntPtr points); internal static GetMapControlPointsNV glGetMapControlPointsNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetMapParameterivNV(OpenTK.OpenGL.Enums.NvEvaluators target, OpenTK.OpenGL.Enums.NvEvaluators pname, [Out] Int32* @params); + internal unsafe delegate void GetMapParameterivNV(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params); internal unsafe static GetMapParameterivNV glGetMapParameterivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetMapParameterfvNV(OpenTK.OpenGL.Enums.NvEvaluators target, OpenTK.OpenGL.Enums.NvEvaluators pname, [Out] Single* @params); + internal unsafe delegate void GetMapParameterfvNV(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params); internal unsafe static GetMapParameterfvNV glGetMapParameterfvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetMapAttribParameterivNV(OpenTK.OpenGL.Enums.NvEvaluators target, UInt32 index, OpenTK.OpenGL.Enums.NvEvaluators pname, [Out] Int32* @params); + internal unsafe delegate void GetMapAttribParameterivNV(OpenTK.OpenGL.Enums.All target, UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params); internal unsafe static GetMapAttribParameterivNV glGetMapAttribParameterivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetMapAttribParameterfvNV(OpenTK.OpenGL.Enums.NvEvaluators target, UInt32 index, OpenTK.OpenGL.Enums.NvEvaluators pname, [Out] Single* @params); + internal unsafe delegate void GetMapAttribParameterfvNV(OpenTK.OpenGL.Enums.All target, UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params); internal unsafe static GetMapAttribParameterfvNV glGetMapAttribParameterfvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void EvalMapsNV(OpenTK.OpenGL.Enums.NvEvaluators target, OpenTK.OpenGL.Enums.NvEvaluators mode); + internal delegate void EvalMapsNV(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All mode); internal static EvalMapsNV glEvalMapsNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void CombinerStageParameterfvNV(OpenTK.OpenGL.Enums.NvRegisterCombiners2 stage, OpenTK.OpenGL.Enums.NvRegisterCombiners2 pname, Single* @params); + internal unsafe delegate void CombinerStageParameterfvNV(OpenTK.OpenGL.Enums.All stage, OpenTK.OpenGL.Enums.All pname, Single* @params); internal unsafe static CombinerStageParameterfvNV glCombinerStageParameterfvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetCombinerStageParameterfvNV(OpenTK.OpenGL.Enums.NvRegisterCombiners2 stage, OpenTK.OpenGL.Enums.NvRegisterCombiners2 pname, [Out] Single* @params); + internal unsafe delegate void GetCombinerStageParameterfvNV(OpenTK.OpenGL.Enums.All stage, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params); internal unsafe static GetCombinerStageParameterfvNV glGetCombinerStageParameterfvNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate bool AreProgramsResidentNV(Int32 n, UInt32* programs, [Out] bool* residences); internal unsafe static AreProgramsResidentNV glAreProgramsResidentNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BindProgramNV(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 id); + internal delegate void BindProgramNV(OpenTK.OpenGL.Enums.All target, UInt32 id); internal static BindProgramNV glBindProgramNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void DeleteProgramsNV(Int32 n, UInt32* programs); internal unsafe static DeleteProgramsNV glDeleteProgramsNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ExecuteProgramNV(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 id, Single* @params); + internal unsafe delegate void ExecuteProgramNV(OpenTK.OpenGL.Enums.All target, UInt32 id, Single* @params); internal unsafe static ExecuteProgramNV glExecuteProgramNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void GenProgramsNV(Int32 n, [Out] UInt32* programs); internal unsafe static GenProgramsNV glGenProgramsNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetProgramParameterdvNV(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Double* @params); + internal unsafe delegate void GetProgramParameterdvNV(OpenTK.OpenGL.Enums.All target, UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] Double* @params); internal unsafe static GetProgramParameterdvNV glGetProgramParameterdvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetProgramParameterfvNV(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Single* @params); + internal unsafe delegate void GetProgramParameterfvNV(OpenTK.OpenGL.Enums.All target, UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params); internal unsafe static GetProgramParameterfvNV glGetProgramParameterfvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetProgramivNV(UInt32 id, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Int32* @params); + internal unsafe delegate void GetProgramivNV(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params); internal unsafe static GetProgramivNV glGetProgramivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetProgramStringNV(UInt32 id, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Byte* program); + internal unsafe delegate void GetProgramStringNV(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] Byte* program); internal unsafe static GetProgramStringNV glGetProgramStringNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetTrackMatrixivNV(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 address, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Int32* @params); + internal unsafe delegate void GetTrackMatrixivNV(OpenTK.OpenGL.Enums.All target, UInt32 address, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params); internal unsafe static GetTrackMatrixivNV glGetTrackMatrixivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetVertexAttribdvNV(UInt32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Double* @params); + internal unsafe delegate void GetVertexAttribdvNV(UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] Double* @params); internal unsafe static GetVertexAttribdvNV glGetVertexAttribdvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetVertexAttribfvNV(UInt32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Single* @params); + internal unsafe delegate void GetVertexAttribfvNV(UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params); internal unsafe static GetVertexAttribfvNV glGetVertexAttribfvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetVertexAttribivNV(UInt32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] Int32* @params); + internal unsafe delegate void GetVertexAttribivNV(UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params); internal unsafe static GetVertexAttribivNV glGetVertexAttribivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetVertexAttribPointervNV(UInt32 index, OpenTK.OpenGL.Enums.NvVertexProgram pname, [Out] IntPtr pointer); + internal delegate void GetVertexAttribPointervNV(UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] IntPtr pointer); internal static GetVertexAttribPointervNV glGetVertexAttribPointervNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate bool IsProgramNV(UInt32 id); internal static IsProgramNV glIsProgramNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void LoadProgramNV(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 id, Int32 len, Byte* program); + internal unsafe delegate void LoadProgramNV(OpenTK.OpenGL.Enums.All target, UInt32 id, Int32 len, Byte* program); internal unsafe static LoadProgramNV glLoadProgramNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ProgramParameter4dNV(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 index, Double x, Double y, Double z, Double w); + internal delegate void ProgramParameter4dNV(OpenTK.OpenGL.Enums.All target, UInt32 index, Double x, Double y, Double z, Double w); internal static ProgramParameter4dNV glProgramParameter4dNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ProgramParameter4dvNV(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 index, Double* v); + internal unsafe delegate void ProgramParameter4dvNV(OpenTK.OpenGL.Enums.All target, UInt32 index, Double* v); internal unsafe static ProgramParameter4dvNV glProgramParameter4dvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ProgramParameter4fNV(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 index, Single x, Single y, Single z, Single w); + internal delegate void ProgramParameter4fNV(OpenTK.OpenGL.Enums.All target, UInt32 index, Single x, Single y, Single z, Single w); internal static ProgramParameter4fNV glProgramParameter4fNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ProgramParameter4fvNV(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 index, Single* v); + internal unsafe delegate void ProgramParameter4fvNV(OpenTK.OpenGL.Enums.All target, UInt32 index, Single* v); internal unsafe static ProgramParameter4fvNV glProgramParameter4fvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ProgramParameters4dvNV(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 index, UInt32 count, Double* v); + internal unsafe delegate void ProgramParameters4dvNV(OpenTK.OpenGL.Enums.All target, UInt32 index, UInt32 count, Double* v); internal unsafe static ProgramParameters4dvNV glProgramParameters4dvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ProgramParameters4fvNV(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 index, UInt32 count, Single* v); + internal unsafe delegate void ProgramParameters4fvNV(OpenTK.OpenGL.Enums.All target, UInt32 index, UInt32 count, Single* v); internal unsafe static ProgramParameters4fvNV glProgramParameters4fvNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void RequestResidentProgramsNV(Int32 n, UInt32* programs); internal unsafe static RequestResidentProgramsNV glRequestResidentProgramsNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void TrackMatrixNV(OpenTK.OpenGL.Enums.NvVertexProgram target, UInt32 address, OpenTK.OpenGL.Enums.NvVertexProgram matrix, OpenTK.OpenGL.Enums.NvVertexProgram transform); + internal delegate void TrackMatrixNV(OpenTK.OpenGL.Enums.All target, UInt32 address, OpenTK.OpenGL.Enums.All matrix, OpenTK.OpenGL.Enums.All transform); internal static TrackMatrixNV glTrackMatrixNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexAttribPointerNV(UInt32 index, Int32 fsize, OpenTK.OpenGL.Enums.NvVertexProgram type, Int32 stride, IntPtr pointer); + internal delegate void VertexAttribPointerNV(UInt32 index, Int32 fsize, OpenTK.OpenGL.Enums.All type, Int32 stride, IntPtr pointer); internal static VertexAttribPointerNV glVertexAttribPointerNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void VertexAttrib1dNV(UInt32 index, Double x); @@ -3582,16 +3582,16 @@ namespace OpenTK.OpenGL internal unsafe delegate void VertexAttribs4ubvNV(UInt32 index, Int32 count, Byte* v); internal unsafe static VertexAttribs4ubvNV glVertexAttribs4ubvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void TexBumpParameterivATI(OpenTK.OpenGL.Enums.AtiEnvmapBumpmap pname, Int32* param); + internal unsafe delegate void TexBumpParameterivATI(OpenTK.OpenGL.Enums.All pname, Int32* param); internal unsafe static TexBumpParameterivATI glTexBumpParameterivATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void TexBumpParameterfvATI(OpenTK.OpenGL.Enums.AtiEnvmapBumpmap pname, Single* param); + internal unsafe delegate void TexBumpParameterfvATI(OpenTK.OpenGL.Enums.All pname, Single* param); internal unsafe static TexBumpParameterfvATI glTexBumpParameterfvATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetTexBumpParameterivATI(OpenTK.OpenGL.Enums.AtiEnvmapBumpmap pname, [Out] Int32* param); + internal unsafe delegate void GetTexBumpParameterivATI(OpenTK.OpenGL.Enums.All pname, [Out] Int32* param); internal unsafe static GetTexBumpParameterivATI glGetTexBumpParameterivATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetTexBumpParameterfvATI(OpenTK.OpenGL.Enums.AtiEnvmapBumpmap pname, [Out] Single* param); + internal unsafe delegate void GetTexBumpParameterfvATI(OpenTK.OpenGL.Enums.All pname, [Out] Single* param); internal unsafe static GetTexBumpParameterfvATI glGetTexBumpParameterfvATI; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate Int32 GenFragmentShadersATI(UInt32 range); @@ -3609,73 +3609,73 @@ namespace OpenTK.OpenGL internal delegate void EndFragmentShaderATI(); internal static EndFragmentShaderATI glEndFragmentShaderATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void PassTexCoordATI(UInt32 dst, UInt32 coord, OpenTK.OpenGL.Enums.AtiFragmentShader swizzle); + internal delegate void PassTexCoordATI(UInt32 dst, UInt32 coord, OpenTK.OpenGL.Enums.All swizzle); internal static PassTexCoordATI glPassTexCoordATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void SampleMapATI(UInt32 dst, UInt32 interp, OpenTK.OpenGL.Enums.AtiFragmentShader swizzle); + internal delegate void SampleMapATI(UInt32 dst, UInt32 interp, OpenTK.OpenGL.Enums.All swizzle); internal static SampleMapATI glSampleMapATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ColorFragmentOp1ATI(OpenTK.OpenGL.Enums.AtiFragmentShader op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod); + internal delegate void ColorFragmentOp1ATI(OpenTK.OpenGL.Enums.All op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod); internal static ColorFragmentOp1ATI glColorFragmentOp1ATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ColorFragmentOp2ATI(OpenTK.OpenGL.Enums.AtiFragmentShader op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod); + internal delegate void ColorFragmentOp2ATI(OpenTK.OpenGL.Enums.All op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod); internal static ColorFragmentOp2ATI glColorFragmentOp2ATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ColorFragmentOp3ATI(OpenTK.OpenGL.Enums.AtiFragmentShader op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod, UInt32 arg3, UInt32 arg3Rep, UInt32 arg3Mod); + internal delegate void ColorFragmentOp3ATI(OpenTK.OpenGL.Enums.All op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod, UInt32 arg3, UInt32 arg3Rep, UInt32 arg3Mod); internal static ColorFragmentOp3ATI glColorFragmentOp3ATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void AlphaFragmentOp1ATI(OpenTK.OpenGL.Enums.AtiFragmentShader op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod); + internal delegate void AlphaFragmentOp1ATI(OpenTK.OpenGL.Enums.All op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod); internal static AlphaFragmentOp1ATI glAlphaFragmentOp1ATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void AlphaFragmentOp2ATI(OpenTK.OpenGL.Enums.AtiFragmentShader op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod); + internal delegate void AlphaFragmentOp2ATI(OpenTK.OpenGL.Enums.All op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod); internal static AlphaFragmentOp2ATI glAlphaFragmentOp2ATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void AlphaFragmentOp3ATI(OpenTK.OpenGL.Enums.AtiFragmentShader op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod, UInt32 arg3, UInt32 arg3Rep, UInt32 arg3Mod); + internal delegate void AlphaFragmentOp3ATI(OpenTK.OpenGL.Enums.All op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod, UInt32 arg3, UInt32 arg3Rep, UInt32 arg3Mod); internal static AlphaFragmentOp3ATI glAlphaFragmentOp3ATI; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void SetFragmentShaderConstantATI(UInt32 dst, Single* value); internal unsafe static SetFragmentShaderConstantATI glSetFragmentShaderConstantATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void PNTrianglesiATI(OpenTK.OpenGL.Enums.AtiPnTriangles pname, Int32 param); + internal delegate void PNTrianglesiATI(OpenTK.OpenGL.Enums.All pname, Int32 param); internal static PNTrianglesiATI glPNTrianglesiATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void PNTrianglesfATI(OpenTK.OpenGL.Enums.AtiPnTriangles pname, Single param); + internal delegate void PNTrianglesfATI(OpenTK.OpenGL.Enums.All pname, Single param); internal static PNTrianglesfATI glPNTrianglesfATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate Int32 NewObjectBufferATI(Int32 size, IntPtr pointer, OpenTK.OpenGL.Enums.AtiVertexArrayObject usage); + internal delegate Int32 NewObjectBufferATI(Int32 size, IntPtr pointer, OpenTK.OpenGL.Enums.All usage); internal static NewObjectBufferATI glNewObjectBufferATI; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate bool IsObjectBufferATI(UInt32 buffer); internal static IsObjectBufferATI glIsObjectBufferATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void UpdateObjectBufferATI(UInt32 buffer, UInt32 offset, Int32 size, IntPtr pointer, OpenTK.OpenGL.Enums.AtiVertexArrayObject preserve); + internal delegate void UpdateObjectBufferATI(UInt32 buffer, UInt32 offset, Int32 size, IntPtr pointer, OpenTK.OpenGL.Enums.All preserve); internal static UpdateObjectBufferATI glUpdateObjectBufferATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetObjectBufferfvATI(UInt32 buffer, OpenTK.OpenGL.Enums.AtiVertexArrayObject pname, [Out] Single* @params); + internal unsafe delegate void GetObjectBufferfvATI(UInt32 buffer, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params); internal unsafe static GetObjectBufferfvATI glGetObjectBufferfvATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetObjectBufferivATI(UInt32 buffer, OpenTK.OpenGL.Enums.AtiVertexArrayObject pname, [Out] Int32* @params); + internal unsafe delegate void GetObjectBufferivATI(UInt32 buffer, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params); internal unsafe static GetObjectBufferivATI glGetObjectBufferivATI; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void FreeObjectBufferATI(UInt32 buffer); internal static FreeObjectBufferATI glFreeObjectBufferATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ArrayObjectATI(OpenTK.OpenGL.Enums.EnableCap array, Int32 size, OpenTK.OpenGL.Enums.AtiVertexArrayObject type, Int32 stride, UInt32 buffer, UInt32 offset); + internal delegate void ArrayObjectATI(OpenTK.OpenGL.Enums.EnableCap array, Int32 size, OpenTK.OpenGL.Enums.All type, Int32 stride, UInt32 buffer, UInt32 offset); internal static ArrayObjectATI glArrayObjectATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetArrayObjectfvATI(OpenTK.OpenGL.Enums.EnableCap array, OpenTK.OpenGL.Enums.AtiVertexArrayObject pname, [Out] Single* @params); + internal unsafe delegate void GetArrayObjectfvATI(OpenTK.OpenGL.Enums.EnableCap array, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params); internal unsafe static GetArrayObjectfvATI glGetArrayObjectfvATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetArrayObjectivATI(OpenTK.OpenGL.Enums.EnableCap array, OpenTK.OpenGL.Enums.AtiVertexArrayObject pname, [Out] Int32* @params); + internal unsafe delegate void GetArrayObjectivATI(OpenTK.OpenGL.Enums.EnableCap array, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params); internal unsafe static GetArrayObjectivATI glGetArrayObjectivATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VariantArrayObjectATI(UInt32 id, OpenTK.OpenGL.Enums.AtiVertexArrayObject type, Int32 stride, UInt32 buffer, UInt32 offset); + internal delegate void VariantArrayObjectATI(UInt32 id, OpenTK.OpenGL.Enums.All type, Int32 stride, UInt32 buffer, UInt32 offset); internal static VariantArrayObjectATI glVariantArrayObjectATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetVariantArrayObjectfvATI(UInt32 id, OpenTK.OpenGL.Enums.AtiVertexArrayObject pname, [Out] Single* @params); + internal unsafe delegate void GetVariantArrayObjectfvATI(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params); internal unsafe static GetVariantArrayObjectfvATI glGetVariantArrayObjectfvATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetVariantArrayObjectivATI(UInt32 id, OpenTK.OpenGL.Enums.AtiVertexArrayObject pname, [Out] Int32* @params); + internal unsafe delegate void GetVariantArrayObjectivATI(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params); internal unsafe static GetVariantArrayObjectivATI glGetVariantArrayObjectivATI; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void BeginVertexShaderEXT(); @@ -3693,19 +3693,19 @@ namespace OpenTK.OpenGL internal delegate void DeleteVertexShaderEXT(UInt32 id); internal static DeleteVertexShaderEXT glDeleteVertexShaderEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ShaderOp1EXT(OpenTK.OpenGL.Enums.ExtVertexShader op, UInt32 res, UInt32 arg1); + internal delegate void ShaderOp1EXT(OpenTK.OpenGL.Enums.All op, UInt32 res, UInt32 arg1); internal static ShaderOp1EXT glShaderOp1EXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ShaderOp2EXT(OpenTK.OpenGL.Enums.ExtVertexShader op, UInt32 res, UInt32 arg1, UInt32 arg2); + internal delegate void ShaderOp2EXT(OpenTK.OpenGL.Enums.All op, UInt32 res, UInt32 arg1, UInt32 arg2); internal static ShaderOp2EXT glShaderOp2EXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ShaderOp3EXT(OpenTK.OpenGL.Enums.ExtVertexShader op, UInt32 res, UInt32 arg1, UInt32 arg2, UInt32 arg3); + internal delegate void ShaderOp3EXT(OpenTK.OpenGL.Enums.All op, UInt32 res, UInt32 arg1, UInt32 arg2, UInt32 arg3); internal static ShaderOp3EXT glShaderOp3EXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void SwizzleEXT(UInt32 res, UInt32 @in, OpenTK.OpenGL.Enums.ExtVertexShader outX, OpenTK.OpenGL.Enums.ExtVertexShader outY, OpenTK.OpenGL.Enums.ExtVertexShader outZ, OpenTK.OpenGL.Enums.ExtVertexShader outW); + internal delegate void SwizzleEXT(UInt32 res, UInt32 @in, OpenTK.OpenGL.Enums.All outX, OpenTK.OpenGL.Enums.All outY, OpenTK.OpenGL.Enums.All outZ, OpenTK.OpenGL.Enums.All outW); internal static SwizzleEXT glSwizzleEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void WriteMaskEXT(UInt32 res, UInt32 @in, OpenTK.OpenGL.Enums.ExtVertexShader outX, OpenTK.OpenGL.Enums.ExtVertexShader outY, OpenTK.OpenGL.Enums.ExtVertexShader outZ, OpenTK.OpenGL.Enums.ExtVertexShader outW); + internal delegate void WriteMaskEXT(UInt32 res, UInt32 @in, OpenTK.OpenGL.Enums.All outX, OpenTK.OpenGL.Enums.All outY, OpenTK.OpenGL.Enums.All outZ, OpenTK.OpenGL.Enums.All outW); internal static WriteMaskEXT glWriteMaskEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void InsertComponentEXT(UInt32 res, UInt32 src, UInt32 num); @@ -3714,13 +3714,13 @@ namespace OpenTK.OpenGL internal delegate void ExtractComponentEXT(UInt32 res, UInt32 src, UInt32 num); internal static ExtractComponentEXT glExtractComponentEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate Int32 GenSymbolsEXT(OpenTK.OpenGL.Enums.ExtVertexShader datatype, OpenTK.OpenGL.Enums.ExtVertexShader storagetype, OpenTK.OpenGL.Enums.ExtVertexShader range, UInt32 components); + internal delegate Int32 GenSymbolsEXT(OpenTK.OpenGL.Enums.All datatype, OpenTK.OpenGL.Enums.All storagetype, OpenTK.OpenGL.Enums.All range, UInt32 components); internal static GenSymbolsEXT glGenSymbolsEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void SetInvariantEXT(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader type, IntPtr addr); + internal delegate void SetInvariantEXT(UInt32 id, OpenTK.OpenGL.Enums.All type, IntPtr addr); internal static SetInvariantEXT glSetInvariantEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void SetLocalConstantEXT(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader type, IntPtr addr); + internal delegate void SetLocalConstantEXT(UInt32 id, OpenTK.OpenGL.Enums.All type, IntPtr addr); internal static SetLocalConstantEXT glSetLocalConstantEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void VariantbvEXT(UInt32 id, SByte* addr); @@ -3747,7 +3747,7 @@ namespace OpenTK.OpenGL internal unsafe delegate void VariantuivEXT(UInt32 id, UInt32* addr); internal unsafe static VariantuivEXT glVariantuivEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VariantPointerEXT(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader type, UInt32 stride, IntPtr addr); + internal delegate void VariantPointerEXT(UInt32 id, OpenTK.OpenGL.Enums.All type, UInt32 stride, IntPtr addr); internal static VariantPointerEXT glVariantPointerEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void EnableVariantClientStateEXT(UInt32 id); @@ -3762,184 +3762,184 @@ namespace OpenTK.OpenGL internal delegate Int32 BindMaterialParameterEXT(OpenTK.OpenGL.Enums.MaterialFace face, OpenTK.OpenGL.Enums.MaterialParameter value); internal static BindMaterialParameterEXT glBindMaterialParameterEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate Int32 BindTexGenParameterEXT(OpenTK.OpenGL.Enums.ExtVertexShader unit, OpenTK.OpenGL.Enums.TextureCoordName coord, OpenTK.OpenGL.Enums.TextureGenParameter value); + internal delegate Int32 BindTexGenParameterEXT(OpenTK.OpenGL.Enums.TextureUnit unit, OpenTK.OpenGL.Enums.TextureCoordName coord, OpenTK.OpenGL.Enums.TextureGenParameter value); internal static BindTexGenParameterEXT glBindTexGenParameterEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate Int32 BindTextureUnitParameterEXT(OpenTK.OpenGL.Enums.ExtVertexShader unit, OpenTK.OpenGL.Enums.ExtVertexShader value); + internal delegate Int32 BindTextureUnitParameterEXT(OpenTK.OpenGL.Enums.TextureUnit unit, OpenTK.OpenGL.Enums.All value); internal static BindTextureUnitParameterEXT glBindTextureUnitParameterEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate Int32 BindParameterEXT(OpenTK.OpenGL.Enums.ExtVertexShader value); + internal delegate Int32 BindParameterEXT(OpenTK.OpenGL.Enums.All value); internal static BindParameterEXT glBindParameterEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate bool IsVariantEnabledEXT(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader cap); + internal delegate bool IsVariantEnabledEXT(UInt32 id, OpenTK.OpenGL.Enums.All cap); internal static IsVariantEnabledEXT glIsVariantEnabledEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetVariantBooleanvEXT(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] bool* data); + internal unsafe delegate void GetVariantBooleanvEXT(UInt32 id, OpenTK.OpenGL.Enums.All value, [Out] bool* data); internal unsafe static GetVariantBooleanvEXT glGetVariantBooleanvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetVariantIntegervEXT(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] Int32* data); + internal unsafe delegate void GetVariantIntegervEXT(UInt32 id, OpenTK.OpenGL.Enums.All value, [Out] Int32* data); internal unsafe static GetVariantIntegervEXT glGetVariantIntegervEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetVariantFloatvEXT(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] Single* data); + internal unsafe delegate void GetVariantFloatvEXT(UInt32 id, OpenTK.OpenGL.Enums.All value, [Out] Single* data); internal unsafe static GetVariantFloatvEXT glGetVariantFloatvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetVariantPointervEXT(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] IntPtr data); + internal delegate void GetVariantPointervEXT(UInt32 id, OpenTK.OpenGL.Enums.All value, [Out] IntPtr data); internal static GetVariantPointervEXT glGetVariantPointervEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetInvariantBooleanvEXT(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] bool* data); + internal unsafe delegate void GetInvariantBooleanvEXT(UInt32 id, OpenTK.OpenGL.Enums.All value, [Out] bool* data); internal unsafe static GetInvariantBooleanvEXT glGetInvariantBooleanvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetInvariantIntegervEXT(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] Int32* data); + internal unsafe delegate void GetInvariantIntegervEXT(UInt32 id, OpenTK.OpenGL.Enums.All value, [Out] Int32* data); internal unsafe static GetInvariantIntegervEXT glGetInvariantIntegervEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetInvariantFloatvEXT(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] Single* data); + internal unsafe delegate void GetInvariantFloatvEXT(UInt32 id, OpenTK.OpenGL.Enums.All value, [Out] Single* data); internal unsafe static GetInvariantFloatvEXT glGetInvariantFloatvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetLocalConstantBooleanvEXT(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] bool* data); + internal unsafe delegate void GetLocalConstantBooleanvEXT(UInt32 id, OpenTK.OpenGL.Enums.All value, [Out] bool* data); internal unsafe static GetLocalConstantBooleanvEXT glGetLocalConstantBooleanvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetLocalConstantIntegervEXT(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] Int32* data); + internal unsafe delegate void GetLocalConstantIntegervEXT(UInt32 id, OpenTK.OpenGL.Enums.All value, [Out] Int32* data); internal unsafe static GetLocalConstantIntegervEXT glGetLocalConstantIntegervEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetLocalConstantFloatvEXT(UInt32 id, OpenTK.OpenGL.Enums.ExtVertexShader value, [Out] Single* data); + internal unsafe delegate void GetLocalConstantFloatvEXT(UInt32 id, OpenTK.OpenGL.Enums.All value, [Out] Single* data); internal unsafe static GetLocalConstantFloatvEXT glGetLocalConstantFloatvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexStream1sATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int16 x); + internal delegate void VertexStream1sATI(OpenTK.OpenGL.Enums.All stream, Int16 x); internal static VertexStream1sATI glVertexStream1sATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexStream1svATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int16* coords); + internal unsafe delegate void VertexStream1svATI(OpenTK.OpenGL.Enums.All stream, Int16* coords); internal unsafe static VertexStream1svATI glVertexStream1svATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexStream1iATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int32 x); + internal delegate void VertexStream1iATI(OpenTK.OpenGL.Enums.All stream, Int32 x); internal static VertexStream1iATI glVertexStream1iATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexStream1ivATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int32* coords); + internal unsafe delegate void VertexStream1ivATI(OpenTK.OpenGL.Enums.All stream, Int32* coords); internal unsafe static VertexStream1ivATI glVertexStream1ivATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexStream1fATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Single x); + internal delegate void VertexStream1fATI(OpenTK.OpenGL.Enums.All stream, Single x); internal static VertexStream1fATI glVertexStream1fATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexStream1fvATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Single* coords); + internal unsafe delegate void VertexStream1fvATI(OpenTK.OpenGL.Enums.All stream, Single* coords); internal unsafe static VertexStream1fvATI glVertexStream1fvATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexStream1dATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Double x); + internal delegate void VertexStream1dATI(OpenTK.OpenGL.Enums.All stream, Double x); internal static VertexStream1dATI glVertexStream1dATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexStream1dvATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Double* coords); + internal unsafe delegate void VertexStream1dvATI(OpenTK.OpenGL.Enums.All stream, Double* coords); internal unsafe static VertexStream1dvATI glVertexStream1dvATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexStream2sATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int16 x, Int16 y); + internal delegate void VertexStream2sATI(OpenTK.OpenGL.Enums.All stream, Int16 x, Int16 y); internal static VertexStream2sATI glVertexStream2sATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexStream2svATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int16* coords); + internal unsafe delegate void VertexStream2svATI(OpenTK.OpenGL.Enums.All stream, Int16* coords); internal unsafe static VertexStream2svATI glVertexStream2svATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexStream2iATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int32 x, Int32 y); + internal delegate void VertexStream2iATI(OpenTK.OpenGL.Enums.All stream, Int32 x, Int32 y); internal static VertexStream2iATI glVertexStream2iATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexStream2ivATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int32* coords); + internal unsafe delegate void VertexStream2ivATI(OpenTK.OpenGL.Enums.All stream, Int32* coords); internal unsafe static VertexStream2ivATI glVertexStream2ivATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexStream2fATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Single x, Single y); + internal delegate void VertexStream2fATI(OpenTK.OpenGL.Enums.All stream, Single x, Single y); internal static VertexStream2fATI glVertexStream2fATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexStream2fvATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Single* coords); + internal unsafe delegate void VertexStream2fvATI(OpenTK.OpenGL.Enums.All stream, Single* coords); internal unsafe static VertexStream2fvATI glVertexStream2fvATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexStream2dATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Double x, Double y); + internal delegate void VertexStream2dATI(OpenTK.OpenGL.Enums.All stream, Double x, Double y); internal static VertexStream2dATI glVertexStream2dATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexStream2dvATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Double* coords); + internal unsafe delegate void VertexStream2dvATI(OpenTK.OpenGL.Enums.All stream, Double* coords); internal unsafe static VertexStream2dvATI glVertexStream2dvATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexStream3sATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int16 x, Int16 y, Int16 z); + internal delegate void VertexStream3sATI(OpenTK.OpenGL.Enums.All stream, Int16 x, Int16 y, Int16 z); internal static VertexStream3sATI glVertexStream3sATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexStream3svATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int16* coords); + internal unsafe delegate void VertexStream3svATI(OpenTK.OpenGL.Enums.All stream, Int16* coords); internal unsafe static VertexStream3svATI glVertexStream3svATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexStream3iATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int32 x, Int32 y, Int32 z); + internal delegate void VertexStream3iATI(OpenTK.OpenGL.Enums.All stream, Int32 x, Int32 y, Int32 z); internal static VertexStream3iATI glVertexStream3iATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexStream3ivATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int32* coords); + internal unsafe delegate void VertexStream3ivATI(OpenTK.OpenGL.Enums.All stream, Int32* coords); internal unsafe static VertexStream3ivATI glVertexStream3ivATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexStream3fATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Single x, Single y, Single z); + internal delegate void VertexStream3fATI(OpenTK.OpenGL.Enums.All stream, Single x, Single y, Single z); internal static VertexStream3fATI glVertexStream3fATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexStream3fvATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Single* coords); + internal unsafe delegate void VertexStream3fvATI(OpenTK.OpenGL.Enums.All stream, Single* coords); internal unsafe static VertexStream3fvATI glVertexStream3fvATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexStream3dATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Double x, Double y, Double z); + internal delegate void VertexStream3dATI(OpenTK.OpenGL.Enums.All stream, Double x, Double y, Double z); internal static VertexStream3dATI glVertexStream3dATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexStream3dvATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Double* coords); + internal unsafe delegate void VertexStream3dvATI(OpenTK.OpenGL.Enums.All stream, Double* coords); internal unsafe static VertexStream3dvATI glVertexStream3dvATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexStream4sATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int16 x, Int16 y, Int16 z, Int16 w); + internal delegate void VertexStream4sATI(OpenTK.OpenGL.Enums.All stream, Int16 x, Int16 y, Int16 z, Int16 w); internal static VertexStream4sATI glVertexStream4sATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexStream4svATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int16* coords); + internal unsafe delegate void VertexStream4svATI(OpenTK.OpenGL.Enums.All stream, Int16* coords); internal unsafe static VertexStream4svATI glVertexStream4svATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexStream4iATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int32 x, Int32 y, Int32 z, Int32 w); + internal delegate void VertexStream4iATI(OpenTK.OpenGL.Enums.All stream, Int32 x, Int32 y, Int32 z, Int32 w); internal static VertexStream4iATI glVertexStream4iATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexStream4ivATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int32* coords); + internal unsafe delegate void VertexStream4ivATI(OpenTK.OpenGL.Enums.All stream, Int32* coords); internal unsafe static VertexStream4ivATI glVertexStream4ivATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexStream4fATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Single x, Single y, Single z, Single w); + internal delegate void VertexStream4fATI(OpenTK.OpenGL.Enums.All stream, Single x, Single y, Single z, Single w); internal static VertexStream4fATI glVertexStream4fATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexStream4fvATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Single* coords); + internal unsafe delegate void VertexStream4fvATI(OpenTK.OpenGL.Enums.All stream, Single* coords); internal unsafe static VertexStream4fvATI glVertexStream4fvATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexStream4dATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Double x, Double y, Double z, Double w); + internal delegate void VertexStream4dATI(OpenTK.OpenGL.Enums.All stream, Double x, Double y, Double z, Double w); internal static VertexStream4dATI glVertexStream4dATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexStream4dvATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Double* coords); + internal unsafe delegate void VertexStream4dvATI(OpenTK.OpenGL.Enums.All stream, Double* coords); internal unsafe static VertexStream4dvATI glVertexStream4dvATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void NormalStream3bATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, SByte nx, SByte ny, SByte nz); + internal delegate void NormalStream3bATI(OpenTK.OpenGL.Enums.All stream, SByte nx, SByte ny, SByte nz); internal static NormalStream3bATI glNormalStream3bATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void NormalStream3bvATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, SByte* coords); + internal unsafe delegate void NormalStream3bvATI(OpenTK.OpenGL.Enums.All stream, SByte* coords); internal unsafe static NormalStream3bvATI glNormalStream3bvATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void NormalStream3sATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int16 nx, Int16 ny, Int16 nz); + internal delegate void NormalStream3sATI(OpenTK.OpenGL.Enums.All stream, Int16 nx, Int16 ny, Int16 nz); internal static NormalStream3sATI glNormalStream3sATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void NormalStream3svATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int16* coords); + internal unsafe delegate void NormalStream3svATI(OpenTK.OpenGL.Enums.All stream, Int16* coords); internal unsafe static NormalStream3svATI glNormalStream3svATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void NormalStream3iATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int32 nx, Int32 ny, Int32 nz); + internal delegate void NormalStream3iATI(OpenTK.OpenGL.Enums.All stream, Int32 nx, Int32 ny, Int32 nz); internal static NormalStream3iATI glNormalStream3iATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void NormalStream3ivATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Int32* coords); + internal unsafe delegate void NormalStream3ivATI(OpenTK.OpenGL.Enums.All stream, Int32* coords); internal unsafe static NormalStream3ivATI glNormalStream3ivATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void NormalStream3fATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Single nx, Single ny, Single nz); + internal delegate void NormalStream3fATI(OpenTK.OpenGL.Enums.All stream, Single nx, Single ny, Single nz); internal static NormalStream3fATI glNormalStream3fATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void NormalStream3fvATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Single* coords); + internal unsafe delegate void NormalStream3fvATI(OpenTK.OpenGL.Enums.All stream, Single* coords); internal unsafe static NormalStream3fvATI glNormalStream3fvATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void NormalStream3dATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Double nx, Double ny, Double nz); + internal delegate void NormalStream3dATI(OpenTK.OpenGL.Enums.All stream, Double nx, Double ny, Double nz); internal static NormalStream3dATI glNormalStream3dATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void NormalStream3dvATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream, Double* coords); + internal unsafe delegate void NormalStream3dvATI(OpenTK.OpenGL.Enums.All stream, Double* coords); internal unsafe static NormalStream3dvATI glNormalStream3dvATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ClientActiveVertexStreamATI(OpenTK.OpenGL.Enums.AtiVertexStreams stream); + internal delegate void ClientActiveVertexStreamATI(OpenTK.OpenGL.Enums.All stream); internal static ClientActiveVertexStreamATI glClientActiveVertexStreamATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexBlendEnviATI(OpenTK.OpenGL.Enums.AtiVertexStreams pname, Int32 param); + internal delegate void VertexBlendEnviATI(OpenTK.OpenGL.Enums.All pname, Int32 param); internal static VertexBlendEnviATI glVertexBlendEnviATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexBlendEnvfATI(OpenTK.OpenGL.Enums.AtiVertexStreams pname, Single param); + internal delegate void VertexBlendEnvfATI(OpenTK.OpenGL.Enums.All pname, Single param); internal static VertexBlendEnvfATI glVertexBlendEnvfATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ElementPointerATI(OpenTK.OpenGL.Enums.AtiElementArray type, IntPtr pointer); + internal delegate void ElementPointerATI(OpenTK.OpenGL.Enums.All type, IntPtr pointer); internal static ElementPointerATI glElementPointerATI; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void DrawElementArrayATI(OpenTK.OpenGL.Enums.BeginMode mode, Int32 count); @@ -3966,22 +3966,22 @@ namespace OpenTK.OpenGL internal delegate void EndOcclusionQueryNV(); internal static EndOcclusionQueryNV glEndOcclusionQueryNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetOcclusionQueryivNV(UInt32 id, OpenTK.OpenGL.Enums.NvOcclusionQuery pname, [Out] Int32* @params); + internal unsafe delegate void GetOcclusionQueryivNV(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params); internal unsafe static GetOcclusionQueryivNV glGetOcclusionQueryivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetOcclusionQueryuivNV(UInt32 id, OpenTK.OpenGL.Enums.NvOcclusionQuery pname, [Out] UInt32* @params); + internal unsafe delegate void GetOcclusionQueryuivNV(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] UInt32* @params); internal unsafe static GetOcclusionQueryuivNV glGetOcclusionQueryuivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void PointParameteriNV(OpenTK.OpenGL.Enums.NvPointSprite pname, Int32 param); + internal delegate void PointParameteriNV(OpenTK.OpenGL.Enums.All pname, Int32 param); internal static PointParameteriNV glPointParameteriNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void PointParameterivNV(OpenTK.OpenGL.Enums.NvPointSprite pname, Int32* @params); + internal unsafe delegate void PointParameterivNV(OpenTK.OpenGL.Enums.All pname, Int32* @params); internal unsafe static PointParameterivNV glPointParameterivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ActiveStencilFaceEXT(OpenTK.OpenGL.Enums.ExtStencilTwoSide face); + internal delegate void ActiveStencilFaceEXT(OpenTK.OpenGL.Enums.All face); internal static ActiveStencilFaceEXT glActiveStencilFaceEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ElementPointerAPPLE(OpenTK.OpenGL.Enums.AppleElementArray type, IntPtr pointer); + internal delegate void ElementPointerAPPLE(OpenTK.OpenGL.Enums.All type, IntPtr pointer); internal static ElementPointerAPPLE glElementPointerAPPLE; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void DrawElementArrayAPPLE(OpenTK.OpenGL.Enums.BeginMode mode, Int32 first, Int32 count); @@ -4014,10 +4014,10 @@ namespace OpenTK.OpenGL internal delegate void FinishFenceAPPLE(UInt32 fence); internal static FinishFenceAPPLE glFinishFenceAPPLE; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate bool TestObjectAPPLE(OpenTK.OpenGL.Enums.AppleFence @object, UInt32 name); + internal delegate bool TestObjectAPPLE(OpenTK.OpenGL.Enums.All @object, UInt32 name); internal static TestObjectAPPLE glTestObjectAPPLE; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FinishObjectAPPLE(OpenTK.OpenGL.Enums.AppleFence @object, Int32 name); + internal delegate void FinishObjectAPPLE(OpenTK.OpenGL.Enums.All @object, Int32 name); internal static FinishObjectAPPLE glFinishObjectAPPLE; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void BindVertexArrayAPPLE(UInt32 array); @@ -4038,10 +4038,10 @@ namespace OpenTK.OpenGL internal delegate void FlushVertexArrayRangeAPPLE(Int32 length, [Out] IntPtr pointer); internal static FlushVertexArrayRangeAPPLE glFlushVertexArrayRangeAPPLE; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexArrayParameteriAPPLE(OpenTK.OpenGL.Enums.AppleVertexArrayRange pname, Int32 param); + internal delegate void VertexArrayParameteriAPPLE(OpenTK.OpenGL.Enums.All pname, Int32 param); internal static VertexArrayParameteriAPPLE glVertexArrayParameteriAPPLE; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void DrawBuffersATI(Int32 n, OpenTK.OpenGL.Enums.AtiDrawBuffers* bufs); + internal unsafe delegate void DrawBuffersATI(Int32 n, OpenTK.OpenGL.Enums.All* bufs); internal unsafe static DrawBuffersATI glDrawBuffersATI; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void ProgramNamedParameter4fNV(UInt32 id, Int32 len, Byte* name, Single x, Single y, Single z, Single w); @@ -4122,28 +4122,28 @@ namespace OpenTK.OpenGL internal unsafe delegate void TexCoord4hvNV(UInt16* v); internal unsafe static TexCoord4hvNV glTexCoord4hvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord1hNV(OpenTK.OpenGL.Enums.NvHalfFloat target, UInt16 s); + internal delegate void MultiTexCoord1hNV(OpenTK.OpenGL.Enums.TextureUnit target, UInt16 s); internal static MultiTexCoord1hNV glMultiTexCoord1hNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord1hvNV(OpenTK.OpenGL.Enums.NvHalfFloat target, UInt16* v); + internal unsafe delegate void MultiTexCoord1hvNV(OpenTK.OpenGL.Enums.TextureUnit target, UInt16* v); internal unsafe static MultiTexCoord1hvNV glMultiTexCoord1hvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord2hNV(OpenTK.OpenGL.Enums.NvHalfFloat target, UInt16 s, UInt16 t); + internal delegate void MultiTexCoord2hNV(OpenTK.OpenGL.Enums.TextureUnit target, UInt16 s, UInt16 t); internal static MultiTexCoord2hNV glMultiTexCoord2hNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord2hvNV(OpenTK.OpenGL.Enums.NvHalfFloat target, UInt16* v); + internal unsafe delegate void MultiTexCoord2hvNV(OpenTK.OpenGL.Enums.TextureUnit target, UInt16* v); internal unsafe static MultiTexCoord2hvNV glMultiTexCoord2hvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord3hNV(OpenTK.OpenGL.Enums.NvHalfFloat target, UInt16 s, UInt16 t, UInt16 r); + internal delegate void MultiTexCoord3hNV(OpenTK.OpenGL.Enums.TextureUnit target, UInt16 s, UInt16 t, UInt16 r); internal static MultiTexCoord3hNV glMultiTexCoord3hNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord3hvNV(OpenTK.OpenGL.Enums.NvHalfFloat target, UInt16* v); + internal unsafe delegate void MultiTexCoord3hvNV(OpenTK.OpenGL.Enums.TextureUnit target, UInt16* v); internal unsafe static MultiTexCoord3hvNV glMultiTexCoord3hvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord4hNV(OpenTK.OpenGL.Enums.NvHalfFloat target, UInt16 s, UInt16 t, UInt16 r, UInt16 q); + internal delegate void MultiTexCoord4hNV(OpenTK.OpenGL.Enums.TextureUnit target, UInt16 s, UInt16 t, UInt16 r, UInt16 q); internal static MultiTexCoord4hNV glMultiTexCoord4hNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord4hvNV(OpenTK.OpenGL.Enums.NvHalfFloat target, UInt16* v); + internal unsafe delegate void MultiTexCoord4hvNV(OpenTK.OpenGL.Enums.TextureUnit target, UInt16* v); internal unsafe static MultiTexCoord4hvNV glMultiTexCoord4hvNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void FogCoordhNV(UInt16 fog); @@ -4200,10 +4200,10 @@ namespace OpenTK.OpenGL internal unsafe delegate void VertexAttribs4hvNV(UInt32 index, Int32 n, UInt16* v); internal unsafe static VertexAttribs4hvNV glVertexAttribs4hvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void PixelDataRangeNV(OpenTK.OpenGL.Enums.NvPixelDataRange target, Int32 length, [Out] IntPtr pointer); + internal delegate void PixelDataRangeNV(OpenTK.OpenGL.Enums.All target, Int32 length, [Out] IntPtr pointer); internal static PixelDataRangeNV glPixelDataRangeNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FlushPixelDataRangeNV(OpenTK.OpenGL.Enums.NvPixelDataRange target); + internal delegate void FlushPixelDataRangeNV(OpenTK.OpenGL.Enums.All target); internal static FlushPixelDataRangeNV glFlushPixelDataRangeNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void PrimitiveRestartNV(); @@ -4218,31 +4218,31 @@ namespace OpenTK.OpenGL internal delegate void UnmapObjectBufferATI(UInt32 buffer); internal static UnmapObjectBufferATI glUnmapObjectBufferATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void StencilOpSeparateATI(OpenTK.OpenGL.Enums.AtiSeparateStencil face, OpenTK.OpenGL.Enums.StencilOp sfail, OpenTK.OpenGL.Enums.StencilOp dpfail, OpenTK.OpenGL.Enums.StencilOp dppass); + internal delegate void StencilOpSeparateATI(OpenTK.OpenGL.Enums.All face, OpenTK.OpenGL.Enums.StencilOp sfail, OpenTK.OpenGL.Enums.StencilOp dpfail, OpenTK.OpenGL.Enums.StencilOp dppass); internal static StencilOpSeparateATI glStencilOpSeparateATI; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void StencilFuncSeparateATI(OpenTK.OpenGL.Enums.StencilFunction frontfunc, OpenTK.OpenGL.Enums.StencilFunction backfunc, Int32 @ref, UInt32 mask); internal static StencilFuncSeparateATI glStencilFuncSeparateATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexAttribArrayObjectATI(UInt32 index, Int32 size, OpenTK.OpenGL.Enums.AtiVertexAttribArrayObject type, bool normalized, Int32 stride, UInt32 buffer, UInt32 offset); + internal delegate void VertexAttribArrayObjectATI(UInt32 index, Int32 size, OpenTK.OpenGL.Enums.All type, bool normalized, Int32 stride, UInt32 buffer, UInt32 offset); internal static VertexAttribArrayObjectATI glVertexAttribArrayObjectATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetVertexAttribArrayObjectfvATI(UInt32 index, OpenTK.OpenGL.Enums.AtiVertexAttribArrayObject pname, [Out] Single* @params); + internal unsafe delegate void GetVertexAttribArrayObjectfvATI(UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] Single* @params); internal unsafe static GetVertexAttribArrayObjectfvATI glGetVertexAttribArrayObjectfvATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetVertexAttribArrayObjectivATI(UInt32 index, OpenTK.OpenGL.Enums.AtiVertexAttribArrayObject pname, [Out] Int32* @params); + internal unsafe delegate void GetVertexAttribArrayObjectivATI(UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params); internal unsafe static GetVertexAttribArrayObjectivATI glGetVertexAttribArrayObjectivATI; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void DepthBoundsEXT(Double zmin, Double zmax); internal static DepthBoundsEXT glDepthBoundsEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BlendEquationSeparateEXT(OpenTK.OpenGL.Enums.BlendEquationModeExt modeRGB, OpenTK.OpenGL.Enums.BlendEquationModeExt modeAlpha); + internal delegate void BlendEquationSeparateEXT(OpenTK.OpenGL.Enums.All modeRGB, OpenTK.OpenGL.Enums.All modeAlpha); internal static BlendEquationSeparateEXT glBlendEquationSeparateEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate bool IsRenderbufferEXT(UInt32 renderbuffer); internal static IsRenderbufferEXT glIsRenderbufferEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BindRenderbufferEXT(OpenTK.OpenGL.Enums.ExtFramebufferObject target, UInt32 renderbuffer); + internal delegate void BindRenderbufferEXT(OpenTK.OpenGL.Enums.All target, UInt32 renderbuffer); internal static BindRenderbufferEXT glBindRenderbufferEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void DeleteRenderbuffersEXT(Int32 n, UInt32* renderbuffers); @@ -4251,16 +4251,16 @@ namespace OpenTK.OpenGL internal unsafe delegate void GenRenderbuffersEXT(Int32 n, [Out] UInt32* renderbuffers); internal unsafe static GenRenderbuffersEXT glGenRenderbuffersEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void RenderbufferStorageEXT(OpenTK.OpenGL.Enums.ExtFramebufferObject target, OpenTK.OpenGL.Enums.ExtFramebufferObject internalformat, Int32 width, Int32 height); + internal delegate void RenderbufferStorageEXT(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All internalformat, Int32 width, Int32 height); internal static RenderbufferStorageEXT glRenderbufferStorageEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetRenderbufferParameterivEXT(OpenTK.OpenGL.Enums.ExtFramebufferObject target, OpenTK.OpenGL.Enums.ExtFramebufferObject pname, [Out] Int32* @params); + internal unsafe delegate void GetRenderbufferParameterivEXT(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params); internal unsafe static GetRenderbufferParameterivEXT glGetRenderbufferParameterivEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate bool IsFramebufferEXT(UInt32 framebuffer); internal static IsFramebufferEXT glIsFramebufferEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BindFramebufferEXT(OpenTK.OpenGL.Enums.ExtFramebufferObject target, UInt32 framebuffer); + internal delegate void BindFramebufferEXT(OpenTK.OpenGL.Enums.All target, UInt32 framebuffer); internal static BindFramebufferEXT glBindFramebufferEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void DeleteFramebuffersEXT(Int32 n, UInt32* framebuffers); @@ -4269,25 +4269,25 @@ namespace OpenTK.OpenGL internal unsafe delegate void GenFramebuffersEXT(Int32 n, [Out] UInt32* framebuffers); internal unsafe static GenFramebuffersEXT glGenFramebuffersEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate IntPtr CheckFramebufferStatusEXT(OpenTK.OpenGL.Enums.ExtFramebufferObject target); + internal delegate OpenTK.OpenGL.Enums.All CheckFramebufferStatusEXT(OpenTK.OpenGL.Enums.All target); internal static CheckFramebufferStatusEXT glCheckFramebufferStatusEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FramebufferTexture1DEXT(OpenTK.OpenGL.Enums.ExtFramebufferObject target, OpenTK.OpenGL.Enums.ExtFramebufferObject attachment, OpenTK.OpenGL.Enums.ExtFramebufferObject textarget, UInt32 texture, Int32 level); + internal delegate void FramebufferTexture1DEXT(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All attachment, OpenTK.OpenGL.Enums.All textarget, UInt32 texture, Int32 level); internal static FramebufferTexture1DEXT glFramebufferTexture1DEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FramebufferTexture2DEXT(OpenTK.OpenGL.Enums.ExtFramebufferObject target, OpenTK.OpenGL.Enums.ExtFramebufferObject attachment, OpenTK.OpenGL.Enums.ExtFramebufferObject textarget, UInt32 texture, Int32 level); + internal delegate void FramebufferTexture2DEXT(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All attachment, OpenTK.OpenGL.Enums.All textarget, UInt32 texture, Int32 level); internal static FramebufferTexture2DEXT glFramebufferTexture2DEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FramebufferTexture3DEXT(OpenTK.OpenGL.Enums.ExtFramebufferObject target, OpenTK.OpenGL.Enums.ExtFramebufferObject attachment, OpenTK.OpenGL.Enums.ExtFramebufferObject textarget, UInt32 texture, Int32 level, Int32 zoffset); + internal delegate void FramebufferTexture3DEXT(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All attachment, OpenTK.OpenGL.Enums.All textarget, UInt32 texture, Int32 level, Int32 zoffset); internal static FramebufferTexture3DEXT glFramebufferTexture3DEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FramebufferRenderbufferEXT(OpenTK.OpenGL.Enums.ExtFramebufferObject target, OpenTK.OpenGL.Enums.ExtFramebufferObject attachment, OpenTK.OpenGL.Enums.ExtFramebufferObject renderbuffertarget, UInt32 renderbuffer); + internal delegate void FramebufferRenderbufferEXT(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All attachment, OpenTK.OpenGL.Enums.All renderbuffertarget, UInt32 renderbuffer); internal static FramebufferRenderbufferEXT glFramebufferRenderbufferEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetFramebufferAttachmentParameterivEXT(OpenTK.OpenGL.Enums.ExtFramebufferObject target, OpenTK.OpenGL.Enums.ExtFramebufferObject attachment, OpenTK.OpenGL.Enums.ExtFramebufferObject pname, [Out] Int32* @params); + internal unsafe delegate void GetFramebufferAttachmentParameterivEXT(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All attachment, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params); internal unsafe static GetFramebufferAttachmentParameterivEXT glGetFramebufferAttachmentParameterivEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GenerateMipmapEXT(OpenTK.OpenGL.Enums.ExtFramebufferObject target); + internal delegate void GenerateMipmapEXT(OpenTK.OpenGL.Enums.All target); internal static GenerateMipmapEXT glGenerateMipmapEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void StringMarkerGREMEDY(Int32 len, IntPtr @string); @@ -4296,91 +4296,91 @@ namespace OpenTK.OpenGL internal delegate void StencilClearTagEXT(Int32 stencilTagBits, UInt32 stencilClearTag); internal static StencilClearTagEXT glStencilClearTagEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BlitFramebufferEXT(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.OpenGL.Enums.ClearBufferMask mask, OpenTK.OpenGL.Enums.ExtFramebufferBlit filter); + internal delegate void BlitFramebufferEXT(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.OpenGL.Enums.ClearBufferMask mask, OpenTK.OpenGL.Enums.All filter); internal static BlitFramebufferEXT glBlitFramebufferEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void RenderbufferStorageMultisampleEXT(OpenTK.OpenGL.Enums.ExtFramebufferMultisample target, Int32 samples, OpenTK.OpenGL.Enums.ExtFramebufferMultisample internalformat, Int32 width, Int32 height); + internal delegate void RenderbufferStorageMultisampleEXT(OpenTK.OpenGL.Enums.All target, Int32 samples, OpenTK.OpenGL.Enums.All internalformat, Int32 width, Int32 height); internal static RenderbufferStorageMultisampleEXT glRenderbufferStorageMultisampleEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetQueryObjecti64vEXT(UInt32 id, OpenTK.OpenGL.Enums.ExtTimerQuery pname, [Out] Int64* @params); + internal unsafe delegate void GetQueryObjecti64vEXT(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] Int64* @params); internal unsafe static GetQueryObjecti64vEXT glGetQueryObjecti64vEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetQueryObjectui64vEXT(UInt32 id, OpenTK.OpenGL.Enums.ExtTimerQuery pname, [Out] UInt64* @params); + internal unsafe delegate void GetQueryObjectui64vEXT(UInt32 id, OpenTK.OpenGL.Enums.All pname, [Out] UInt64* @params); internal unsafe static GetQueryObjectui64vEXT glGetQueryObjectui64vEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ProgramEnvParameters4fvEXT(OpenTK.OpenGL.Enums.ExtGpuProgramParameters target, UInt32 index, Int32 count, Single* @params); + internal unsafe delegate void ProgramEnvParameters4fvEXT(OpenTK.OpenGL.Enums.All target, UInt32 index, Int32 count, Single* @params); internal unsafe static ProgramEnvParameters4fvEXT glProgramEnvParameters4fvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ProgramLocalParameters4fvEXT(OpenTK.OpenGL.Enums.ExtGpuProgramParameters target, UInt32 index, Int32 count, Single* @params); + internal unsafe delegate void ProgramLocalParameters4fvEXT(OpenTK.OpenGL.Enums.All target, UInt32 index, Int32 count, Single* @params); internal unsafe static ProgramLocalParameters4fvEXT glProgramLocalParameters4fvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BufferParameteriAPPLE(OpenTK.OpenGL.Enums.AppleFlushBufferRange target, OpenTK.OpenGL.Enums.AppleFlushBufferRange pname, Int32 param); + internal delegate void BufferParameteriAPPLE(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All pname, Int32 param); internal static BufferParameteriAPPLE glBufferParameteriAPPLE; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FlushMappedBufferRangeAPPLE(OpenTK.OpenGL.Enums.AppleFlushBufferRange target, IntPtr offset, IntPtr size); + internal delegate void FlushMappedBufferRangeAPPLE(OpenTK.OpenGL.Enums.All target, IntPtr offset, IntPtr size); internal static FlushMappedBufferRangeAPPLE glFlushMappedBufferRangeAPPLE; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ProgramLocalParameterI4iNV(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w); + internal delegate void ProgramLocalParameterI4iNV(OpenTK.OpenGL.Enums.All target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w); internal static ProgramLocalParameterI4iNV glProgramLocalParameterI4iNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ProgramLocalParameterI4ivNV(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, Int32* @params); + internal unsafe delegate void ProgramLocalParameterI4ivNV(OpenTK.OpenGL.Enums.All target, UInt32 index, Int32* @params); internal unsafe static ProgramLocalParameterI4ivNV glProgramLocalParameterI4ivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ProgramLocalParametersI4ivNV(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, Int32 count, Int32* @params); + internal unsafe delegate void ProgramLocalParametersI4ivNV(OpenTK.OpenGL.Enums.All target, UInt32 index, Int32 count, Int32* @params); internal unsafe static ProgramLocalParametersI4ivNV glProgramLocalParametersI4ivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ProgramLocalParameterI4uiNV(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w); + internal delegate void ProgramLocalParameterI4uiNV(OpenTK.OpenGL.Enums.All target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w); internal static ProgramLocalParameterI4uiNV glProgramLocalParameterI4uiNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ProgramLocalParameterI4uivNV(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, UInt32* @params); + internal unsafe delegate void ProgramLocalParameterI4uivNV(OpenTK.OpenGL.Enums.All target, UInt32 index, UInt32* @params); internal unsafe static ProgramLocalParameterI4uivNV glProgramLocalParameterI4uivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ProgramLocalParametersI4uivNV(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, Int32 count, UInt32* @params); + internal unsafe delegate void ProgramLocalParametersI4uivNV(OpenTK.OpenGL.Enums.All target, UInt32 index, Int32 count, UInt32* @params); internal unsafe static ProgramLocalParametersI4uivNV glProgramLocalParametersI4uivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ProgramEnvParameterI4iNV(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w); + internal delegate void ProgramEnvParameterI4iNV(OpenTK.OpenGL.Enums.All target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w); internal static ProgramEnvParameterI4iNV glProgramEnvParameterI4iNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ProgramEnvParameterI4ivNV(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, Int32* @params); + internal unsafe delegate void ProgramEnvParameterI4ivNV(OpenTK.OpenGL.Enums.All target, UInt32 index, Int32* @params); internal unsafe static ProgramEnvParameterI4ivNV glProgramEnvParameterI4ivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ProgramEnvParametersI4ivNV(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, Int32 count, Int32* @params); + internal unsafe delegate void ProgramEnvParametersI4ivNV(OpenTK.OpenGL.Enums.All target, UInt32 index, Int32 count, Int32* @params); internal unsafe static ProgramEnvParametersI4ivNV glProgramEnvParametersI4ivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ProgramEnvParameterI4uiNV(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w); + internal delegate void ProgramEnvParameterI4uiNV(OpenTK.OpenGL.Enums.All target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w); internal static ProgramEnvParameterI4uiNV glProgramEnvParameterI4uiNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ProgramEnvParameterI4uivNV(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, UInt32* @params); + internal unsafe delegate void ProgramEnvParameterI4uivNV(OpenTK.OpenGL.Enums.All target, UInt32 index, UInt32* @params); internal unsafe static ProgramEnvParameterI4uivNV glProgramEnvParameterI4uivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ProgramEnvParametersI4uivNV(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, Int32 count, UInt32* @params); + internal unsafe delegate void ProgramEnvParametersI4uivNV(OpenTK.OpenGL.Enums.All target, UInt32 index, Int32 count, UInt32* @params); internal unsafe static ProgramEnvParametersI4uivNV glProgramEnvParametersI4uivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetProgramLocalParameterIivNV(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, [Out] Int32* @params); + internal unsafe delegate void GetProgramLocalParameterIivNV(OpenTK.OpenGL.Enums.All target, UInt32 index, [Out] Int32* @params); internal unsafe static GetProgramLocalParameterIivNV glGetProgramLocalParameterIivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetProgramLocalParameterIuivNV(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, [Out] UInt32* @params); + internal unsafe delegate void GetProgramLocalParameterIuivNV(OpenTK.OpenGL.Enums.All target, UInt32 index, [Out] UInt32* @params); internal unsafe static GetProgramLocalParameterIuivNV glGetProgramLocalParameterIuivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetProgramEnvParameterIivNV(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, [Out] Int32* @params); + internal unsafe delegate void GetProgramEnvParameterIivNV(OpenTK.OpenGL.Enums.All target, UInt32 index, [Out] Int32* @params); internal unsafe static GetProgramEnvParameterIivNV glGetProgramEnvParameterIivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetProgramEnvParameterIuivNV(OpenTK.OpenGL.Enums.NvGpuProgram4 target, UInt32 index, [Out] UInt32* @params); + internal unsafe delegate void GetProgramEnvParameterIuivNV(OpenTK.OpenGL.Enums.All target, UInt32 index, [Out] UInt32* @params); internal unsafe static GetProgramEnvParameterIuivNV glGetProgramEnvParameterIuivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ProgramVertexLimitNV(OpenTK.OpenGL.Enums.NvGeometryProgram4 target, Int32 limit); + internal delegate void ProgramVertexLimitNV(OpenTK.OpenGL.Enums.All target, Int32 limit); internal static ProgramVertexLimitNV glProgramVertexLimitNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FramebufferTextureEXT(OpenTK.OpenGL.Enums.NvGeometryProgram4 target, OpenTK.OpenGL.Enums.NvGeometryProgram4 attachment, UInt32 texture, Int32 level); + internal delegate void FramebufferTextureEXT(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All attachment, UInt32 texture, Int32 level); internal static FramebufferTextureEXT glFramebufferTextureEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FramebufferTextureLayerEXT(OpenTK.OpenGL.Enums.NvGeometryProgram4 target, OpenTK.OpenGL.Enums.NvGeometryProgram4 attachment, UInt32 texture, Int32 level, Int32 layer); + internal delegate void FramebufferTextureLayerEXT(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All attachment, UInt32 texture, Int32 level, Int32 layer); internal static FramebufferTextureLayerEXT glFramebufferTextureLayerEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FramebufferTextureFaceEXT(OpenTK.OpenGL.Enums.NvGeometryProgram4 target, OpenTK.OpenGL.Enums.NvGeometryProgram4 attachment, UInt32 texture, Int32 level, OpenTK.OpenGL.Enums.TextureTarget face); + internal delegate void FramebufferTextureFaceEXT(OpenTK.OpenGL.Enums.All target, OpenTK.OpenGL.Enums.All attachment, UInt32 texture, Int32 level, OpenTK.OpenGL.Enums.TextureTarget face); internal static FramebufferTextureFaceEXT glFramebufferTextureFaceEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ProgramParameteriEXT(UInt32 program, OpenTK.OpenGL.Enums.ExtGeometryShader4 pname, Int32 value); + internal delegate void ProgramParameteriEXT(UInt32 program, OpenTK.OpenGL.Enums.All pname, Int32 value); internal static ProgramParameteriEXT glProgramParameteriEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void VertexAttribI1iEXT(UInt32 index, Int32 x); @@ -4443,13 +4443,13 @@ namespace OpenTK.OpenGL internal unsafe delegate void VertexAttribI4usvEXT(UInt32 index, UInt16* v); internal unsafe static VertexAttribI4usvEXT glVertexAttribI4usvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexAttribIPointerEXT(UInt32 index, Int32 size, OpenTK.OpenGL.Enums.NvVertexProgram4 type, Int32 stride, IntPtr pointer); + internal delegate void VertexAttribIPointerEXT(UInt32 index, Int32 size, OpenTK.OpenGL.Enums.All type, Int32 stride, IntPtr pointer); internal static VertexAttribIPointerEXT glVertexAttribIPointerEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetVertexAttribIivEXT(UInt32 index, OpenTK.OpenGL.Enums.NvVertexProgram4 pname, [Out] Int32* @params); + internal unsafe delegate void GetVertexAttribIivEXT(UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] Int32* @params); internal unsafe static GetVertexAttribIivEXT glGetVertexAttribIivEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetVertexAttribIuivEXT(UInt32 index, OpenTK.OpenGL.Enums.NvVertexProgram4 pname, [Out] UInt32* @params); + internal unsafe delegate void GetVertexAttribIuivEXT(UInt32 index, OpenTK.OpenGL.Enums.All pname, [Out] UInt32* @params); internal unsafe static GetVertexAttribIuivEXT glGetVertexAttribIuivEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void GetUniformuivEXT(UInt32 program, Int32 location, [Out] UInt32* @params); @@ -4488,10 +4488,10 @@ namespace OpenTK.OpenGL internal delegate void DrawArraysInstancedEXT(OpenTK.OpenGL.Enums.BeginMode mode, Int32 start, Int32 count, Int32 primcount); internal static DrawArraysInstancedEXT glDrawArraysInstancedEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void DrawElementsInstancedEXT(OpenTK.OpenGL.Enums.BeginMode mode, Int32 count, OpenTK.OpenGL.Enums.ExtDrawInstanced type, IntPtr indices, Int32 primcount); + internal delegate void DrawElementsInstancedEXT(OpenTK.OpenGL.Enums.BeginMode mode, Int32 count, OpenTK.OpenGL.Enums.All type, IntPtr indices, Int32 primcount); internal static DrawElementsInstancedEXT glDrawElementsInstancedEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void TexBufferEXT(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.ExtTextureBufferObject internalformat, UInt32 buffer); + internal delegate void TexBufferEXT(OpenTK.OpenGL.Enums.TextureTarget target, OpenTK.OpenGL.Enums.All internalformat, UInt32 buffer); internal static TexBufferEXT glTexBufferEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void DepthRangedNV(Double zNear, Double zFar); @@ -4503,55 +4503,55 @@ namespace OpenTK.OpenGL internal delegate void DepthBoundsdNV(Double zmin, Double zmax); internal static DepthBoundsdNV glDepthBoundsdNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void RenderbufferStorageMultisampleCoverageNV(OpenTK.OpenGL.Enums.NvFramebufferMultisampleCoverage target, Int32 coverageSamples, Int32 colorSamples, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height); + internal delegate void RenderbufferStorageMultisampleCoverageNV(OpenTK.OpenGL.Enums.All target, Int32 coverageSamples, Int32 colorSamples, OpenTK.OpenGL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height); internal static RenderbufferStorageMultisampleCoverageNV glRenderbufferStorageMultisampleCoverageNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ProgramBufferParametersfvNV(OpenTK.OpenGL.Enums.NvParameterBufferObject target, UInt32 buffer, UInt32 index, Int32 count, Single* @params); + internal unsafe delegate void ProgramBufferParametersfvNV(OpenTK.OpenGL.Enums.All target, UInt32 buffer, UInt32 index, Int32 count, Single* @params); internal unsafe static ProgramBufferParametersfvNV glProgramBufferParametersfvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ProgramBufferParametersIivNV(OpenTK.OpenGL.Enums.NvParameterBufferObject target, UInt32 buffer, UInt32 index, Int32 count, Int32* @params); + internal unsafe delegate void ProgramBufferParametersIivNV(OpenTK.OpenGL.Enums.All target, UInt32 buffer, UInt32 index, Int32 count, Int32* @params); internal unsafe static ProgramBufferParametersIivNV glProgramBufferParametersIivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ProgramBufferParametersIuivNV(OpenTK.OpenGL.Enums.NvParameterBufferObject target, UInt32 buffer, UInt32 index, Int32 count, UInt32* @params); + internal unsafe delegate void ProgramBufferParametersIuivNV(OpenTK.OpenGL.Enums.All target, UInt32 buffer, UInt32 index, Int32 count, UInt32* @params); internal unsafe static ProgramBufferParametersIuivNV glProgramBufferParametersIuivNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void ColorMaskIndexedEXT(UInt32 index, bool r, bool g, bool b, bool a); internal static ColorMaskIndexedEXT glColorMaskIndexedEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetBooleanIndexedvEXT(OpenTK.OpenGL.Enums.ExtDrawBuffers2 target, UInt32 index, [Out] bool* data); + internal unsafe delegate void GetBooleanIndexedvEXT(OpenTK.OpenGL.Enums.All target, UInt32 index, [Out] bool* data); internal unsafe static GetBooleanIndexedvEXT glGetBooleanIndexedvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetIntegerIndexedvEXT(OpenTK.OpenGL.Enums.ExtDrawBuffers2 target, UInt32 index, [Out] Int32* data); + internal unsafe delegate void GetIntegerIndexedvEXT(OpenTK.OpenGL.Enums.All target, UInt32 index, [Out] Int32* data); internal unsafe static GetIntegerIndexedvEXT glGetIntegerIndexedvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void EnableIndexedEXT(OpenTK.OpenGL.Enums.ExtDrawBuffers2 target, UInt32 index); + internal delegate void EnableIndexedEXT(OpenTK.OpenGL.Enums.All target, UInt32 index); internal static EnableIndexedEXT glEnableIndexedEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void DisableIndexedEXT(OpenTK.OpenGL.Enums.ExtDrawBuffers2 target, UInt32 index); + internal delegate void DisableIndexedEXT(OpenTK.OpenGL.Enums.All target, UInt32 index); internal static DisableIndexedEXT glDisableIndexedEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate bool IsEnabledIndexedEXT(OpenTK.OpenGL.Enums.ExtDrawBuffers2 target, UInt32 index); + internal delegate bool IsEnabledIndexedEXT(OpenTK.OpenGL.Enums.All target, UInt32 index); internal static IsEnabledIndexedEXT glIsEnabledIndexedEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BeginTransformFeedbackNV(OpenTK.OpenGL.Enums.NvTransformFeedback primitiveMode); + internal delegate void BeginTransformFeedbackNV(OpenTK.OpenGL.Enums.All primitiveMode); internal static BeginTransformFeedbackNV glBeginTransformFeedbackNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void EndTransformFeedbackNV(); internal static EndTransformFeedbackNV glEndTransformFeedbackNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void TransformFeedbackAttribsNV(UInt32 count, Int32* attribs, OpenTK.OpenGL.Enums.NvTransformFeedback bufferMode); + internal unsafe delegate void TransformFeedbackAttribsNV(UInt32 count, Int32* attribs, OpenTK.OpenGL.Enums.All bufferMode); internal unsafe static TransformFeedbackAttribsNV glTransformFeedbackAttribsNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BindBufferRangeNV(OpenTK.OpenGL.Enums.NvTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size); + internal delegate void BindBufferRangeNV(OpenTK.OpenGL.Enums.All target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size); internal static BindBufferRangeNV glBindBufferRangeNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BindBufferOffsetNV(OpenTK.OpenGL.Enums.NvTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset); + internal delegate void BindBufferOffsetNV(OpenTK.OpenGL.Enums.All target, UInt32 index, UInt32 buffer, IntPtr offset); internal static BindBufferOffsetNV glBindBufferOffsetNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BindBufferBaseNV(OpenTK.OpenGL.Enums.NvTransformFeedback target, UInt32 index, UInt32 buffer); + internal delegate void BindBufferBaseNV(OpenTK.OpenGL.Enums.All target, UInt32 index, UInt32 buffer); internal static BindBufferBaseNV glBindBufferBaseNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void TransformFeedbackVaryingsNV(UInt32 program, Int32 count, Int32* locations, OpenTK.OpenGL.Enums.NvTransformFeedback bufferMode); + internal unsafe delegate void TransformFeedbackVaryingsNV(UInt32 program, Int32 count, Int32* locations, OpenTK.OpenGL.Enums.All bufferMode); internal unsafe static TransformFeedbackVaryingsNV glTransformFeedbackVaryingsNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void ActiveVaryingNV(UInt32 program, System.String name); @@ -4560,7 +4560,7 @@ namespace OpenTK.OpenGL internal delegate Int32 GetVaryingLocationNV(UInt32 program, System.String name); internal static GetVaryingLocationNV glGetVaryingLocationNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetActiveVaryingNV(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.OpenGL.Enums.NvTransformFeedback* type, [Out] System.Text.StringBuilder name); + internal unsafe delegate void GetActiveVaryingNV(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.OpenGL.Enums.All* type, [Out] System.Text.StringBuilder name); internal unsafe static GetActiveVaryingNV glGetActiveVaryingNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void GetTransformFeedbackVaryingNV(UInt32 program, UInt32 index, [Out] Int32* location); diff --git a/Source/OpenTK/OpenGL/Bindings/GLEnums.cs b/Source/OpenTK/OpenGL/Bindings/GLEnums.cs index 1830a675..98cbb236 100644 --- a/Source/OpenTK/OpenGL/Bindings/GLEnums.cs +++ b/Source/OpenTK/OpenGL/Bindings/GLEnums.cs @@ -11,6 +11,7 @@ namespace OpenTK.OpenGL TransformBit = ((int)0x00001000), TextureBit = ((int)0x00040000), PixelModeBit = ((int)0x00000020), + MultisampleBit = ((int)0x20000000), FogBit = ((int)0x00000080), EnableBit = ((int)0x00002000), LineBit = ((int)0x00000004), @@ -29,10 +30,10 @@ namespace OpenTK.OpenGL public enum ClearBufferMask { - StencilBufferBit = ((int)AttribMask.StencilBufferBit), - AccumBufferBit = ((int)AttribMask.AccumBufferBit), - ColorBufferBit = ((int)AttribMask.ColorBufferBit), - DepthBufferBit = ((int)AttribMask.DepthBufferBit), + StencilBufferBit = ((int)0x00000400), + AccumBufferBit = ((int)0x00000200), + ColorBufferBit = ((int)0x00004000), + DepthBufferBit = ((int)0x00000100), } public enum ClientAttribMask @@ -85,130 +86,130 @@ namespace OpenTK.OpenGL public enum BlendingFactorDest { - ConstantColorExt = ((int)ExtBlendColor.ConstantColorExt), + ConstantColorExt = ((int)0x8001), OneMinusSrcAlpha = ((int)0x0303), One = ((int)1), OneMinusDstAlpha = ((int)0x0305), - OneMinusConstantColorExt = ((int)ExtBlendColor.OneMinusConstantColorExt), + OneMinusConstantColorExt = ((int)0x8002), SrcColor = ((int)0x0300), OneMinusSrcColor = ((int)0x0301), - ConstantAlphaExt = ((int)ExtBlendColor.ConstantAlphaExt), + ConstantAlphaExt = ((int)0x8003), SrcAlpha = ((int)0x0302), DstAlpha = ((int)0x0304), Zero = ((int)0), - OneMinusConstantAlphaExt = ((int)ExtBlendColor.OneMinusConstantAlphaExt), + OneMinusConstantAlphaExt = ((int)0x8004), } public enum BlendingFactorSrc { - ConstantColorExt = ((int)ExtBlendColor.ConstantColorExt), - OneMinusSrcAlpha = ((int)BlendingFactorDest.OneMinusSrcAlpha), - One = ((int)BlendingFactorDest.One), + ConstantColorExt = ((int)0x8001), + OneMinusSrcAlpha = ((int)0x0303), + One = ((int)1), SrcAlphaSaturate = ((int)0x0308), - OneMinusConstantColorExt = ((int)ExtBlendColor.OneMinusConstantColorExt), - OneMinusDstAlpha = ((int)BlendingFactorDest.OneMinusDstAlpha), + OneMinusConstantColorExt = ((int)0x8002), + OneMinusDstAlpha = ((int)0x0305), OneMinusDstColor = ((int)0x0307), - ConstantAlphaExt = ((int)ExtBlendColor.ConstantAlphaExt), - SrcAlpha = ((int)BlendingFactorDest.SrcAlpha), + ConstantAlphaExt = ((int)0x8003), + SrcAlpha = ((int)0x0302), DstColor = ((int)0x0306), - Zero = ((int)BlendingFactorDest.Zero), - DstAlpha = ((int)BlendingFactorDest.DstAlpha), - OneMinusConstantAlphaExt = ((int)ExtBlendColor.OneMinusConstantAlphaExt), + Zero = ((int)0), + DstAlpha = ((int)0x0304), + OneMinusConstantAlphaExt = ((int)0x8004), } public enum BlendEquationModeExt { - FuncSubtractExt = ((int)ExtBlendSubtract.FuncSubtractExt), - FuncAddExt = ((int)ExtBlendMinmax.FuncAddExt), - MaxExt = ((int)ExtBlendMinmax.MaxExt), - AlphaMinSgix = ((int)SgixBlendAlphaMinmax.AlphaMinSgix), - FuncReverseSubtractExt = ((int)ExtBlendSubtract.FuncReverseSubtractExt), - AlphaMaxSgix = ((int)SgixBlendAlphaMinmax.AlphaMaxSgix), - MinExt = ((int)ExtBlendMinmax.MinExt), - LogicOp = ((int)GetPName.LogicOp), + FuncSubtractExt = ((int)0x800a), + FuncAddExt = ((int)0x8006), + MaxExt = ((int)0x8008), + AlphaMinSgix = ((int)0x8320), + FuncReverseSubtractExt = ((int)0x800b), + AlphaMaxSgix = ((int)0x8321), + MinExt = ((int)0x8007), + LogicOp = ((int)0x0bf1), } public enum ColorMaterialFace { - Front = ((int)DrawBufferMode.Front), - FrontAndBack = ((int)DrawBufferMode.FrontAndBack), - Back = ((int)DrawBufferMode.Back), + Front = ((int)0x0404), + FrontAndBack = ((int)0x0408), + Back = ((int)0x0405), } public enum ColorMaterialParameter { - Emission = ((int)MaterialParameter.Emission), - Specular = ((int)LightParameter.Specular), - AmbientAndDiffuse = ((int)MaterialParameter.AmbientAndDiffuse), - Diffuse = ((int)LightParameter.Diffuse), - Ambient = ((int)LightParameter.Ambient), + Emission = ((int)0x1600), + Specular = ((int)0x1202), + AmbientAndDiffuse = ((int)0x1602), + Diffuse = ((int)0x1201), + Ambient = ((int)0x1200), } public enum ColorPointerType { - UnsignedByte = ((int)DataType.UnsignedByte), - Byte = ((int)DataType.Byte), - UnsignedInt = ((int)DataType.UnsignedInt), - Short = ((int)DataType.Short), - Int = ((int)DataType.Int), - Float = ((int)DataType.Float), - Double = ((int)DataType.Double), - UnsignedShort = ((int)DataType.UnsignedShort), + UnsignedByte = ((int)0x1401), + Byte = ((int)0x1400), + UnsignedInt = ((int)0x1405), + Short = ((int)0x1402), + Int = ((int)0x1404), + Float = ((int)0x1406), + Double = ((int)0x140a), + UnsignedShort = ((int)0x1403), } public enum ColorTableParameterPNameSgi { - ColorTableScaleSgi = ((int)SgiColorTable.ColorTableScaleSgi), - ColorTableBiasSgi = ((int)SgiColorTable.ColorTableBiasSgi), + ColorTableScaleSgi = ((int)0x80d6), + ColorTableBiasSgi = ((int)0x80d7), } public enum ColorTableTargetSgi { - ProxyTextureColorTableSgi = ((int)SgiTextureColorTable.ProxyTextureColorTableSgi), - PostColorMatrixColorTableSgi = ((int)SgiColorTable.PostColorMatrixColorTableSgi), - ProxyPostConvolutionColorTableSgi = ((int)SgiColorTable.ProxyPostConvolutionColorTableSgi), - TextureColorTableSgi = ((int)SgiTextureColorTable.TextureColorTableSgi), - PostConvolutionColorTableSgi = ((int)SgiColorTable.PostConvolutionColorTableSgi), - ProxyPostColorMatrixColorTableSgi = ((int)SgiColorTable.ProxyPostColorMatrixColorTableSgi), - ProxyColorTableSgi = ((int)SgiColorTable.ProxyColorTableSgi), - ColorTableSgi = ((int)SgiColorTable.ColorTableSgi), + ProxyTextureColorTableSgi = ((int)0x80bd), + PostColorMatrixColorTableSgi = ((int)0x80d2), + ProxyPostConvolutionColorTableSgi = ((int)0x80d4), + TextureColorTableSgi = ((int)0x80bc), + PostConvolutionColorTableSgi = ((int)0x80d1), + ProxyPostColorMatrixColorTableSgi = ((int)0x80d5), + ProxyColorTableSgi = ((int)0x80d3), + ColorTableSgi = ((int)0x80d0), } public enum ConvolutionBorderModeExt { - ReduceExt = ((int)ExtConvolution.ReduceExt), + ReduceExt = ((int)0x8016), } public enum ConvolutionParameterExt { - ConvolutionFilterBiasExt = ((int)ExtConvolution.ConvolutionFilterBiasExt), - ConvolutionFilterScaleExt = ((int)ExtConvolution.ConvolutionFilterScaleExt), - ConvolutionBorderModeExt = ((int)ExtConvolution.ConvolutionBorderModeExt), + ConvolutionFilterBiasExt = ((int)0x8015), + ConvolutionFilterScaleExt = ((int)0x8014), + ConvolutionBorderModeExt = ((int)0x8013), } public enum ConvolutionTargetExt { - Convolution2dExt = ((int)ExtConvolution.Convolution2dExt), - Convolution1dExt = ((int)ExtConvolution.Convolution1dExt), + Convolution2dExt = ((int)0x8011), + Convolution1dExt = ((int)0x8010), } public enum CullFaceMode { - Front = ((int)DrawBufferMode.Front), - FrontAndBack = ((int)DrawBufferMode.FrontAndBack), - Back = ((int)DrawBufferMode.Back), + Front = ((int)0x0404), + FrontAndBack = ((int)0x0408), + Back = ((int)0x0405), } public enum DepthFunction { - Never = ((int)AlphaFunction.Never), - Equal = ((int)AlphaFunction.Equal), - Always = ((int)AlphaFunction.Always), - Less = ((int)AlphaFunction.Less), - Gequal = ((int)AlphaFunction.Gequal), - Lequal = ((int)AlphaFunction.Lequal), - Notequal = ((int)AlphaFunction.Notequal), - Greater = ((int)AlphaFunction.Greater), + Never = ((int)0x0200), + Equal = ((int)0x0202), + Always = ((int)0x0207), + Less = ((int)0x0201), + Gequal = ((int)0x0206), + Lequal = ((int)0x0203), + Notequal = ((int)0x0205), + Greater = ((int)0x0204), } public enum DrawBufferMode @@ -231,112 +232,119 @@ namespace OpenTK.OpenGL public enum EnableCap { - Light1 = ((int)GetPName.Light1), - SampleAlphaToOneSgis = ((int)SgisMultisample.SampleAlphaToOneSgis), - FragmentLight5Sgix = ((int)SgixFragmentLighting.FragmentLight5Sgix), - FragmentLight6Sgix = ((int)SgixFragmentLighting.FragmentLight6Sgix), - ColorMaterial = ((int)GetPName.ColorMaterial), - PolygonOffsetFill = ((int)GetPName.PolygonOffsetFill), - FragmentLight7Sgix = ((int)SgixFragmentLighting.FragmentLight7Sgix), - Lighting = ((int)GetPName.Lighting), - FragmentLight3Sgix = ((int)SgixFragmentLighting.FragmentLight3Sgix), - FragmentLightingSgix = ((int)SgixFragmentLighting.FragmentLightingSgix), - PolygonStipple = ((int)GetPName.PolygonStipple), - CullFace = ((int)GetPName.CullFace), - PostConvolutionColorTableSgi = ((int)SgiColorTable.PostConvolutionColorTableSgi), - Map1Normal = ((int)GetPName.Map1Normal), - Multisample = ((int)Version13.Multisample), - SampleMaskSgis = ((int)SgisMultisample.SampleMaskSgis), - FragmentLight0Sgix = ((int)SgixFragmentLighting.FragmentLight0Sgix), - FogOffsetSgix = ((int)SgixFogOffset.FogOffsetSgix), - Map2Normal = ((int)GetPName.Map2Normal), - Fog = ((int)GetPName.Fog), - PolygonOffsetPoint = ((int)GetPName.PolygonOffsetPoint), - IndexLogicOp = ((int)GetPName.IndexLogicOp), - NormalArray = ((int)GetPName.NormalArray), - ClipPlane3 = ((int)GetPName.ClipPlane3), - AsyncHistogramSgix = ((int)SgixAsyncHistogram.AsyncHistogramSgix), - Light5 = ((int)GetPName.Light5), - Light0 = ((int)GetPName.Light0), - StencilTest = ((int)GetPName.StencilTest), - Texture3dExt = ((int)ExtTexture3D.Texture3dExt), - ClipPlane0 = ((int)GetPName.ClipPlane0), - SampleAlphaToMaskSgis = ((int)SgisMultisample.SampleAlphaToMaskSgis), - Map1TextureCoord4 = ((int)GetPName.Map1TextureCoord4), - TextureGenR = ((int)GetPName.TextureGenR), - Map1TextureCoord2 = ((int)GetPName.Map1TextureCoord2), - Map1TextureCoord3 = ((int)GetPName.Map1TextureCoord3), - Map1TextureCoord1 = ((int)GetPName.Map1TextureCoord1), - Map2TextureCoord4 = ((int)GetPName.Map2TextureCoord4), - Map2TextureCoord2 = ((int)GetPName.Map2TextureCoord2), - Map2TextureCoord3 = ((int)GetPName.Map2TextureCoord3), - ScissorTest = ((int)GetPName.ScissorTest), - Map2TextureCoord1 = ((int)GetPName.Map2TextureCoord1), - RescaleNormalExt = ((int)ExtRescaleNormal.RescaleNormalExt), - ColorTableSgi = ((int)SgiColorTable.ColorTableSgi), - FragmentColorMaterialSgix = ((int)SgixFragmentLighting.FragmentColorMaterialSgix), - Convolution2dExt = ((int)ExtConvolution.Convolution2dExt), - Map2Vertex4 = ((int)GetPName.Map2Vertex4), - HistogramExt = ((int)ExtHistogram.HistogramExt), - Map2Vertex3 = ((int)GetPName.Map2Vertex3), - TextureCoordArray = ((int)GetPName.TextureCoordArray), - DepthTest = ((int)GetPName.DepthTest), - IndexArray = ((int)GetPName.IndexArray), - ReferencePlaneSgix = ((int)SgixReferencePlane.ReferencePlaneSgix), - PixelTexGenSgix = ((int)SgixPixelTexture.PixelTexGenSgix), - PixelTextureSgis = ((int)SgisPixelTexture.PixelTextureSgis), - IrInstrument1Sgix = ((int)SgixIrInstrument1.IrInstrument1Sgix), - Map1Vertex4 = ((int)GetPName.Map1Vertex4), - Map1Vertex3 = ((int)GetPName.Map1Vertex3), - AutoNormal = ((int)GetPName.AutoNormal), - Dither = ((int)GetPName.Dither), - SpriteSgix = ((int)SgixSprite.SpriteSgix), - Light3 = ((int)GetPName.Light3), - AsyncReadPixelsSgix = ((int)SgixAsyncPixel.AsyncReadPixelsSgix), - ClipPlane1 = ((int)GetPName.ClipPlane1), - EdgeFlagArray = ((int)GetPName.EdgeFlagArray), - SharedTexturePaletteExt = ((int)ExtSharedTexturePalette.SharedTexturePaletteExt), - LineStipple = ((int)GetPName.LineStipple), - PolygonSmooth = ((int)GetPName.PolygonSmooth), - Map2Color4 = ((int)GetPName.Map2Color4), - ColorLogicOp = ((int)GetPName.ColorLogicOp), - Map2Index = ((int)GetPName.Map2Index), - TextureGenT = ((int)GetPName.TextureGenT), - LineSmooth = ((int)GetPName.LineSmooth), - FragmentLight4Sgix = ((int)SgixFragmentLighting.FragmentLight4Sgix), - AsyncDrawPixelsSgix = ((int)SgixAsyncPixel.AsyncDrawPixelsSgix), - Texture4dSgis = ((int)SgisTexture4D.Texture4dSgis), - PointSmooth = ((int)GetPName.PointSmooth), - VertexArray = ((int)GetPName.VertexArray), - Light4 = ((int)GetPName.Light4), - Separable2dExt = ((int)ExtConvolution.Separable2dExt), - TextureGenQ = ((int)GetPName.TextureGenQ), - Texture2d = ((int)GetPName.Texture2d), - Map1Index = ((int)GetPName.Map1Index), - Light7 = ((int)GetPName.Light7), - Convolution1dExt = ((int)ExtConvolution.Convolution1dExt), - Texture1d = ((int)GetPName.Texture1d), - Light2 = ((int)GetPName.Light2), - ClipPlane2 = ((int)GetPName.ClipPlane2), - TextureColorTableSgi = ((int)SgiTextureColorTable.TextureColorTableSgi), - ClipPlane5 = ((int)GetPName.ClipPlane5), - ClipPlane4 = ((int)GetPName.ClipPlane4), - FragmentLight2Sgix = ((int)SgixFragmentLighting.FragmentLight2Sgix), - Map1Color4 = ((int)GetPName.Map1Color4), - InterlaceSgix = ((int)SgixInterlace.InterlaceSgix), - Normalize = ((int)GetPName.Normalize), - AlphaTest = ((int)GetPName.AlphaTest), - MinmaxExt = ((int)ExtHistogram.MinmaxExt), - Blend = ((int)GetPName.Blend), - ColorArray = ((int)GetPName.ColorArray), - TextureGenS = ((int)GetPName.TextureGenS), - FragmentLight1Sgix = ((int)SgixFragmentLighting.FragmentLight1Sgix), - PostColorMatrixColorTableSgi = ((int)SgiColorTable.PostColorMatrixColorTableSgi), - CalligraphicFragmentSgix = ((int)SgixCalligraphicFragment.CalligraphicFragmentSgix), - Light6 = ((int)GetPName.Light6), - PolygonOffsetLine = ((int)GetPName.PolygonOffsetLine), - AsyncTexImageSgix = ((int)SgixAsyncPixel.AsyncTexImageSgix), - FramezoomSgix = ((int)SgixFramezoom.FramezoomSgix), + Light1 = ((int)0x4001), + FragmentLight5Sgix = ((int)0x8411), + FragmentLight6Sgix = ((int)0x8412), + ColorMaterial = ((int)0x0b57), + VertexProgramPointSize = ((int)0x8642), + PolygonOffsetFill = ((int)0x8037), + FragmentLight7Sgix = ((int)0x8413), + Lighting = ((int)0x0b50), + FragmentLight3Sgix = ((int)0x840f), + FragmentLightingSgix = ((int)0x8400), + PolygonStipple = ((int)0x0b42), + CullFace = ((int)0x0b44), + PostConvolutionColorTableSgi = ((int)0x80d1), + Map1Normal = ((int)0x0d92), + Multisample = ((int)0x809d), + FragmentLight0Sgix = ((int)0x840c), + FogOffsetSgix = ((int)0x8198), + SampleAlphaToCoverage = ((int)0x809e), + FogCoordArray = ((int)0x8457), + Map2Normal = ((int)0x0db2), + Fog = ((int)0x0b60), + PolygonOffsetPoint = ((int)0x2a01), + IndexLogicOp = ((int)0x0bf1), + NormalArray = ((int)0x8075), + ClipPlane3 = ((int)0x3003), + AsyncHistogramSgix = ((int)0x832c), + Light5 = ((int)0x4005), + Light0 = ((int)0x4000), + StencilTest = ((int)0x0b90), + Texture3dExt = ((int)0x806f), + ClipPlane0 = ((int)0x3000), + SampleAlphaToOne = ((int)0x809f), + Map1TextureCoord4 = ((int)0x0d96), + TextureGenR = ((int)0x0c62), + Map1TextureCoord2 = ((int)0x0d94), + Map1TextureCoord3 = ((int)0x0d95), + Map1TextureCoord1 = ((int)0x0d93), + Map2TextureCoord4 = ((int)0x0db6), + Map2TextureCoord2 = ((int)0x0db4), + Map2TextureCoord3 = ((int)0x0db5), + ScissorTest = ((int)0x0c11), + Map2TextureCoord1 = ((int)0x0db3), + ColorTableSgi = ((int)0x80d0), + FragmentColorMaterialSgix = ((int)0x8401), + Convolution2dExt = ((int)0x8011), + Map2Vertex4 = ((int)0x0db8), + HistogramExt = ((int)0x8024), + Map2Vertex3 = ((int)0x0db7), + TextureCoordArray = ((int)0x8078), + DepthTest = ((int)0x0b71), + VertexProgramTwoSide = ((int)0x8643), + IndexArray = ((int)0x8077), + ReferencePlaneSgix = ((int)0x817d), + PixelTexGenSgix = ((int)0x8139), + PixelTextureSgis = ((int)0x8353), + IrInstrument1Sgix = ((int)0x817f), + Map1Vertex4 = ((int)0x0d98), + PointSprite = ((int)0x8861), + Map1Vertex3 = ((int)0x0d97), + AutoNormal = ((int)0x0d80), + Dither = ((int)0x0bd0), + SpriteSgix = ((int)0x8148), + Light3 = ((int)0x4003), + AsyncReadPixelsSgix = ((int)0x835e), + ClipPlane1 = ((int)0x3001), + ColorSum = ((int)0x8458), + TextureCubeMap = ((int)0x8513), + EdgeFlagArray = ((int)0x8079), + SharedTexturePaletteExt = ((int)0x81fb), + LineStipple = ((int)0x0b24), + PolygonSmooth = ((int)0x0b41), + Map2Color4 = ((int)0x0db0), + ColorLogicOp = ((int)0x0bf2), + Map2Index = ((int)0x0db1), + TextureGenT = ((int)0x0c61), + LineSmooth = ((int)0x0b20), + FragmentLight4Sgix = ((int)0x8410), + AsyncDrawPixelsSgix = ((int)0x835d), + Texture4dSgis = ((int)0x8134), + PointSmooth = ((int)0x0b10), + VertexArray = ((int)0x8074), + Light4 = ((int)0x4004), + Separable2dExt = ((int)0x8012), + TextureGenQ = ((int)0x0c63), + Texture2d = ((int)0x0de1), + Map1Index = ((int)0x0d91), + Light7 = ((int)0x4007), + Convolution1dExt = ((int)0x8010), + Texture1d = ((int)0x0de0), + Light2 = ((int)0x4002), + ClipPlane2 = ((int)0x3002), + TextureColorTableSgi = ((int)0x80bc), + ClipPlane5 = ((int)0x3005), + ClipPlane4 = ((int)0x3004), + FragmentLight2Sgix = ((int)0x840e), + Map1Color4 = ((int)0x0d90), + RescaleNormal = ((int)0x803a), + InterlaceSgix = ((int)0x8094), + SampleCoverage = ((int)0x80a0), + Normalize = ((int)0x0ba1), + AlphaTest = ((int)0x0bc0), + MinmaxExt = ((int)0x802e), + Blend = ((int)0x0be2), + ColorArray = ((int)0x8076), + TextureGenS = ((int)0x0c60), + FragmentLight1Sgix = ((int)0x840d), + PostColorMatrixColorTableSgi = ((int)0x80d2), + CalligraphicFragmentSgix = ((int)0x8183), + Light6 = ((int)0x4006), + SecondaryColorArray = ((int)0x845e), + PolygonOffsetLine = ((int)0x2a02), + AsyncTexImageSgix = ((int)0x835c), + FramezoomSgix = ((int)0x818b), } public enum ErrorCode @@ -344,11 +352,11 @@ namespace OpenTK.OpenGL InvalidEnum = ((int)0x0500), NoError = ((int)0), InvalidOperation = ((int)0x0502), - TableTooLargeExt = ((int)ExtHistogram.TableTooLargeExt), + TableTooLargeExt = ((int)0x8031), StackOverflow = ((int)0x0503), OutOfMemory = ((int)0x0505), StackUnderflow = ((int)0x0504), - TextureTooLargeExt = ((int)ExtTexture.TextureTooLargeExt), + TextureTooLargeExt = ((int)0x8065), InvalidValue = ((int)0x0501), } @@ -381,35 +389,38 @@ namespace OpenTK.OpenGL public enum FfdTargetSgix { - TextureDeformationSgix = ((int)SgixPolynomialFfd.TextureDeformationSgix), - GeometryDeformationSgix = ((int)SgixPolynomialFfd.GeometryDeformationSgix), + TextureDeformationSgix = ((int)0x8195), + GeometryDeformationSgix = ((int)0x8194), } public enum FogMode { Exp2 = ((int)0x0801), - FogFuncSgis = ((int)SgisFogFunction.FogFuncSgis), + FogFuncSgis = ((int)0x812a), Exp = ((int)0x0800), - Linear = ((int)TextureMagFilter.Linear), + FogCoord = ((int)0x8451), + FragmentDepth = ((int)0x8452), + Linear = ((int)0x2601), } public enum FogParameter { - FogOffsetValueSgix = ((int)SgixFogOffset.FogOffsetValueSgix), - FogStart = ((int)GetPName.FogStart), - FogIndex = ((int)GetPName.FogIndex), - FogEnd = ((int)GetPName.FogEnd), - FogMode = ((int)GetPName.FogMode), - FogColor = ((int)GetPName.FogColor), - FogDensity = ((int)GetPName.FogDensity), + FogColor = ((int)0x0b66), + FogEnd = ((int)0x0b64), + FogStart = ((int)0x0b63), + FogDensity = ((int)0x0b62), + FogIndex = ((int)0x0b61), + FogOffsetValueSgix = ((int)0x8199), + FogMode = ((int)0x0b65), + FogCoordSrc = ((int)0x8450), } public enum FragmentLightModelParameterSgix { - FragmentLightModelAmbientSgix = ((int)SgixFragmentLighting.FragmentLightModelAmbientSgix), - FragmentLightModelLocalViewerSgix = ((int)SgixFragmentLighting.FragmentLightModelLocalViewerSgix), - FragmentLightModelTwoSideSgix = ((int)SgixFragmentLighting.FragmentLightModelTwoSideSgix), - FragmentLightModelNormalInterpolationSgix = ((int)SgixFragmentLighting.FragmentLightModelNormalInterpolationSgix), + FragmentLightModelAmbientSgix = ((int)0x840a), + FragmentLightModelLocalViewerSgix = ((int)0x8408), + FragmentLightModelTwoSideSgix = ((int)0x8409), + FragmentLightModelNormalInterpolationSgix = ((int)0x840b), } public enum FrontFaceDirection @@ -420,40 +431,40 @@ namespace OpenTK.OpenGL public enum GetColorTableParameterPNameSgi { - ColorTableBiasSgi = ((int)SgiColorTable.ColorTableBiasSgi), - ColorTableIntensitySizeSgi = ((int)SgiColorTable.ColorTableIntensitySizeSgi), - ColorTableLuminanceSizeSgi = ((int)SgiColorTable.ColorTableLuminanceSizeSgi), - ColorTableAlphaSizeSgi = ((int)SgiColorTable.ColorTableAlphaSizeSgi), - ColorTableBlueSizeSgi = ((int)SgiColorTable.ColorTableBlueSizeSgi), - ColorTableScaleSgi = ((int)SgiColorTable.ColorTableScaleSgi), - ColorTableWidthSgi = ((int)SgiColorTable.ColorTableWidthSgi), - ColorTableFormatSgi = ((int)SgiColorTable.ColorTableFormatSgi), - ColorTableRedSizeSgi = ((int)SgiColorTable.ColorTableRedSizeSgi), - ColorTableGreenSizeSgi = ((int)SgiColorTable.ColorTableGreenSizeSgi), + ColorTableBiasSgi = ((int)0x80d7), + ColorTableIntensitySizeSgi = ((int)0x80df), + ColorTableLuminanceSizeSgi = ((int)0x80de), + ColorTableAlphaSizeSgi = ((int)0x80dd), + ColorTableBlueSizeSgi = ((int)0x80dc), + ColorTableScaleSgi = ((int)0x80d6), + ColorTableWidthSgi = ((int)0x80d9), + ColorTableFormatSgi = ((int)0x80d8), + ColorTableRedSizeSgi = ((int)0x80da), + ColorTableGreenSizeSgi = ((int)0x80db), } public enum GetConvolutionParameter { - MaxConvolutionWidthExt = ((int)ExtConvolution.MaxConvolutionWidthExt), - ConvolutionHeightExt = ((int)ExtConvolution.ConvolutionHeightExt), - ConvolutionFormatExt = ((int)ExtConvolution.ConvolutionFormatExt), - MaxConvolutionHeightExt = ((int)ExtConvolution.MaxConvolutionHeightExt), - ConvolutionBorderModeExt = ((int)ExtConvolution.ConvolutionBorderModeExt), - ConvolutionWidthExt = ((int)ExtConvolution.ConvolutionWidthExt), - ConvolutionFilterScaleExt = ((int)ExtConvolution.ConvolutionFilterScaleExt), - ConvolutionFilterBiasExt = ((int)ExtConvolution.ConvolutionFilterBiasExt), + MaxConvolutionWidthExt = ((int)0x801a), + ConvolutionHeightExt = ((int)0x8019), + ConvolutionFormatExt = ((int)0x8017), + MaxConvolutionHeightExt = ((int)0x801b), + ConvolutionBorderModeExt = ((int)0x8013), + ConvolutionWidthExt = ((int)0x8018), + ConvolutionFilterScaleExt = ((int)0x8014), + ConvolutionFilterBiasExt = ((int)0x8015), } public enum GetHistogramParameterPNameExt { - HistogramAlphaSizeExt = ((int)ExtHistogram.HistogramAlphaSizeExt), - HistogramLuminanceSizeExt = ((int)ExtHistogram.HistogramLuminanceSizeExt), - HistogramFormatExt = ((int)ExtHistogram.HistogramFormatExt), - HistogramGreenSizeExt = ((int)ExtHistogram.HistogramGreenSizeExt), - HistogramSinkExt = ((int)ExtHistogram.HistogramSinkExt), - HistogramWidthExt = ((int)ExtHistogram.HistogramWidthExt), - HistogramBlueSizeExt = ((int)ExtHistogram.HistogramBlueSizeExt), - HistogramRedSizeExt = ((int)ExtHistogram.HistogramRedSizeExt), + HistogramAlphaSizeExt = ((int)0x802b), + HistogramLuminanceSizeExt = ((int)0x802c), + HistogramFormatExt = ((int)0x8027), + HistogramGreenSizeExt = ((int)0x8029), + HistogramSinkExt = ((int)0x802d), + HistogramWidthExt = ((int)0x8026), + HistogramBlueSizeExt = ((int)0x802a), + HistogramRedSizeExt = ((int)0x8028), } public enum GetMapQuery @@ -465,8 +476,8 @@ namespace OpenTK.OpenGL public enum GetMinmaxParameterPNameExt { - MinmaxSinkExt = ((int)ExtHistogram.MinmaxSinkExt), - MinmaxFormatExt = ((int)ExtHistogram.MinmaxFormatExt), + MinmaxSinkExt = ((int)0x8030), + MinmaxFormatExt = ((int)0x802f), } public enum GetPixelMap @@ -485,8 +496,10 @@ namespace OpenTK.OpenGL public enum GetPointervPName { + SecondaryColorArrayPointer = ((int)0x845d), EdgeFlagArrayPointer = ((int)0x8093), - InstrumentBufferPointerSgix = ((int)SgixInstruments.InstrumentBufferPointerSgix), + InstrumentBufferPointerSgix = ((int)0x8180), + FogCoordArrayPointer = ((int)0x8456), FeedbackBufferPointer = ((int)0x0df0), VertexArrayPointer = ((int)0x808e), SelectionBufferPointer = ((int)0x0df3), @@ -498,336 +511,404 @@ namespace OpenTK.OpenGL public enum GetPName { - AliasedLineWidthRange = ((int)Version12.AliasedLineWidthRange), + AliasedLineWidthRange = ((int)0x846e), Map1TextureCoord4 = ((int)0x0d96), + StencilBackPassDepthFail = ((int)0x8802), PolygonSmoothHint = ((int)0x0c53), DepthWritemask = ((int)0x0b72), - PostConvolutionBlueScaleExt = ((int)ExtConvolution.PostConvolutionBlueScaleExt), + PostConvolutionBlueScaleExt = ((int)0x801e), + MaxFragmentUniformComponents = ((int)0x8b49), PixelMapSToSSize = ((int)0x0cb1), ColorArray = ((int)0x8076), MaxLights = ((int)0x0d31), StencilValueMask = ((int)0x0b93), LightModelLocalViewer = ((int)0x0b51), IndexArrayType = ((int)0x8085), - ClipPlane3 = ((int)ClipPlaneName.ClipPlane3), - PixelTileGridHeightSgix = ((int)SgixPixelTiles.PixelTileGridHeightSgix), + ClipPlane3 = ((int)0x3003), + PixelTileGridHeightSgix = ((int)0x8143), + MaxDrawBuffers = ((int)0x8824), PerspectiveCorrectionHint = ((int)0x0c50), + SampleAlphaToCoverage = ((int)0x809e), + PixelPackBufferBinding = ((int)0x88ed), Map2GridSegments = ((int)0x0dd3), ColorMaterialParameter = ((int)0x0b56), - Light4 = ((int)LightName.Light4), + Light4 = ((int)0x4004), Map2Normal = ((int)0x0db2), - UnpackImageDepthSgis = ((int)SgisTexture4D.UnpackImageDepthSgis), - AsyncReadPixelsSgix = ((int)SgixAsyncPixel.AsyncReadPixelsSgix), - PackResampleSgix = ((int)SgixResample.PackResampleSgix), + UnpackImageDepthSgis = ((int)0x8133), + AsyncReadPixelsSgix = ((int)0x835e), + PackResampleSgix = ((int)0x842c), + DrawBuffer13 = ((int)0x8832), + PackSkipRows = ((int)0x0d03), MaxTextureStackDepth = ((int)0x0d39), - SampleMaskValueSgis = ((int)SgisMultisample.SampleMaskValueSgis), - InstrumentMeasurementsSgix = ((int)SgixInstruments.InstrumentMeasurementsSgix), - PixelTextureSgis = ((int)SgisPixelTexture.PixelTextureSgis), + InstrumentMeasurementsSgix = ((int)0x8181), + PointSizeMin = ((int)0x8126), + PixelTextureSgis = ((int)0x8353), PointSmooth = ((int)0x0b10), TextureStackDepth = ((int)0x0ba5), + MaxVaryingFloats = ((int)0x8b4b), ModelviewStackDepth = ((int)0x0ba3), IndexArrayStride = ((int)0x8086), - PostConvolutionColorTableSgi = ((int)SgiColorTable.PostConvolutionColorTableSgi), - PostConvolutionGreenScaleExt = ((int)ExtConvolution.PostConvolutionGreenScaleExt), - Texture3dBindingExt = ((int)ExtTextureObject.Texture3dBindingExt), - MaxAsyncTexImageSgix = ((int)SgixAsyncPixel.MaxAsyncTexImageSgix), + PostConvolutionGreenScaleExt = ((int)0x801d), + MaxAsyncTexImageSgix = ((int)0x835f), UnpackSwapBytes = ((int)0x0cf0), - Texture4dSgis = ((int)SgisTexture4D.Texture4dSgis), + Texture4dSgis = ((int)0x8134), PixelMapAToASize = ((int)0x0cb9), - PostColorMatrixRedBiasSgi = ((int)SgiColorMatrix.PostColorMatrixRedBiasSgi), - PackSkipVolumesSgis = ((int)SgisTexture4D.PackSkipVolumesSgis), + PostColorMatrixRedBiasSgi = ((int)0x80b8), + MaxTextureLodBias = ((int)0x84fd), + PackSkipVolumesSgis = ((int)0x8130), LineSmooth = ((int)0x0b20), - AsyncHistogramSgix = ((int)SgixAsyncHistogram.AsyncHistogramSgix), + AsyncHistogramSgix = ((int)0x832c), DepthBits = ((int)0x0d56), - FragmentLightModelNormalInterpolationSgix = ((int)SgixFragmentLighting.FragmentLightModelNormalInterpolationSgix), + FragmentLightModelNormalInterpolationSgix = ((int)0x840b), LineSmoothHint = ((int)0x0c52), ShadeModel = ((int)0x0b54), - PixelTileBestAlignmentSgix = ((int)SgixPixelTiles.PixelTileBestAlignmentSgix), - MaxClipmapVirtualDepthSgix = ((int)SgixClipmap.MaxClipmapVirtualDepthSgix), - PixelTileHeightSgix = ((int)SgixPixelTiles.PixelTileHeightSgix), - MaxAsyncReadPixelsSgix = ((int)SgixAsyncPixel.MaxAsyncReadPixelsSgix), - Map1Vertex3 = ((int)0x0d97), + PixelTileBestAlignmentSgix = ((int)0x813e), + MaxClipmapVirtualDepthSgix = ((int)0x8178), + PixelTileHeightSgix = ((int)0x8141), + CurrentSecondaryColor = ((int)0x8459), + MaxAsyncReadPixelsSgix = ((int)0x8361), ColorClearValue = ((int)0x0c22), MaxProjectionStackDepth = ((int)0x0d38), AlphaTestRef = ((int)0x0bc2), ListIndex = ((int)0x0b33), - Light1 = ((int)LightName.Light1), - PackSkipImagesExt = ((int)ExtTexture3D.PackSkipImagesExt), - MapStencil = ((int)0x0d11), + Light1 = ((int)0x4001), + PackSkipImagesExt = ((int)0x806b), + PostConvolutionColorTableSgi = ((int)0x80d1), DepthBias = ((int)0x0d1f), + VertexAttribArrayBufferBinding = ((int)0x889f), PackSkipPixels = ((int)0x0d04), MaxModelviewStackDepth = ((int)0x0d36), - PostColorMatrixBlueScaleSgi = ((int)SgiColorMatrix.PostColorMatrixBlueScaleSgi), + PostColorMatrixBlueScaleSgi = ((int)0x80b6), PixelMapIToISize = ((int)0x0cb0), NormalArrayStride = ((int)0x807f), - FragmentLightModelTwoSideSgix = ((int)SgixFragmentLighting.FragmentLightModelTwoSideSgix), - EdgeFlagArrayCountExt = ((int)ExtVertexArray.EdgeFlagArrayCountExt), + MaxElementsVertices = ((int)0x80e8), + FragmentLightModelTwoSideSgix = ((int)0x8409), + EdgeFlagArrayCountExt = ((int)0x808d), CullFace = ((int)0x0b44), Texture1d = ((int)0x0de0), LightModelTwoSide = ((int)0x0b52), - UnpackImageHeightExt = ((int)ExtTexture3D.UnpackImageHeightExt), - SampleBuffers = ((int)Version13.SampleBuffers), + UnpackImageHeightExt = ((int)0x806e), + SampleBuffers = ((int)0x80a8), FogIndex = ((int)0x0b61), - FragmentColorMaterialParameterSgix = ((int)SgixFragmentLighting.FragmentColorMaterialParameterSgix), + FragmentColorMaterialParameterSgix = ((int)0x8403), ZoomY = ((int)0x0d17), - Samples = ((int)Version13.Samples), + Samples = ((int)0x80a9), DepthTest = ((int)0x0b71), LogicOpMode = ((int)0x0bf0), - AsyncTexImageSgix = ((int)SgixAsyncPixel.AsyncTexImageSgix), - SmoothPointSizeRange = ((int)Version12.SmoothPointSizeRange), + AsyncTexImageSgix = ((int)0x835c), + Convolution2dExt = ((int)0x8011), Lighting = ((int)0x0b50), RedScale = ((int)0x0d14), StencilBits = ((int)0x0d57), - UnpackCmykHintExt = ((int)ExtCmyka.UnpackCmykHintExt), - PostConvolutionRedBiasExt = ((int)ExtConvolution.PostConvolutionRedBiasExt), + UnpackCmykHintExt = ((int)0x800f), + SampleCoverageValue = ((int)0x80aa), + DrawBuffer8 = ((int)0x882d), + ElementArrayBufferBinding = ((int)0x8895), + DrawBuffer5 = ((int)0x882a), + PostConvolutionRedBiasExt = ((int)0x8020), + DrawBuffer1 = ((int)0x8826), BlueScale = ((int)0x0d1a), + MaxVertexUniformComponents = ((int)0x8b4a), BlueBias = ((int)0x0d1b), - SampleMaskSgis = ((int)SgisMultisample.SampleMaskSgis), - Texture3dExt = ((int)ExtTexture3D.Texture3dExt), + Texture3dExt = ((int)0x806f), MaxPixelMapTable = ((int)0x0d34), - SpriteSgix = ((int)SgixSprite.SpriteSgix), - SmoothLineWidthGranularity = ((int)Version12.SmoothLineWidthGranularity), - UnpackSkipVolumesSgis = ((int)SgisTexture4D.UnpackSkipVolumesSgis), + SpriteSgix = ((int)0x8148), + SmoothLineWidthGranularity = ((int)0x0b23), + UnpackSkipVolumesSgis = ((int)0x8132), + MaxTextureCoords = ((int)0x8871), AccumAlphaBits = ((int)0x0d5b), + DrawBuffer9 = ((int)0x882e), + DrawBuffer6 = ((int)0x882b), + DrawBuffer7 = ((int)0x882c), + DrawBuffer4 = ((int)0x8829), ClientAttribStackDepth = ((int)0x0bb1), + DrawBuffer2 = ((int)0x8827), + DrawBuffer3 = ((int)0x8828), + DrawBuffer0 = ((int)0x8825), PixelMapIToASize = ((int)0x0cb5), - UnpackResampleSgix = ((int)SgixResample.UnpackResampleSgix), + UnpackResampleSgix = ((int)0x842d), IndexWritemask = ((int)0x0c21), Blend = ((int)0x0be2), ListBase = ((int)0x0b32), MaxAttribStackDepth = ((int)0x0d35), ColorArrayStride = ((int)0x8083), DepthScale = ((int)0x0d1e), - PixelTileCacheIncrementSgix = ((int)SgixPixelTiles.PixelTileCacheIncrementSgix), - ConvolutionHintSgix = ((int)SgixConvolutionAccuracy.ConvolutionHintSgix), + PointSprite = ((int)0x8861), + PixelTileCacheIncrementSgix = ((int)0x813f), + ConvolutionHintSgix = ((int)0x8316), DepthClearValue = ((int)0x0b73), + NormalArrayBufferBinding = ((int)0x8897), AccumRedBits = ((int)0x0d58), - PostColorMatrixRedScaleSgi = ((int)SgiColorMatrix.PostColorMatrixRedScaleSgi), - ClipPlane1 = ((int)ClipPlaneName.ClipPlane1), - PolygonOffsetBiasExt = ((int)ExtPolygonOffset.PolygonOffsetBiasExt), - DetailTexture2dBindingSgis = ((int)SgisDetailTexture.DetailTexture2dBindingSgis), - PackCmykHintExt = ((int)ExtCmyka.PackCmykHintExt), + PostColorMatrixRedScaleSgi = ((int)0x80b4), + ClipPlane1 = ((int)0x3001), + PolygonOffsetBiasExt = ((int)0x8039), + ArrayBufferBinding = ((int)0x8894), + DetailTexture2dBindingSgis = ((int)0x8096), + PackCmykHintExt = ((int)0x800e), TextureMatrix = ((int)0x0ba8), + ActiveTexture = ((int)0x84e0), UnpackAlignment = ((int)0x0cf5), ColorMaterial = ((int)0x0b57), - AsyncDrawPixelsSgix = ((int)SgixAsyncPixel.AsyncDrawPixelsSgix), + PointSizeMax = ((int)0x8127), + AsyncDrawPixelsSgix = ((int)0x835d), UnpackLsbFirst = ((int)0x0cf1), MaxClipPlanes = ((int)0x0d32), - Light6 = ((int)LightName.Light6), - GenerateMipmapHintSgis = ((int)SgisGenerateMipmap.GenerateMipmapHintSgis), - Map1GridDomain = ((int)0x0dd0), + Light6 = ((int)0x4006), + Map1GridDomain = ((int)0x0dd0), ProjectionStackDepth = ((int)0x0ba4), PixelMapGToGSize = ((int)0x0cb7), CurrentRasterTextureCoords = ((int)0x0b06), TextureCoordArray = ((int)0x8078), Texture2d = ((int)0x0de1), - TextureColorTableSgi = ((int)SgiTextureColorTable.TextureColorTableSgi), + TextureColorTableSgi = ((int)0x80bc), IndexBits = ((int)0x0d51), - Convolution1dExt = ((int)ExtConvolution.Convolution1dExt), - BlendColorExt = ((int)ExtBlendColor.BlendColorExt), - SpriteAxisSgix = ((int)SgixSprite.SpriteAxisSgix), + Convolution1dExt = ((int)0x8010), + BlendColorExt = ((int)0x8005), + SpriteAxisSgix = ((int)0x814a), RgbaMode = ((int)0x0c31), FogDensity = ((int)0x0b62), - Separable2dExt = ((int)ExtConvolution.Separable2dExt), - PostConvolutionRedScaleExt = ((int)ExtConvolution.PostConvolutionRedScaleExt), + Separable2dExt = ((int)0x8012), + PostConvolutionRedScaleExt = ((int)0x801c), + StencilBackFunc = ((int)0x8800), Map2Vertex4 = ((int)0x0db8), ColorWritemask = ((int)0x0c23), Map2Vertex3 = ((int)0x0db7), - MultisampleSgis = ((int)SgisMultisample.MultisampleSgis), - PostConvolutionAlphaScaleExt = ((int)ExtConvolution.PostConvolutionAlphaScaleExt), + PostConvolutionAlphaScaleExt = ((int)0x801f), TextureBinding1d = ((int)0x8068), MatrixMode = ((int)0x0ba0), - SharedTexturePaletteExt = ((int)ExtSharedTexturePalette.SharedTexturePaletteExt), + SmoothPointSizeRange = ((int)0x0b12), + BlendSrcRgb = ((int)0x80c9), + SharedTexturePaletteExt = ((int)0x81fb), IndexLogicOp = ((int)0x0bf1), PackAlignment = ((int)0x0d05), LineStippleRepeat = ((int)0x0b26), - ClipPlane4 = ((int)ClipPlaneName.ClipPlane4), + MaxVertexTextureImageUnits = ((int)0x8b4c), + ClipPlane4 = ((int)0x3004), PolygonSmooth = ((int)0x0b41), IndexShift = ((int)0x0d12), FogColor = ((int)0x0b66), - FragmentLight0Sgix = ((int)SgixFragmentLighting.FragmentLight0Sgix), - PostConvolutionAlphaBiasExt = ((int)ExtConvolution.PostConvolutionAlphaBiasExt), + FragmentLight0Sgix = ((int)0x840c), + PostConvolutionAlphaBiasExt = ((int)0x8023), LineWidth = ((int)0x0b21), - ReferencePlaneSgix = ((int)SgixReferencePlane.ReferencePlaneSgix), - SpriteTranslationSgix = ((int)SgixSprite.SpriteTranslationSgix), - SampleAlphaToOneSgis = ((int)SgisMultisample.SampleAlphaToOneSgis), + DrawBuffer12 = ((int)0x8831), + ReferencePlaneSgix = ((int)0x817d), + SpriteTranslationSgix = ((int)0x814b), + MaxElementsIndices = ((int)0x80e9), LineStipple = ((int)0x0b24), - Convolution2dExt = ((int)ExtConvolution.Convolution2dExt), - CalligraphicFragmentSgix = ((int)SgixCalligraphicFragment.CalligraphicFragmentSgix), + CalligraphicFragmentSgix = ((int)0x8183), PackRowLength = ((int)0x0d02), - Light3 = ((int)LightName.Light3), - SpriteModeSgix = ((int)SgixSprite.SpriteModeSgix), - PixelTileGridWidthSgix = ((int)SgixPixelTiles.PixelTileGridWidthSgix), + Light3 = ((int)0x4003), + SpriteModeSgix = ((int)0x8149), + PixelTileGridWidthSgix = ((int)0x8142), PolygonOffsetFactor = ((int)0x8038), - PixelTileGridDepthSgix = ((int)SgixPixelTiles.PixelTileGridDepthSgix), - PixelTexGenModeSgix = ((int)SgixPixelTexture.PixelTexGenModeSgix), + PixelTileGridDepthSgix = ((int)0x8144), + PixelTexGenModeSgix = ((int)0x832b), + Texture4dBindingSgis = ((int)0x814f), BlueBits = ((int)0x0d54), + DrawBuffer14 = ((int)0x8833), + BlendDstRgb = ((int)0x80c8), SelectionBufferSize = ((int)0x0df4), + TextureCoordArrayBufferBinding = ((int)0x889a), Map2GridDomain = ((int)0x0dd2), - BlendEquationExt = ((int)ExtBlendMinmax.BlendEquationExt), - PostColorMatrixBlueBiasSgi = ((int)SgiColorMatrix.PostColorMatrixBlueBiasSgi), - LightEnvModeSgix = ((int)SgixFragmentLighting.LightEnvModeSgix), + CurrentRasterSecondaryColor = ((int)0x845f), + MapStencil = ((int)0x0d11), + PostColorMatrixBlueBiasSgi = ((int)0x80ba), + LightEnvModeSgix = ((int)0x8407), PixelMapIToBSize = ((int)0x0cb4), Map1Color4 = ((int)0x0d90), - DistanceAttenuationSgis = ((int)SgisPointParameters.DistanceAttenuationSgis), - ProjectionMatrix = ((int)0x0ba7), - IrInstrument1Sgix = ((int)SgixIrInstrument1.IrInstrument1Sgix), + DrawBuffer10 = ((int)0x882f), + ProjectionMatrix = ((int)0x0ba7), + IrInstrument1Sgix = ((int)0x817f), VertexArray = ((int)0x8074), StencilClearValue = ((int)0x0b91), - MaxAsyncDrawPixelsSgix = ((int)SgixAsyncPixel.MaxAsyncDrawPixelsSgix), + IndexArrayBufferBinding = ((int)0x8899), + MaxAsyncDrawPixelsSgix = ((int)0x8360), CurrentIndex = ((int)0x0b01), - SampleBuffersSgis = ((int)SgisMultisample.SampleBuffersSgis), - RedBits = ((int)0x0d52), - SamplePatternSgis = ((int)SgisMultisample.SamplePatternSgis), + RedBits = ((int)0x0d52), + SecondaryColorArrayType = ((int)0x845b), + SamplePatternSgis = ((int)0x80ac), StencilTest = ((int)0x0b90), + StencilBackWritemask = ((int)0x8ca5), PointSizeRange = ((int)0x0b12), AccumBlueBits = ((int)0x0d5a), Stereo = ((int)0x0c33), - UnpackSubsampleRateSgix = ((int)SgixSubsample.UnpackSubsampleRateSgix), + UnpackSubsampleRateSgix = ((int)0x85a1), + TextureCompressionHint = ((int)0x84ef), PointSize = ((int)0x0b11), ColorArrayType = ((int)0x8082), MapColor = ((int)0x0d10), Map1Index = ((int)0x0d91), - UnpackSkipImagesExt = ((int)ExtTexture3D.UnpackSkipImagesExt), + UnpackSkipImagesExt = ((int)0x806d), AlphaTest = ((int)0x0bc0), + PointFadeThresholdSize = ((int)0x8128), AlphaBias = ((int)0x0d1d), CurrentRasterPosition = ((int)0x0b07), - SampleMaskInvertSgis = ((int)SgisMultisample.SampleMaskInvertSgis), - VertexPreclipHintSgix = ((int)SgixVertexPreclip.VertexPreclipHintSgix), + VertexPreclipHintSgix = ((int)0x83ef), AlphaScale = ((int)0x0d1c), VertexArrayStride = ((int)0x807c), - Max3dTextureSizeExt = ((int)ExtTexture3D.Max3dTextureSizeExt), - PackLsbFirst = ((int)0x0d01), - FragmentColorMaterialFaceSgix = ((int)SgixFragmentLighting.FragmentColorMaterialFaceSgix), + PackLsbFirst = ((int)0x0d01), + SampleCoverageInvert = ((int)0x80ab), + FragmentColorMaterialFaceSgix = ((int)0x8402), + BlendEquationRgb = ((int)0x8009), Map1GridSegments = ((int)0x0dd1), - MaxFragmentLightsSgix = ((int)SgixFragmentLighting.MaxFragmentLightsSgix), - FogOffsetSgix = ((int)SgixFogOffset.FogOffsetSgix), + MaxFragmentLightsSgix = ((int)0x8404), + FogOffsetSgix = ((int)0x8198), Map2Index = ((int)0x0db1), - MaxAsyncHistogramSgix = ((int)SgixAsyncHistogram.MaxAsyncHistogramSgix), - Light5 = ((int)LightName.Light5), + MaxAsyncHistogramSgix = ((int)0x832d), + Light5 = ((int)0x4005), PolygonOffsetPoint = ((int)0x2a01), - Light0 = ((int)LightName.Light0), + Light0 = ((int)0x4000), + CompressedTextureFormats = ((int)0x86a3), AttribStackDepth = ((int)0x0bb0), AlphaBits = ((int)0x0d55), - FramezoomSgix = ((int)SgixFramezoom.FramezoomSgix), - MaxFogFuncPointsSgis = ((int)SgisFogFunction.MaxFogFuncPointsSgis), - MaxColorMatrixStackDepthSgi = ((int)SgiColorMatrix.MaxColorMatrixStackDepthSgi), + BlendEquationAlpha = ((int)0x883d), + BlendDstAlpha = ((int)0x80ca), + FramezoomSgix = ((int)0x818b), + MaxFogFuncPointsSgis = ((int)0x812c), + MaxTextureImageUnits = ((int)0x8872), + MaxColorMatrixStackDepthSgi = ((int)0x80b3), PointSizeGranularity = ((int)0x0b13), - PostConvolutionGreenBiasExt = ((int)ExtConvolution.PostConvolutionGreenBiasExt), - FogFuncPointsSgis = ((int)SgisFogFunction.FogFuncPointsSgis), + PostConvolutionGreenBiasExt = ((int)0x8021), + StencilBackRef = ((int)0x8ca3), + FogFuncPointsSgis = ((int)0x812b), MaxViewportDims = ((int)0x0d3a), - PointSizeMaxSgis = ((int)SgisPointParameters.PointSizeMaxSgis), - BlendDst = ((int)0x0be0), - FragmentLightModelLocalViewerSgix = ((int)SgixFragmentLighting.FragmentLightModelLocalViewerSgix), - PackSubsampleRateSgix = ((int)SgixSubsample.PackSubsampleRateSgix), + StencilBackPassDepthPass = ((int)0x8803), + FogCoordArrayStride = ((int)0x8455), + BlendDst = ((int)0x0be0), + FragmentLightModelLocalViewerSgix = ((int)0x8408), + PackSubsampleRateSgix = ((int)0x85a0), ModelviewMatrix = ((int)0x0ba6), - PackImageDepthSgis = ((int)SgisTexture4D.PackImageDepthSgis), + MaxCombinedTextureImageUnits = ((int)0x8b4d), + PackImageDepthSgis = ((int)0x8131), FogMode = ((int)0x0b65), IndexMode = ((int)0x0c30), AccumClearValue = ((int)0x0b80), TextureBinding3d = ((int)0x806a), TextureBinding2d = ((int)0x8069), - PixelTileCacheSizeSgix = ((int)SgixPixelTiles.PixelTileCacheSizeSgix), + PixelTileCacheSizeSgix = ((int)0x8145), DrawBuffer = ((int)0x0c01), Map1Normal = ((int)0x0d92), + PointDistanceAttenuation = ((int)0x8129), FogHint = ((int)0x0c54), - RescaleNormalExt = ((int)ExtRescaleNormal.RescaleNormalExt), - LightModelColorControl = ((int)Version12.LightModelColorControl), + RescaleNormalExt = ((int)0x803a), + LightModelColorControl = ((int)0x81f8), SubpixelBits = ((int)0x0d50), NormalArray = ((int)0x8075), - PostTextureFilterBiasRangeSgix = ((int)SgixTextureScaleBias.PostTextureFilterBiasRangeSgix), + PostTextureFilterBiasRangeSgix = ((int)0x817b), MaxEvalOrder = ((int)0x0d30), - PixelTexGenSgix = ((int)SgixPixelTexture.PixelTexGenSgix), + PixelTexGenSgix = ((int)0x8139), MaxClientAttribStackDepth = ((int)0x0d3b), BlendSrc = ((int)0x0be1), CullFaceMode = ((int)0x0b45), - FragmentColorMaterialSgix = ((int)SgixFragmentLighting.FragmentColorMaterialSgix), + FragmentColorMaterialSgix = ((int)0x8401), Map1Vertex4 = ((int)0x0d98), - PackSkipRows = ((int)0x0d03), + FragmentShaderDerivativeHint = ((int)0x8b8b), + Map1Vertex3 = ((int)0x0d97), CurrentRasterDistance = ((int)0x0b09), - ClipPlane2 = ((int)ClipPlaneName.ClipPlane2), + GenerateMipmapHint = ((int)0x8192), + ClipPlane2 = ((int)0x3002), LogicOp = ((int)0x0bf1), + Max3dTextureSize = ((int)0x8073), + MaxCubeMapTextureSize = ((int)0x851c), + SecondaryColorArrayBufferBinding = ((int)0x889c), RedBias = ((int)0x0d15), - SamplesSgis = ((int)SgisMultisample.SamplesSgis), - FeedbackBufferType = ((int)0x0df2), - ColorArrayCountExt = ((int)ExtVertexArray.ColorArrayCountExt), + WeightArrayBufferBinding = ((int)0x889e), + FeedbackBufferType = ((int)0x0df2), + ColorArrayCountExt = ((int)0x8084), ScissorTest = ((int)0x0c11), - PointFadeThresholdSizeSgis = ((int)SgisPointParameters.PointFadeThresholdSizeSgis), - StencilPassDepthPass = ((int)0x0b96), + StencilPassDepthPass = ((int)0x0b96), + BlendSrcAlpha = ((int)0x80cb), Viewport = ((int)0x0ba2), - AsyncMarkerSgix = ((int)SgixAsync.AsyncMarkerSgix), + AsyncMarkerSgix = ((int)0x8329), TextureCoordArrayStride = ((int)0x808a), StencilFunc = ((int)0x0b92), PixelMapIToGSize = ((int)0x0cb3), CurrentColor = ((int)0x0b00), + StencilBackValueMask = ((int)0x8ca4), UnpackSkipPixels = ((int)0x0cf4), - ColorMatrixStackDepthSgi = ((int)SgiColorMatrix.ColorMatrixStackDepthSgi), + ColorMatrixStackDepthSgi = ((int)0x80b2), NormalArrayType = ((int)0x807e), AlphaTestFunc = ((int)0x0bc1), UnpackRowLength = ((int)0x0cf2), - MaxClipmapDepthSgix = ((int)SgixClipmap.MaxClipmapDepthSgix), + MaxClipmapDepthSgix = ((int)0x8177), VertexArraySize = ((int)0x807a), + ColorSum = ((int)0x8458), EdgeFlag = ((int)0x0b43), EdgeFlagArray = ((int)0x8079), LineWidthRange = ((int)0x0b22), PackSwapBytes = ((int)0x0d00), ColorLogicOp = ((int)0x0bf2), - SmoothLineWidthRange = ((int)Version12.SmoothLineWidthRange), + SmoothLineWidthRange = ((int)0x0b22), + TransposeModelviewMatrix = ((int)0x84e3), EdgeFlagArrayStride = ((int)0x808c), ZoomX = ((int)0x0d16), - VertexPreclipSgix = ((int)SgixVertexPreclip.VertexPreclipSgix), + VertexPreclipSgix = ((int)0x83ee), PolygonOffsetFill = ((int)0x8037), + DrawBuffer15 = ((int)0x8834), PixelMapBToBSize = ((int)0x0cb8), StencilWritemask = ((int)0x0b98), - PostColorMatrixAlphaBiasSgi = ((int)SgiColorMatrix.PostColorMatrixAlphaBiasSgi), + TransposeTextureMatrix = ((int)0x84e5), + PostColorMatrixAlphaBiasSgi = ((int)0x80bb), CurrentNormal = ((int)0x0b02), LightModelAmbient = ((int)0x0b53), MaxNameStackDepth = ((int)0x0d37), - SmoothPointSizeGranularity = ((int)Version12.SmoothPointSizeGranularity), - SampleAlphaToMaskSgis = ((int)SgisMultisample.SampleAlphaToMaskSgis), - AliasedPointSizeRange = ((int)Version12.AliasedPointSizeRange), + SmoothPointSizeGranularity = ((int)0x0b13), + AliasedPointSizeRange = ((int)0x846d), ListMode = ((int)0x0b30), - ColorTableSgi = ((int)SgiColorTable.ColorTableSgi), - ClipPlane5 = ((int)ClipPlaneName.ClipPlane5), - IndexArrayCountExt = ((int)ExtVertexArray.IndexArrayCountExt), + ColorTableSgi = ((int)0x80d0), + ColorArrayBufferBinding = ((int)0x8898), + ClipPlane5 = ((int)0x3005), + IndexArrayCountExt = ((int)0x8087), FrontFace = ((int)0x0b46), - PackImageHeightExt = ((int)ExtTexture3D.PackImageHeightExt), + PackImageHeightExt = ((int)0x806c), TextureCoordArraySize = ((int)0x8088), FogStart = ((int)0x0b63), - FragmentLightingSgix = ((int)SgixFragmentLighting.FragmentLightingSgix), + FragmentLightingSgix = ((int)0x8400), NameStackDepth = ((int)0x0d70), - Light2 = ((int)LightName.Light2), - ColorMatrixSgi = ((int)SgiColorMatrix.ColorMatrixSgi), - PixelTileWidthSgix = ((int)SgixPixelTiles.PixelTileWidthSgix), - FogOffsetValueSgix = ((int)SgixFogOffset.FogOffsetValueSgix), - InterlaceSgix = ((int)SgixInterlace.InterlaceSgix), + Light2 = ((int)0x4002), + FogCoordArrayType = ((int)0x8454), + PixelTileWidthSgix = ((int)0x8140), + FogOffsetValueSgix = ((int)0x8199), + InterlaceSgix = ((int)0x8094), GreenScale = ((int)0x0d18), IndexOffset = ((int)0x0d13), + PixelUnpackBufferBinding = ((int)0x88ef), AccumGreenBits = ((int)0x0d59), - HistogramExt = ((int)ExtHistogram.HistogramExt), + HistogramExt = ((int)0x8024), PixelMapIToRSize = ((int)0x0cb2), CurrentTextureCoords = ((int)0x0b03), ReadBuffer = ((int)0x0c02), MaxListNesting = ((int)0x0b31), TextureCoordArrayType = ((int)0x8089), + DrawBuffer11 = ((int)0x8830), + MaxVertexAttribs = ((int)0x8869), ColorMaterialFace = ((int)0x0b55), - PostColorMatrixColorTableSgi = ((int)SgiColorTable.PostColorMatrixColorTableSgi), + PostColorMatrixColorTableSgi = ((int)0x80d2), + SampleCoverage = ((int)0x80a0), AutoNormal = ((int)0x0d80), CurrentRasterIndex = ((int)0x0b05), + Multisample = ((int)0x809d), AuxBuffers = ((int)0x0c00), StencilRef = ((int)0x0b97), - FramezoomFactorSgix = ((int)SgixFramezoom.FramezoomFactorSgix), + FramezoomFactorSgix = ((int)0x818c), DepthRange = ((int)0x0b70), - DeformationsMaskSgix = ((int)SgixPolynomialFfd.DeformationsMaskSgix), - PostConvolutionBlueBiasExt = ((int)ExtConvolution.PostConvolutionBlueBiasExt), - MaxFramezoomFactorSgix = ((int)SgixFramezoom.MaxFramezoomFactorSgix), + DeformationsMaskSgix = ((int)0x8196), + PostConvolutionBlueBiasExt = ((int)0x8022), + MaxFramezoomFactorSgix = ((int)0x818d), Map2Color4 = ((int)0x0db0), - MinmaxExt = ((int)ExtHistogram.MinmaxExt), - Texture4dBindingSgis = ((int)SgisTexture4D.Texture4dBindingSgis), + CurrentProgram = ((int)0x8b8d), + MinmaxExt = ((int)0x802e), + ColorMatrixSgi = ((int)0x80b1), + CurrentFogCoord = ((int)0x8453), + EdgeFlagArrayBufferBinding = ((int)0x889b), + TextureBindingCubeMap = ((int)0x8514), + TextureCubeMap = ((int)0x8513), LineWidthGranularity = ((int)0x0b23), LineStipplePattern = ((int)0x0b25), + FogCoordArrayBufferBinding = ((int)0x889d), FeedbackBufferSize = ((int)0x0df1), FogEnd = ((int)0x0b64), + TransposeColorMatrix = ((int)0x84e6), CurrentRasterPositionValid = ((int)0x0b08), Fog = ((int)0x0b60), UnpackSkipRows = ((int)0x0cf3), @@ -835,106 +916,120 @@ namespace OpenTK.OpenGL IndexClearValue = ((int)0x0c20), Doublebuffer = ((int)0x0c32), CurrentRasterColor = ((int)0x0b04), - NormalArrayCountExt = ((int)ExtVertexArray.NormalArrayCountExt), + NormalArrayCountExt = ((int)0x8080), TextureGenS = ((int)0x0c60), TextureGenR = ((int)0x0c62), TextureGenQ = ((int)0x0c63), ColorArraySize = ((int)0x8081), GreenBits = ((int)0x0d53), TextureGenT = ((int)0x0c61), - Light7 = ((int)LightName.Light7), - VertexArrayCountExt = ((int)ExtVertexArray.VertexArrayCountExt), + SecondaryColorArraySize = ((int)0x845a), + NumCompressedTextureFormats = ((int)0x86a2), + Light7 = ((int)0x4007), + VertexArrayCountExt = ((int)0x807d), Map2TextureCoord1 = ((int)0x0db3), - MaxActiveLightsSgix = ((int)SgixFragmentLighting.MaxActiveLightsSgix), + MaxActiveLightsSgix = ((int)0x8405), VertexArrayType = ((int)0x807b), MaxTextureSize = ((int)0x0d33), Dither = ((int)0x0bd0), - FragmentLightModelAmbientSgix = ((int)SgixFragmentLighting.FragmentLightModelAmbientSgix), + FragmentLightModelAmbientSgix = ((int)0x840a), Map1TextureCoord2 = ((int)0x0d94), Map1TextureCoord3 = ((int)0x0d95), + SampleAlphaToOne = ((int)0x809f), Map1TextureCoord1 = ((int)0x0d93), - PostColorMatrixAlphaScaleSgi = ((int)SgiColorMatrix.PostColorMatrixAlphaScaleSgi), + PostColorMatrixAlphaScaleSgi = ((int)0x80b7), IndexArray = ((int)0x8077), - PostColorMatrixGreenScaleSgi = ((int)SgiColorMatrix.PostColorMatrixGreenScaleSgi), - ClipPlane0 = ((int)ClipPlaneName.ClipPlane0), + PostColorMatrixGreenScaleSgi = ((int)0x80b5), + ClipPlane0 = ((int)0x3000), PixelMapRToRSize = ((int)0x0cb6), + ClientActiveTexture = ((int)0x84e1), Map2TextureCoord4 = ((int)0x0db6), + TransposeProjectionMatrix = ((int)0x84e4), PolygonOffsetLine = ((int)0x2a02), Normalize = ((int)0x0ba1), PointSmoothHint = ((int)0x0c51), - PostTextureFilterScaleRangeSgix = ((int)SgixTextureScaleBias.PostTextureFilterScaleRangeSgix), + PostTextureFilterScaleRangeSgix = ((int)0x817c), ScissorBox = ((int)0x0c10), - Max4dTextureSizeSgis = ((int)SgisTexture4D.Max4dTextureSizeSgis), + Max4dTextureSizeSgis = ((int)0x8138), RenderMode = ((int)0x0c40), + StencilBackFail = ((int)0x8801), PolygonStipple = ((int)0x0b42), - PostColorMatrixGreenBiasSgi = ((int)SgiColorMatrix.PostColorMatrixGreenBiasSgi), + PostColorMatrixGreenBiasSgi = ((int)0x80b9), GreenBias = ((int)0x0d19), - TextureCoordArrayCountExt = ((int)ExtVertexArray.TextureCoordArrayCountExt), - PointSizeMinSgis = ((int)SgisPointParameters.PointSizeMinSgis), - Map2TextureCoord2 = ((int)0x0db4), + TextureCoordArrayCountExt = ((int)0x808b), + Map2TextureCoord2 = ((int)0x0db4), Map2TextureCoord3 = ((int)0x0db5), PolygonMode = ((int)0x0b40), + MaxTextureUnits = ((int)0x84e2), + SecondaryColorArrayStride = ((int)0x845c), PolygonOffsetUnits = ((int)0x2a00), StencilFail = ((int)0x0b94), - ReferencePlaneEquationSgix = ((int)SgixReferencePlane.ReferencePlaneEquationSgix), + VertexArrayBufferBinding = ((int)0x8896), + ReferencePlaneEquationSgix = ((int)0x817e), StencilPassDepthFail = ((int)0x0b95), } public enum GetTextureParameter { + TextureCompareMode = ((int)0x884c), TextureHeight = ((int)0x1001), - QuadTextureSelectSgis = ((int)SgisTextureSelect.QuadTextureSelectSgis), - DetailTextureLevelSgis = ((int)SgisDetailTexture.DetailTextureLevelSgis), + QuadTextureSelectSgis = ((int)0x8125), + DetailTextureLevelSgis = ((int)0x809a), TextureGreenSize = ((int)0x805d), - TextureMaxClampRSgix = ((int)SgixTextureCoordinateClamp.TextureMaxClampRSgix), + TextureCompressedImageSize = ((int)0x86a0), + TextureCompressed = ((int)0x86a1), + TextureMaxClampRSgix = ((int)0x836b), TexturePriority = ((int)0x8066), - TextureLequalRSgix = ((int)SgixShadow.TextureLequalRSgix), - TextureLodBiasTSgix = ((int)SgixTextureLodBias.TextureLodBiasTSgix), - Texture4dsizeSgis = ((int)SgisTexture4D.Texture4dsizeSgis), - TextureBaseLevelSgis = ((int)SgisTextureLod.TextureBaseLevelSgis), - TextureClipmapCenterSgix = ((int)SgixClipmap.TextureClipmapCenterSgix), + TextureLequalRSgix = ((int)0x819c), + TextureMinLod = ((int)0x813a), + TextureLodBiasTSgix = ((int)0x818f), + Texture4dsizeSgis = ((int)0x8136), + TextureClipmapCenterSgix = ((int)0x8171), TextureComponents = ((int)0x1003), - TextureMaxClampTSgix = ((int)SgixTextureCoordinateClamp.TextureMaxClampTSgix), - TextureMaxLevelSgis = ((int)SgisTextureLod.TextureMaxLevelSgis), - TextureLodBiasRSgix = ((int)SgixTextureLodBias.TextureLodBiasRSgix), - TextureLodBiasSSgix = ((int)SgixTextureLodBias.TextureLodBiasSSgix), + TextureDepthSize = ((int)0x884a), + TextureMaxClampTSgix = ((int)0x836a), + TextureLodBiasRSgix = ((int)0x8190), + TextureBaseLevel = ((int)0x813c), + TextureLodBiasSSgix = ((int)0x818e), TextureLuminanceSize = ((int)0x8060), - TextureClipmapOffsetSgix = ((int)SgixClipmap.TextureClipmapOffsetSgix), - TextureWrapQSgis = ((int)SgisTexture4D.TextureWrapQSgis), - TextureMinLodSgis = ((int)SgisTextureLod.TextureMinLodSgis), - TextureClipmapFrameSgix = ((int)SgixClipmap.TextureClipmapFrameSgix), - TextureGequalRSgix = ((int)SgixShadow.TextureGequalRSgix), - SharpenTextureFuncPointsSgis = ((int)SgisSharpenTexture.SharpenTextureFuncPointsSgis), - TextureWrapS = ((int)TextureParameterName.TextureWrapS), - TextureMinFilter = ((int)TextureParameterName.TextureMinFilter), - TextureClipmapDepthSgix = ((int)SgixClipmap.TextureClipmapDepthSgix), - TextureFilter4SizeSgis = ((int)SgisTextureFilter4.TextureFilter4SizeSgis), - TextureWrapRExt = ((int)ExtTexture3D.TextureWrapRExt), - TextureCompareSgix = ((int)SgixShadow.TextureCompareSgix), - TextureMaxClampSSgix = ((int)SgixTextureCoordinateClamp.TextureMaxClampSSgix), - DetailTextureModeSgis = ((int)SgisDetailTexture.DetailTextureModeSgis), - DetailTextureFuncPointsSgis = ((int)SgisDetailTexture.DetailTextureFuncPointsSgis), - DualTextureSelectSgis = ((int)SgisTextureSelect.DualTextureSelectSgis), - TextureClipmapLodOffsetSgix = ((int)SgixClipmap.TextureClipmapLodOffsetSgix), - TextureDepthExt = ((int)ExtTexture3D.TextureDepthExt), - TextureRedSize = ((int)0x805c), + DepthTextureMode = ((int)0x884b), + TextureClipmapOffsetSgix = ((int)0x8173), + TextureWrapQSgis = ((int)0x8137), + TextureClipmapFrameSgix = ((int)0x8172), + TextureGequalRSgix = ((int)0x819d), + SharpenTextureFuncPointsSgis = ((int)0x80b0), + TextureWrapS = ((int)0x2802), + TextureMinFilter = ((int)0x2801), + TextureClipmapDepthSgix = ((int)0x8176), + TextureFilter4SizeSgis = ((int)0x8147), + TextureWrapR = ((int)0x8072), + TextureCompareSgix = ((int)0x819a), + TextureMaxClampSSgix = ((int)0x8369), + DetailTextureModeSgis = ((int)0x809b), + DetailTextureFuncPointsSgis = ((int)0x809c), + DualTextureSelectSgis = ((int)0x8124), + TextureClipmapLodOffsetSgix = ((int)0x8175), + TextureRedSize = ((int)0x805c), TextureInternalFormat = ((int)0x1003), - PostTextureFilterBiasSgix = ((int)SgixTextureScaleBias.PostTextureFilterBiasSgix), + PostTextureFilterBiasSgix = ((int)0x8179), TextureIntensitySize = ((int)0x8061), - TextureCompareOperatorSgix = ((int)SgixShadow.TextureCompareOperatorSgix), - TextureMaxLodSgis = ((int)SgisTextureLod.TextureMaxLodSgis), + TextureCompareOperatorSgix = ((int)0x819b), + TextureMaxLod = ((int)0x813b), TextureBlueSize = ((int)0x805e), - GenerateMipmapSgis = ((int)SgisGenerateMipmap.GenerateMipmapSgis), + TextureDepth = ((int)0x8071), TextureWidth = ((int)0x1000), + GenerateMipmap = ((int)0x8191), TextureAlphaSize = ((int)0x805f), - ShadowAmbientSgix = ((int)SgixShadowAmbient.ShadowAmbientSgix), - PostTextureFilterScaleSgix = ((int)SgixTextureScaleBias.PostTextureFilterScaleSgix), + ShadowAmbientSgix = ((int)0x80bf), + PostTextureFilterScaleSgix = ((int)0x817a), TextureBorderColor = ((int)0x1004), TextureResident = ((int)0x8067), + TextureCompareFunc = ((int)0x884d), TextureBorder = ((int)0x1005), - TextureClipmapVirtualDepthSgix = ((int)SgixClipmap.TextureClipmapVirtualDepthSgix), - TextureMagFilter = ((int)TextureParameterName.TextureMagFilter), - TextureWrapT = ((int)TextureParameterName.TextureWrapT), + TextureClipmapVirtualDepthSgix = ((int)0x8174), + TextureMagFilter = ((int)0x2800), + TextureWrapT = ((int)0x2803), + TextureMaxLevel = ((int)0x813d), } public enum HintMode @@ -946,57 +1041,58 @@ namespace OpenTK.OpenGL public enum HintTarget { - PerspectiveCorrectionHint = ((int)GetPName.PerspectiveCorrectionHint), - VertexPreclipHintSgix = ((int)SgixVertexPreclip.VertexPreclipHintSgix), - LineSmoothHint = ((int)GetPName.LineSmoothHint), - UnpackCmykHintExt = ((int)ExtCmyka.UnpackCmykHintExt), - PolygonSmoothHint = ((int)GetPName.PolygonSmoothHint), - ConvolutionHintSgix = ((int)SgixConvolutionAccuracy.ConvolutionHintSgix), - PackCmykHintExt = ((int)ExtCmyka.PackCmykHintExt), - PointSmoothHint = ((int)GetPName.PointSmoothHint), - FogHint = ((int)GetPName.FogHint), - GenerateMipmapHintSgis = ((int)SgisGenerateMipmap.GenerateMipmapHintSgis), - TextureMultiBufferHintSgix = ((int)SgixTextureMultiBuffer.TextureMultiBufferHintSgix), + PerspectiveCorrectionHint = ((int)0x0c50), + VertexPreclipHintSgix = ((int)0x83ef), + LineSmoothHint = ((int)0x0c52), + UnpackCmykHintExt = ((int)0x800f), + PolygonSmoothHint = ((int)0x0c53), + ConvolutionHintSgix = ((int)0x8316), + PackCmykHintExt = ((int)0x800e), + TextureCompressionHint = ((int)0x84ef), + PointSmoothHint = ((int)0x0c51), + GenerateMipmapHint = ((int)0x8192), + FogHint = ((int)0x0c54), + TextureMultiBufferHintSgix = ((int)0x812e), } public enum HistogramTargetExt { - ProxyHistogramExt = ((int)ExtHistogram.ProxyHistogramExt), - HistogramExt = ((int)ExtHistogram.HistogramExt), + ProxyHistogramExt = ((int)0x8025), + HistogramExt = ((int)0x8024), } public enum IndexPointerType { - Short = ((int)DataType.Short), - Float = ((int)DataType.Float), - Double = ((int)DataType.Double), - Int = ((int)DataType.Int), + Short = ((int)0x1402), + Float = ((int)0x1406), + Double = ((int)0x140a), + Int = ((int)0x1404), } public enum LightEnvModeSgix { - Replace = ((int)StencilOp.Replace), - Add = ((int)AccumOp.Add), - Modulate = ((int)TextureEnvMode.Modulate), + Replace = ((int)0x1e01), + Add = ((int)0x0104), + Modulate = ((int)0x2100), } public enum LightEnvParameterSgix { - LightEnvModeSgix = ((int)SgixFragmentLighting.LightEnvModeSgix), + LightEnvModeSgix = ((int)0x8407), } public enum LightModelColorControl { - SingleColor = ((int)Version12.SingleColor), - SeparateSpecularColor = ((int)Version12.SeparateSpecularColor), + SingleColor = ((int)0x81f9), + SeparateSpecularColor = ((int)0x81fa), } public enum LightModelParameter { - LightModelColorControl = ((int)Version12.LightModelColorControl), - LightModelTwoSide = ((int)GetPName.LightModelTwoSide), - LightModelAmbient = ((int)GetPName.LightModelAmbient), - LightModelLocalViewer = ((int)GetPName.LightModelLocalViewer), + LightModelColorControl = ((int)0x81f8), + LightModelTwoSide = ((int)0x0b52), + LightModelAmbient = ((int)0x0b53), + LightModelLocalViewer = ((int)0x0b51), } public enum LightParameter @@ -1025,8 +1121,7 @@ namespace OpenTK.OpenGL Byte = ((int)0x1400), Double = ((int)0x140a), UnsignedInt = ((int)0x1405), - DoubleExt = ((int)0x140a), - Short = ((int)0x1402), + Short = ((int)0x1402), Int = ((int)0x1404), Float = ((int)0x1406), Gl4Bytes = ((int)0x1409), @@ -1037,21 +1132,21 @@ namespace OpenTK.OpenGL public enum ListNameType { - UnsignedByte = ((int)DataType.UnsignedByte), - Byte = ((int)DataType.Byte), - UnsignedInt = ((int)DataType.UnsignedInt), - Short = ((int)DataType.Short), - Int = ((int)DataType.Int), - Float = ((int)DataType.Float), - Gl4Bytes = ((int)DataType.Gl4Bytes), - Gl3Bytes = ((int)DataType.Gl3Bytes), - Gl2Bytes = ((int)DataType.Gl2Bytes), - UnsignedShort = ((int)DataType.UnsignedShort), + UnsignedByte = ((int)0x1401), + Byte = ((int)0x1400), + UnsignedInt = ((int)0x1405), + Short = ((int)0x1402), + Int = ((int)0x1404), + Float = ((int)0x1406), + Gl4Bytes = ((int)0x1409), + Gl3Bytes = ((int)0x1408), + Gl2Bytes = ((int)0x1407), + UnsignedShort = ((int)0x1403), } public enum ListParameterName { - ListPrioritySgix = ((int)SgixListPriority.ListPrioritySgix), + ListPrioritySgix = ((int)0x8182), } public enum LogicOp @@ -1076,33 +1171,33 @@ namespace OpenTK.OpenGL public enum MapTarget { - GeometryDeformationSgix = ((int)SgixPolynomialFfd.GeometryDeformationSgix), - Map1Color4 = ((int)GetPName.Map1Color4), - Map1Index = ((int)GetPName.Map1Index), - Map2Index = ((int)GetPName.Map2Index), - Map1Vertex4 = ((int)GetPName.Map1Vertex4), - TextureDeformationSgix = ((int)SgixPolynomialFfd.TextureDeformationSgix), - Map1Vertex3 = ((int)GetPName.Map1Vertex3), - Map1Normal = ((int)GetPName.Map1Normal), - Map2Vertex4 = ((int)GetPName.Map2Vertex4), - Map2Color4 = ((int)GetPName.Map2Color4), - Map2Vertex3 = ((int)GetPName.Map2Vertex3), - Map2Normal = ((int)GetPName.Map2Normal), - Map1TextureCoord4 = ((int)GetPName.Map1TextureCoord4), - Map1TextureCoord2 = ((int)GetPName.Map1TextureCoord2), - Map1TextureCoord3 = ((int)GetPName.Map1TextureCoord3), - Map2TextureCoord2 = ((int)GetPName.Map2TextureCoord2), - Map2TextureCoord3 = ((int)GetPName.Map2TextureCoord3), - Map2TextureCoord1 = ((int)GetPName.Map2TextureCoord1), - Map1TextureCoord1 = ((int)GetPName.Map1TextureCoord1), - Map2TextureCoord4 = ((int)GetPName.Map2TextureCoord4), + GeometryDeformationSgix = ((int)0x8194), + Map1Color4 = ((int)0x0d90), + Map1Index = ((int)0x0d91), + Map2Index = ((int)0x0db1), + Map1Vertex4 = ((int)0x0d98), + TextureDeformationSgix = ((int)0x8195), + Map1Vertex3 = ((int)0x0d97), + Map1Normal = ((int)0x0d92), + Map2Vertex4 = ((int)0x0db8), + Map2Color4 = ((int)0x0db0), + Map2Vertex3 = ((int)0x0db7), + Map2Normal = ((int)0x0db2), + Map1TextureCoord4 = ((int)0x0d96), + Map1TextureCoord2 = ((int)0x0d94), + Map1TextureCoord3 = ((int)0x0d95), + Map2TextureCoord2 = ((int)0x0db4), + Map2TextureCoord3 = ((int)0x0db5), + Map2TextureCoord1 = ((int)0x0db3), + Map1TextureCoord1 = ((int)0x0d93), + Map2TextureCoord4 = ((int)0x0db6), } public enum MaterialFace { - Front = ((int)DrawBufferMode.Front), - FrontAndBack = ((int)DrawBufferMode.FrontAndBack), - Back = ((int)DrawBufferMode.Back), + Front = ((int)0x0404), + FrontAndBack = ((int)0x0408), + Back = ((int)0x0405), } public enum MaterialParameter @@ -1110,14 +1205,15 @@ namespace OpenTK.OpenGL Emission = ((int)0x1600), ColorIndexes = ((int)0x1603), AmbientAndDiffuse = ((int)0x1602), - Diffuse = ((int)LightParameter.Diffuse), - Ambient = ((int)LightParameter.Ambient), - Specular = ((int)LightParameter.Specular), + Diffuse = ((int)0x1201), + Ambient = ((int)0x1200), + Specular = ((int)0x1202), Shininess = ((int)0x1601), } public enum MatrixMode { + Color = ((int)0x1800), Modelview = ((int)0x1700), Projection = ((int)0x1701), Texture = ((int)0x1702), @@ -1125,29 +1221,29 @@ namespace OpenTK.OpenGL public enum MeshMode1 { - Line = ((int)PolygonMode.Line), - Point = ((int)PolygonMode.Point), + Line = ((int)0x1b01), + Point = ((int)0x1b00), } public enum MeshMode2 { - Line = ((int)PolygonMode.Line), - Point = ((int)PolygonMode.Point), - Fill = ((int)PolygonMode.Fill), + Line = ((int)0x1b01), + Point = ((int)0x1b00), + Fill = ((int)0x1b02), } public enum MinmaxTargetExt { - MinmaxExt = ((int)ExtHistogram.MinmaxExt), + MinmaxExt = ((int)0x802e), } public enum NormalPointerType { - Short = ((int)DataType.Short), - Float = ((int)DataType.Float), - Double = ((int)DataType.Double), - Byte = ((int)DataType.Byte), - Int = ((int)DataType.Int), + Short = ((int)0x1402), + Float = ((int)0x1406), + Double = ((int)0x140a), + Byte = ((int)0x1400), + Int = ((int)0x1404), } public enum PixelCopyType @@ -1159,169 +1255,177 @@ namespace OpenTK.OpenGL public enum PixelFormat { - CmykExt = ((int)ExtCmyka.CmykExt), + CmykExt = ((int)0x800c), Rgb = ((int)0x1907), - R5G6B5IccSgix = ((int)SgixIccTexture.R5G6B5IccSgix), - R5G6B5A8IccSgix = ((int)SgixIccTexture.R5G6B5A8IccSgix), + R5G6B5IccSgix = ((int)0x8466), + R5G6B5A8IccSgix = ((int)0x8467), Green = ((int)0x1904), Blue = ((int)0x1905), - Alpha16IccSgix = ((int)SgixIccTexture.Alpha16IccSgix), - Ycrcb444Sgix = ((int)SgixYcrcb.Ycrcb444Sgix), - Ycrcb422Sgix = ((int)SgixYcrcb.Ycrcb422Sgix), + Alpha16IccSgix = ((int)0x8468), + Ycrcb444Sgix = ((int)0x81bc), + Ycrcb422Sgix = ((int)0x81bb), Luminance = ((int)0x1909), Rgba = ((int)0x1908), StencilIndex = ((int)0x1901), Red = ((int)0x1903), DepthComponent = ((int)0x1902), - Luminance16IccSgix = ((int)SgixIccTexture.Luminance16IccSgix), - Luminance16Alpha8IccSgix = ((int)SgixIccTexture.Luminance16Alpha8IccSgix), - Bgra = ((int)ExtBgra.Bgra), + Luminance16IccSgix = ((int)0x8469), + Luminance16Alpha8IccSgix = ((int)0x846b), + Bgra = ((int)0x80e1), Alpha = ((int)0x1906), ColorIndex = ((int)0x1900), - CmykaExt = ((int)ExtCmyka.CmykaExt), - Bgr = ((int)ExtBgra.Bgr), + CmykaExt = ((int)0x800d), + Bgr = ((int)0x80e0), LuminanceAlpha = ((int)0x190a), - AbgrExt = ((int)ExtAbgr.AbgrExt), + AbgrExt = ((int)0x8000), } public enum PixelMap { - PixelMapIToI = ((int)GetPixelMap.PixelMapIToI), - PixelMapIToA = ((int)GetPixelMap.PixelMapIToA), - PixelMapIToB = ((int)GetPixelMap.PixelMapIToB), - PixelMapIToR = ((int)GetPixelMap.PixelMapIToR), - PixelMapBToB = ((int)GetPixelMap.PixelMapBToB), - PixelMapRToR = ((int)GetPixelMap.PixelMapRToR), - PixelMapIToG = ((int)GetPixelMap.PixelMapIToG), - PixelMapGToG = ((int)GetPixelMap.PixelMapGToG), - PixelMapAToA = ((int)GetPixelMap.PixelMapAToA), - PixelMapSToS = ((int)GetPixelMap.PixelMapSToS), + PixelMapIToI = ((int)0x0c70), + PixelMapIToA = ((int)0x0c75), + PixelMapIToB = ((int)0x0c74), + PixelMapIToR = ((int)0x0c72), + PixelMapBToB = ((int)0x0c78), + PixelMapRToR = ((int)0x0c76), + PixelMapIToG = ((int)0x0c73), + PixelMapGToG = ((int)0x0c77), + PixelMapAToA = ((int)0x0c79), + PixelMapSToS = ((int)0x0c71), } public enum PixelStoreParameter { - PixelTileGridHeightSgix = ((int)SgixPixelTiles.PixelTileGridHeightSgix), - UnpackLsbFirst = ((int)GetPName.UnpackLsbFirst), - UnpackSwapBytes = ((int)GetPName.UnpackSwapBytes), - UnpackSkipPixels = ((int)GetPName.UnpackSkipPixels), - UnpackResampleSgix = ((int)SgixResample.UnpackResampleSgix), - PixelTileGridDepthSgix = ((int)SgixPixelTiles.PixelTileGridDepthSgix), - PackSkipPixels = ((int)GetPName.PackSkipPixels), - UnpackSkipVolumesSgis = ((int)SgisTexture4D.UnpackSkipVolumesSgis), - PackSubsampleRateSgix = ((int)SgixSubsample.PackSubsampleRateSgix), - PackSwapBytes = ((int)GetPName.PackSwapBytes), - PackSkipImagesExt = ((int)ExtTexture3D.PackSkipImagesExt), - UnpackImageHeightExt = ((int)ExtTexture3D.UnpackImageHeightExt), - PackSkipRows = ((int)GetPName.PackSkipRows), - PackSkipVolumesSgis = ((int)SgisTexture4D.PackSkipVolumesSgis), - PackAlignment = ((int)GetPName.PackAlignment), - PackLsbFirst = ((int)GetPName.PackLsbFirst), - UnpackSkipRows = ((int)GetPName.UnpackSkipRows), - PixelTileGridWidthSgix = ((int)SgixPixelTiles.PixelTileGridWidthSgix), - PackResampleSgix = ((int)SgixResample.PackResampleSgix), - UnpackRowLength = ((int)GetPName.UnpackRowLength), - UnpackAlignment = ((int)GetPName.UnpackAlignment), - UnpackImageDepthSgis = ((int)SgisTexture4D.UnpackImageDepthSgis), - PackImageDepthSgis = ((int)SgisTexture4D.PackImageDepthSgis), - PixelTileHeightSgix = ((int)SgixPixelTiles.PixelTileHeightSgix), - PixelTileWidthSgix = ((int)SgixPixelTiles.PixelTileWidthSgix), - UnpackSubsampleRateSgix = ((int)SgixSubsample.UnpackSubsampleRateSgix), - UnpackSkipImagesExt = ((int)ExtTexture3D.UnpackSkipImagesExt), - PixelTileCacheSizeSgix = ((int)SgixPixelTiles.PixelTileCacheSizeSgix), - PackImageHeightExt = ((int)ExtTexture3D.PackImageHeightExt), - PackRowLength = ((int)GetPName.PackRowLength), + PackImageHeight = ((int)0x806c), + PackSkipImages = ((int)0x806b), + PackSkipVolumesSgis = ((int)0x8130), + PixelTileGridHeightSgix = ((int)0x8143), + PackSkipPixels = ((int)0x0d04), + UnpackImageHeight = ((int)0x806e), + UnpackSkipVolumesSgis = ((int)0x8132), + PackImageDepthSgis = ((int)0x8131), + PixelTileCacheSizeSgix = ((int)0x8145), + PixelTileGridDepthSgix = ((int)0x8144), + PackSwapBytes = ((int)0x0d00), + UnpackSkipPixels = ((int)0x0cf4), + UnpackLsbFirst = ((int)0x0cf1), + PixelTileHeightSgix = ((int)0x8141), + PixelTileGridWidthSgix = ((int)0x8142), + PackAlignment = ((int)0x0d05), + UnpackResampleSgix = ((int)0x842d), + UnpackAlignment = ((int)0x0cf5), + UnpackRowLength = ((int)0x0cf2), + UnpackSwapBytes = ((int)0x0cf0), + PackSubsampleRateSgix = ((int)0x85a0), + PackResampleSgix = ((int)0x842c), + UnpackSkipRows = ((int)0x0cf3), + UnpackImageDepthSgis = ((int)0x8133), + PackLsbFirst = ((int)0x0d01), + UnpackSubsampleRateSgix = ((int)0x85a1), + UnpackSkipImages = ((int)0x806d), + PackRowLength = ((int)0x0d02), + PackSkipRows = ((int)0x0d03), + PixelTileWidthSgix = ((int)0x8140), } public enum PixelStoreResampleMode { - ResampleZeroFillSgix = ((int)SgixResample.ResampleZeroFillSgix), - ResampleDecimateSgix = ((int)SgixResample.ResampleDecimateSgix), - ResampleReplicateSgix = ((int)SgixResample.ResampleReplicateSgix), + ResampleZeroFillSgix = ((int)0x842f), + ResampleDecimateSgix = ((int)0x8430), + ResampleReplicateSgix = ((int)0x842e), } public enum PixelStoreSubsampleRate { - PixelSubsample2424Sgix = ((int)SgixSubsample.PixelSubsample2424Sgix), - PixelSubsample4444Sgix = ((int)SgixSubsample.PixelSubsample4444Sgix), - PixelSubsample4242Sgix = ((int)SgixSubsample.PixelSubsample4242Sgix), + PixelSubsample2424Sgix = ((int)0x85a3), + PixelSubsample4444Sgix = ((int)0x85a2), + PixelSubsample4242Sgix = ((int)0x85a4), } public enum PixelTexGenMode { - LuminanceAlpha = ((int)PixelFormat.LuminanceAlpha), - PixelTexGenAlphaMsSgix = ((int)SgixImpactPixelTexture.PixelTexGenAlphaMsSgix), - Rgba = ((int)PixelFormat.Rgba), - PixelTexGenAlphaReplaceSgix = ((int)SgixImpactPixelTexture.PixelTexGenAlphaReplaceSgix), - PixelTexGenAlphaNoReplaceSgix = ((int)SgixImpactPixelTexture.PixelTexGenAlphaNoReplaceSgix), - PixelTexGenAlphaLsSgix = ((int)SgixImpactPixelTexture.PixelTexGenAlphaLsSgix), - None = ((int)DrawBufferMode.None), - Luminance = ((int)PixelFormat.Luminance), - Rgb = ((int)PixelFormat.Rgb), + LuminanceAlpha = ((int)0x190a), + PixelTexGenAlphaMsSgix = ((int)0x818a), + Rgba = ((int)0x1908), + PixelTexGenAlphaReplaceSgix = ((int)0x8187), + PixelTexGenAlphaNoReplaceSgix = ((int)0x8188), + PixelTexGenAlphaLsSgix = ((int)0x8189), + None = ((int)0), + Luminance = ((int)0x1909), + Rgb = ((int)0x1907), } public enum PixelTexGenParameterNameSgis { - PixelFragmentRgbSourceSgis = ((int)SgisPixelTexture.PixelFragmentRgbSourceSgis), - PixelFragmentAlphaSourceSgis = ((int)SgisPixelTexture.PixelFragmentAlphaSourceSgis), + PixelFragmentRgbSourceSgis = ((int)0x8354), + PixelFragmentAlphaSourceSgis = ((int)0x8355), } public enum PixelTransferParameter { - PostConvolutionAlphaBiasExt = ((int)ExtConvolution.PostConvolutionAlphaBiasExt), - PostColorMatrixGreenBiasSgi = ((int)SgiColorMatrix.PostColorMatrixGreenBiasSgi), - PostColorMatrixAlphaScaleSgi = ((int)SgiColorMatrix.PostColorMatrixAlphaScaleSgi), - PostColorMatrixBlueBiasSgi = ((int)SgiColorMatrix.PostColorMatrixBlueBiasSgi), - PostConvolutionGreenScaleExt = ((int)ExtConvolution.PostConvolutionGreenScaleExt), - PostConvolutionGreenBiasExt = ((int)ExtConvolution.PostConvolutionGreenBiasExt), - BlueBias = ((int)GetPName.BlueBias), - BlueScale = ((int)GetPName.BlueScale), - PostColorMatrixRedScaleSgi = ((int)SgiColorMatrix.PostColorMatrixRedScaleSgi), - PostConvolutionRedBiasExt = ((int)ExtConvolution.PostConvolutionRedBiasExt), - AlphaBias = ((int)GetPName.AlphaBias), - AlphaScale = ((int)GetPName.AlphaScale), - GreenScale = ((int)GetPName.GreenScale), - RedBias = ((int)GetPName.RedBias), - PostColorMatrixRedBiasSgi = ((int)SgiColorMatrix.PostColorMatrixRedBiasSgi), - IndexShift = ((int)GetPName.IndexShift), - RedScale = ((int)GetPName.RedScale), - PostColorMatrixAlphaBiasSgi = ((int)SgiColorMatrix.PostColorMatrixAlphaBiasSgi), - MapColor = ((int)GetPName.MapColor), - PostConvolutionBlueBiasExt = ((int)ExtConvolution.PostConvolutionBlueBiasExt), - PostConvolutionBlueScaleExt = ((int)ExtConvolution.PostConvolutionBlueScaleExt), - PostConvolutionRedScaleExt = ((int)ExtConvolution.PostConvolutionRedScaleExt), - PostColorMatrixGreenScaleSgi = ((int)SgiColorMatrix.PostColorMatrixGreenScaleSgi), - MapStencil = ((int)GetPName.MapStencil), - DepthBias = ((int)GetPName.DepthBias), - IndexOffset = ((int)GetPName.IndexOffset), - PostConvolutionAlphaScaleExt = ((int)ExtConvolution.PostConvolutionAlphaScaleExt), - PostColorMatrixBlueScaleSgi = ((int)SgiColorMatrix.PostColorMatrixBlueScaleSgi), - DepthScale = ((int)GetPName.DepthScale), - GreenBias = ((int)GetPName.GreenBias), + PostConvolutionAlphaBiasExt = ((int)0x8023), + PostColorMatrixGreenBiasSgi = ((int)0x80b9), + PostColorMatrixAlphaScaleSgi = ((int)0x80b7), + PostColorMatrixBlueBiasSgi = ((int)0x80ba), + PostConvolutionGreenScaleExt = ((int)0x801d), + PostConvolutionGreenBiasExt = ((int)0x8021), + BlueBias = ((int)0x0d1b), + BlueScale = ((int)0x0d1a), + PostColorMatrixRedScaleSgi = ((int)0x80b4), + PostConvolutionRedBiasExt = ((int)0x8020), + AlphaBias = ((int)0x0d1d), + AlphaScale = ((int)0x0d1c), + GreenScale = ((int)0x0d18), + RedBias = ((int)0x0d15), + PostColorMatrixRedBiasSgi = ((int)0x80b8), + IndexShift = ((int)0x0d12), + RedScale = ((int)0x0d14), + PostColorMatrixAlphaBiasSgi = ((int)0x80bb), + MapColor = ((int)0x0d10), + PostConvolutionBlueBiasExt = ((int)0x8022), + PostConvolutionBlueScaleExt = ((int)0x801e), + PostConvolutionRedScaleExt = ((int)0x801c), + PostColorMatrixGreenScaleSgi = ((int)0x80b5), + MapStencil = ((int)0x0d11), + DepthBias = ((int)0x0d1f), + IndexOffset = ((int)0x0d13), + PostConvolutionAlphaScaleExt = ((int)0x801f), + PostColorMatrixBlueScaleSgi = ((int)0x80b6), + DepthScale = ((int)0x0d1e), + GreenBias = ((int)0x0d19), } public enum PixelType { - UnsignedByte = ((int)DataType.UnsignedByte), Bitmap = ((int)0x1a00), - UnsignedShort5551Ext = ((int)ExtPackedPixels.UnsignedShort5551Ext), - UnsignedShort4444Ext = ((int)ExtPackedPixels.UnsignedShort4444Ext), - Byte = ((int)DataType.Byte), - UnsignedInt1010102Ext = ((int)ExtPackedPixels.UnsignedInt1010102Ext), - UnsignedInt = ((int)DataType.UnsignedInt), - Short = ((int)DataType.Short), - UnsignedInt8888Ext = ((int)ExtPackedPixels.UnsignedInt8888Ext), - Int = ((int)DataType.Int), - Float = ((int)DataType.Float), - UnsignedByte332Ext = ((int)ExtPackedPixels.UnsignedByte332Ext), - UnsignedShort = ((int)DataType.UnsignedShort), + UnsignedShort4444 = ((int)0x8033), + UnsignedInt8888 = ((int)0x8035), + Short = ((int)0x1402), + UnsignedInt2101010Reversed = ((int)0x8368), + HalfFloat = ((int)0x140b), + UnsignedShort5551 = ((int)0x8034), + UnsignedInt8888Reversed = ((int)0x8367), + UnsignedInt1010102 = ((int)0x8036), + UnsignedShort565 = ((int)0x8363), + Byte = ((int)0x1400), + UnsignedShort565Reversed = ((int)0x8364), + UnsignedInt = ((int)0x1405), + UnsignedByte = ((int)0x1401), + UnsignedByte233Reversed = ((int)0x8362), + Int = ((int)0x1404), + UnsignedByte332 = ((int)0x8032), + UnsignedShort1555Reversed = ((int)0x8366), + Float = ((int)0x1406), + UnsignedShort4444Reversed = ((int)0x8365), + UnsignedShort = ((int)0x1403), } public enum PointParameterNameSgis { - DistanceAttenuationSgis = ((int)SgisPointParameters.DistanceAttenuationSgis), - PointSizeMaxSgis = ((int)SgisPointParameters.PointSizeMaxSgis), - PointSizeMinSgis = ((int)SgisPointParameters.PointSizeMinSgis), - PointFadeThresholdSizeSgis = ((int)SgisPointParameters.PointFadeThresholdSizeSgis), + DistanceAttenuationSgis = ((int)0x8129), + PointSizeMaxSgis = ((int)0x8127), + PointSizeMinSgis = ((int)0x8126), + PointFadeThresholdSizeSgis = ((int)0x8128), } public enum PolygonMode @@ -1333,18 +1437,18 @@ namespace OpenTK.OpenGL public enum ReadBufferMode { - FrontRight = ((int)DrawBufferMode.FrontRight), - Right = ((int)DrawBufferMode.Right), - BackLeft = ((int)DrawBufferMode.BackLeft), - BackRight = ((int)DrawBufferMode.BackRight), - Left = ((int)DrawBufferMode.Left), - Aux0 = ((int)DrawBufferMode.Aux0), - Back = ((int)DrawBufferMode.Back), - Aux3 = ((int)DrawBufferMode.Aux3), - Aux1 = ((int)DrawBufferMode.Aux1), - FrontLeft = ((int)DrawBufferMode.FrontLeft), - Aux2 = ((int)DrawBufferMode.Aux2), - Front = ((int)DrawBufferMode.Front), + FrontRight = ((int)0x0401), + Right = ((int)0x0407), + BackLeft = ((int)0x0402), + BackRight = ((int)0x0403), + Left = ((int)0x0406), + Aux0 = ((int)0x0409), + Back = ((int)0x0405), + Aux3 = ((int)0x040c), + Aux1 = ((int)0x040a), + FrontLeft = ((int)0x0400), + Aux2 = ((int)0x040b), + Front = ((int)0x0404), } public enum RenderingMode @@ -1356,18 +1460,18 @@ namespace OpenTK.OpenGL public enum SamplePatternSgis { - Gl4pass2Sgis = ((int)SgisMultisample.Gl4pass2Sgis), - Gl4pass0Sgis = ((int)SgisMultisample.Gl4pass0Sgis), - Gl2pass1Sgis = ((int)SgisMultisample.Gl2pass1Sgis), - Gl1passSgis = ((int)SgisMultisample.Gl1passSgis), - Gl4pass3Sgis = ((int)SgisMultisample.Gl4pass3Sgis), - Gl4pass1Sgis = ((int)SgisMultisample.Gl4pass1Sgis), - Gl2pass0Sgis = ((int)SgisMultisample.Gl2pass0Sgis), + Gl4pass2Sgis = ((int)0x80a6), + Gl4pass0Sgis = ((int)0x80a4), + Gl2pass1Sgis = ((int)0x80a3), + Gl1passSgis = ((int)0x80a1), + Gl4pass3Sgis = ((int)0x80a7), + Gl4pass1Sgis = ((int)0x80a5), + Gl2pass0Sgis = ((int)0x80a2), } public enum SeparableTargetExt { - Separable2dExt = ((int)ExtConvolution.Separable2dExt), + Separable2dExt = ((int)0x8012), } public enum ShadingModel @@ -1378,28 +1482,31 @@ namespace OpenTK.OpenGL public enum StencilFunction { - Never = ((int)AlphaFunction.Never), - Equal = ((int)AlphaFunction.Equal), - Always = ((int)AlphaFunction.Always), - Less = ((int)AlphaFunction.Less), - Gequal = ((int)AlphaFunction.Gequal), - Lequal = ((int)AlphaFunction.Lequal), - Notequal = ((int)AlphaFunction.Notequal), - Greater = ((int)AlphaFunction.Greater), + Never = ((int)0x0200), + Equal = ((int)0x0202), + Always = ((int)0x0207), + Less = ((int)0x0201), + Gequal = ((int)0x0206), + Lequal = ((int)0x0203), + Notequal = ((int)0x0205), + Greater = ((int)0x0204), } public enum StencilOp { - Invert = ((int)LogicOp.Invert), + DecrWrap = ((int)0x8508), Replace = ((int)0x1e01), - Keep = ((int)0x1e00), + IncrWrap = ((int)0x8507), Incr = ((int)0x1e02), - Zero = ((int)BlendingFactorDest.Zero), + Zero = ((int)0), Decr = ((int)0x1e03), + Keep = ((int)0x1e00), + Invert = ((int)0x150a), } public enum StringName { + ShadingLanguageVersion = ((int)0x8b8c), Renderer = ((int)0x1f01), Extensions = ((int)0x1f03), Version = ((int)0x1f02), @@ -1408,10 +1515,10 @@ namespace OpenTK.OpenGL public enum TexCoordPointerType { - Short = ((int)DataType.Short), - Float = ((int)DataType.Float), - Double = ((int)DataType.Double), - Int = ((int)DataType.Int), + Short = ((int)0x1402), + Float = ((int)0x1406), + Double = ((int)0x140a), + Int = ((int)0x1404), } public enum TextureCoordName @@ -1424,227 +1531,285 @@ namespace OpenTK.OpenGL public enum TextureEnvMode { + Combine = ((int)0x8570), Decal = ((int)0x2101), - Add = ((int)AccumOp.Add), - Blend = ((int)GetPName.Blend), - ReplaceExt = ((int)ExtTexture.ReplaceExt), - TextureEnvBiasSgix = ((int)SgixTextureAddEnv.TextureEnvBiasSgix), + Add = ((int)0x0104), + Blend = ((int)0x0be2), + ReplaceExt = ((int)0x8062), + TextureEnvBiasSgix = ((int)0x80be), Modulate = ((int)0x2100), } public enum TextureEnvParameter { - TextureEnvColor = ((int)0x2201), + Operand0Alpha = ((int)0x8598), TextureEnvMode = ((int)0x2200), + Src0Alpha = ((int)0x8588), + Src1Alpha = ((int)0x8589), + Operand2Rgb = ((int)0x8592), + Operand2Alpha = ((int)0x859a), + Operand0Rgb = ((int)0x8590), + AlphaScale = ((int)0x0d1c), + Operand1Alpha = ((int)0x8599), + RgbScale = ((int)0x8573), + Src1Rgb = ((int)0x8581), + Src2Rgb = ((int)0x8582), + TextureEnvColor = ((int)0x2201), + Src2Alpha = ((int)0x858a), + Source0Rgb = ((int)0x8580), + CombineAlpha = ((int)0x8572), + Operand1Rgb = ((int)0x8591), + CoordReplace = ((int)0x8862), + CombineRgb = ((int)0x8571), + TextureLodBias = ((int)0x8501), } public enum TextureEnvTarget { + PointSprite = ((int)0x8861), + TextureFilterControl = ((int)0x8500), TextureEnv = ((int)0x2300), } public enum TextureFilterFuncSgis { - Filter4Sgis = ((int)SgisTextureFilter4.Filter4Sgis), + Filter4Sgis = ((int)0x8146), } public enum TextureGenMode { - EyeLinear = ((int)0x2400), - ObjectLinear = ((int)0x2401), - ObjectDistanceToPointSgis = ((int)SgisPointLineTexgen.ObjectDistanceToPointSgis), - ObjectDistanceToLineSgis = ((int)SgisPointLineTexgen.ObjectDistanceToLineSgis), + NormalMap = ((int)0x8511), SphereMap = ((int)0x2402), - EyeDistanceToLineSgis = ((int)SgisPointLineTexgen.EyeDistanceToLineSgis), - EyeDistanceToPointSgis = ((int)SgisPointLineTexgen.EyeDistanceToPointSgis), + ObjectLinear = ((int)0x2401), + EyeDistanceToLineSgis = ((int)0x81f2), + EyeDistanceToPointSgis = ((int)0x81f0), + ObjectDistanceToLineSgis = ((int)0x81f3), + ReflectionMap = ((int)0x8512), + EyeLinear = ((int)0x2400), + ObjectDistanceToPointSgis = ((int)0x81f1), } public enum TextureGenParameter { ObjectPlane = ((int)0x2501), EyePlane = ((int)0x2502), - EyePointSgis = ((int)SgisPointLineTexgen.EyePointSgis), - ObjectPointSgis = ((int)SgisPointLineTexgen.ObjectPointSgis), + EyePointSgis = ((int)0x81f4), + ObjectPointSgis = ((int)0x81f5), TextureGenMode = ((int)0x2500), - ObjectLineSgis = ((int)SgisPointLineTexgen.ObjectLineSgis), - EyeLineSgis = ((int)SgisPointLineTexgen.EyeLineSgis), + ObjectLineSgis = ((int)0x81f7), + EyeLineSgis = ((int)0x81f6), } public enum TextureMagFilter { - PixelTexGenQCeilingSgix = ((int)SgixImpactPixelTexture.PixelTexGenQCeilingSgix), - Filter4Sgis = ((int)SgisTextureFilter4.Filter4Sgis), - LinearDetailSgis = ((int)SgisDetailTexture.LinearDetailSgis), - LinearSharpenSgis = ((int)SgisSharpenTexture.LinearSharpenSgis), + PixelTexGenQCeilingSgix = ((int)0x8184), + Filter4Sgis = ((int)0x8146), + LinearDetailSgis = ((int)0x8097), + LinearSharpenSgis = ((int)0x80ad), Linear = ((int)0x2601), - LinearSharpenColorSgis = ((int)SgisSharpenTexture.LinearSharpenColorSgis), - PixelTexGenQRoundSgix = ((int)SgixImpactPixelTexture.PixelTexGenQRoundSgix), + LinearSharpenColorSgis = ((int)0x80af), + PixelTexGenQRoundSgix = ((int)0x8185), Nearest = ((int)0x2600), - LinearSharpenAlphaSgis = ((int)SgisSharpenTexture.LinearSharpenAlphaSgis), - LinearDetailColorSgis = ((int)SgisDetailTexture.LinearDetailColorSgis), - PixelTexGenQFloorSgix = ((int)SgixImpactPixelTexture.PixelTexGenQFloorSgix), - LinearDetailAlphaSgis = ((int)SgisDetailTexture.LinearDetailAlphaSgis), + LinearSharpenAlphaSgis = ((int)0x80ae), + LinearDetailColorSgis = ((int)0x8099), + PixelTexGenQFloorSgix = ((int)0x8186), + LinearDetailAlphaSgis = ((int)0x8098), } public enum TextureMinFilter { - LinearClipmapNearestSgix = ((int)SgixClipmap.LinearClipmapNearestSgix), - Filter4Sgis = ((int)SgisTextureFilter4.Filter4Sgis), - LinearClipmapLinearSgix = ((int)SgixClipmap.LinearClipmapLinearSgix), + LinearClipmapNearestSgix = ((int)0x844f), + Filter4Sgis = ((int)0x8146), + LinearClipmapLinearSgix = ((int)0x8170), NearestMipmapLinear = ((int)0x2702), - NearestClipmapNearestSgix = ((int)SgixClipmap.NearestClipmapNearestSgix), - Linear = ((int)TextureMagFilter.Linear), + NearestClipmapNearestSgix = ((int)0x844d), + Linear = ((int)0x2601), LinearMipmapNearest = ((int)0x2701), - Nearest = ((int)TextureMagFilter.Nearest), - PixelTexGenQCeilingSgix = ((int)SgixImpactPixelTexture.PixelTexGenQCeilingSgix), - PixelTexGenQRoundSgix = ((int)SgixImpactPixelTexture.PixelTexGenQRoundSgix), - PixelTexGenQFloorSgix = ((int)SgixImpactPixelTexture.PixelTexGenQFloorSgix), + Nearest = ((int)0x2600), + PixelTexGenQCeilingSgix = ((int)0x8184), + PixelTexGenQRoundSgix = ((int)0x8185), + PixelTexGenQFloorSgix = ((int)0x8186), NearestMipmapNearest = ((int)0x2700), - NearestClipmapLinearSgix = ((int)SgixClipmap.NearestClipmapLinearSgix), + NearestClipmapLinearSgix = ((int)0x844e), LinearMipmapLinear = ((int)0x2703), } public enum TextureParameterName { - TextureLodBiasTSgix = ((int)SgixTextureLodBias.TextureLodBiasTSgix), - TexturePriority = ((int)GetTextureParameter.TexturePriority), - TextureCompareSgix = ((int)SgixShadow.TextureCompareSgix), - TextureLodBiasRSgix = ((int)SgixTextureLodBias.TextureLodBiasRSgix), - QuadTextureSelectSgis = ((int)SgisTextureSelect.QuadTextureSelectSgis), - TextureCompareOperatorSgix = ((int)SgixShadow.TextureCompareOperatorSgix), - PostTextureFilterBiasSgix = ((int)SgixTextureScaleBias.PostTextureFilterBiasSgix), - TextureClipmapFrameSgix = ((int)SgixClipmap.TextureClipmapFrameSgix), - TextureWrapRExt = ((int)ExtTexture3D.TextureWrapRExt), - TextureClipmapVirtualDepthSgix = ((int)SgixClipmap.TextureClipmapVirtualDepthSgix), - DetailTextureModeSgis = ((int)SgisDetailTexture.DetailTextureModeSgis), - TextureClipmapLodOffsetSgix = ((int)SgixClipmap.TextureClipmapLodOffsetSgix), - DetailTextureLevelSgis = ((int)SgisDetailTexture.DetailTextureLevelSgis), - TextureMagFilter = ((int)0x2800), - TextureWrapQSgis = ((int)SgisTexture4D.TextureWrapQSgis), - TextureMaxClampSSgix = ((int)SgixTextureCoordinateClamp.TextureMaxClampSSgix), - TextureClipmapCenterSgix = ((int)SgixClipmap.TextureClipmapCenterSgix), - TextureClipmapDepthSgix = ((int)SgixClipmap.TextureClipmapDepthSgix), - PostTextureFilterScaleSgix = ((int)SgixTextureScaleBias.PostTextureFilterScaleSgix), - TextureMaxClampRSgix = ((int)SgixTextureCoordinateClamp.TextureMaxClampRSgix), + QuadTextureSelectSgis = ((int)0x8125), + DetailTextureLevelSgis = ((int)0x809a), + TextureMaxClampTSgix = ((int)0x836a), + TextureCompareFailValue = ((int)0x80bf), + TexturePriority = ((int)0x8066), + TextureLodBiasTSgix = ((int)0x818f), + TextureClipmapCenterSgix = ((int)0x8171), + TextureLodBiasRSgix = ((int)0x8190), + TextureClipmapFrameSgix = ((int)0x8172), + TextureLodBiasSSgix = ((int)0x818e), + TextureClipmapDepthSgix = ((int)0x8176), + TextureCompareMode = ((int)0x884c), + TextureClipmapOffsetSgix = ((int)0x8173), + TextureWrapQSgis = ((int)0x8137), + ClampToBorder = ((int)0x812d), TextureWrapS = ((int)0x2802), - TextureLodBiasSSgix = ((int)SgixTextureLodBias.TextureLodBiasSSgix), - TextureClipmapOffsetSgix = ((int)SgixClipmap.TextureClipmapOffsetSgix), - GenerateMipmapSgis = ((int)SgisGenerateMipmap.GenerateMipmapSgis), - TextureWrapT = ((int)0x2803), - ShadowAmbientSgix = ((int)SgixShadowAmbient.ShadowAmbientSgix), TextureMinFilter = ((int)0x2801), - TextureMaxClampTSgix = ((int)SgixTextureCoordinateClamp.TextureMaxClampTSgix), - TextureBorderColor = ((int)GetTextureParameter.TextureBorderColor), - DualTextureSelectSgis = ((int)SgisTextureSelect.DualTextureSelectSgis), + TextureWrapRExt = ((int)0x8072), + TextureCompareSgix = ((int)0x819a), + TextureMaxClampSSgix = ((int)0x8369), + DetailTextureModeSgis = ((int)0x809b), + DualTextureSelectSgis = ((int)0x8124), + TextureClipmapLodOffsetSgix = ((int)0x8175), + DepthTextureMode = ((int)0x884b), + PostTextureFilterBiasSgix = ((int)0x8179), + TextureCompareOperatorSgix = ((int)0x819b), + TextureMaxClampRSgix = ((int)0x836b), + ClampToEdge = ((int)0x812f), + TextureCompareFunc = ((int)0x884d), + GenerateMipmap = ((int)0x8191), + PostTextureFilterScaleSgix = ((int)0x817a), + TextureBorderColor = ((int)0x1004), + TextureClipmapVirtualDepthSgix = ((int)0x8174), + TextureMagFilter = ((int)0x2800), + TextureWrapT = ((int)0x2803), } public enum TextureTarget { - TextureMaxLevelSgis = ((int)SgisTextureLod.TextureMaxLevelSgis), - TextureRectangleNv = ((int)NvTextureRectangle.TextureRectangleNv), + TextureBaseLevelSgis = ((int)0x813c), + TextureCubeMapNegativeZ = ((int)0x851a), + ProxyTexture4dSgis = ((int)0x8135), + TextureMaxLevelSgis = ((int)0x813d), + Texture2d = ((int)0x0de1), + Texture4dSgis = ((int)0x8134), + TextureBindingCubeMap = ((int)0x8514), + Texture3d = ((int)0x806f), + TextureRectangleArb = ((int)0x84f5), + Texture1d = ((int)0x0de0), + ProxyTextureCubeMap = ((int)0x851b), + TextureCubeMap = ((int)0x8513), + TextureMinLodSgis = ((int)0x813a), + ProxyTexture3d = ((int)0x8070), + DetailTexture2dSgis = ((int)0x8095), ProxyTexture2d = ((int)0x8064), ProxyTexture1d = ((int)0x8063), - TextureMaxLodSgis = ((int)SgisTextureLod.TextureMaxLodSgis), - Texture3dExt = ((int)ExtTexture3D.Texture3dExt), - ProxyTexture3dExt = ((int)ExtTexture3D.ProxyTexture3dExt), - TextureRectangleArb = ((int)ArbTextureRectangle.TextureRectangleArb), - DetailTexture2dSgis = ((int)SgisDetailTexture.DetailTexture2dSgis), - Texture4dSgis = ((int)SgisTexture4D.Texture4dSgis), - Texture2d = ((int)GetPName.Texture2d), - TextureMinLodSgis = ((int)SgisTextureLod.TextureMinLodSgis), - Texture1d = ((int)GetPName.Texture1d), - TextureBaseLevelSgis = ((int)SgisTextureLod.TextureBaseLevelSgis), - ProxyTexture4dSgis = ((int)SgisTexture4D.ProxyTexture4dSgis), + TextureCubeMapNegativeX = ((int)0x8516), + TextureMaxLodSgis = ((int)0x813b), + TextureCubeMapNegativeY = ((int)0x8518), + TextureCubeMapPositiveZ = ((int)0x8519), + TextureCubeMapPositiveX = ((int)0x8515), + TextureCubeMapPositiveY = ((int)0x8517), } public enum TextureWrapMode { - ClampToBorder = ((int)Version13.ClampToBorder), - ClampToEdge = ((int)Version12.ClampToEdge), Clamp = ((int)0x2900), Repeat = ((int)0x2901), + MirroredRepeat = ((int)0x8370), } public enum PixelInternalFormat { - LuminanceAlphaIccSgix = ((int)SgixIccTexture.LuminanceAlphaIccSgix), + LuminanceAlphaIccSgix = ((int)0x8465), Rgb4 = ((int)0x804f), - Intensity16IccSgix = ((int)SgixIccTexture.Intensity16IccSgix), + Intensity16IccSgix = ((int)0x846a), + DepthComponent = ((int)0x1902), Alpha8 = ((int)0x803c), - LuminanceAlpha = ((int)PixelFormat.LuminanceAlpha), - DualIntensity4Sgis = ((int)SgisTextureSelect.DualIntensity4Sgis), - QuadLuminance4Sgis = ((int)SgisTextureSelect.QuadLuminance4Sgis), - Rgb2Ext = ((int)ExtTexture.Rgb2Ext), - RgbaIccSgix = ((int)SgixIccTexture.RgbaIccSgix), - Alpha16IccSgix = ((int)SgixIccTexture.Alpha16IccSgix), + LuminanceAlpha = ((int)0x190a), + DualIntensity4Sgis = ((int)0x8118), + QuadLuminance4Sgis = ((int)0x8120), + Rgb2Ext = ((int)0x804e), + RgbaIccSgix = ((int)0x8461), + Alpha16IccSgix = ((int)0x8468), + CompressedAlpha = ((int)0x84e9), Luminance12Alpha12 = ((int)0x8047), Luminance6Alpha2 = ((int)0x8044), Alpha12 = ((int)0x803d), - QuadLuminance8Sgis = ((int)SgisTextureSelect.QuadLuminance8Sgis), + QuadLuminance8Sgis = ((int)0x8121), + CompressedSrgbAlphaS3tcDxt5Ext = ((int)0x8c4f), Alpha16 = ((int)0x803e), Rgba2 = ((int)0x8055), + Srgb = ((int)0x8c40), + CompressedLuminance = ((int)0x84ea), Luminance8Alpha8 = ((int)0x8045), - R5G6B5IccSgix = ((int)SgixIccTexture.R5G6B5IccSgix), + Sluminance8 = ((int)0x8c47), + R5G6B5IccSgix = ((int)0x8466), + Sluminance8Alpha8 = ((int)0x8c45), R3G3B2 = ((int)0x2a10), - R5G6B5A8IccSgix = ((int)SgixIccTexture.R5G6B5A8IccSgix), + R5G6B5A8IccSgix = ((int)0x8467), Luminance4Alpha4 = ((int)0x8043), Alpha4 = ((int)0x803b), - DepthComponent32Sgix = ((int)SgixDepthTexture.DepthComponent32Sgix), - Luminance16Alpha8IccSgix = ((int)SgixIccTexture.Luminance16Alpha8IccSgix), - DualIntensity8Sgis = ((int)SgisTextureSelect.DualIntensity8Sgis), + Luminance16Alpha8IccSgix = ((int)0x846b), + DualIntensity8Sgis = ((int)0x8119), Rgba8 = ((int)0x8058), - Alpha = ((int)PixelFormat.Alpha), + Alpha = ((int)0x1906), Rgb12 = ((int)0x8053), + CompressedLuminanceAlpha = ((int)0x84eb), Rgba4 = ((int)0x8056), Luminance4 = ((int)0x803f), + Sluminance = ((int)0x8c46), Two = ((int)2), Intensity8 = ((int)0x804b), Luminance16 = ((int)0x8042), - DepthComponent16Sgix = ((int)SgixDepthTexture.DepthComponent16Sgix), - DualAlpha16Sgis = ((int)SgisTextureSelect.DualAlpha16Sgis), + DualAlpha16Sgis = ((int)0x8113), Luminance12 = ((int)0x8041), Luminance16Alpha16 = ((int)0x8048), + SluminanceAlpha = ((int)0x8c44), Intensity4 = ((int)0x804a), - LuminanceIccSgix = ((int)SgixIccTexture.LuminanceIccSgix), - DualLuminance4Sgis = ((int)SgisTextureSelect.DualLuminance4Sgis), - DualLuminanceAlpha8Sgis = ((int)SgisTextureSelect.DualLuminanceAlpha8Sgis), - DualAlpha12Sgis = ((int)SgisTextureSelect.DualAlpha12Sgis), + LuminanceIccSgix = ((int)0x8463), + CompressedSrgbAlphaS3tcDxt3Ext = ((int)0x8c4e), + DualLuminance4Sgis = ((int)0x8114), + CompressedSrgbAlpha = ((int)0x8c49), + CompressedIntensity = ((int)0x84ec), + Srgb8 = ((int)0x8c41), + DualLuminanceAlpha8Sgis = ((int)0x811d), + DualAlpha12Sgis = ((int)0x8112), Four = ((int)4), - QuadIntensity4Sgis = ((int)SgisTextureSelect.QuadIntensity4Sgis), + QuadIntensity4Sgis = ((int)0x8122), + CompressedSluminanceAlpha = ((int)0x8c4b), Rgb5A1 = ((int)0x8057), - Luminance16IccSgix = ((int)SgixIccTexture.Luminance16IccSgix), - DualLuminance8Sgis = ((int)SgisTextureSelect.DualLuminance8Sgis), + DepthComponent24 = ((int)0x81a6), + Luminance16IccSgix = ((int)0x8469), + DualLuminance8Sgis = ((int)0x8115), + SrgbAlpha = ((int)0x8c42), + CompressedSluminance = ((int)0x8c4a), Rgba16 = ((int)0x805b), - RgbIccSgix = ((int)SgixIccTexture.RgbIccSgix), + RgbIccSgix = ((int)0x8460), + Srgb8Alpha8 = ((int)0x8c43), + DepthComponent32 = ((int)0x81a7), + CompressedRgba = ((int)0x84ee), Intensity = ((int)0x8049), - DualLuminance12Sgis = ((int)SgisTextureSelect.DualLuminance12Sgis), + CompressedSrgb = ((int)0x8c48), + CompressedSrgbAlphaS3tcDxt1Ext = ((int)0x8c4d), + DepthComponent16 = ((int)0x81a5), + DualLuminance12Sgis = ((int)0x8116), Rgb10A2 = ((int)0x8059), - DualAlpha4Sgis = ((int)SgisTextureSelect.DualAlpha4Sgis), + DualAlpha4Sgis = ((int)0x8110), Rgb5 = ((int)0x8050), - Luminance = ((int)PixelFormat.Luminance), + Luminance = ((int)0x1909), + CompressedRgb = ((int)0x84ed), One = ((int)1), - AlphaIccSgix = ((int)SgixIccTexture.AlphaIccSgix), + AlphaIccSgix = ((int)0x8462), Rgb8 = ((int)0x8051), Rgb10 = ((int)0x8052), Three = ((int)3), Rgb16 = ((int)0x8054), Rgba12 = ((int)0x805a), - DualLuminanceAlpha4Sgis = ((int)SgisTextureSelect.DualLuminanceAlpha4Sgis), - IntensityIccSgix = ((int)SgixIccTexture.IntensityIccSgix), - DualAlpha8Sgis = ((int)SgisTextureSelect.DualAlpha8Sgis), - QuadIntensity8Sgis = ((int)SgisTextureSelect.QuadIntensity8Sgis), - DualLuminance16Sgis = ((int)SgisTextureSelect.DualLuminance16Sgis), + DualLuminanceAlpha4Sgis = ((int)0x811c), + IntensityIccSgix = ((int)0x8464), + DualAlpha8Sgis = ((int)0x8111), + QuadIntensity8Sgis = ((int)0x8123), + DualLuminance16Sgis = ((int)0x8117), + CompressedSrgbS3tcDxt1Ext = ((int)0x8c4c), Luminance12Alpha4 = ((int)0x8046), - QuadAlpha8Sgis = ((int)SgisTextureSelect.QuadAlpha8Sgis), - DepthComponent24Sgix = ((int)SgixDepthTexture.DepthComponent24Sgix), - DualIntensity12Sgis = ((int)SgisTextureSelect.DualIntensity12Sgis), - Rgb = ((int)PixelFormat.Rgb), + QuadAlpha8Sgis = ((int)0x811f), + DualIntensity12Sgis = ((int)0x811a), + Rgb = ((int)0x1907), Luminance8 = ((int)0x8040), - DualIntensity16Sgis = ((int)SgisTextureSelect.DualIntensity16Sgis), + DualIntensity16Sgis = ((int)0x811b), Intensity12 = ((int)0x804c), - QuadAlpha4Sgis = ((int)SgisTextureSelect.QuadAlpha4Sgis), + QuadAlpha4Sgis = ((int)0x811e), Intensity16 = ((int)0x804d), - Rgba = ((int)PixelFormat.Rgba), + Rgba = ((int)0x1908), } public enum InterleavedArrayFormat @@ -1667,10 +1832,10 @@ namespace OpenTK.OpenGL public enum VertexPointerType { - Short = ((int)DataType.Short), - Float = ((int)DataType.Float), - Double = ((int)DataType.Double), - Int = ((int)DataType.Int), + Short = ((int)0x1402), + Float = ((int)0x1406), + Double = ((int)0x140a), + Int = ((int)0x1404), } public enum ClipPlaneName @@ -1685,17 +1850,17 @@ namespace OpenTK.OpenGL public enum LightName { - FragmentLight3Sgix = ((int)SgixFragmentLighting.FragmentLight3Sgix), - FragmentLight0Sgix = ((int)SgixFragmentLighting.FragmentLight0Sgix), + FragmentLight3Sgix = ((int)0x840f), + FragmentLight0Sgix = ((int)0x840c), Light2 = ((int)0x4002), - FragmentLight7Sgix = ((int)SgixFragmentLighting.FragmentLight7Sgix), + FragmentLight7Sgix = ((int)0x8413), Light3 = ((int)0x4003), - FragmentLight6Sgix = ((int)SgixFragmentLighting.FragmentLight6Sgix), - FragmentLight4Sgix = ((int)SgixFragmentLighting.FragmentLight4Sgix), - FragmentLight5Sgix = ((int)SgixFragmentLighting.FragmentLight5Sgix), - FragmentLight1Sgix = ((int)SgixFragmentLighting.FragmentLight1Sgix), + FragmentLight6Sgix = ((int)0x8412), + FragmentLight4Sgix = ((int)0x8410), + FragmentLight5Sgix = ((int)0x8411), + FragmentLight1Sgix = ((int)0x840d), Light0 = ((int)0x4000), - FragmentLight2Sgix = ((int)SgixFragmentLighting.FragmentLight2Sgix), + FragmentLight2Sgix = ((int)0x840e), Light4 = ((int)0x4004), Light5 = ((int)0x4005), Light6 = ((int)0x4006), @@ -1710,36 +1875,25 @@ namespace OpenTK.OpenGL public enum ExtBlendColor { - BlendColorExt = ((int)0x8005), - ConstantColorExt = ((int)0x8001), - BlendColor = ((int)0x8005), + BlendColor = ((int)0x8005), OneMinusConstantAlpha = ((int)0x8004), - OneMinusConstantColorExt = ((int)0x8002), - ConstantColor = ((int)0x8001), - ConstantAlphaExt = ((int)0x8003), - OneMinusConstantColor = ((int)0x8002), + ConstantColor = ((int)0x8001), + OneMinusConstantColor = ((int)0x8002), ConstantAlpha = ((int)0x8003), - OneMinusConstantAlphaExt = ((int)0x8004), - } + } public enum ExtBlendMinmax { FuncAdd = ((int)0x8006), Min = ((int)0x8007), Max = ((int)0x8008), - BlendEquationExt = ((int)0x8009), - FuncAddExt = ((int)0x8006), - MaxExt = ((int)0x8008), - BlendEquation = ((int)0x8009), - MinExt = ((int)0x8007), - } + BlendEquation = ((int)0x8009), + } public enum ExtBlendSubtract { FuncReverseSubtract = ((int)0x800b), - FuncReverseSubtractExt = ((int)0x800b), - FuncSubtractExt = ((int)0x800a), - FuncSubtract = ((int)0x800a), + FuncSubtract = ((int)0x800a), } public enum ExtCmyka @@ -1752,43 +1906,23 @@ namespace OpenTK.OpenGL public enum ExtConvolution { - PostConvolutionGreenScaleExt = ((int)0x801d), - PostConvolutionAlphaScale = ((int)0x801f), - PostConvolutionRedScaleExt = ((int)0x801c), - MaxConvolutionWidthExt = ((int)0x801a), - ConvolutionBorderMode = ((int)0x8013), - Convolution1dExt = ((int)0x8010), - MaxConvolutionHeightExt = ((int)0x801b), - ReduceExt = ((int)0x8016), - PostConvolutionGreenScale = ((int)0x801d), - PostConvolutionAlphaBiasExt = ((int)0x8023), - PostConvolutionBlueScale = ((int)0x801e), + PostConvolutionAlphaScale = ((int)0x801f), + ConvolutionBorderMode = ((int)0x8013), + PostConvolutionGreenScale = ((int)0x801d), + PostConvolutionBlueScale = ((int)0x801e), ConvolutionHeight = ((int)0x8019), - ConvolutionWidthExt = ((int)0x8018), - ConvolutionBorderModeExt = ((int)0x8013), - Reduce = ((int)0x8016), + Reduce = ((int)0x8016), PostConvolutionGreenBias = ((int)0x8021), - PostConvolutionAlphaScaleExt = ((int)0x801f), - ConvolutionFilterBiasExt = ((int)0x8015), - ConvolutionHeightExt = ((int)0x8019), - MaxConvolutionWidth = ((int)0x801a), - PostConvolutionBlueBiasExt = ((int)0x8022), - ConvolutionFormatExt = ((int)0x8017), - ConvolutionFilterScaleExt = ((int)0x8014), - Convolution2d = ((int)0x8011), + MaxConvolutionWidth = ((int)0x801a), + Convolution2d = ((int)0x8011), ConvolutionWidth = ((int)0x8018), PostConvolutionRedScale = ((int)0x801c), - Convolution2dExt = ((int)0x8011), - Convolution1d = ((int)0x8010), - PostConvolutionBlueScaleExt = ((int)0x801e), - ConvolutionFilterScale = ((int)0x8014), - Separable2dExt = ((int)0x8012), - Separable2d = ((int)0x8012), + Convolution1d = ((int)0x8010), + ConvolutionFilterScale = ((int)0x8014), + Separable2d = ((int)0x8012), PostConvolutionBlueBias = ((int)0x8022), MaxConvolutionHeight = ((int)0x801b), - PostConvolutionRedBiasExt = ((int)0x8020), - PostConvolutionGreenBiasExt = ((int)0x8021), - PostConvolutionRedBias = ((int)0x8020), + PostConvolutionRedBias = ((int)0x8020), PostConvolutionAlphaBias = ((int)0x8023), ConvolutionFormat = ((int)0x8017), ConvolutionFilterBias = ((int)0x8015), @@ -1798,61 +1932,35 @@ namespace OpenTK.OpenGL { HistogramSink = ((int)0x802d), TableTooLarge = ((int)0x8031), - HistogramLuminanceSizeExt = ((int)0x802c), - Histogram = ((int)0x8024), + Histogram = ((int)0x8024), HistogramBlueSize = ((int)0x802a), MinmaxFormat = ((int)0x802f), - HistogramFormatExt = ((int)0x8027), - HistogramRedSizeExt = ((int)0x8028), - HistogramFormat = ((int)0x8027), - HistogramExt = ((int)0x8024), - HistogramWidth = ((int)0x8026), - TableTooLargeExt = ((int)0x8031), - HistogramAlphaSizeExt = ((int)0x802b), - HistogramGreenSizeExt = ((int)0x8029), - HistogramBlueSizeExt = ((int)0x802a), - HistogramGreenSize = ((int)0x8029), + HistogramFormat = ((int)0x8027), + HistogramWidth = ((int)0x8026), + HistogramGreenSize = ((int)0x8029), MinmaxSink = ((int)0x8030), - HistogramSinkExt = ((int)0x802d), - MinmaxExt = ((int)0x802e), - Minmax = ((int)0x802e), + Minmax = ((int)0x802e), HistogramAlphaSize = ((int)0x802b), HistogramRedSize = ((int)0x8028), - MinmaxFormatExt = ((int)0x802f), - HistogramWidthExt = ((int)0x8026), - ProxyHistogramExt = ((int)0x8025), - MinmaxSinkExt = ((int)0x8030), - HistogramLuminanceSize = ((int)0x802c), + HistogramLuminanceSize = ((int)0x802c), ProxyHistogram = ((int)0x8025), } public enum ExtPackedPixels { - UnsignedShort4444Ext = ((int)0x8033), - UnsignedByte332Ext = ((int)0x8032), - UnsignedInt1010102 = ((int)0x8036), + UnsignedInt1010102 = ((int)0x8036), UnsignedInt8888 = ((int)0x8035), - UnsignedInt1010102Ext = ((int)0x8036), - UnsignedShort5551 = ((int)0x8034), - UnsignedShort5551Ext = ((int)0x8034), - UnsignedInt2101010RevExt = ((int)0x8368), - UnsignedShort565Rev = ((int)0x8364), - UnsignedShort4444RevExt = ((int)0x8365), - UnsignedShort565 = ((int)0x8363), + UnsignedShort5551 = ((int)0x8034), + UnsignedShort565Rev = ((int)0x8364), + UnsignedShort565 = ((int)0x8363), UnsignedShort4444Rev = ((int)0x8365), - UnsignedShort1555RevExt = ((int)0x8366), - UnsignedInt8888Rev = ((int)0x8367), - UnsignedShort565Ext = ((int)0x8363), - UnsignedByte233RevExt = ((int)0x8362), - UnsignedShort565RevExt = ((int)0x8364), - UnsignedInt2101010Rev = ((int)0x8368), + UnsignedInt8888Rev = ((int)0x8367), + UnsignedInt2101010Rev = ((int)0x8368), UnsignedByte233Rev = ((int)0x8362), UnsignedByte332 = ((int)0x8032), UnsignedShort4444 = ((int)0x8033), - UnsignedInt8888Ext = ((int)0x8035), - UnsignedShort1555Rev = ((int)0x8366), - UnsignedInt8888RevExt = ((int)0x8367), - } + UnsignedShort1555Rev = ((int)0x8366), + } public enum ExtPolygonOffset { @@ -1864,8 +1972,7 @@ namespace OpenTK.OpenGL public enum ExtRescaleNormal { RescaleNormal = ((int)0x803a), - RescaleNormalExt = ((int)0x803a), - } + } public enum ExtTexture { @@ -1925,25 +2032,16 @@ namespace OpenTK.OpenGL public enum ExtTexture3D { - ProxyTexture3dExt = ((int)0x8070), - TextureDepth = ((int)0x8071), + TextureDepth = ((int)0x8071), UnpackImageHeight = ((int)0x806e), PackImageHeight = ((int)0x806c), TextureWrapR = ((int)0x8072), Texture3d = ((int)0x806f), - Texture3dExt = ((int)0x806f), - TextureWrapRExt = ((int)0x8072), - PackSkipImagesExt = ((int)0x806b), - UnpackImageHeightExt = ((int)0x806e), - UnpackSkipImagesExt = ((int)0x806d), - PackSkipImages = ((int)0x806b), - Max3dTextureSizeExt = ((int)0x8073), - Max3dTextureSize = ((int)0x8073), - TextureDepthExt = ((int)0x8071), - ProxyTexture3d = ((int)0x8070), + PackSkipImages = ((int)0x806b), + Max3dTextureSize = ((int)0x8073), + ProxyTexture3d = ((int)0x8070), UnpackSkipImages = ((int)0x806d), - PackImageHeightExt = ((int)0x806c), - } + } public enum ExtVertexArray { @@ -2002,22 +2100,14 @@ namespace OpenTK.OpenGL { Samples = ((int)0x80a9), MultisampleBitArb = ((int)0x20000000), - SampleCoverageInvertArb = ((int)0x80ab), - SampleCoverage = ((int)0x80a0), + SampleCoverage = ((int)0x80a0), SampleCoverageInvert = ((int)0x80ab), SampleAlphaToOne = ((int)0x809f), - SampleAlphaToOneArb = ((int)0x809f), - SampleCoverageValue = ((int)0x80aa), + SampleCoverageValue = ((int)0x80aa), SampleAlphaToCoverage = ((int)0x809e), - SampleBuffersArb = ((int)0x80a8), - MultisampleArb = ((int)0x809d), - SampleAlphaToCoverageArb = ((int)0x809e), - SampleCoverageArb = ((int)0x80a0), - SamplesArb = ((int)0x80a9), - Multisample = ((int)0x809d), + Multisample = ((int)0x809d), SampleBuffers = ((int)0x80a8), - SampleCoverageValueArb = ((int)0x80aa), - } + } public enum SgisMultisample { @@ -2051,27 +2141,16 @@ namespace OpenTK.OpenGL { MaxColorMatrixStackDepth = ((int)0x80b3), PostColorMatrixRedScale = ((int)0x80b4), - ColorMatrixSgi = ((int)0x80b1), - PostColorMatrixGreenBiasSgi = ((int)0x80b9), - PostColorMatrixAlphaScaleSgi = ((int)0x80b7), - PostColorMatrixAlphaScale = ((int)0x80b7), - PostColorMatrixBlueBiasSgi = ((int)0x80ba), - PostColorMatrixRedBias = ((int)0x80b8), - PostColorMatrixRedScaleSgi = ((int)0x80b4), - ColorMatrix = ((int)0x80b1), + PostColorMatrixAlphaScale = ((int)0x80b7), + PostColorMatrixRedBias = ((int)0x80b8), + ColorMatrix = ((int)0x80b1), PostColorMatrixGreenScale = ((int)0x80b5), PostColorMatrixBlueBias = ((int)0x80ba), - PostColorMatrixRedBiasSgi = ((int)0x80b8), - PostColorMatrixAlphaBiasSgi = ((int)0x80bb), - PostColorMatrixBlueScale = ((int)0x80b6), + PostColorMatrixBlueScale = ((int)0x80b6), ColorMatrixStackDepth = ((int)0x80b2), - MaxColorMatrixStackDepthSgi = ((int)0x80b3), - PostColorMatrixGreenBias = ((int)0x80b9), - PostColorMatrixGreenScaleSgi = ((int)0x80b5), - PostColorMatrixAlphaBias = ((int)0x80bb), - PostColorMatrixBlueScaleSgi = ((int)0x80b6), - ColorMatrixStackDepthSgi = ((int)0x80b2), - } + PostColorMatrixGreenBias = ((int)0x80b9), + PostColorMatrixAlphaBias = ((int)0x80bb), + } public enum SgiTextureColorTable { @@ -2091,34 +2170,18 @@ namespace OpenTK.OpenGL public enum SgiColorTable { - ColorTableScaleSgi = ((int)0x80d6), - ProxyColorTable = ((int)0x80d3), - ColorTableBiasSgi = ((int)0x80d7), - ColorTableBlueSize = ((int)0x80dc), - ColorTableFormatSgi = ((int)0x80d8), - ColorTableIntensitySizeSgi = ((int)0x80df), - ColorTableRedSize = ((int)0x80da), - ProxyPostColorMatrixColorTableSgi = ((int)0x80d5), - ColorTableWidth = ((int)0x80d9), - ColorTableWidthSgi = ((int)0x80d9), - ColorTableAlphaSizeSgi = ((int)0x80dd), - PostConvolutionColorTableSgi = ((int)0x80d1), - ColorTable = ((int)0x80d0), + ProxyColorTable = ((int)0x80d3), + ColorTableBlueSize = ((int)0x80dc), + ColorTableRedSize = ((int)0x80da), + ColorTableWidth = ((int)0x80d9), + ColorTable = ((int)0x80d0), ProxyPostConvolutionColorTable = ((int)0x80d4), - ColorTableLuminanceSizeSgi = ((int)0x80de), - PostColorMatrixColorTable = ((int)0x80d2), + PostColorMatrixColorTable = ((int)0x80d2), PostConvolutionColorTable = ((int)0x80d1), ColorTableLuminanceSize = ((int)0x80de), ColorTableGreenSize = ((int)0x80db), - ColorTableSgi = ((int)0x80d0), - ColorTableIntensitySize = ((int)0x80df), - ColorTableBlueSizeSgi = ((int)0x80dc), - ProxyPostConvolutionColorTableSgi = ((int)0x80d4), - ProxyColorTableSgi = ((int)0x80d3), - PostColorMatrixColorTableSgi = ((int)0x80d2), - ColorTableGreenSizeSgi = ((int)0x80db), - ColorTableRedSizeSgi = ((int)0x80da), - ProxyPostColorMatrixColorTable = ((int)0x80d5), + ColorTableIntensitySize = ((int)0x80df), + ProxyPostColorMatrixColorTable = ((int)0x80d5), ColorTableFormat = ((int)0x80d8), ColorTableScale = ((int)0x80d6), ColorTableAlphaSize = ((int)0x80dd), @@ -2127,55 +2190,14 @@ namespace OpenTK.OpenGL public enum ExtBgra { - BgrExt = ((int)0x80e0), - Bgra = ((int)0x80e1), + Bgra = ((int)0x80e1), Bgr = ((int)0x80e0), - BgraExt = ((int)0x80e1), - } + } public enum Version12 { - UnsignedShort5551 = ((int)0x8034), - UnsignedShort4444Rev = ((int)0x8365), - PackImageHeight = ((int)0x806c), - Bgr = ((int)0x80e0), - SeparateSpecularColor = ((int)0x81fa), - PackSkipImages = ((int)0x806b), - UnsignedShort565Rev = ((int)0x8364), - Max3dTextureSize = ((int)0x8073), - RescaleNormal = ((int)0x803a), - UnsignedByte233Rev = ((int)0x8362), - UnpackImageHeight = ((int)0x806e), - SmoothPointSizeRange = ((int)0x0b12), MaxElementsVertices = ((int)0x80e8), - SmoothPointSizeGranularity = ((int)0x0b13), - ProxyTexture3d = ((int)0x8070), - TextureBaseLevel = ((int)0x813c), - Bgra = ((int)0x80e1), - Texture3d = ((int)0x806f), - TextureMaxLevel = ((int)0x813d), - UnsignedInt8888Rev = ((int)0x8367), - AliasedLineWidthRange = ((int)0x846e), - SingleColor = ((int)0x81f9), - SmoothLineWidthRange = ((int)0x0b22), - UnsignedByte332 = ((int)0x8032), - UnsignedShort1555Rev = ((int)0x8366), - TextureBinding3d = ((int)0x806a), - UnsignedInt1010102 = ((int)0x8036), - LightModelColorControl = ((int)0x81f8), - ClampToEdge = ((int)0x812f), - TextureMaxLod = ((int)0x813b), - TextureMinLod = ((int)0x813a), - UnsignedShort565 = ((int)0x8363), - TextureDepth = ((int)0x8071), - SmoothLineWidthGranularity = ((int)0x0b23), - UnsignedShort4444 = ((int)0x8033), MaxElementsIndices = ((int)0x80e9), - UnsignedInt8888 = ((int)0x8035), - AliasedPointSizeRange = ((int)0x846d), - UnpackSkipImages = ((int)0x806d), - UnsignedInt2101010Rev = ((int)0x8368), - TextureWrapR = ((int)0x8072), } public enum SgisTextureSelect @@ -2206,21 +2228,9 @@ namespace OpenTK.OpenGL public enum SgisPointParameters { - PointSizeMinSgis = ((int)0x8126), - DistanceAttenuationSgis = ((int)0x8129), - PointSizeMinArb = ((int)0x8126), - PointSizeMaxSgis = ((int)0x8127), - PointSizeMaxExt = ((int)0x8127), - PointFadeThresholdSizeExt = ((int)0x8128), - PointDistanceAttenuationArb = ((int)0x8129), - DistanceAttenuationExt = ((int)0x8129), - PointDistanceAttenuation = ((int)0x8129), - PointFadeThresholdSizeArb = ((int)0x8128), - PointSizeMax = ((int)0x8127), - PointFadeThresholdSizeSgis = ((int)0x8128), - PointSizeMaxArb = ((int)0x8127), - PointSizeMinExt = ((int)0x8126), - PointFadeThresholdSize = ((int)0x8128), + PointDistanceAttenuation = ((int)0x8129), + PointSizeMax = ((int)0x8127), + PointFadeThresholdSize = ((int)0x8128), PointSizeMin = ((int)0x8126), } @@ -2234,9 +2244,7 @@ namespace OpenTK.OpenGL public enum SgisTextureBorderClamp { ClampToBorder = ((int)0x812d), - ClampToBorderSgis = ((int)0x812d), - ClampToBorderArb = ((int)0x812d), - } + } public enum SgixTextureMultiBuffer { @@ -2245,8 +2253,7 @@ namespace OpenTK.OpenGL public enum SgisTextureEdgeClamp { - ClampToEdgeSgis = ((int)0x812f), - ClampToEdge = ((int)0x812f), + ClampToEdge = ((int)0x812f), } public enum SgisTexture4D @@ -2271,14 +2278,10 @@ namespace OpenTK.OpenGL public enum SgisTextureLod { - TextureMaxLevelSgis = ((int)0x813d), - TextureBaseLevel = ((int)0x813c), - TextureMaxLodSgis = ((int)0x813b), - TextureMaxLod = ((int)0x813b), + TextureBaseLevel = ((int)0x813c), + TextureMaxLod = ((int)0x813b), TextureMinLod = ((int)0x813a), - TextureMinLodSgis = ((int)0x813a), - TextureBaseLevelSgis = ((int)0x813c), - TextureMaxLevel = ((int)0x813d), + TextureMaxLevel = ((int)0x813d), } public enum SgixPixelTiles @@ -2313,12 +2316,9 @@ namespace OpenTK.OpenGL public enum HpConvolutionBorderModes { IgnoreBorderHp = ((int)0x8150), - ReplicateBorderHp = ((int)0x8153), - ConvolutionBorderColorHp = ((int)0x8154), - ConvolutionBorderColor = ((int)0x8154), + ConvolutionBorderColor = ((int)0x8154), ConstantBorder = ((int)0x8151), - ConstantBorderHp = ((int)0x8151), - ReplicateBorder = ((int)0x8153), + ReplicateBorder = ((int)0x8153), } public enum SgixClipmap @@ -2399,15 +2399,13 @@ namespace OpenTK.OpenGL public enum SgisGenerateMipmap { - GenerateMipmapSgis = ((int)0x8191), - GenerateMipmap = ((int)0x8191), + GenerateMipmap = ((int)0x8191), MaxDeformationOrderSgix = ((int)0x8197), GeometryDeformationSgix = ((int)0x8194), DeformationsMaskSgix = ((int)0x8196), GenerateMipmapHint = ((int)0x8192), TextureDeformationSgix = ((int)0x8195), - GenerateMipmapHintSgis = ((int)0x8192), - } + } public enum SgixFogOffset { @@ -2426,12 +2424,9 @@ namespace OpenTK.OpenGL public enum SgixDepthTexture { DepthComponent32 = ((int)0x81a7), - DepthComponent32Sgix = ((int)0x81a7), - DepthComponent24Sgix = ((int)0x81a6), - DepthComponent24 = ((int)0x81a6), + DepthComponent24 = ((int)0x81a6), DepthComponent16 = ((int)0x81a5), - DepthComponent16Sgix = ((int)0x81a5), - } + } public enum SgixYcrcb { @@ -2459,10 +2454,7 @@ namespace OpenTK.OpenGL public enum ExtSeparateSpecularColor { LightModelColorControl = ((int)0x81f8), - SeparateSpecularColorExt = ((int)0x81fa), - SingleColorExt = ((int)0x81f9), - LightModelColorControlExt = ((int)0x81f8), - SingleColor = ((int)0x81f9), + SingleColor = ((int)0x81f9), SeparateSpecularColor = ((int)0x81fa), } @@ -2613,19 +2605,19 @@ namespace OpenTK.OpenGL { Sampler2dRectArb = ((int)0x8b63), VertexStream2Ati = ((int)0x876e), - SamplerCubeShadowExt = ((int)0x8dc5), + Ccw = ((int)0x0901), ArrayElementLockFirstExt = ((int)0x81a8), MaxPixelTransform2dStackDepthExt = ((int)0x8337), ShadowAmbientSgix = ((int)0x80bf), TextureRedSizeExt = ((int)0x805c), VertexArrayListStrideIbm = ((int)103080), ColorLogicOp = ((int)0x0bf2), + TextureCompareFailValue = ((int)0x80bf), TextureWidth = ((int)0x1000), MapAttribUOrderNv = ((int)0x86c3), Combiner0Nv = ((int)0x8550), MaxGeometryBindableUniformsExt = ((int)0x8de4), - TableTooLargeExt = ((int)0x8031), - LocalConstantDatatypeExt = ((int)0x87ed), + CurrentSecondaryColor = ((int)0x8459), CompressedSluminanceExt = ((int)0x8c4a), ShaderConsistentNv = ((int)0x86dd), Texture13Arb = ((int)0x84cd), @@ -2635,12 +2627,14 @@ namespace OpenTK.OpenGL Intensity = ((int)0x8049), DotProductTexture1dNv = ((int)0x885c), C4ubV2f = ((int)0x2a22), + UnsignedByte233Reversed = ((int)0x8362), TextureCoordArraySizeExt = ((int)0x8088), BumpRotMatrixSizeAti = ((int)0x8776), DrawBuffer11Arb = ((int)0x8830), + MaxProgramNativeParameters = ((int)0x88ab), Aux3 = ((int)0x040c), StencilPassDepthFail = ((int)0x0b95), - MaxProgramIfDepthNv = ((int)0x88f6), + Intensity32uiExt = ((int)0x8d73), LocalConstantValueExt = ((int)0x87ec), LocalConstantExt = ((int)0x87c3), Map2TangentExt = ((int)0x8445), @@ -2653,15 +2647,12 @@ namespace OpenTK.OpenGL CurrentVertexExt = ((int)0x87e2), PixelMapAToASize = ((int)0x0cb9), PostColorMatrixBlueScale = ((int)0x80b6), - Matrix23Arb = ((int)0x88d7), PostColorMatrixGreenScale = ((int)0x80b5), - Matrix18Arb = ((int)0x88d2), Light6 = ((int)0x4006), Combiner6Nv = ((int)0x8556), MaxFragmentUniformComponents = ((int)0x8b49), VertexWeightArrayPointerExt = ((int)0x8510), - OneMinusConstantColorExt = ((int)0x8002), - Modelview12Arb = ((int)0x872c), + Modelview12Arb = ((int)0x872c), MaxRectangleTextureSizeNv = ((int)0x84f8), Bgra = ((int)0x80e1), OpDot4Ext = ((int)0x8785), @@ -2677,24 +2668,23 @@ namespace OpenTK.OpenGL MaxNameStackDepth = ((int)0x0d37), FragmentLightModelAmbientSgix = ((int)0x840a), LineSmoothHint = ((int)0x0c52), - Luminance16Alpha16 = ((int)0x8048), + Modelview13Arb = ((int)0x872d), UnpackSkipImages = ((int)0x806d), - TextureCubeMapNegativeX = ((int)0x8516), Modelview2Arb = ((int)0x8722), - PostColorMatrixAlphaScaleSgi = ((int)0x80b7), - Rgba2Ext = ((int)0x8055), + Rgba2Ext = ((int)0x8055), PixelUnpackBufferArb = ((int)0x88ec), Con8Ati = ((int)0x8949), TextureCubeMapPositiveYArb = ((int)0x8517), Alpha = ((int)0x1906), - VertexAttribArrayPointerArb = ((int)0x8645), WeightArrayBufferBindingArb = ((int)0x889e), - TextureIntensitySizeExt = ((int)0x8061), + OutputTextureCoord13Ext = ((int)0x87aa), + MaxProgramNativeAttribs = ((int)0x88af), IntSampler1dExt = ((int)0x8dc9), Combiner4Nv = ((int)0x8554), + Src2Rgb = ((int)0x8582), OpPowerExt = ((int)0x8793), ColorArrayCountExt = ((int)0x8084), - HiScaleNv = ((int)0x870e), + TextureIntensitySizeExt = ((int)0x8061), SpriteModeSgix = ((int)0x8149), SignedLuminance8Alpha8Nv = ((int)0x8704), RgbaFloat16Ati = ((int)0x881a), @@ -2710,10 +2700,8 @@ namespace OpenTK.OpenGL IndexArrayType = ((int)0x8085), DotProductTexture3dNv = ((int)0x86ef), StencilBackValueMask = ((int)0x8ca4), - MultisampleArb = ((int)0x809d), - VertexAttribArrayType = ((int)0x8625), + VariableBNv = ((int)0x8524), Combiner3Nv = ((int)0x8553), - ProgramNativeAddressRegistersArb = ((int)0x88b2), FragmentProgramNv = ((int)0x8870), Triangles = ((int)0x0004), WeightArrayTypeArb = ((int)0x86a9), @@ -2721,7 +2709,7 @@ namespace OpenTK.OpenGL DrawBuffer8 = ((int)0x882d), DrawBuffer9 = ((int)0x882e), AccumRedBits = ((int)0x0d58), - EvalTriangular2dNv = ((int)0x86c1), + DrawBuffer7 = ((int)0x882c), DrawBuffer4 = ((int)0x8829), DrawBuffer5 = ((int)0x882a), DrawBuffer2 = ((int)0x8827), @@ -2747,36 +2735,31 @@ namespace OpenTK.OpenGL AlphaMaxClampIngr = ((int)0x8567), Texture9Arb = ((int)0x84c9), ConvolutionBorderColor = ((int)0x8154), - ColorTableWidthSgi = ((int)0x80d9), - Reg19Ati = ((int)0x8934), + Reg19Ati = ((int)0x8934), LineStripAdjacencyExt = ((int)0x000b), Gl2pass0Sgis = ((int)0x80a2), C4ubV3f = ((int)0x2a23), - VertexIdNv = ((int)0x8c7b), + VariableDNv = ((int)0x8526), MaxLights = ((int)0x0d31), NormalArrayListIbm = ((int)103071), Aux2 = ((int)0x040b), NormalArrayStrideExt = ((int)0x807f), ForceBlueToOneNv = ((int)0x8860), Alpha16fArb = ((int)0x881c), - VertexProgramArb = ((int)0x8620), PixelMapIToB = ((int)0x0c74), - ConvolutionBorderColorHp = ((int)0x8154), - CurrentAttribNv = ((int)0x8626), + CurrentAttribNv = ((int)0x8626), ColorIndex16Ext = ((int)0x80e7), PnTrianglesPointModeAti = ((int)0x87f2), Projection = ((int)0x1701), DstColor = ((int)0x0306), - UnsignedInt8888Ext = ((int)0x8035), - Constant = ((int)0x8576), + Constant = ((int)0x8576), CompressedRgbaS3tcDxt5Ext = ((int)0x83f3), WriteOnly = ((int)0x88b9), CompressedIntensityArb = ((int)0x84ec), CompressedRgbaArb = ((int)0x84ee), - ProgramFormatArb = ((int)0x8876), - PackImageHeightExt = ((int)0x806c), - ProxyHistogramExt = ((int)0x8025), - FogEnd = ((int)0x0b64), + ArrayType = ((int)0x8625), + FogEnd = ((int)0x0b64), + UnsignedShort1555Reversed = ((int)0x8366), Gl2pass1Sgis = ((int)0x80a3), DepthBoundsExt = ((int)0x8891), StencilBackFunc = ((int)0x8800), @@ -2785,8 +2768,7 @@ namespace OpenTK.OpenGL Rgb16Ext = ((int)0x8054), VertexAttribArray8Nv = ((int)0x8658), InstrumentBufferPointerSgix = ((int)0x8180), - SingleColorExt = ((int)0x81f9), - CurrentWeightArb = ((int)0x86a8), + CurrentWeightArb = ((int)0x86a8), Reg28Ati = ((int)0x893d), ScalebiasHintSgix = ((int)0x8322), LuminanceIccSgix = ((int)0x8463), @@ -2801,7 +2783,7 @@ namespace OpenTK.OpenGL Rgb12 = ((int)0x8053), Rgb10 = ((int)0x8052), Rgb16 = ((int)0x8054), - Ccw = ((int)0x0901), + MaxProgramEnvParameters = ((int)0x88b5), InvariantValueExt = ((int)0x87ea), MatrixIndexArrayPointerArb = ((int)0x8849), T2fIuiV3fExt = ((int)0x81b2), @@ -2816,11 +2798,10 @@ namespace OpenTK.OpenGL IrInstrument1Sgix = ((int)0x817f), TextureMultiBufferHintSgix = ((int)0x812e), Reg14Ati = ((int)0x892f), + VariableGNv = ((int)0x8529), IncrWrapExt = ((int)0x8507), UnsignedInt10f11f11fRevExt = ((int)0x8c3b), FenceStatusNv = ((int)0x84f3), - ProgramLengthNv = ((int)0x8627), - CombinerInputNv = ((int)0x8542), ColorMaterial = ((int)0x0b57), MaxConvolutionHeight = ((int)0x801b), TextureConstantDataSunx = ((int)0x81d6), @@ -2828,11 +2809,10 @@ namespace OpenTK.OpenGL ListBit = ((int)0x00020000), TextureBindingCubeMap = ((int)0x8514), UnsignedInt248Ext = ((int)0x84fa), - Texture16 = ((int)0x84d0), - Four = ((int)4), + Four = ((int)4), UnpackSubsampleRateSgix = ((int)0x85a1), Texture15 = ((int)0x84cf), - MatrixPaletteArb = ((int)0x8840), + Texture12 = ((int)0x84cc), Texture13 = ((int)0x84cd), Reg15Ati = ((int)0x8930), Texture11 = ((int)0x84cb), @@ -2840,21 +2820,19 @@ namespace OpenTK.OpenGL TextureCompareOperatorSgix = ((int)0x819b), UnpackAlignment = ((int)0x0cf5), BoolVec4 = ((int)0x8b59), - UnpackImageHeightExt = ((int)0x806e), - Texture18 = ((int)0x84d2), + Texture18 = ((int)0x84d2), DualIntensity12Sgis = ((int)0x811a), + Texture20 = ((int)0x84d4), Reg3Ati = ((int)0x8924), ColorMaterialParameter = ((int)0x0b56), Operand2Alpha = ((int)0x859a), - ProgramBindingArb = ((int)0x8677), MaxVertexTextureImageUnitsArb = ((int)0x8b4c), MadAti = ((int)0x8968), Map1TangentExt = ((int)0x8444), R1uiT2fC4fN3fV3fSun = ((int)0x85cb), AmbientAndDiffuse = ((int)0x1602), ElementArrayTypeAti = ((int)0x8769), - GenerateMipmapSgis = ((int)0x8191), - ProxyHistogram = ((int)0x8025), + ProxyHistogram = ((int)0x8025), Operand1RgbArb = ((int)0x8591), Reg16Ati = ((int)0x8931), CopyPixelToken = ((int)0x0706), @@ -2863,32 +2841,26 @@ namespace OpenTK.OpenGL EdgeFlagArrayStride = ((int)0x808c), AttribArrayPointerNv = ((int)0x8645), MaxProjectionStackDepth = ((int)0x0d38), - DeformationsMaskSgix = ((int)0x8196), + Modelview18Arb = ((int)0x8732), FloatMat4 = ((int)0x8b5c), DepthTest = ((int)0x0b71), - FloatMat2 = ((int)0x8b5a), BackSecondaryColorNv = ((int)0x8c78), ColorAttachment13Ext = ((int)0x8ced), - SampleCoverageValueArb = ((int)0x80aa), + Map2BinormalExt = ((int)0x8447), BoolArb = ((int)0x8b56), CompressedTextureFormats = ((int)0x86a3), Source2AlphaArb = ((int)0x858a), CompressedAlphaArb = ((int)0x84e9), - PostConvolutionRedScaleExt = ((int)0x801c), - SignedLuminance8Nv = ((int)0x8702), - FogCoordinateSource = ((int)0x8450), + SignedLuminance8Nv = ((int)0x8702), Light4 = ((int)0x4004), Aux1 = ((int)0x040a), StencilClearTagValueExt = ((int)0x88f3), OutputTextureCoord31Ext = ((int)0x87bc), - PostConvolutionBlueScaleExt = ((int)0x801e), - TextureLequalRSgix = ((int)0x819c), + TextureLequalRSgix = ((int)0x819c), PixelMapIToA = ((int)0x0c75), ColorAttachment8Ext = ((int)0x8ce8), - Matrix22Arb = ((int)0x88d6), FramebufferCompleteExt = ((int)0x8cd5), - ColorTableBiasSgi = ((int)0x80d7), - MaxTextureImageUnitsNv = ((int)0x8872), + FloatMat4x3 = ((int)0x8b6a), PnTrianglesPointModeLinearAti = ((int)0x87f5), Operand2Rgb = ((int)0x8592), R5G6B5IccSgix = ((int)0x8466), @@ -2908,22 +2880,18 @@ namespace OpenTK.OpenGL ProgramNativeAluInstructionsArb = ((int)0x8808), StaticRead = ((int)0x88e5), PackImageHeight = ((int)0x806c), - HistogramLuminanceSizeExt = ((int)0x802c), - SampleMaskInvertExt = ((int)0x80ab), + SampleMaskInvertExt = ((int)0x80ab), Gequal = ((int)0x0206), ElementArrayBuffer = ((int)0x8893), Nearest = ((int)0x2600), - Reg11Ati = ((int)0x892c), + ProgramLengthNv = ((int)0x8627), FramebufferIncompleteDrawBufferExt = ((int)0x8cdb), Hilo16Nv = ((int)0x86f8), - ColorTableLuminanceSizeSgi = ((int)0x80de), - Convolution1dExt = ((int)0x8010), - BlendEquationRgbExt = ((int)ArbImaging.BlendEquation), + MatSpecularBitPgi = ((int)0x04000000), + BlendEquationRgbExt = ((int)0x8009), IndexBits = ((int)0x0d51), TextureCubeMapNegativeYArb = ((int)0x8518), - PointDistanceAttenuationArb = ((int)0x8129), - MaxExt = ((int)0x8008), - MaxProgramCallDepthNv = ((int)0x88f5), + MaxProgramCallDepthNv = ((int)0x88f5), MatDiffuseBitPgi = ((int)0x00400000), DualTextureSelectSgis = ((int)0x8124), TextureCoordArrayStride = ((int)0x808a), @@ -2939,7 +2907,7 @@ namespace OpenTK.OpenGL Modelview5Arb = ((int)0x8725), PixelMapBToB = ((int)0x0c78), False = ((int)0), - VertexAttribArrayStrideArb = ((int)0x8624), + Texture2Arb = ((int)0x84c2), DrawBuffer13 = ((int)0x8832), TextureCubeMapNegativeXArb = ((int)0x8516), BlendSrcRgb = ((int)0x80c9), @@ -2949,9 +2917,9 @@ namespace OpenTK.OpenGL ReadOnlyArb = ((int)0x88b8), Rgb32fArb = ((int)0x8815), ProxyTexture1dExt = ((int)0x8063), + ArrayPointer = ((int)0x8645), FloatR32Nv = ((int)0x8885), BinormalArrayExt = ((int)0x843a), - WeightArrayBufferBinding = ((int)0x889e), AttribArrayStrideNv = ((int)0x8624), Reg13Ati = ((int)0x892e), DrawBuffer9Ati = ((int)0x882e), @@ -2967,8 +2935,7 @@ namespace OpenTK.OpenGL SpriteTranslationSgix = ((int)0x814b), PostConvolutionBlueBias = ((int)0x8022), OpAddExt = ((int)0x8787), - PointSizeMaxExt = ((int)0x8127), - SecondaryColorArraySizeExt = ((int)0x845a), + SecondaryColorArraySizeExt = ((int)0x845a), TextureRedTypeArb = ((int)0x8c10), DrawBuffer15 = ((int)0x8834), LightModelTwoSide = ((int)0x0b52), @@ -2982,10 +2949,11 @@ namespace OpenTK.OpenGL Exp2 = ((int)0x0801), FragmentDepthExt = ((int)0x8452), ImageTranslateXHp = ((int)0x8157), + FogCoordinateArrayStrideExt = ((int)0x8455), Or = ((int)0x1507), VertexArrayStride = ((int)0x807c), StrictScissorHintPgi = ((int)0x1a218), - OutputTextureCoord13Ext = ((int)0x87aa), + SecondaryColorArrayStrideExt = ((int)0x845c), Texture8Arb = ((int)0x84c8), PreviousExt = ((int)0x8578), CompressedSrgb = ((int)0x8c48), @@ -3001,16 +2969,15 @@ namespace OpenTK.OpenGL EvalVertexAttrib13Nv = ((int)0x86d3), VertexProgramPointSizeArb = ((int)0x8642), Reg22Ati = ((int)0x8937), - Matrix24Arb = ((int)0x88d8), + ArrayEnabled = ((int)0x8622), TransformBit = ((int)0x00001000), OpSetLtExt = ((int)0x878d), NoError = ((int)0), FramebufferSrgbExt = ((int)0x8db9), InfoLogLength = ((int)0x8b84), LuminanceFloat32Ati = ((int)0x8818), - ColorMatrixSgi = ((int)0x80b1), - ParallelArraysIntel = ((int)0x83f4), - Map2BinormalExt = ((int)0x8447), + StencilBackPassDepthFail = ((int)0x8802), + VertexShaderLocalConstantsExt = ((int)0x87d2), ColorAttachment12Ext = ((int)0x8cec), SpotCutoff = ((int)0x1206), WeightSumUnityArb = ((int)0x86a6), @@ -3023,13 +2990,11 @@ namespace OpenTK.OpenGL StencilIndex8Ext = ((int)0x8d48), ShaderType = ((int)0x8b4f), InvalidValue = ((int)0x0501), - ProgramNativeInstructionsArb = ((int)0x88a2), VertexAttribArray9Nv = ((int)0x8659), Con2Ati = ((int)0x8943), TextureFilter4SizeSgis = ((int)0x8147), LuminanceFloat16Ati = ((int)0x881e), - ColorMatrixStackDepthSgi = ((int)0x80b2), - BlendDstAlpha = ((int)0x80ca), + BlendDstAlpha = ((int)0x80ca), PointSpriteNv = ((int)0x8861), DualLuminance4Sgis = ((int)0x8114), DualLuminanceAlpha4Sgis = ((int)0x811c), @@ -3039,18 +3004,14 @@ namespace OpenTK.OpenGL Intensity8Ext = ((int)0x804b), BufferSerializedModifyApple = ((int)0x8a12), SecondaryColorArrayStride = ((int)0x845c), - HistogramRedSizeExt = ((int)0x8028), - Luminance12Alpha12Ext = ((int)0x8047), + Luminance12Alpha12Ext = ((int)0x8047), SignedHiloNv = ((int)0x86f9), PrimitiveRestartNv = ((int)0x8558), AllowDrawMemHintPgi = ((int)0x1a211), NegateBitAti = ((int)0x00000004), SignedHilo16Nv = ((int)0x86fa), - IntVec4Arb = ((int)0x8b55), + IntVec4Arb = ((int)0x8b55), SamplesPassed = ((int)0x8914), - DynamicDrawArb = ((int)0x88e8), - ProgramTemporariesArb = ((int)0x88a4), - DepthStencilExt = ((int)0x84f9), ColorAttachment14Ext = ((int)0x8cee), UnsignedShort88RevApple = ((int)0x85bb), TextureGequalRSgix = ((int)0x819d), @@ -3058,10 +3019,10 @@ namespace OpenTK.OpenGL FogDensity = ((int)0x0b62), NumInstructionsTotalAti = ((int)0x8972), SecondaryColorArrayBufferBindingArb = ((int)0x889c), - ActiveVaryingMaxLengthNv = ((int)0x8c82), DrawBuffer10 = ((int)0x882f), Modelview1Ext = ((int)0x850a), FloatRgbaModeNv = ((int)0x888e), + StreamRead = ((int)0x88e1), SrgbExt = ((int)0x8c40), Ycrcb444Sgix = ((int)0x81bc), Nand = ((int)0x150e), @@ -3080,15 +3041,16 @@ namespace OpenTK.OpenGL ReadWriteArb = ((int)0x88ba), SampleCoverage = ((int)0x80a0), Equiv = ((int)0x1509), - PointSpriteArb = ((int)0x8861), + DrawBuffer7Ati = ((int)0x882c), TextureEnv = ((int)0x2300), ListPrioritySgix = ((int)0x8182), - Matrix26Arb = ((int)0x88da), + Texture30 = ((int)0x84de), Texture31 = ((int)0x84df), - XExt = ((int)0x87d5), + ProgramAttribs = ((int)0x88ac), RenderbufferWidthExt = ((int)0x8d42), UnsignedIntSampler1dArrayExt = ((int)0x8dd6), - Matrix9Arb = ((int)0x88c9), + Matrix8 = ((int)0x88c8), + Matrix9 = ((int)0x88c9), CurrentVertexAttrib = ((int)0x8626), PixelTransform2dMatrixExt = ((int)0x8338), Map2VertexAttrib34Nv = ((int)0x8673), @@ -3099,13 +3061,10 @@ namespace OpenTK.OpenGL OutputTextureCoord29Ext = ((int)0x87ba), EmbossConstantNv = ((int)0x855e), ConvolutionFilterScale = ((int)0x8014), - Source1Alpha = ((int)0x8589), - HistogramFormatExt = ((int)0x8027), - Srgb8Alpha8 = ((int)0x8c43), - PostConvolutionAlphaScaleExt = ((int)0x801f), - CombinerMuxSumNv = ((int)0x8547), - ProxyTextureRectangleNv = ((int)0x84f7), - ClipNearHintPgi = ((int)0x1a220), + Srgb8Alpha8 = ((int)0x8c43), + CombinerMuxSumNv = ((int)0x8547), + FramebufferAttachmentObjectNameExt = ((int)0x8cd1), + OpLogBase2Ext = ((int)0x8792), TextureEnvColor = ((int)0x2201), TextureDsSizeNv = ((int)0x871d), ModulateSubtractAti = ((int)0x8746), @@ -3123,13 +3082,11 @@ namespace OpenTK.OpenGL Modelview31Arb = ((int)0x873f), DrawBuffer1Ati = ((int)0x8826), Intensity16uiExt = ((int)0x8d79), - ShaderOperationNv = ((int)0x86df), - Operand3RgbNv = ((int)0x8593), + BufferSizeArb = ((int)0x8764), Fastest = ((int)0x1101), OutputTextureCoord21Ext = ((int)0x87b2), NameStackDepth = ((int)0x0d70), - BlendEquationExt = ((int)0x8009), - VertexWeightArraySizeExt = ((int)0x850d), + VertexWeightArraySizeExt = ((int)0x850d), ClampReadColorArb = ((int)0x891c), BackLeft = ((int)0x0402), OpRecipExt = ((int)0x8794), @@ -3139,16 +3096,13 @@ namespace OpenTK.OpenGL TextureMaxClampRSgix = ((int)0x836b), DrawBuffer0Ati = ((int)0x8825), FenceApple = ((int)0x8a0b), - Map1VertexAttrib134Nv = ((int)0x866d), TextureFloatComponentsNv = ((int)0x888c), OutputTextureCoord16Ext = ((int)0x87ad), Alpha8 = ((int)0x803c), TriangleMeshSun = ((int)0x8615), - VertexArrayPointer = ((int)0x808e), + Matrix29 = ((int)0x88dd), Gl4pass1Ext = ((int)0x80a5), - UnsignedByte233RevExt = ((int)0x8362), - ConvolutionFormatExt = ((int)0x8017), - EdgeFlagArrayListStrideIbm = ((int)103085), + EdgeFlagArrayListStrideIbm = ((int)103085), ObjectActiveUniformsArb = ((int)0x8b86), TextureBindingRectangleArb = ((int)0x84f6), Max3dTextureSize = ((int)0x8073), @@ -3157,10 +3111,9 @@ namespace OpenTK.OpenGL DrawBuffer9Arb = ((int)0x882e), TextureCubeMapPositiveZExt = ((int)0x8519), StencilIndex1Ext = ((int)0x8d46), - Matrix2Arb = ((int)0x88c2), VertexWeightingExt = ((int)0x8509), ColorIndex = ((int)0x1900), - Texture26Arb = ((int)0x84da), + DeformationsMaskSgix = ((int)0x8196), Version = ((int)0x1f02), AllowDrawWinHintPgi = ((int)0x1a20f), Source0AlphaArb = ((int)0x8588), @@ -3171,7 +3124,6 @@ namespace OpenTK.OpenGL MirroredRepeatIbm = ((int)0x8370), StencilFunc = ((int)0x0b92), DepthBufferBit = ((int)0x00000100), - VertexShaderLocalConstantsExt = ((int)0x87d2), CombineRgbExt = ((int)0x8571), Map2VertexAttrib74Nv = ((int)0x8677), TextureLodBiasRSgix = ((int)0x8190), @@ -3182,8 +3134,10 @@ namespace OpenTK.OpenGL OutputTextureCoord11Ext = ((int)0x87a8), VariantArrayTypeExt = ((int)0x87e7), DualLuminanceAlpha8Sgis = ((int)0x811d), + SwizzleStrAti = ((int)0x8976), ColorIndexes = ((int)0x1603), SignedIntensity8Nv = ((int)0x8708), + AlphaBias = ((int)0x0d1d), VertexAttribArray4Nv = ((int)0x8654), UnpackLsbFirst = ((int)0x0cf1), CurrentOcclusionQueryIdNv = ((int)0x8865), @@ -3200,7 +3154,8 @@ namespace OpenTK.OpenGL Convolution1d = ((int)0x8010), Operand3AlphaNv = ((int)0x859b), RedScale = ((int)0x0d14), - DtScaleNv = ((int)0x8711), + UnsignedInt8888Reversed = ((int)0x8367), + ObjectSubtypeArb = ((int)0x8b4f), Texture12Arb = ((int)0x84cc), ETimesFNv = ((int)0x8531), VertexArrayTypeExt = ((int)0x807b), @@ -3209,36 +3164,32 @@ namespace OpenTK.OpenGL ColorArraySizeExt = ((int)0x8081), ActiveVaryingsNv = ((int)0x8c81), UnpackImageDepthSgis = ((int)0x8133), - CompressedRgb = ((int)0x84ed), + VertexProgramTwoSideNv = ((int)0x8643), UnsignedInt8888Rev = ((int)0x8367), Dot3RgbaArb = ((int)0x86af), EyePlaneAbsoluteNv = ((int)0x855c), - DepthTextureMode = ((int)0x884b), + PolygonOffsetFill = ((int)0x8037), IndexTestExt = ((int)0x81b5), BoolVec2Arb = ((int)0x8b57), YExt = ((int)0x87d6), Always = ((int)0x0207), CurrentRasterPositionValid = ((int)0x0b08), Operand1RgbExt = ((int)0x8591), - RescaleNormalExt = ((int)0x803a), - ProgramAttribsArb = ((int)0x88ac), - NormalArrayBufferBinding = ((int)0x8897), + NormalArrayBufferBinding = ((int)0x8897), FragmentLight4Sgix = ((int)0x8410), - Separable2dExt = ((int)0x8012), - PointFadeThresholdSize = ((int)0x8128), + PointFadeThresholdSize = ((int)0x8128), MaxOptimizedVertexShaderVariantsExt = ((int)0x87cb), VertexArrayRangeApple = ((int)0x851d), SluminanceAlpha = ((int)0x8c44), SpotDirection = ((int)0x1204), - Matrix6Arb = ((int)0x88c6), + ArrayNormalized = ((int)0x886a), DecrWrapExt = ((int)0x8508), Alpha12 = ((int)0x803d), CombinerCdOutputNv = ((int)0x854b), RgbIccSgix = ((int)0x8460), TextureCompressionHint = ((int)0x84ef), ResampleReplicateOml = ((int)0x8986), - MaxConvolutionHeightExt = ((int)0x801b), - ScaleByOneHalfNv = ((int)0x8540), + ScaleByOneHalfNv = ((int)0x8540), PixelMapSToSSize = ((int)0x0cb1), ArrayBufferBinding = ((int)0x8894), Map1VertexAttrib24Nv = ((int)0x8662), @@ -3251,14 +3202,14 @@ namespace OpenTK.OpenGL CompressedSrgbAlphaExt = ((int)0x8c49), DrawBuffer4Arb = ((int)0x8829), TextureCubeMapPositiveYExt = ((int)0x8517), + ProgramParameters = ((int)0x88a8), Gl2Bytes = ((int)0x1407), Modelview30Arb = ((int)0x873e), CopyInverted = ((int)0x150c), ImageRotateOriginYHp = ((int)0x815b), - Map2TextureCoord4 = ((int)0x0db6), + Matrix28 = ((int)0x88dc), FogOffsetValueSgix = ((int)0x8199), - FuncReverseSubtractExt = ((int)0x800b), - TextureBlueTypeArb = ((int)0x8c12), + TextureBlueTypeArb = ((int)0x8c12), Map2TextureCoord1 = ((int)0x0db3), Exp = ((int)0x0800), PostColorMatrixRedScale = ((int)0x80b4), @@ -3276,15 +3227,15 @@ namespace OpenTK.OpenGL ModelviewStackDepth = ((int)0x0ba3), Intensity8 = ((int)0x804b), FormatSubsample2424Oml = ((int)0x8982), - SecondaryColorArrayStrideExt = ((int)0x845c), + VertexIdNv = ((int)0x8c7b), + Modelview9Arb = ((int)0x8729), ShadowAttenuationExt = ((int)0x834e), SampleMaskSgis = ((int)0x80a0), ColorSumExt = ((int)0x8458), ClampToEdge = ((int)0x812f), NormalArrayListStrideIbm = ((int)103081), - TextureLoSizeNv = ((int)0x871c), + ColorArrayPointerExt = ((int)0x8090), TextureGreenSize = ((int)0x805d), - Texture21Arb = ((int)0x84d5), BlendDstRgb = ((int)0x80c8), TextureCompressedImageSizeArb = ((int)0x86a0), CurrentRasterSecondaryColor = ((int)0x845f), @@ -3292,31 +3243,30 @@ namespace OpenTK.OpenGL CubicExt = ((int)0x8334), TextureCompareMode = ((int)0x884c), ArrayBuffer = ((int)0x8892), + ParallelArraysIntel = ((int)0x83f4), ProxyTexture1dStackMesax = ((int)0x875b), ListIndex = ((int)0x0b33), OneMinusSrcAlpha = ((int)0x0303), + SamplesExt = ((int)0x80a9), DotProductDepthReplaceNv = ((int)0x86ed), Convolution2d = ((int)0x8011), DualIntensity16Sgis = ((int)0x811b), - ConstantAlpha = ((int)0x8003), + QueryCounterBitsArb = ((int)0x8864), OutputTextureCoord10Ext = ((int)0x87a7), Texture5Arb = ((int)0x84c5), MaxSpotExponentNv = ((int)0x8505), ObjectPointSgis = ((int)0x81f5), - ReduceExt = ((int)0x8016), - Clear = ((int)0x1500), + OffsetHiloProjectiveTexture2dNv = ((int)0x8856), CompressedLuminanceAlpha = ((int)0x84eb), FragmentShaderDerivativeHint = ((int)0x8b8b), - OpLogBase2Ext = ((int)0x8792), SelectionBufferSize = ((int)0x0df4), DepthWritemask = ((int)0x0b72), FuncSubtract = ((int)0x800a), ColorArrayBufferBinding = ((int)0x8898), - Matrix29Arb = ((int)0x88dd), AddSignedExt = ((int)0x8574), RenderbufferHeightExt = ((int)0x8d43), WExt = ((int)0x87d8), - Modelview0Ext = ((int)All.Modelview), + Modelview0Ext = ((int)0x1700), CurrentQuery = ((int)0x8865), TextureMaxClampTSgix = ((int)0x836a), EvalVertexAttrib2Nv = ((int)0x86c8), @@ -3325,8 +3275,7 @@ namespace OpenTK.OpenGL Rgb5A1Ext = ((int)0x8057), DrawBuffer0Arb = ((int)0x8825), TextureBindingCubeMapExt = ((int)0x8514), - DistanceAttenuationSgis = ((int)0x8129), - ColorBufferBit = ((int)0x00004000), + ColorBufferBit = ((int)0x00004000), MaxGeometryOutputVerticesExt = ((int)0x8de0), Map1VertexAttrib114Nv = ((int)0x866b), InvertedScreenWRend = ((int)0x8491), @@ -3342,17 +3291,14 @@ namespace OpenTK.OpenGL EvalVertexAttrib3Nv = ((int)0x86c9), FuncAdd = ((int)0x8006), SwizzleStqAti = ((int)0x8977), - Map1Color4 = ((int)0x0d90), + ProgramNativeInstructions = ((int)0x88a2), MaxTextureSize = ((int)0x0d33), TexturePriority = ((int)0x8066), - MaxProgramNativeInstructionsArb = ((int)0x88a3), - DrawBuffer3Arb = ((int)0x8828), + DrawBuffer3Arb = ((int)0x8828), ClipPlane5 = ((int)0x3005), - TextureMaxLevelSgis = ((int)0x813d), - OpMulExt = ((int)0x8786), + OpMulExt = ((int)0x8786), DualAlpha12Sgis = ((int)0x8112), CombineAlpha = ((int)0x8572), - FogCoordinate = ((int)0x8451), MaxVertexUniformComponentsArb = ((int)0x8b4a), OutputTextureCoord17Ext = ((int)0x87ae), CombineArb = ((int)0x8570), @@ -3361,9 +3307,7 @@ namespace OpenTK.OpenGL Dot3RgbaExt = ((int)0x8741), Gl4pass0Ext = ((int)0x80a4), NormalArray = ((int)0x8075), - Operand1AlphaArb = ((int)0x8599), MaxVaryingFloatsArb = ((int)0x8b4b), - Matrix7Arb = ((int)0x88c7), ModelviewMatrix = ((int)0x0ba6), Luminance32uiExt = ((int)0x8d74), EdgeFlagArrayPointer = ((int)0x8093), @@ -3375,12 +3319,9 @@ namespace OpenTK.OpenGL Alpha8uiExt = ((int)0x8d7e), PostTextureFilterBiasSgix = ((int)0x8179), IuiN3fV2fExt = ((int)0x81af), - ProgramNativeAttribsArb = ((int)0x88ae), MaxTextureLodBiasExt = ((int)0x84fd), FragmentColorExt = ((int)0x834c), - ColorTableGreenSizeSgi = ((int)0x80db), - MaxFogFuncPointsSgis = ((int)0x812c), - Intensity32uiExt = ((int)0x8d73), + MaxFogFuncPointsSgis = ((int)0x812c), Matrix0Nv = ((int)0x8630), CompressedSrgbAlphaS3tcDxt3Ext = ((int)0x8c4e), Luminance8Alpha8Ext = ((int)0x8045), @@ -3393,33 +3334,35 @@ namespace OpenTK.OpenGL TextureMinFilter = ((int)0x2801), Rgb32iExt = ((int)0x8d83), FragmentShaderAti = ((int)0x8920), - FogCoordArrayStride = ((int)Version14.FogCoordinateArrayStride), + FogCoordArrayStride = ((int)0x8455), Texture2 = ((int)0x84c2), - UnsignedInt1010102Ext = ((int)0x8036), - StencilAttachmentExt = ((int)0x8d20), - Rgb10A2 = ((int)0x8059), + StencilAttachmentExt = ((int)0x8d20), + MaxProgramParameterBufferSizeNv = ((int)0x8da1), Doublebuffer = ((int)0x0c32), EvalVertexAttrib6Nv = ((int)0x86cc), SampleAlphaToMaskExt = ((int)0x809e), MaxShininessNv = ((int)0x8504), - MaxProgramParametersArb = ((int)0x88a9), + UnsignedIntSampler1dExt = ((int)0x8dd1), ObjectDistanceToLineSgis = ((int)0x81f3), - Src0Rgb = ((int)Version13.Source0Rgb), Texture1dStackBindingMesax = ((int)0x875d), Matrix3Nv = ((int)0x8633), FramebufferIncompleteLayerCountExt = ((int)0x8da9), + MaxProgramInstructions = ((int)0x88a1), OneMinusConstantAlpha = ((int)0x8004), CullFaceMode = ((int)0x0b45), PixelMapIToGSize = ((int)0x0cb3), AndReverse = ((int)0x1502), FogCoordinateArrayListIbm = ((int)103076), + ProgramNativeAttribs = ((int)0x88ae), UnsignedInt2101010Rev = ((int)0x8368), BiasByNegativeOneHalfNv = ((int)0x8541), InterlaceReadIngr = ((int)0x8568), ColorTableBias = ((int)0x80d7), FloatRgb16Nv = ((int)0x8888), + Map1VertexAttrib74Nv = ((int)0x8667), GenericAttribNv = ((int)0x8c7d), Map2Vertex4 = ((int)0x0db8), + Matrix24 = ((int)0x88d8), StencilBackPassDepthFailAti = ((int)0x8802), Map2Vertex3 = ((int)0x0db7), TextureCoordNv = ((int)0x8c79), @@ -3427,27 +3370,25 @@ namespace OpenTK.OpenGL Map2VertexAttrib84Nv = ((int)0x8678), AsyncReadPixelsSgix = ((int)0x835e), ColorIndex12Ext = ((int)0x80e6), - ReplicateBorderHp = ((int)0x8153), - SampleMaskValueSgis = ((int)0x80aa), + SampleMaskValueSgis = ((int)0x80aa), PostColorMatrixColorTable = ((int)0x80d2), Gl4pass0Sgis = ((int)0x80a4), IndexArrayStride = ((int)0x8086), Bitmap = ((int)0x1a00), - NumInstructionsPerPassAti = ((int)0x8971), T2fIuiN3fV2fExt = ((int)0x81b3), - PostColorMatrixBlueBiasSgi = ((int)0x80ba), - MinmaxFormat = ((int)0x802f), + MinmaxFormat = ((int)0x802f), EvalVertexAttrib0Nv = ((int)0x86c6), OrReverse = ((int)0x150b), Srgb = ((int)0x8c40), + ArraySize = ((int)0x8623), AverageExt = ((int)0x8335), TextureLuminanceSize = ((int)0x8060), LinearSharpenColorSgis = ((int)0x80af), - Matrix11Arb = ((int)0x88cb), + FramebufferAttachmentLayeredExt = ((int)0x8da7), Rgb9E5Ext = ((int)0x8c3d), AlphaBits = ((int)0x0d55), Texture2dStackMesax = ((int)0x875a), - Matrix8Arb = ((int)0x88c8), + Sluminance8 = ((int)0x8c47), Con7Ati = ((int)0x8948), Luminance12Alpha4 = ((int)0x8046), TextureGenS = ((int)0x0c60), @@ -3458,6 +3399,7 @@ namespace OpenTK.OpenGL TextureGenT = ((int)0x0c61), CmykExt = ((int)0x800c), EvalVertexAttrib1Nv = ((int)0x86c7), + PostConvolutionRedBias = ((int)0x8020), OpFracExt = ((int)0x8789), TextureBit = ((int)0x00040000), Map2VertexAttrib24Nv = ((int)0x8672), @@ -3467,11 +3409,10 @@ namespace OpenTK.OpenGL MultisampleExt = ((int)0x809d), DrawBuffer0 = ((int)0x8825), TextureCoordArrayPointer = ((int)0x8092), - MatEmissionBitPgi = ((int)0x00800000), Samples3dfx = ((int)0x86b4), Rgba32fArb = ((int)0x8814), SeparateSpecularColor = ((int)0x81fa), - TriangleStripAdjacencyExt = ((int)0x000d), + Aux0 = ((int)0x0409), StackUnderflow = ((int)0x0504), ConstantArb = ((int)0x8576), MaxFragmentUniformComponentsArb = ((int)0x8b49), @@ -3482,30 +3423,27 @@ namespace OpenTK.OpenGL PackRowLength = ((int)0x0d02), RenderbufferBindingExt = ((int)0x8ca7), SmoothPointSizeRange = ((int)0x0b12), - BlendDstAlphaExt = ((int)0x80ca), Con16Ati = ((int)0x8951), - DrawBuffer7Ati = ((int)0x882c), AddAti = ((int)0x8963), + Matrix12 = ((int)0x88cc), VertexArrayType = ((int)0x807b), VertexAttribArrayBufferBinding = ((int)0x889f), CurrentMatrixIndexArb = ((int)0x8845), RgbaIccSgix = ((int)0x8461), - TextureBaseLevelSgis = ((int)0x813c), - GenerateMipmapHintSgis = ((int)0x8192), - OutputTextureCoord14Ext = ((int)0x87ab), + OutputTextureCoord14Ext = ((int)0x87ab), + MaxTextureImageUnitsNv = ((int)0x8872), Gl3d = ((int)0x0601), IndexWritemask = ((int)0x0c21), Position = ((int)0x1203), + ProgramNativeParameters = ((int)0x88aa), VertexAttribArray3Nv = ((int)0x8653), Con17Ati = ((int)0x8952), - Aux0 = ((int)0x0409), + DynamicDrawArb = ((int)0x88e8), BumpRotMatrixAti = ((int)0x8775), - OffsetTexture2dBiasNv = ((int)NvTextureShader.OffsetTextureBiasNv), + OffsetTexture2dBiasNv = ((int)0x86e3), RenderbufferAlphaSizeExt = ((int)0x8d53), Combiner5Nv = ((int)0x8555), - TextureMaterialFaceExt = ((int)0x8351), Gl422RevAverageExt = ((int)0x80cf), - VertexAttribArrayTypeArb = ((int)0x8625), WrapBorderSun = ((int)0x81d4), OutputVertexExt = ((int)0x879a), ElementArrayTypeApple = ((int)0x8769), @@ -3513,49 +3451,42 @@ namespace OpenTK.OpenGL Combine4Nv = ((int)0x8503), FloatVec4Arb = ((int)0x8b52), ReplacementCodeArrayTypeSun = ((int)0x85c1), - SamplesArb = ((int)0x80a9), - ProgramNativeTexInstructionsArb = ((int)0x8809), - ColorTableFormatSgi = ((int)0x80d8), - ProxyTextureColorTableSgi = ((int)0x80bd), - ProgramLengthArb = ((int)0x8627), + ProgramNativeTexInstructionsArb = ((int)0x8809), + ProxyTextureColorTableSgi = ((int)0x80bd), Map2VertexAttrib14Nv = ((int)0x8671), MaxViewportDims = ((int)0x0d3a), - ColorTableScaleSgi = ((int)0x80d6), - AlphaMaxSgix = ((int)0x8321), - UnsignedIntSampler1dExt = ((int)0x8dd1), + AlphaMaxSgix = ((int)0x8321), PixelCubicWeightExt = ((int)0x8333), - ProxyPostConvolutionColorTableSgi = ((int)0x80d4), - DrawFramebufferBindingExt = ((int)0x8caa), + DrawFramebufferBindingExt = ((int)0x8caa), EvalVertexAttrib5Nv = ((int)0x86cb), TextureComponents = ((int)0x1003), + Map2TextureCoord4 = ((int)0x0db6), Map2TextureCoord2 = ((int)0x0db4), Map2TextureCoord3 = ((int)0x0db5), RenderbufferColorSamplesNv = ((int)0x8e10), MaxRenderbufferSizeExt = ((int)0x84e8), + Matrix18 = ((int)0x88d2), Mult = ((int)0x0103), ImageScaleYHp = ((int)0x8156), ColorIndex8Ext = ((int)0x80e5), - DudvAti = ((int)0x8779), StencilBackPassDepthPassAti = ((int)0x8803), Modelview0Arb = ((int)0x1700), - StencilBackFailAti = ((int)0x8801), SamplerCubeArb = ((int)0x8b60), BlendColor = ((int)0x8005), C3fV3f = ((int)0x2a24), - UnsignedShort4444Ext = ((int)0x8033), - DetailTexture2dBindingSgis = ((int)0x8096), - Sluminance8 = ((int)0x8c47), + DetailTexture2dBindingSgis = ((int)0x8096), + FloatRgbNv = ((int)0x8882), ReplacementCodeArrayPointerSun = ((int)0x85c3), DrawPixelToken = ((int)0x0705), PointSizeGranularity = ((int)0x0b13), RgbScaleExt = ((int)0x8573), Max = ((int)0x8008), TriangleFan = ((int)0x0006), - ImageScaleXHp = ((int)0x8155), + Con12Ati = ((int)0x894d), QuadIntensity8Sgis = ((int)0x8123), UnpackSkipPixels = ((int)0x0cf4), LineLoop = ((int)0x0002), - MaxProgramNativeAttribsArb = ((int)0x88af), + BlendDstAlphaExt = ((int)0x80ca), DualIntensity8Sgis = ((int)0x8119), Map1VertexAttrib154Nv = ((int)0x866f), Alpha12Ext = ((int)0x803d), @@ -3567,7 +3498,7 @@ namespace OpenTK.OpenGL QuadAlpha8Sgis = ((int)0x811f), VertexAttribArrayBufferBindingArb = ((int)0x889f), Source0RgbExt = ((int)0x8580), - SwizzleStrAti = ((int)0x8976), + V2f = ((int)0x2a20), FloatRgbaNv = ((int)0x8883), IdentityNv = ((int)0x862a), InvalidOperation = ((int)0x0502), @@ -3575,7 +3506,6 @@ namespace OpenTK.OpenGL AllowDrawObjHintPgi = ((int)0x1a20e), Map2VertexAttrib04Nv = ((int)0x8670), LinearDetailColorSgis = ((int)0x8099), - ProgramStringArb = ((int)0x8628), SampleAlphaToOne = ((int)0x809f), VertexProgramTwoSide = ((int)0x8643), ActiveAttributes = ((int)0x8b89), @@ -3583,29 +3513,27 @@ namespace OpenTK.OpenGL Luminance8Alpha8 = ((int)0x8045), DrawPixelsApple = ((int)0x8a0a), ValidateStatus = ((int)0x8b83), + Texture31Arb = ((int)0x84df), ClampToBorder = ((int)0x812d), DepthClampNv = ((int)0x864f), R11fG11fB10fExt = ((int)0x8c3a), PointSizeMin = ((int)0x8126), AccumBufferBit = ((int)0x00000200), Texture15Arb = ((int)0x84cf), - Matrix1Arb = ((int)0x88c1), - PrimaryColorNv = ((int)0x852c), VertexProgramNv = ((int)0x8620), PreserveAti = ((int)0x8762), UnsignedIntSamplerBufferExt = ((int)0x8dd8), - Map2VertexAttrib54Nv = ((int)0x8675), + MaxElementsIndices = ((int)0x80e9), DotProductConstEyeReflectCubeMapNv = ((int)0x86f3), VertexProgramTwoSideArb = ((int)0x8643), QuadIntensity4Sgis = ((int)0x8122), - ProxyPostColorMatrixColorTableSgi = ((int)0x80d5), - SampleMaskValueExt = ((int)0x80aa), + SampleMaskValueExt = ((int)0x80aa), ImageMinFilterHp = ((int)0x815d), Con14Ati = ((int)0x894f), Texcoord2BitPgi = ((int)0x20000000), LuminanceAlphaIntegerExt = ((int)0x8d9d), PixelTileCacheSizeSgix = ((int)0x8145), - Matrix0Arb = ((int)0x88c0), + CurrentVertexWeightExt = ((int)0x850b), Sampler1dArrayExt = ((int)0x8dc0), Rgba16uiExt = ((int)0x8d76), BlueMaxClampIngr = ((int)0x8566), @@ -3628,10 +3556,8 @@ namespace OpenTK.OpenGL BlendSrcRgbExt = ((int)0x80c9), Right = ((int)0x0407), MaxAsyncDrawPixelsSgix = ((int)0x8360), - FragmentProgramArb = ((int)0x8804), Con1Ati = ((int)0x8942), OffsetTextureBiasNv = ((int)0x86e3), - Matrix3Arb = ((int)0x88c3), ObjectLineSgis = ((int)0x81f7), ActiveTextureArb = ((int)0x84e0), SampleAlphaToOneSgis = ((int)0x809f), @@ -3639,11 +3565,10 @@ namespace OpenTK.OpenGL DrawBuffer15Ati = ((int)0x8834), MaxCubeMapTextureSizeArb = ((int)0x851c), UnsignedInt1010102 = ((int)0x8036), - Matrix15Arb = ((int)0x88cf), - DrawFramebufferExt = ((int)0x8ca9), UnpackConstantDataSunx = ((int)0x81d5), Rgba4Ext = ((int)0x8056), UnpackClientStorageApple = ((int)0x85b2), + FloatMat2Arb = ((int)0x8b5a), Alpha16Ext = ((int)0x803e), DrawBuffer11 = ((int)0x8830), CurrentIndex = ((int)0x0b01), @@ -3654,11 +3579,11 @@ namespace OpenTK.OpenGL TransformFeedbackRecordNv = ((int)0x8c86), BlueBias = ((int)0x0d1b), MirroredRepeatArb = ((int)0x8370), - Matrix28Arb = ((int)0x88dc), ColorArray = ((int)0x8076), AlphaTest = ((int)0x0bc0), Multisample3dfx = ((int)0x86b2), ActiveVertexUnitsArb = ((int)0x86a5), + AliasedPointSizeRange = ((int)0x846d), DrawBuffer13Ati = ((int)0x8832), Double = ((int)0x140a), FogColor = ((int)0x0b66), @@ -3666,42 +3591,36 @@ namespace OpenTK.OpenGL Texture24 = ((int)0x84d8), Texture25 = ((int)0x84d9), Texture22 = ((int)0x84d6), - PointSizeMinArb = ((int)0x8126), - Texture20 = ((int)0x84d4), + ProgramAluInstructionsArb = ((int)0x8805), Texture21 = ((int)0x84d5), RgbFloat16Ati = ((int)0x881b), - Matrix5Arb = ((int)0x88c5), + MaxProgramParameters = ((int)0x88a9), + T2fIuiN3fV3fExt = ((int)0x81b4), T2fC4fN3fV3f = ((int)0x2a2c), R1uiT2fN3fV3fSun = ((int)0x85ca), Texture28 = ((int)0x84dc), Texture29 = ((int)0x84dd), SignedIntensityNv = ((int)0x8707), - PointSizeMaxArb = ((int)0x8127), - Con10Ati = ((int)0x894b), - MaxProgramInstructionsArb = ((int)0x88a1), + Con10Ati = ((int)0x894b), Specular = ((int)0x1202), - PreviousArb = ((int)0x8578), - PostConvolutionRedBias = ((int)0x8020), - Matrix31Arb = ((int)0x88df), + Map1Color4 = ((int)0x0d90), + Src0Alpha = ((int)0x8588), IndexLogicOp = ((int)0x0bf1), - QueryCounterBitsArb = ((int)0x8864), + BinormalArrayStrideExt = ((int)0x8441), NormalArrayPointer = ((int)0x808f), CompressedSluminance = ((int)0x8c4a), - MaxProgramTemporariesArb = ((int)0x88a5), MagnitudeScaleNv = ((int)0x8712), AddSignedArb = ((int)0x8574), BufferUsageArb = ((int)0x8765), - MinExt = ((int)0x8007), - Sampler2d = ((int)0x8b5e), + Sampler2d = ((int)0x8b5e), TextureTooLargeExt = ((int)0x8065), VertexAttribArray5Nv = ((int)0x8655), - Matrix4Arb = ((int)0x88c4), SignedLuminanceAlphaNv = ((int)0x8703), MaxOptimizedVertexShaderInvariantsExt = ((int)0x87cd), CurrentQueryArb = ((int)0x8865), TransformFeedbackAttribsNv = ((int)0x8c7e), PixelMapRToRSize = ((int)0x0cb6), - HistogramAlphaSizeExt = ((int)0x802b), + MaxProgramIfDepthNv = ((int)0x88f6), UnsignedShort565 = ((int)0x8363), MultisampleBit = ((int)0x20000000), LogicOpMode = ((int)0x0bf0), @@ -3709,7 +3628,7 @@ namespace OpenTK.OpenGL CompressedSrgbExt = ((int)0x8c48), StencilBackFuncAti = ((int)0x8800), AliasedLineWidthRange = ((int)0x846e), - Source2Alpha = ((int)0x858a), + DudvAti = ((int)0x8779), DepthComponent32 = ((int)0x81a7), MaxProgramMatrixStackDepthArb = ((int)0x862e), Operand1AlphaExt = ((int)0x8599), @@ -3719,7 +3638,9 @@ namespace OpenTK.OpenGL StencilWritemask = ((int)0x0b98), RasterPositionUnclippedIbm = ((int)0x19262), HiBiasNv = ((int)0x8714), + Dot3Ati = ((int)0x8966), TextureMaxClampSSgix = ((int)0x8369), + CompressedSignedLuminanceAlphaLatc2Ext = ((int)0x8c73), Invert = ((int)0x150a), Luminance4Alpha4 = ((int)0x8043), Map1VertexAttrib144Nv = ((int)0x866e), @@ -3730,10 +3651,11 @@ namespace OpenTK.OpenGL PixelUnpackBufferExt = ((int)0x88ec), VertexAttribArray6Nv = ((int)0x8656), Map2GridSegments = ((int)0x0dd3), + Matrix4 = ((int)0x88c4), CurrentMatrixNv = ((int)0x8641), DepthTextureModeArb = ((int)0x884b), Rgba16fArb = ((int)0x881a), - FogCoordArrayType = ((int)Version14.FogCoordinateArrayType), + FogCoordArrayType = ((int)0x8454), Decal = ((int)0x2101), FramebufferSrgbCapableExt = ((int)0x8dba), MirrorClampToEdgeExt = ((int)0x8743), @@ -3747,24 +3669,20 @@ namespace OpenTK.OpenGL TextureLuminanceSizeExt = ((int)0x8060), PixelModeBit = ((int)0x00000020), CombinerSumOutputNv = ((int)0x854c), - MinmaxExt = ((int)0x802e), - TextureFilterControlExt = ((int)0x8500), + TextureFilterControlExt = ((int)0x8500), PolygonMode = ((int)0x0b40), LinearAttenuation = ((int)0x1208), - MaxProgramAttribsArb = ((int)0x88ad), - FloatMat4x3 = ((int)0x8b6a), + FloatMat4x2 = ((int)0x8b69), CompressedSrgbAlpha = ((int)0x8c49), ColorClearValue = ((int)0x0c22), MvpMatrixExt = ((int)0x87e3), MaxProgramGenericAttribsNv = ((int)0x8da5), OpSubExt = ((int)0x8796), Alpha32iExt = ((int)0x8d84), - VertexAttribArrayPointer = ((int)0x8645), FragmentLightingSgix = ((int)0x8400), ProgramParameterNv = ((int)0x8644), - ConvolutionHeightExt = ((int)0x8019), - MinProgramTexelOffsetNv = ((int)0x8904), - VertexAttribArrayNormalized = ((int)0x886a), + MinProgramTexelOffsetNv = ((int)0x8904), + MaxTransformFeedbackSeparateComponentsNv = ((int)0x8c80), TextureCubeMapPositiveXExt = ((int)0x8515), LineStipple = ((int)0x0b24), VertexWeightArrayStrideExt = ((int)0x850f), @@ -3772,7 +3690,7 @@ namespace OpenTK.OpenGL ImplementationColorReadFormatOes = ((int)0x8b9b), Bgr = ((int)0x80e0), Modelview25Arb = ((int)0x8739), - RenderbufferSamplesExt = ((int)0x8cab), + CombinerInputNv = ((int)0x8542), Modelview21Arb = ((int)0x8735), InverseNv = ((int)0x862b), OutputTextureCoord25Ext = ((int)0x87b6), @@ -3784,22 +3702,19 @@ namespace OpenTK.OpenGL InterpolateExt = ((int)0x8575), OutputTextureCoord7Ext = ((int)0x87a4), Reg5Ati = ((int)0x8926), - FogCoordArrayPointer = ((int)Version14.FogCoordinateArrayPointer), + FogCoordArrayPointer = ((int)0x8456), FogCoordinateArrayPointerExt = ((int)0x8456), ColorTableAlphaSize = ((int)0x80dd), OffsetTextureRectangleNv = ((int)0x864c), QueryResult = ((int)0x8866), - FramebufferAttachmentLayeredExt = ((int)0x8da7), - ColorTableRedSizeSgi = ((int)0x80da), - EvalVertexAttrib12Nv = ((int)0x86d2), + EvalVertexAttrib12Nv = ((int)0x86d2), ClientPixelStoreBit = ((int)0x00000001), YcrcbaSgix = ((int)0x8319), PixelGroupColorSgis = ((int)0x8356), Diffuse = ((int)0x1201), LineResetToken = ((int)0x0707), MaxProgramTexIndirectionsArb = ((int)0x880d), - UnsignedByte332Ext = ((int)0x8032), - Reg25Ati = ((int)0x893a), + Reg25Ati = ((int)0x893a), Dot2AddAti = ((int)0x896c), ListMode = ((int)0x0b30), ColorClearUnclampedValueAti = ((int)0x8835), @@ -3817,16 +3732,14 @@ namespace OpenTK.OpenGL ElementArrayPointerApple = ((int)0x876a), SphereMap = ((int)0x2402), Map2Index = ((int)0x0db1), - UnsignedShort565Ext = ((int)0x8363), - DualAlpha16Sgis = ((int)0x8113), + DualAlpha16Sgis = ((int)0x8113), Rgb10A2Ext = ((int)0x8059), InterlaceOml = ((int)0x8980), EdgeFlag = ((int)0x0b43), MaxModelviewStackDepth = ((int)0x0d36), FogScaleSgix = ((int)0x81fc), DualAlpha8Sgis = ((int)0x8111), - PackSkipImagesExt = ((int)0x806b), - Rgba = ((int)0x1908), + Rgba = ((int)0x1908), PerturbExt = ((int)0x85ae), FrontAndBack = ((int)0x0408), Modelview20Arb = ((int)0x8734), @@ -3834,8 +3747,7 @@ namespace OpenTK.OpenGL SamplesSgis = ((int)0x80a9), Con18Ati = ((int)0x8953), TextureBinding1dArrayExt = ((int)0x8c1c), - MinmaxFormatExt = ((int)0x802f), - StencilFail = ((int)0x0b94), + StencilFail = ((int)0x0b94), CurrentMatrixArb = ((int)0x8641), Reg27Ati = ((int)0x893c), ObjectBufferSizeAti = ((int)0x8764), @@ -3843,6 +3755,7 @@ namespace OpenTK.OpenGL FragmentLight7Sgix = ((int)0x8413), PrimaryColorArb = ((int)0x8577), ReadBuffer = ((int)0x0c02), + MaxProgramTemporaries = ((int)0x88a5), ActiveUniforms = ((int)0x8b86), Dsdt8Mag8Nv = ((int)0x870a), Reduce = ((int)0x8016), @@ -3859,27 +3772,27 @@ namespace OpenTK.OpenGL DualAlpha4Sgis = ((int)0x8110), TextureRectangleArb = ((int)0x84f5), Luminance16IccSgix = ((int)0x8469), + IncrWrap = ((int)0x8507), TextureStackDepth = ((int)0x0ba5), - IndexBitPgi = ((int)0x00080000), LuminanceAlpha16iExt = ((int)0x8d8d), ObjectActiveAttributeMaxLengthArb = ((int)0x8b8a), MirrorClampToEdgeAti = ((int)0x8743), - MaxProgramParameterBufferSizeNv = ((int)0x8da1), + DepthStencilExt = ((int)0x84f9), AlphaIccSgix = ((int)0x8462), Alpha32fArb = ((int)0x8816), DstAlpha = ((int)0x0304), Lines = ((int)0x0001), LogicOp = ((int)0x0bf1), Reg21Ati = ((int)0x8936), - OffsetTexture2dScaleNv = ((int)NvTextureShader.OffsetTextureScaleNv), + OffsetTexture2dScaleNv = ((int)0x86e2), ConvolutionBorderMode = ((int)0x8013), IntVec3Arb = ((int)0x8b54), CullFragmentNv = ((int)0x86e7), RegisterCombinersNv = ((int)0x8522), Texture1 = ((int)0x84c1), VertexAttribArray1Nv = ((int)0x8651), - ProxyColorTableSgi = ((int)0x80d3), - FullRangeExt = ((int)0x87e1), + Matrix14 = ((int)0x88ce), + FullRangeExt = ((int)0x87e1), Modelview27Arb = ((int)0x873b), ColorAttachment7Ext = ((int)0x8ce7), UnsignedInt8888 = ((int)0x8035), @@ -3889,6 +3802,7 @@ namespace OpenTK.OpenGL RenderbufferInternalFormatExt = ((int)0x8d44), MaxVertexUniformComponents = ((int)0x8b4a), ColorTableFormat = ((int)0x80d8), + ProgramString = ((int)0x8628), ObjectTypeArb = ((int)0x8b4e), FramebufferAttachmentTexture3dZoffsetExt = ((int)0x8cd4), EdgeFlagArrayExt = ((int)0x8079), @@ -3900,16 +3814,14 @@ namespace OpenTK.OpenGL ColorIndex4Ext = ((int)0x80e4), CompressedRedRgtc1Ext = ((int)0x8dbb), SampleMaskInvertSgis = ((int)0x80ab), - BgraExt = ((int)0x80e1), - CompressedSrgbS3tcDxt1Ext = ((int)0x8c4c), + CompressedSrgbS3tcDxt1Ext = ((int)0x8c4c), CompressedSrgbAlphaS3tcDxt1Ext = ((int)0x8c4d), Modelview24Arb = ((int)0x8738), RgbIntegerExt = ((int)0x8d98), Map1VertexAttrib84Nv = ((int)0x8668), Reg23Ati = ((int)0x8938), PixelSubsample2424Sgix = ((int)0x85a3), - PostConvolutionBlueBiasExt = ((int)0x8022), - Operand1Rgb = ((int)0x8591), + Operand1Rgb = ((int)0x8591), NormalBitPgi = ((int)0x08000000), BlendEquationAlphaExt = ((int)0x883d), EnableBit = ((int)0x00002000), @@ -3923,6 +3835,7 @@ namespace OpenTK.OpenGL VertexAttribArrayIntegerNv = ((int)0x88fd), StorageSharedApple = ((int)0x85bf), PixelMapIToASize = ((int)0x0cb5), + TextureLoSizeNv = ((int)0x871c), ReferencePlaneSgix = ((int)0x817d), ProxyTextureRectangleArb = ((int)0x84f7), PixelMinFilterExt = ((int)0x8332), @@ -3932,23 +3845,18 @@ namespace OpenTK.OpenGL SrcColor = ((int)0x0300), TextureCoordArray = ((int)0x8078), TextureCoordArrayCountExt = ((int)0x808b), - FogCoordinateArrayPointer = ((int)0x8456), GreenBias = ((int)0x0d19), OutputTextureCoord27Ext = ((int)0x87b8), - UnsignedInt8888RevExt = ((int)0x8367), - Luminance16uiExt = ((int)0x8d7a), + Luminance16uiExt = ((int)0x8d7a), Rgb16uiExt = ((int)0x8d77), CurrentRasterColor = ((int)0x0b04), IntensityFloat32Ati = ((int)0x8817), - MatSpecularBitPgi = ((int)0x04000000), + MatEmissionBitPgi = ((int)0x00800000), DrawBuffer6 = ((int)0x882b), - DrawBuffer7 = ((int)0x882c), ImageCubicWeightHp = ((int)0x815e), MaxMultisampleCoverageModesNv = ((int)0x8e11), - MaxProgramLocalParametersArb = ((int)0x88b4), LineStippleRepeat = ((int)0x0b26), Texture2dBindingExt = ((int)0x8069), - MaxProgramAddressRegistersArb = ((int)0x88b1), RedBits = ((int)0x0d52), VertexWeightArrayTypeExt = ((int)0x850e), UnpackSkipRows = ((int)0x0cf3), @@ -3959,7 +3867,7 @@ namespace OpenTK.OpenGL ObjectDistanceToPointSgis = ((int)0x81f1), IuiV2fExt = ((int)0x81ad), TransformFeedbackPrimitivesWrittenNv = ((int)0x8c88), - Src1Rgb = ((int)Version13.Source1Rgb), + Src1Rgb = ((int)0x8581), SamplesPassedArb = ((int)0x8914), Alpha16 = ((int)0x803e), PolygonOffsetBiasExt = ((int)0x8039), @@ -3978,6 +3886,7 @@ namespace OpenTK.OpenGL BlendSrcAlphaExt = ((int)0x80cb), UnsignedByte332 = ((int)0x8032), CullVertexExt = ((int)0x81aa), + ProgramAddressRegisters = ((int)0x88b0), VertexArrayRangeLengthApple = ((int)0x851e), IndexClearValue = ((int)0x0c20), ProxyTextureCubeMapExt = ((int)0x851b), @@ -3986,7 +3895,7 @@ namespace OpenTK.OpenGL CurrentPaletteMatrixArb = ((int)0x8843), GeometryProgramParameterBufferNv = ((int)0x8da3), WeightArraySizeArb = ((int)0x86ab), - SignedAlphaNv = ((int)0x8705), + Matrix22 = ((int)0x88d6), PostColorMatrixAlphaScale = ((int)0x80b7), LinearSharpenSgis = ((int)0x80ad), Source1RgbExt = ((int)0x8581), @@ -4009,7 +3918,8 @@ namespace OpenTK.OpenGL ColorAttachment3Ext = ((int)0x8ce3), ElementArrayAti = ((int)0x8768), ProgramTargetNv = ((int)0x8646), - ColorArraySize = ((int)0x8081), + FramebufferIncompleteLayerTargetsExt = ((int)0x8da8), + ImageScaleXHp = ((int)0x8155), TextureAlphaTypeArb = ((int)0x8c13), Feedback = ((int)0x1c01), PolygonOffsetLine = ((int)0x2a02), @@ -4023,6 +3933,7 @@ namespace OpenTK.OpenGL CurrentSecondaryColorExt = ((int)0x8459), NearestClipmapLinearSgix = ((int)0x844e), TextureCoordArrayParallelPointersIntel = ((int)0x83f8), + FragmentProgram = ((int)0x8804), SecondaryColorArrayTypeExt = ((int)0x845b), PixelPackBufferExt = ((int)0x88eb), DotProductTexture2dNv = ((int)0x86ee), @@ -4031,12 +3942,11 @@ namespace OpenTK.OpenGL Map1VertexAttrib34Nv = ((int)0x8663), ColorTableScale = ((int)0x80d6), Cw = ((int)0x0900), - ColorTableBlueSizeSgi = ((int)0x80dc), - LinearClipmapNearestSgix = ((int)0x844f), + LinearClipmapNearestSgix = ((int)0x844f), FrontLeft = ((int)0x0400), NumFragmentConstantsAti = ((int)0x896f), FragmentLightModelLocalViewerSgix = ((int)0x8408), - ConstantColorExt = ((int)0x8001), + DtScaleNv = ((int)0x8711), DotProductReflectCubeMapNv = ((int)0x86f2), Ycbcr422Apple = ((int)0x85b9), EdgeFlagArrayBufferBindingArb = ((int)0x889b), @@ -4048,15 +3958,14 @@ namespace OpenTK.OpenGL MaxAttribStackDepth = ((int)0x0d35), MaxProgramGenericResultsNv = ((int)0x8da6), Texture27Arb = ((int)0x84db), - ReadFramebufferBindingExt = ((int)ExtFramebufferObject.FramebufferBindingExt), + ReadFramebufferBindingExt = ((int)0x8ca6), Zero = ((int)0), TextureRectangleNv = ((int)0x84f5), Rgb16fArb = ((int)0x881b), TangentArrayTypeExt = ((int)0x843e), - VariableCNv = ((int)0x8525), BlendEquationAlpha = ((int)0x883d), OutputColor0Ext = ((int)0x879b), - StreamRead = ((int)0x88e1), + MaxTrackMatricesNv = ((int)0x862f), HistogramAlphaSize = ((int)0x802b), LuminanceAlpha = ((int)0x190a), ColorArrayExt = ((int)0x8076), @@ -4068,7 +3977,7 @@ namespace OpenTK.OpenGL AlphaFloat32Ati = ((int)0x8816), CombinerAbOutputNv = ((int)0x854a), Multisample = ((int)0x809d), - OffsetHiloProjectiveTexture2dNv = ((int)0x8856), + ColorAttachment6Ext = ((int)0x8ce6), ClipFarHintPgi = ((int)0x1a221), Texture1dBindingExt = ((int)0x8068), InverseTransposeNv = ((int)0x862d), @@ -4081,9 +3990,7 @@ namespace OpenTK.OpenGL YcrcbSgix = ((int)0x8318), WeightArrayStrideArb = ((int)0x86aa), DrawBuffer14Arb = ((int)0x8833), - BlendColorExt = ((int)0x8005), - ColorTableIntensitySizeSgi = ((int)0x80df), - VertexArrayBufferBinding = ((int)0x8896), + VertexArrayBufferBinding = ((int)0x8896), ColorIndex2Ext = ((int)0x80e3), MaxFramezoomFactorSgix = ((int)0x818d), AccumGreenBits = ((int)0x0d59), @@ -4101,29 +4008,27 @@ namespace OpenTK.OpenGL CompileStatus = ((int)0x8b81), CullFace = ((int)0x0b44), MaxClipmapVirtualDepthSgix = ((int)0x8178), - ConstantBorderHp = ((int)0x8151), - LightingBit = ((int)0x00000040), + LightingBit = ((int)0x00000040), ColorIndex1Ext = ((int)0x80e2), + ProgramFormat = ((int)0x8876), ClipPlane0 = ((int)0x3000), InvalidFramebufferOperationExt = ((int)0x0506), Texture20Arb = ((int)0x84d4), - LightModelColorControlExt = ((int)0x81f8), - MaxPnTrianglesTesselationLevelAti = ((int)0x87f1), + MaxPnTrianglesTesselationLevelAti = ((int)0x87f1), Reg29Ati = ((int)0x893e), PostConvolutionAlphaScale = ((int)0x801f), Modelview22Arb = ((int)0x8736), MaxClientAttribStackDepth = ((int)0x0d3b), ElementArrayApple = ((int)0x8768), - Modelview26Arb = ((int)0x873a), - HalfFloatNv = ((int)0x140b), + BlendEquation = ((int)0x8009), + ProgramUnderNativeLimits = ((int)0x88b6), MaxVertexShaderInstructionsExt = ((int)0x87c5), SignedLuminanceNv = ((int)0x8701), Reg6Ati = ((int)0x8927), Light2 = ((int)0x4002), AsyncDrawPixelsSgix = ((int)0x835d), MirrorClampAti = ((int)0x8742), - PostColorMatrixGreenScaleSgi = ((int)0x80b5), - ClipDistanceNv = ((int)0x8c7a), + ClipDistanceNv = ((int)0x8c7a), CompressedRgbaFxt13dfx = ((int)0x86b1), GenerateMipmap = ((int)0x8191), MaxProgramMatricesArb = ((int)0x862f), @@ -4131,21 +4036,20 @@ namespace OpenTK.OpenGL Reg9Ati = ((int)0x892a), Vendor = ((int)0x1f00), FrontRight = ((int)0x0401), - MaxColorMatrixStackDepthSgi = ((int)0x80b3), - ArrayObjectOffsetAti = ((int)0x8767), + ArrayObjectOffsetAti = ((int)0x8767), TextureMagSizeNv = ((int)0x871f), HalfBiasNormalNv = ((int)0x853a), ReplicateBorder = ((int)0x8153), PostTextureFilterScaleRangeSgix = ((int)0x817c), EvalVertexAttrib15Nv = ((int)0x86d5), Alpha16IccSgix = ((int)0x8468), - Matrix12Arb = ((int)0x88cc), MaxProgramLoopCountNv = ((int)0x88f8), + ConstEyeNv = ((int)0x86e5), + Matrix21 = ((int)0x88d5), StaticReadArb = ((int)0x88e5), Texture14Arb = ((int)0x84ce), - Intensity8uiExt = ((int)0x8d7f), + Matrix11 = ((int)0x88cb), Luminance32fArb = ((int)0x8818), - ProgramUnderNativeLimitsArb = ((int)0x88b6), Vertex4BitPgi = ((int)0x00000008), AllCompletedNv = ((int)0x84f2), Three = ((int)3), @@ -4156,28 +4060,24 @@ namespace OpenTK.OpenGL Texture1dArrayExt = ((int)0x8c18), DrawBuffer4Ati = ((int)0x8829), MaxTextureBufferSizeExt = ((int)0x8c2b), - PointSizeMinExt = ((int)0x8126), - StencilBackFail = ((int)0x8801), + StencilBackFail = ((int)0x8801), ColorSumClampNv = ((int)0x854f), Blend = ((int)0x0be2), + PerStageConstantsNv = ((int)0x8535), Set = ((int)0x150f), IndexArrayExt = ((int)0x8077), DrawBuffer = ((int)0x0c01), ColorArrayBufferBindingArb = ((int)0x8898), - DsBiasNv = ((int)0x8716), Texture17Arb = ((int)0x84d1), - PolygonOffsetFill = ((int)0x8037), Hilo8Nv = ((int)0x885e), PixelTransform2dStackDepthExt = ((int)0x8336), - ConstantAlphaExt = ((int)0x8003), - Red = ((int)0x1903), + Red = ((int)0x1903), LinearDetailAlphaSgis = ((int)0x8098), ConstantColor = ((int)0x8001), DepthStencilToBgraNv = ((int)0x886f), - FogCoordArray = ((int)Version14.FogCoordinateArray), + FogCoordArray = ((int)0x8457), Clamp = ((int)0x2900), - HistogramSinkExt = ((int)0x802d), - DotProductTextureCubeMapNv = ((int)0x86f0), + DotProductTextureCubeMapNv = ((int)0x86f0), MultisampleCoverageModesNv = ((int)0x8e12), ConstantColor1Nv = ((int)0x852b), CompressedRgbaS3tcDxt3Ext = ((int)0x83f2), @@ -4189,11 +4089,9 @@ namespace OpenTK.OpenGL PointSpriteCoordOrigin = ((int)0x8ca0), Rgba16 = ((int)0x805b), DepthBoundsTestExt = ((int)0x8890), - UnsignedShort5551Ext = ((int)0x8034), - FogFactorToAlphaSgix = ((int)0x836f), + FogFactorToAlphaSgix = ((int)0x836f), CompressedSignedRedGreenRgtc2Ext = ((int)0x8dbe), - ClampToEdgeSgis = ((int)0x812f), - CombinerBiasNv = ((int)0x8549), + CombinerBiasNv = ((int)0x8549), InvariantExt = ((int)0x87c2), ReadPixelDataRangeLengthNv = ((int)0x887b), FramebufferUnsupportedExt = ((int)0x8cdd), @@ -4201,21 +4099,20 @@ namespace OpenTK.OpenGL IntSamplerBufferExt = ((int)0x8dd0), Texture11Arb = ((int)0x84cb), Decr = ((int)0x1e03), - Modelview18Arb = ((int)0x8732), + Texture21Arb = ((int)0x84d5), ListBase = ((int)0x0b32), MaxListNesting = ((int)0x0b31), RgbaUnsignedDotProductMappingNv = ((int)0x86d9), Linear = ((int)0x2601), + ConstantAlpha = ((int)0x8003), Source1RgbArb = ((int)0x8581), ReclaimMemoryHintPgi = ((int)0x1a1fe), - VertexProgramTwoSideNv = ((int)0x8643), SecondaryColorArrayBufferBinding = ((int)0x889c), ProgramErrorStringNv = ((int)0x8874), ProxyColorTable = ((int)0x80d3), R1uiT2fV3fSun = ((int)0x85c9), TextureWrapR = ((int)0x8072), - Texture3dExt = ((int)0x806f), - RgbaIntegerExt = ((int)0x8d99), + RgbaIntegerExt = ((int)0x8d99), RenderbufferDepthSizeExt = ((int)0x8d54), Texture10Arb = ((int)0x84ca), WritePixelDataRangePointerNv = ((int)0x887c), @@ -4229,9 +4126,7 @@ namespace OpenTK.OpenGL ReadPixelDataRangeNv = ((int)0x8879), CombineAlphaArb = ((int)0x8572), ReplaceOldestSun = ((int)0x0003), - ClientVertexArrayBit = ((int)0x00000002), - Max3dTextureSizeExt = ((int)0x8073), - LineWidthRange = ((int)0x0b22), + LineWidthRange = ((int)0x0b22), BufferMapPointerArb = ((int)0x88bd), TextureCompareSgix = ((int)0x819a), LoBiasNv = ((int)0x8715), @@ -4240,7 +4135,6 @@ namespace OpenTK.OpenGL FramezoomSgix = ((int)0x818b), PnTrianglesNormalModeLinearAti = ((int)0x87f7), MaxElementsIndicesExt = ((int)0x80e9), - Matrix10Arb = ((int)0x88ca), FramebufferAttachmentTextureCubeMapFaceExt = ((int)0x8cd3), FixedOnlyArb = ((int)0x891d), Light1 = ((int)0x4001), @@ -4254,7 +4148,7 @@ namespace OpenTK.OpenGL Texture29Arb = ((int)0x84dd), TransposeColorMatrixArb = ((int)0x84e6), WeightArrayPointerArb = ((int)0x86ac), - MapTessellationNv = ((int)0x86c2), + VertexShaderArb = ((int)0x8b31), FogSpecularTextureWin = ((int)0x80ec), OffsetProjectiveTextureRectangleScaleNv = ((int)0x8853), UnsignedShort5551 = ((int)0x8034), @@ -4265,10 +4159,10 @@ namespace OpenTK.OpenGL ColorAttachment2Ext = ((int)0x8ce2), IndexArrayPointerExt = ((int)0x8091), VariantValueExt = ((int)0x87e4), + Matrix10 = ((int)0x88ca), OpClampExt = ((int)0x878e), TriangleStrip = ((int)0x0005), - ConvolutionBorderModeExt = ((int)0x8013), - LinearMipmapLinear = ((int)0x2703), + LinearMipmapLinear = ((int)0x2703), IndexArrayBufferBindingArb = ((int)0x8899), CompressedSignedLuminanceLatc1Ext = ((int)0x8c71), ArrayBufferBindingArb = ((int)0x8894), @@ -4276,6 +4170,7 @@ namespace OpenTK.OpenGL Texture28Arb = ((int)0x84dc), BlendDstRgbExt = ((int)0x80c8), MaxOptimizedVertexShaderInstructionsExt = ((int)0x87ca), + HalfFloat = ((int)0x140b), DepthRange = ((int)0x0b70), NumFragmentRegistersAti = ((int)0x896e), Order = ((int)0x0a01), @@ -4290,11 +4185,10 @@ namespace OpenTK.OpenGL Xor = ((int)0x1506), MaxBindableUniformSizeExt = ((int)0x8ded), AlphaMinClampIngr = ((int)0x8563), - UnsignedInt2101010RevExt = ((int)0x8368), - TextureDtSizeNv = ((int)0x871e), + TextureDtSizeNv = ((int)0x871e), TextureBinding2dArrayExt = ((int)0x8c1d), ReadPixelDataRangePointerNv = ((int)0x887d), - Matrix19Arb = ((int)0x88d3), + Modelview26Arb = ((int)0x873a), ClipPlane1 = ((int)0x3001), PixelMapAToA = ((int)0x0c79), Texture0Arb = ((int)0x84c0), @@ -4303,8 +4197,8 @@ namespace OpenTK.OpenGL TextureLodBiasTSgix = ((int)0x818f), TextureDepthSize = ((int)0x884a), ColorAttachment5Ext = ((int)0x8ce5), - VertexArrayRangeNv = ((int)0x851d), NormalArrayCountExt = ((int)0x8080), + HistogramRedSize = ((int)0x8028), TextureCubeMapExt = ((int)0x8513), PackImageDepthSgis = ((int)0x8131), AttenuationExt = ((int)0x834d), @@ -4313,7 +4207,7 @@ namespace OpenTK.OpenGL RestartSun = ((int)0x0001), VertexArrayPointerExt = ((int)0x808e), ColorTableRedSize = ((int)0x80da), - StencilBackPassDepthPass = ((int)0x8803), + TransformFeedbackBufferBindingNv = ((int)0x8c8f), Luminance16Ext = ((int)0x8042), PixelTexGenAlphaMsSgix = ((int)0x818a), FragmentShaderArb = ((int)0x8b30), @@ -4322,6 +4216,7 @@ namespace OpenTK.OpenGL VertexArraySizeExt = ((int)0x807a), ModelviewProjectionNv = ((int)0x8629), GlobalAlphaFactorSun = ((int)0x81da), + Matrix16 = ((int)0x88d0), VertexWeightArrayExt = ((int)0x850c), Sampler2dRectShadowArb = ((int)0x8b64), TextureLodBiasExt = ((int)0x8501), @@ -4331,16 +4226,15 @@ namespace OpenTK.OpenGL R1uiC3fV3fSun = ((int)0x85c6), Never = ((int)0x0200), True = ((int)1), - BoolVec4Arb = ((int)0x8b59), + UnsignedShort4444Reversed = ((int)0x8365), Reg18Ati = ((int)0x8933), VertexArrayRangeValidNv = ((int)0x851f), Return = ((int)0x0102), - PostColorMatrixRedBiasSgi = ((int)0x80b8), - MaxProgramLoopDepthNv = ((int)0x88f7), + MaxProgramLoopDepthNv = ((int)0x88f7), FogMode = ((int)0x0b65), PolygonBit = ((int)0x00000008), Incr = ((int)0x1e02), - VariableDNv = ((int)0x8526), + ClipNearHintPgi = ((int)0x1a220), PassThroughToken = ((int)0x0700), Sampler2dArb = ((int)0x8b5e), AbgrExt = ((int)0x8000), @@ -4349,7 +4243,6 @@ namespace OpenTK.OpenGL MaxProgramAttribComponentsNv = ((int)0x8908), MaxVertexShaderVariantsExt = ((int)0x87c6), CompressedLuminance = ((int)0x84ea), - Con5Ati = ((int)0x8946), PackSubsampleRateSgix = ((int)0x85a0), SecondaryColorArrayType = ((int)0x845b), Map2VertexAttrib114Nv = ((int)0x867b), @@ -4357,7 +4250,6 @@ namespace OpenTK.OpenGL TextureCompressionHintArb = ((int)0x84ef), Dot4Ati = ((int)0x8967), DualIntensity4Sgis = ((int)0x8118), - ProgramInstructionsArb = ((int)0x88a0), ConvolutionHeight = ((int)0x8019), LowerLeft = ((int)0x8ca1), FramebufferAttachmentObjectTypeExt = ((int)0x8cd0), @@ -4386,9 +4278,10 @@ namespace OpenTK.OpenGL FragmentLight2Sgix = ((int)0x840e), Matrix1Nv = ((int)0x8631), FloatRg16Nv = ((int)0x8886), - CompressedLuminanceLatc1Ext = ((int)0x8c70), - FuncSubtractExt = ((int)0x800a), + PixelUnpackBufferBindingArb = ((int)0x88ef), + Matrix23 = ((int)0x88d7), Texture18Arb = ((int)0x84d2), + Matrix13 = ((int)0x88cd), Luminance32iExt = ((int)0x8d86), RasterizerDiscardNv = ((int)0x8c89), CombineExt = ((int)0x8570), @@ -4402,6 +4295,7 @@ namespace OpenTK.OpenGL QueryCounterBits = ((int)0x8864), BlendSrc = ((int)0x0be1), Texcoord3BitPgi = ((int)0x40000000), + LocalConstantDatatypeExt = ((int)0x87ed), SignedAlpha8Nv = ((int)0x8706), ReplacementCodeArrayStrideSun = ((int)0x85c2), MaxTextureMaxAnisotropyExt = ((int)0x84ff), @@ -4409,26 +4303,19 @@ namespace OpenTK.OpenGL Dot3Rgba = ((int)0x86af), Compile = ((int)0x1300), Vertex23BitPgi = ((int)0x00000004), - PointSizeMaxSgis = ((int)0x8127), - DetailTextureLevelSgis = ((int)0x809a), + DetailTextureLevelSgis = ((int)0x809a), ColorArrayListStrideIbm = ((int)103082), - Texture12 = ((int)0x84cc), - TextureWrapRExt = ((int)0x8072), - MaxVertexAttribsArb = ((int)0x8869), - MaxTextureLodBias = ((int)0x84fd), + MaxVertexAttribsArb = ((int)0x8869), + VertexArrayRangeNv = ((int)0x851d), Rgb5Ext = ((int)0x8050), - SampleBuffersArb = ((int)0x80a8), - VertexPreclipSgix = ((int)0x83ee), + VertexPreclipSgix = ((int)0x83ee), Luminance16 = ((int)0x8042), ClipPlane2 = ((int)0x3002), MaxMatrixPaletteStackDepthArb = ((int)0x8841), Luminance12 = ((int)0x8041), BumpTexUnitsAti = ((int)0x8778), - MaxConvolutionWidthExt = ((int)0x801a), - SeparateSpecularColorExt = ((int)0x81fa), - MaxPixelMapTable = ((int)0x0d34), + MaxPixelMapTable = ((int)0x0d34), FragmentColorMaterialSgix = ((int)0x8401), - MaxTransformFeedbackSeparateComponentsNv = ((int)0x8c80), OutputTextureCoord18Ext = ((int)0x87af), FloatVec4 = ((int)0x8b52), DrawBuffer13Arb = ((int)0x8832), @@ -4438,21 +4325,20 @@ namespace OpenTK.OpenGL TextureDepth = ((int)0x8071), StaticDraw = ((int)0x88e4), SignedIdentityNv = ((int)0x853c), + Matrix31 = ((int)0x88df), IndexArrayPointer = ((int)0x8091), LuminanceAlpha32fArb = ((int)0x8819), StencilIndex16Ext = ((int)0x8d49), FeedbackBufferSize = ((int)0x0df1), Luminance6Alpha2 = ((int)0x8044), UnsignedIntSampler2dRectExt = ((int)0x8dd5), - SampleCoverageArb = ((int)0x80a0), - Rgb5 = ((int)0x8050), + Rgb5 = ((int)0x8050), ResampleZeroFillOml = ((int)0x8987), - Matrix21Arb = ((int)0x88d5), MaxDeformationOrderSgix = ((int)0x8197), VertexDataHintPgi = ((int)0x1a22a), LineToken = ((int)0x0702), EyePlane = ((int)0x2502), - TransformFeedbackBufferBindingNv = ((int)0x8c8f), + TriangleStripAdjacencyExt = ((int)0x000d), UnpackSwapBytes = ((int)0x0cf0), VertexShaderOptimizedExt = ((int)0x87d4), OffsetProjectiveTexture2dScaleNv = ((int)0x8851), @@ -4460,8 +4346,7 @@ namespace OpenTK.OpenGL UnsignedShort1555Rev = ((int)0x8366), TextureNormalExt = ((int)0x85af), CndAti = ((int)0x896a), - HistogramBlueSizeExt = ((int)0x802a), - QueryResultArb = ((int)0x8866), + QueryResultArb = ((int)0x8866), HalfFloatArb = ((int)0x140b), VariantArrayPointerExt = ((int)0x87e9), Combine = ((int)0x8570), @@ -4470,7 +4355,7 @@ namespace OpenTK.OpenGL OutputTextureCoord5Ext = ((int)0x87a2), MapStencil = ((int)0x0d11), MaxRectangleTextureSizeArb = ((int)0x84f8), - Texture31Arb = ((int)0x84df), + VertexArrayPointer = ((int)0x808e), Rgb2Ext = ((int)0x804e), UnpackResampleOml = ((int)0x8985), FullStippleHintPgi = ((int)0x1a219), @@ -4481,16 +4366,14 @@ namespace OpenTK.OpenGL BufferAccess = ((int)0x88bb), HiloNv = ((int)0x86f4), Emission = ((int)0x1600), - V2f = ((int)0x2a20), + TextureMaterialFaceExt = ((int)0x8351), Matrix4Nv = ((int)0x8634), DependentHiloTexture2dNv = ((int)0x8858), Intensity16IccSgix = ((int)0x846a), - DepthComponent32Sgix = ((int)0x81a7), - SwizzleStrqDqAti = ((int)0x897b), + SwizzleStrqDqAti = ((int)0x897b), VectorExt = ((int)0x87bf), Texture30Arb = ((int)0x84de), BoolVec3Arb = ((int)0x8b58), - CombinerCdDotProductNv = ((int)0x8546), ProgramResultComponentsNv = ((int)0x8907), PostTextureFilterBiasRangeSgix = ((int)0x817b), GeometryVerticesOutExt = ((int)0x8dda), @@ -4505,10 +4388,9 @@ namespace OpenTK.OpenGL RenderbufferCoverageSamplesNv = ((int)0x8cab), ProxyPostImageTransformColorTableHp = ((int)0x8163), Matrix7Nv = ((int)0x8637), - FloatMat2Arb = ((int)0x8b5a), + CullVertexEyePositionExt = ((int)0x81ab), ZeroExt = ((int)0x87dd), VertexShaderExt = ((int)0x8780), - CurrentFogCoordinate = ((int)0x8453), Rgba8iExt = ((int)0x8d8e), OutputTextureCoord3Ext = ((int)0x87a0), SmoothLineWidthGranularity = ((int)0x0b23), @@ -4519,9 +4401,9 @@ namespace OpenTK.OpenGL OneMinusSrcColor = ((int)0x0301), PackInvertMesa = ((int)0x8758), FogCoordinateArrayTypeExt = ((int)0x8454), - ConvolutionFilterScaleExt = ((int)0x8014), - Sampler1d = ((int)0x8b5d), + Sampler1d = ((int)0x8b5d), TexturePostSpecularHp = ((int)0x8168), + CompressedLuminanceLatc1Ext = ((int)0x8c70), QuadraticAttenuation = ((int)0x1209), NormalMapNv = ((int)0x8511), TextureCubeMapNegativeZExt = ((int)0x851a), @@ -4532,28 +4414,29 @@ namespace OpenTK.OpenGL TextureDepthSizeArb = ((int)0x884a), ColorAttachment9Ext = ((int)0x8ce9), Texture1Arb = ((int)0x84c1), - Matrix27Arb = ((int)0x88db), PnTrianglesTesselationLevelAti = ((int)0x87f4), PreviousTextureInputNv = ((int)0x86e4), TextureInternalFormat = ((int)0x1003), - SampleAlphaToCoverageArb = ((int)0x809e), - CullVertexIbm = ((int)103050), + CullVertexIbm = ((int)103050), MaxCombinedTextureImageUnitsArb = ((int)0x8b4d), ReadFramebufferExt = ((int)0x8ca8), Gl422RevExt = ((int)0x80cd), ArrayElementLockCountExt = ((int)0x81a9), - FogCoordinateArrayStrideExt = ((int)0x8455), + Reg11Ati = ((int)0x892c), + PointSpriteArb = ((int)0x8861), CompressedRgbS3tcDxt1Ext = ((int)0x83f0), FloatRNv = ((int)0x8880), NormalArrayExt = ((int)0x8075), MirrorClampToBorderExt = ((int)0x8912), NegativeYExt = ((int)0x87da), + Matrix25 = ((int)0x88d9), R1uiC4ubV3fSun = ((int)0x85c5), MaxTextureStackDepth = ((int)0x0d39), - ObjectSubtypeArb = ((int)0x8b4f), + ActiveVaryingMaxLengthNv = ((int)0x8c82), SampleAlphaToCoverage = ((int)0x809e), NativeGraphicsHandlePgi = ((int)0x1a202), TextureAlphaSizeExt = ((int)0x805f), + HiScaleNv = ((int)0x870e), Histogram = ((int)0x8024), Srgb8Alpha8Ext = ((int)0x8c43), MaxVertexBindableUniformsExt = ((int)0x8de2), @@ -4567,7 +4450,7 @@ namespace OpenTK.OpenGL SwizzleStrDrAti = ((int)0x8978), AttribArrayTypeNv = ((int)0x8625), Con26Ati = ((int)0x895b), - TextureCubeMapNegativeXExt = ((int)0x8516), + DrawFramebufferExt = ((int)0x8ca9), PixelTexGenAlphaNoReplaceSgix = ((int)0x8188), VertexArrayBufferBindingArb = ((int)0x8896), ObjectActiveUniformMaxLengthArb = ((int)0x8b87), @@ -4579,7 +4462,6 @@ namespace OpenTK.OpenGL RgbaSignedComponentsExt = ((int)0x8c3c), Con11Ati = ((int)0x894c), PixelMapGToG = ((int)0x0c77), - Matrix13Arb = ((int)0x88cd), CurrentRasterTextureCoords = ((int)0x0b06), Operand2AlphaArb = ((int)0x859a), ColorArrayType = ((int)0x8082), @@ -4595,23 +4477,19 @@ namespace OpenTK.OpenGL DtBiasNv = ((int)0x8717), TriangleListSun = ((int)0x81d7), MaxProgramTotalOutputComponentsNv = ((int)0x8c28), - PostColorMatrixRedScaleSgi = ((int)0x80b4), - PassThroughNv = ((int)0x86e6), - Con12Ati = ((int)0x894d), - Src1Alpha = ((int)Version13.Source1Alpha), + PassThroughNv = ((int)0x86e6), + FloatRgb32Nv = ((int)0x8889), + Src1Alpha = ((int)0x8589), PixelSubsample4444Sgix = ((int)0x85a2), Render = ((int)0x1c00), TextureGreenTypeArb = ((int)0x8c11), AccumClearValue = ((int)0x0b80), EdgeFlagArrayPointerExt = ((int)0x8093), - FogCoordSrc = ((int)Version14.FogCoordinateSource), + FogCoordSrc = ((int)0x8450), Operand0AlphaArb = ((int)0x8598), ColorSum = ((int)0x8458), T2fC3fV3f = ((int)0x2a2a), - Texture2Arb = ((int)0x84c2), NormalArrayTypeExt = ((int)0x807e), - StencilBackPassDepthFail = ((int)0x8802), - CurrentVertexAttribArb = ((int)0x8626), OpRoundExt = ((int)0x8790), Luminance8 = ((int)0x8040), UniformBufferExt = ((int)0x8dee), @@ -4625,21 +4503,20 @@ namespace OpenTK.OpenGL TextureBorderValuesNv = ((int)0x871a), PixelMapIToG = ((int)0x0c73), FloatR16Nv = ((int)0x8884), - EvalVertexAttrib4Nv = ((int)0x86ca), GreenMinClampIngr = ((int)0x8561), BackPrimaryColorNv = ((int)0x8c77), UnsignedIdentityNv = ((int)0x8536), VertexShader = ((int)0x8b31), - UnsignedShort1555RevExt = ((int)0x8366), - LightModelAmbient = ((int)0x0b53), + LightModelAmbient = ((int)0x0b53), BoolVec3 = ((int)0x8b58), InterlaceSgix = ((int)0x8094), DrawBuffer14Ati = ((int)0x8833), StencilTagBitsExt = ((int)0x88f2), - Source0Alpha = ((int)0x8588), + WeightArrayBufferBinding = ((int)0x889e), MatrixExt = ((int)0x87c0), MaxGeometryTotalOutputComponentsExt = ((int)0x8de1), PolygonSmoothHint = ((int)0x0c53), + MaxRationalEvalOrderNv = ((int)0x86d7), SrcAlphaSaturate = ((int)0x0308), UnsignedIntSampler3dExt = ((int)0x8dd3), TableTooLarge = ((int)0x8031), @@ -4650,7 +4527,6 @@ namespace OpenTK.OpenGL Float32UnsignedInt248RevNv = ((int)0x8dad), Con22Ati = ((int)0x8957), HistogramFormat = ((int)0x8027), - Matrix25Arb = ((int)0x88d9), FragmentColorMaterialParameterSgix = ((int)0x8403), Texture3dBindingExt = ((int)0x806a), MaxArrayTextureLayersExt = ((int)0x88ff), @@ -4659,7 +4535,8 @@ namespace OpenTK.OpenGL IntVec2 = ((int)0x8b53), IntVec3 = ((int)0x8b54), Rgb4Ext = ((int)0x804f), - ConstEyeNv = ((int)0x86e5), + SecondaryColorArrayListIbm = ((int)103077), + DrawBuffer1Arb = ((int)0x8826), IntVec4 = ((int)0x8b55), ProxyTextureCubeMapArb = ((int)0x851b), Point = ((int)0x1b00), @@ -4669,27 +4546,27 @@ namespace OpenTK.OpenGL PixelMapRToR = ((int)0x0c76), Luminance6Alpha2Ext = ((int)0x8044), Gl4pass3Ext = ((int)0x80a7), - VertexAttribArrayStride = ((int)0x8624), + Matrix19 = ((int)0x88d3), + IndexBitPgi = ((int)0x00080000), Map2GridDomain = ((int)0x0dd2), ResampleReplicateSgix = ((int)0x842e), Con3Ati = ((int)0x8944), - ProgramNativeParametersArb = ((int)0x88aa), + PrimaryColorNv = ((int)0x852c), UnsignedIntS8S888Nv = ((int)0x86da), MaxProgramOutputVerticesNv = ((int)0x8c27), TextureCubeMap = ((int)0x8513), - FramebufferIncompleteLayerTargetsExt = ((int)0x8da8), + RenderbufferSamplesExt = ((int)0x8cab), Rgb8iExt = ((int)0x8d8f), - MaxElementsIndices = ((int)0x80e9), DepthClearValue = ((int)0x0b73), SecondaryInterpolatorAti = ((int)0x896d), - CompressedSignedLuminanceAlphaLatc2Ext = ((int)0x8c73), + ColorAttachment1Ext = ((int)0x8ce1), TextureLightingModeHp = ((int)0x8167), Texture4dsizeSgis = ((int)0x8136), BumpEnvmapAti = ((int)0x877b), + UnsignedShort565Reversed = ((int)0x8364), NormalArrayBufferBindingArb = ((int)0x8897), TangentArrayPointerExt = ((int)0x8442), Operand0Alpha = ((int)0x8598), - ProgramAddressRegistersArb = ((int)0x88b0), TextureCompressed = ((int)0x86a1), Luminance4 = ((int)0x803f), Con24Ati = ((int)0x8959), @@ -4711,19 +4588,18 @@ namespace OpenTK.OpenGL TextureClipmapLodOffsetSgix = ((int)0x8175), DepthStencilNv = ((int)0x84f9), Rgba16iExt = ((int)0x8d88), - UnpackSkipImagesExt = ((int)0x806d), - MapColor = ((int)0x0d10), + MapColor = ((int)0x0d10), VertexArrayParallelPointersIntel = ((int)0x83f5), OutputTextureCoord9Ext = ((int)0x87a6), ReplaceMiddleSun = ((int)0x0002), + MaxProgramNativeAddressRegisters = ((int)0x88b3), CompressedSluminanceAlpha = ((int)0x8c4b), OutputTextureCoord28Ext = ((int)0x87b9), EvalVertexAttrib8Nv = ((int)0x86ce), PostColorMatrixAlphaBias = ((int)0x80bb), None = ((int)0), - FogCoord = ((int)Version14.FogCoordinate), - OneMinusConstantAlphaExt = ((int)0x8004), - UnsignedIntSamplerCubeExt = ((int)0x8dd4), + FogCoord = ((int)0x8451), + UnsignedIntSamplerCubeExt = ((int)0x8dd4), AlwaysSoftHintPgi = ((int)0x1a20d), Nor = ((int)0x1508), BiasBitAti = ((int)0x00000008), @@ -4731,11 +4607,9 @@ namespace OpenTK.OpenGL MatrixIndexArrayStrideArb = ((int)0x8848), NegativeWExt = ((int)0x87dc), TrackMatrixTransformNv = ((int)0x8649), - TextureMaxLodSgis = ((int)0x813b), - LineBit = ((int)0x00000004), + LineBit = ((int)0x00000004), PixelMagFilterExt = ((int)0x8331), - PostConvolutionGreenBiasExt = ((int)0x8021), - Src2Alpha = ((int)Version13.Source2Alpha), + Src2Alpha = ((int)0x858a), Modelview7Arb = ((int)0x8727), RgbScale = ((int)0x8573), PrimitiveRestartIndexNv = ((int)0x8559), @@ -4747,8 +4621,7 @@ namespace OpenTK.OpenGL Rgb4S3tc = ((int)0x83a1), CompressedIntensity = ((int)0x84ec), FragmentShader = ((int)0x8b30), - BufferMapped = ((int)0x88bc), - SignedRgbaNv = ((int)0x86fb), + StencilBackPassDepthPass = ((int)0x8803), Con19Ati = ((int)0x8954), StencilBits = ((int)0x0d57), Dsdt8Nv = ((int)0x8709), @@ -4756,8 +4629,7 @@ namespace OpenTK.OpenGL Gl4pass1Sgis = ((int)0x80a5), TextureCoordArrayBufferBindingArb = ((int)0x889a), Map1Normal = ((int)0x0d92), - PostColorMatrixAlphaBiasSgi = ((int)0x80bb), - Map1VertexAttrib14Nv = ((int)0x8661), + Map1VertexAttrib14Nv = ((int)0x8661), Con31Ati = ((int)0x8960), IndexMaterialExt = ((int)0x81b8), PolygonOffsetPoint = ((int)0x2a01), @@ -4767,13 +4639,12 @@ namespace OpenTK.OpenGL FramebufferAttachmentTextureLayerExt = ((int)0x8cd4), TextureClipmapVirtualDepthSgix = ((int)0x8174), IntVec2Arb = ((int)0x8b53), - TextureCubeMapNegativeZ = ((int)0x851a), + OffsetTextureScaleNv = ((int)0x86e2), DrawBuffer8Arb = ((int)0x882d), MatrixIndexArraySizeArb = ((int)0x8846), Con20Ati = ((int)0x8955), TransformFeedbackBufferStartNv = ((int)0x8c84), - Modelview0MatrixExt = ((int)All.ModelviewMatrix), - FogCoordinateArrayBufferBinding = ((int)0x889d), + Modelview0MatrixExt = ((int)0x0ba6), TextureGenMode = ((int)0x2500), VertexSourceAti = ((int)0x8774), PolygonToken = ((int)0x0703), @@ -4781,16 +4652,15 @@ namespace OpenTK.OpenGL AccumBlueBits = ((int)0x0d5a), DrawBuffer10Arb = ((int)0x882f), SubpixelBits = ((int)0x0d50), - Dot3Ati = ((int)0x8966), + XExt = ((int)0x87d5), Map1VertexAttrib64Nv = ((int)0x8666), MaxAsyncHistogramSgix = ((int)0x832d), BinormalArrayPointerExt = ((int)0x8443), ColorArrayParallelPointersIntel = ((int)0x83f7), SamplerCube = ((int)0x8b60), OutputTextureCoord4Ext = ((int)0x87a1), - Matrix17Arb = ((int)0x88d1), Source2RgbExt = ((int)0x8582), - CurrentFogCoord = ((int)Version14.CurrentFogCoordinate), + CurrentFogCoord = ((int)0x8453), DynamicReadArb = ((int)0x88e9), CompressedLuminanceAlphaLatc2Ext = ((int)0x8c72), MaxFragmentLightsSgix = ((int)0x8404), @@ -4798,8 +4668,8 @@ namespace OpenTK.OpenGL FragmentLight1Sgix = ((int)0x840d), OutputTextureCoord15Ext = ((int)0x87ac), IntSampler1dArrayExt = ((int)0x8dce), - VertexAttribArraySize = ((int)0x8623), - OffsetTexture2dMatrixNv = ((int)NvTextureShader.OffsetTextureMatrixNv), + Con29Ati = ((int)0x895e), + OffsetTexture2dMatrixNv = ((int)0x86e1), ColorArrayStride = ((int)0x8083), Map1Index = ((int)0x0d91), NumGeneralCombinersNv = ((int)0x854e), @@ -4823,22 +4693,20 @@ namespace OpenTK.OpenGL PostColorMatrixRedBias = ((int)0x80b8), ColorTableLuminanceSize = ((int)0x80de), Map1VertexAttrib04Nv = ((int)0x8660), - PixelUnpackBufferBindingArb = ((int)0x88ef), + CompBitAti = ((int)0x00000002), PixelMapIToR = ((int)0x0c72), NormalArrayPointerExt = ((int)0x808f), - DoubleExt = ((int)0x140a), - LuminanceAlpha8iExt = ((int)0x8d93), + LuminanceAlpha8iExt = ((int)0x8d93), ColorSumArb = ((int)0x8458), CurrentBinormalExt = ((int)0x843c), - Modelview0StackDepthExt = ((int)All.ModelviewStackDepth), + Modelview0StackDepthExt = ((int)0x0ba3), NegativeXExt = ((int)0x87d9), TextureCompressedImageSize = ((int)0x86a0), InterleavedAttribsNv = ((int)0x8c8c), Gl4xBitAti = ((int)0x00000002), - ColorAttachment6Ext = ((int)0x8ce6), + ShaderOperationNv = ((int)0x86df), ProgramTexInstructionsArb = ((int)0x8806), - PointFadeThresholdSizeExt = ((int)0x8128), - SpriteObjectAlignedSgix = ((int)0x814d), + SpriteObjectAlignedSgix = ((int)0x814d), FogStart = ((int)0x0b63), TextureStencilSizeExt = ((int)0x88f1), MaxAsyncTexImageSgix = ((int)0x835f), @@ -4853,9 +4721,7 @@ namespace OpenTK.OpenGL SignedHilo8Nv = ((int)0x885f), ColorWritemask = ((int)0x0c23), BumpTargetAti = ((int)0x877c), - ClampToBorderArb = ((int)0x812d), - VariableBNv = ((int)0x8524), - ResampleZeroFillSgix = ((int)0x842f), + ResampleZeroFillSgix = ((int)0x842f), TransformFeedbackBufferSizeNv = ((int)0x8c85), ColorArrayListIbm = ((int)103072), FragmentLightModelNormalInterpolationSgix = ((int)0x840b), @@ -4864,7 +4730,6 @@ namespace OpenTK.OpenGL OutputTextureCoord22Ext = ((int)0x87b3), MaxVertexHintPgi = ((int)0x1a22d), MultisampleBitExt = ((int)0x20000000), - ColorAttachment1Ext = ((int)0x8ce1), StencilValueMask = ((int)0x0b93), CurrentRasterPosition = ((int)0x0b07), MatColorIndexesBitPgi = ((int)0x01000000), @@ -4876,19 +4741,19 @@ namespace OpenTK.OpenGL TextureShaderNv = ((int)0x86de), OutputTextureCoord0Ext = ((int)0x879d), SampleBuffers3dfx = ((int)0x86b3), - PostConvolutionColorTableSgi = ((int)0x80d1), - VertexProgramPointSizeNv = ((int)0x8642), + VertexProgramPointSizeNv = ((int)0x8642), Light0 = ((int)0x4000), OpDot3Ext = ((int)0x8784), GreenMaxClampIngr = ((int)0x8565), Map1VertexAttrib124Nv = ((int)0x866c), + MaxProgramLocalParameters = ((int)0x88b4), ClipPlane4 = ((int)0x3004), R1uiN3fV3fSun = ((int)0x85c7), PrimitivesGeneratedNv = ((int)0x8c87), VertexAttribArray0Nv = ((int)0x8650), SluminanceExt = ((int)0x8c46), TextureColorWritemaskSgis = ((int)0x81ef), - Map1VertexAttrib74Nv = ((int)0x8667), + StencilBackFailAti = ((int)0x8801), Ambient = ((int)0x1200), TexturePreSpecularHp = ((int)0x8169), Con21Ati = ((int)0x8956), @@ -4896,16 +4761,16 @@ namespace OpenTK.OpenGL EmbossMapNv = ((int)0x855f), ConstantBorder = ((int)0x8151), NearestMipmapLinear = ((int)0x2702), - PostConvolutionAlphaBiasExt = ((int)0x8023), + Con5Ati = ((int)0x8946), ActiveTexture = ((int)0x84e0), EdgeFlagArrayCountExt = ((int)0x808d), PostTextureFilterScaleSgix = ((int)0x817a), - FogCoordArrayBufferBinding = ((int)Version15.FogCoordinateArrayBufferBinding), + FogCoordArrayBufferBinding = ((int)0x889d), ProgramNativeTexIndirectionsArb = ((int)0x880a), Replace = ((int)0x1e01), PointSprite = ((int)0x8861), UnsignedShort = ((int)0x1403), - PerspectiveCorrectionHint = ((int)0x0c50), + PerspectiveCorrectionHint = ((int)0x0c50), Normalize = ((int)0x0ba1), PostImageTransformColorTableHp = ((int)0x8162), QuarterBitAti = ((int)0x00000010), @@ -4917,11 +4782,9 @@ namespace OpenTK.OpenGL OutputTextureCoord6Ext = ((int)0x87a3), VertexArrayStorageHintApple = ((int)0x851f), RgbaS3tc = ((int)0x83a2), - MaxProgramNativeParametersArb = ((int)0x88ab), ProxyTexture2dArrayExt = ((int)0x8c1b), IndexArrayStrideExt = ((int)0x8086), - HistogramExt = ((int)0x8024), - DrawBuffer1Arb = ((int)0x8826), + VertexProgram = ((int)0x8620), CompressedLuminanceArb = ((int)0x84ea), NumCompressedTextureFormatsArb = ((int)0x86a2), GreenIntegerExt = ((int)0x8d95), @@ -4932,22 +4795,19 @@ namespace OpenTK.OpenGL Noop = ((int)0x1505), Domain = ((int)0x0a02), Con23Ati = ((int)0x8958), + ProgramInstruction = ((int)0x88a0), PixelPackBufferArb = ((int)0x88eb), TextureFilterControl = ((int)0x8500), ImageTransform2dHp = ((int)0x8161), LuminanceAlpha16uiExt = ((int)0x8d7b), - ActiveUniformMaxLength = ((int)0x8b87), - TransformHintApple = ((int)0x85b1), - ColorArrayPointerExt = ((int)0x8090), + PreviousArb = ((int)0x8578), ExpandNegateNv = ((int)0x8539), VibranceBiasNv = ((int)0x8719), VertexArrayBindingApple = ((int)0x85b5), DependentArTexture2dNv = ((int)0x86e9), ColorMatrix = ((int)0x80b1), T2fV3f = ((int)0x2a27), - FogCoordinateArrayType = ((int)0x8454), Luminance16fArb = ((int)0x881e), - Matrix14Arb = ((int)0x88ce), PrimaryColor = ((int)0x8577), TextureBufferFormatExt = ((int)0x8c2e), MaxProgramParameterBufferBindingsNv = ((int)0x8da0), @@ -4956,7 +4816,6 @@ namespace OpenTK.OpenGL MaxPaletteMatricesArb = ((int)0x8842), ObjectLinkStatusArb = ((int)0x8b82), Lighting = ((int)0x0b50), - VertexAttribArrayNormalizedArb = ((int)0x886a), MaxOptimizedVertexShaderLocalConstantsExt = ((int)0x87cc), SampleCoverageInvert = ((int)0x80ab), OrInverted = ((int)0x150d), @@ -4965,13 +4824,11 @@ namespace OpenTK.OpenGL IndexArrayListStrideIbm = ((int)103083), ColorTableIntensitySize = ((int)0x80df), Map1VertexAttrib104Nv = ((int)0x866a), - ColorTableAlphaSizeSgi = ((int)0x80dd), - StreamReadArb = ((int)0x88e1), + StreamReadArb = ((int)0x88e1), AlphaFloat16Ati = ((int)0x881c), Reg26Ati = ((int)0x893b), VertexAttribArray2Nv = ((int)0x8652), - HistogramWidthExt = ((int)0x8026), - PolygonStippleBit = ((int)0x00000010), + PolygonStippleBit = ((int)0x00000010), VertexArray = ((int)0x8074), HistogramLuminanceSize = ((int)0x802c), Texture1dStackMesax = ((int)0x8759), @@ -4980,13 +4837,11 @@ namespace OpenTK.OpenGL ReplaceExt = ((int)0x8062), TrianglesAdjacencyExt = ((int)0x000c), ReadWrite = ((int)0x88ba), - VertexAttribArrayEnabled = ((int)0x8622), Texture5 = ((int)0x84c5), DetailTextureModeSgis = ((int)0x809b), PixelTexGenModeSgix = ((int)0x832b), EvalVertexAttrib14Nv = ((int)0x86d4), DepthPassInstrumentMaxSgix = ((int)0x8312), - Src0Alpha = ((int)Version13.Source0Alpha), NormalArrayType = ((int)0x807e), Texture4 = ((int)0x84c4), StorageCachedApple = ((int)0x85be), @@ -5004,8 +4859,8 @@ namespace OpenTK.OpenGL ArrayBufferArb = ((int)0x8892), CurrentNormal = ((int)0x0b02), Reg0Ati = ((int)0x8921), - DistanceAttenuationExt = ((int)0x8129), - Light7 = ((int)0x4007), + Light7 = ((int)0x4007), + Intensity8uiExt = ((int)0x8d7f), VertexShaderBindingExt = ((int)0x8781), TextureCompareFuncArb = ((int)0x884d), SingleColor = ((int)0x81f9), @@ -5015,7 +4870,7 @@ namespace OpenTK.OpenGL MaxProgramTexelOffsetNv = ((int)0x8905), ExpandNormalNv = ((int)0x8538), FragmentLight0Sgix = ((int)0x840c), - BlendEquation = ((int)0x8009), + OpIndexExt = ((int)0x8782), Alpha32uiExt = ((int)0x8d72), DualLuminance8Sgis = ((int)0x8115), UnsignedShort565Rev = ((int)0x8364), @@ -5034,31 +4889,30 @@ namespace OpenTK.OpenGL OutputTextureCoord8Ext = ((int)0x87a5), CurrentMatrixStackDepthArb = ((int)0x8640), Reg1Ati = ((int)0x8922), - Matrix16Arb = ((int)0x88d0), RenderMode = ((int)0x0c40), MirrorClampExt = ((int)0x8742), Matrix6Nv = ((int)0x8636), ScaleByFourNv = ((int)0x853f), - ClampToBorderSgis = ((int)0x812d), - OutputTextureCoord30Ext = ((int)0x87bb), + OutputTextureCoord30Ext = ((int)0x87bb), VertexStateProgramNv = ((int)0x8621), + MaxProgramAddressRegisters = ((int)0x88b1), StackOverflow = ((int)0x0503), Map2VertexAttrib124Nv = ((int)0x867c), MaxTransformFeedbackSeparateAttribsNv = ((int)0x8c8b), OneMinusDstAlpha = ((int)0x0305), FuncReverseSubtract = ((int)0x800b), Srgb8Ext = ((int)0x8c41), - Modelview9Arb = ((int)0x8729), FragmentLight5Sgix = ((int)0x8411), - Src2Rgb = ((int)Version13.Source2Rgb), + SignedRgbaNv = ((int)0x86fb), TextureBlueSize = ((int)0x805e), DependentRgbTexture3dNv = ((int)0x8859), + Matrix3 = ((int)0x88c3), ReflectionMap = ((int)0x8512), MultisampleSgis = ((int)0x809d), QuadAlpha4Sgis = ((int)0x811e), + Rgb10A2 = ((int)0x8059), PixelTileGridWidthSgix = ((int)0x8142), Map1Vertex4 = ((int)0x0d98), - CompBitAti = ((int)0x00000002), TextureClipmapCenterSgix = ((int)0x8171), Map1Vertex3 = ((int)0x0d97), StaticAti = ((int)0x8760), @@ -5068,15 +4922,14 @@ namespace OpenTK.OpenGL SubtractArb = ((int)0x84e7), DepthScale = ((int)0x0d1e), TextureMaxLod = ((int)0x813b), - DrawBuffer14 = ((int)0x8833), + PostConvolutionGreenScale = ((int)0x801d), MultisampleBitArb = ((int)0x20000000), - Con29Ati = ((int)0x895e), + ActiveUniformMaxLength = ((int)0x8b87), ObjectValidateStatusArb = ((int)0x8b83), Du8dv8Ati = ((int)0x877a), ReplacementCodeSun = ((int)0x81d8), CompressedRgbaS3tcDxt1Ext = ((int)0x83f1), - PointFadeThresholdSizeArb = ((int)0x8128), - ObjectDeleteStatusArb = ((int)0x8b80), + ObjectDeleteStatusArb = ((int)0x8b80), GeometryInputTypeExt = ((int)0x8ddb), ProgramAttribComponentsNv = ((int)0x8906), UnsignedInt5999RevExt = ((int)0x8c3e), @@ -5086,18 +4939,17 @@ namespace OpenTK.OpenGL Dither = ((int)0x0bd0), Short = ((int)0x1402), CompileAndExecute = ((int)0x1301), - AlphaBias = ((int)0x0d1d), + ArrayStride = ((int)0x8624), + ProgramNativeAddressRegisters = ((int)0x88b2), Texture7 = ((int)0x84c7), + DepthTextureMode = ((int)0x884b), NumInputInterpolatorComponentsAti = ((int)0x8973), - PostConvolutionRedBiasExt = ((int)0x8020), - SrgbAlpha = ((int)0x8c42), - DepthComponent16Sgix = ((int)0x81a5), - PixelPackBufferBindingExt = ((int)0x88ed), - VertexShaderArb = ((int)0x8b31), + SrgbAlpha = ((int)0x8c42), + PixelPackBufferBindingExt = ((int)0x88ed), OutputTextureCoord26Ext = ((int)0x87b7), YcbcrMesa = ((int)0x8757), QuadLuminance4Sgis = ((int)0x8120), - VertexAttribArraySizeArb = ((int)0x8623), + NumInstructionsPerPassAti = ((int)0x8971), Texcoord1BitPgi = ((int)0x10000000), Rgba16Ext = ((int)0x805b), SaturateBitAti = ((int)0x00000040), @@ -5108,14 +4960,13 @@ namespace OpenTK.OpenGL MaxTextureCoordsNv = ((int)0x8871), RgbaFloatModeArb = ((int)0x8820), ImplementationColorReadTypeOes = ((int)0x8b9a), - CurrentSecondaryColor = ((int)0x8459), + FormatSubsample244244Oml = ((int)0x8983), VertexAttribArray15Nv = ((int)0x865f), TextureLightExt = ((int)0x8350), - UnsignedShort565RevExt = ((int)0x8364), - Con27Ati = ((int)0x895c), + Con27Ati = ((int)0x895c), AlphaIntegerExt = ((int)0x8d97), Texture25Arb = ((int)0x84d9), - MaxTrackMatricesNv = ((int)0x862f), + Modelview1StackDepthExt = ((int)0x8502), DepthComponent16Arb = ((int)0x81a5), MovAti = ((int)0x8961), SamplePatternExt = ((int)0x80ac), @@ -5124,9 +4975,10 @@ namespace OpenTK.OpenGL Source3RgbNv = ((int)0x8583), TextureBindingBufferExt = ((int)0x8c2c), IuiN3fV3fExt = ((int)0x81b0), - SecondaryColorArrayListIbm = ((int)103077), + ProgramNativeTemporaries = ((int)0x88a6), + Map2VertexAttrib54Nv = ((int)0x8675), Sampler2dArrayExt = ((int)0x8dc1), - ProgramParametersArb = ((int)0x88a8), + Texture16 = ((int)0x84d0), Texture17 = ((int)0x84d1), Texture14 = ((int)0x84ce), SpriteEyeAlignedSgix = ((int)0x814e), @@ -5134,6 +4986,7 @@ namespace OpenTK.OpenGL OpExpBase2Ext = ((int)0x8791), Source3AlphaNv = ((int)0x858b), Texture10 = ((int)0x84ca), + ProxyTextureRectangleNv = ((int)0x84f7), Rgba32iExt = ((int)0x8d82), InvariantDatatypeExt = ((int)0x87eb), Texture24Arb = ((int)0x84d8), @@ -5147,6 +5000,7 @@ namespace OpenTK.OpenGL FogFuncPointsSgis = ((int)0x812b), Sampler1dArb = ((int)0x8b5d), VertexAttribArray13Nv = ((int)0x865d), + SmoothPointSizeGranularity = ((int)0x0b13), NegativeOneExt = ((int)0x87df), TextureColorTableSgi = ((int)0x80bc), GreenScale = ((int)0x0d18), @@ -5165,34 +5019,32 @@ namespace OpenTK.OpenGL ColorAttachment4Ext = ((int)0x8ce4), CurrentRasterNormalSgix = ((int)0x8406), IntSampler2dExt = ((int)0x8dca), - DrawBuffer6Arb = ((int)0x882b), + UnsignedInt2101010Reversed = ((int)0x8368), ColorArrayPointer = ((int)0x8090), DiscardAti = ((int)0x8763), FloatClearColorValueNv = ((int)0x888d), - SecondaryColorArrayPointerExt = ((int)0x845d), + ColorArraySize = ((int)0x8081), Spare0PlusSecondaryColorNv = ((int)0x8532), Gl4dColorTexture = ((int)0x0604), PixelCountAvailableNv = ((int)0x8867), RedIntegerExt = ((int)0x8d94), Color3BitPgi = ((int)0x00010000), - BufferSizeArb = ((int)0x8764), + Map1VertexAttrib134Nv = ((int)0x866d), TextureMagFilter = ((int)0x2800), - Convolution2dExt = ((int)0x8011), + Texture26Arb = ((int)0x84da), FeedbackBufferType = ((int)0x0df2), ConvolutionFilterBias = ((int)0x8015), - SampleAlphaToOneArb = ((int)0x809f), - Rgba4S3tc = ((int)0x83a3), + Rgba4S3tc = ((int)0x83a3), Rgb5A1 = ((int)0x8057), + MaxProgramNativeTemporaries = ((int)0x88a7), BufferSize = ((int)0x8764), RgbS3tc = ((int)0x83a0), Luminance = ((int)0x1909), VertexAttribArray11Nv = ((int)0x865b), GreenBits = ((int)0x0d53), Map1TextureCoord1 = ((int)0x0d93), - BgrExt = ((int)0x80e0), - PackCmykHintExt = ((int)0x800e), - DepthComponent24Sgix = ((int)0x81a6), - PixelMapIToBSize = ((int)0x0cb4), + PackCmykHintExt = ((int)0x800e), + PixelMapIToBSize = ((int)0x0cb4), PointSmooth = ((int)0x0b10), RgbaIntegerModeExt = ((int)0x8d9e), VertexAttribArray7Nv = ((int)0x8657), @@ -5211,11 +5063,11 @@ namespace OpenTK.OpenGL ResampleAverageOml = ((int)0x8988), CompareRToTexture = ((int)0x884e), SluminanceAlphaExt = ((int)0x8c44), - CurrentVertexWeightExt = ((int)0x850b), NormalMapExt = ((int)0x8511), Rgb8 = ((int)0x8051), MaxOptimizedVertexShaderLocalsExt = ((int)0x87ce), AttribArraySizeNv = ((int)0x8623), + MatrixPaletteArb = ((int)0x8840), ProxyTexture2dExt = ((int)0x8064), PrimaryColorExt = ((int)0x8577), ScissorTest = ((int)0x0c11), @@ -5232,8 +5084,7 @@ namespace OpenTK.OpenGL FogCoordinateExt = ((int)0x8451), SampleAlphaToMaskSgis = ((int)0x809e), IntSampler2dArrayExt = ((int)0x8dcf), - UnsignedShort4444RevExt = ((int)0x8365), - TextureMaxLevel = ((int)0x813d), + TextureMaxLevel = ((int)0x813d), Gl422AverageExt = ((int)0x80ce), Rgb16iExt = ((int)0x8d89), Modelview1Arb = ((int)0x850a), @@ -5243,6 +5094,8 @@ namespace OpenTK.OpenGL UnsignedNormalizedArb = ((int)0x8c17), Map2Normal = ((int)0x0db2), Texture23Arb = ((int)0x84d7), + EvalTriangular2dNv = ((int)0x86c1), + SecondaryColorArrayPointerExt = ((int)0x845d), Samples = ((int)0x80a9), DepthComponent24Arb = ((int)0x81a6), ProxyTexture4dSgis = ((int)0x8135), @@ -5250,7 +5103,6 @@ namespace OpenTK.OpenGL MaxTrackMatrixStackDepthNv = ((int)0x862e), ZExt = ((int)0x87d7), Light5 = ((int)0x4005), - MaxProgramEnvParametersArb = ((int)0x88b5), Gl1passExt = ((int)0x80a1), ViewportBit = ((int)0x00000800), CurrentMatrixStackDepthNv = ((int)0x8640), @@ -5269,6 +5121,7 @@ namespace OpenTK.OpenGL MinmaxSink = ((int)0x8030), StreamCopy = ((int)0x88e2), UpperLeft = ((int)0x8ca2), + DrawBuffer14 = ((int)0x8833), PackAlignment = ((int)0x0d05), PixelFragmentAlphaSourceSgis = ((int)0x8355), OffsetProjectiveTextureRectangleNv = ((int)0x8852), @@ -5278,11 +5131,10 @@ namespace OpenTK.OpenGL Gl2d = ((int)0x0600), Green = ((int)0x1904), NumCompressedTextureFormats = ((int)0x86a2), - FloatRgbNv = ((int)0x8882), + Matrix27 = ((int)0x88db), CombinerComponentUsageNv = ((int)0x8544), SelectionBufferPointer = ((int)0x0df3), - TextureMinLodSgis = ((int)0x813a), - IntSamplerCubeExt = ((int)0x8dcc), + IntSamplerCubeExt = ((int)0x8dcc), OutputTextureCoord20Ext = ((int)0x87b1), PixelPackBufferBinding = ((int)0x88ed), CombinerScaleNv = ((int)0x8548), @@ -5293,27 +5145,26 @@ namespace OpenTK.OpenGL SliceAccumSun = ((int)0x85cc), Luminance16Alpha16Ext = ((int)0x8048), ObjectInfoLogLengthArb = ((int)0x8b84), - ProgramAluInstructionsArb = ((int)0x8805), + Matrix15 = ((int)0x88cf), EyeLinear = ((int)0x2400), PostConvolutionRedScale = ((int)0x801c), N3fV3f = ((int)0x2a25), MatrixMode = ((int)0x0ba0), PackSwapBytes = ((int)0x0d00), RenderbufferExt = ((int)0x8d41), - Matrix20Arb = ((int)0x88d4), + MaxTextureLodBias = ((int)0x84fd), CmykaExt = ((int)0x800d), - SmoothPointSizeGranularity = ((int)0x0b13), + CompressedRgb = ((int)0x84ed), DrawBuffer5Ati = ((int)0x882a), - Source1Rgb = ((int)0x8581), - MaxRationalEvalOrderNv = ((int)0x86d7), + TextureCubeMapNegativeXExt = ((int)0x8516), SamplerBufferExt = ((int)0x8dc2), + MaxProgramAttribs = ((int)0x88ad), Intensity32iExt = ((int)0x8d85), SecondaryColorArray = ((int)0x845e), SmoothLineWidthRange = ((int)0x0b22), - PointSizeMinSgis = ((int)0x8126), - TangentArrayExt = ((int)0x8439), + TangentArrayExt = ((int)0x8439), T2fC4ubV3f = ((int)0x2a29), - FramebufferAttachmentObjectNameExt = ((int)0x8cd1), + FloatMat2 = ((int)0x8b5a), FloatMat3 = ((int)0x8b5b), Repeat = ((int)0x2901), Lequal = ((int)0x0203), @@ -5322,6 +5173,7 @@ namespace OpenTK.OpenGL Rgba12Ext = ((int)0x805a), AccumAlphaBits = ((int)0x0d5b), TextureClipmapFrameSgix = ((int)0x8172), + SignedAlphaNv = ((int)0x8705), QuadMeshSun = ((int)0x8614), PolygonOffsetFactorExt = ((int)0x8038), TextureLodBias = ((int)0x8501), @@ -5331,23 +5183,20 @@ namespace OpenTK.OpenGL UnpackCmykHintExt = ((int)0x800f), StencilTest = ((int)0x0b90), CurrentTextureCoords = ((int)0x0b03), - Source2Rgb = ((int)0x8582), TextureCompareModeArb = ((int)0x884c), OpMinExt = ((int)0x878b), Gl2xBitAti = ((int)0x00000001), NativeGraphicsBeginHintPgi = ((int)0x1a203), - PostColorMatrixBlueScaleSgi = ((int)0x80b6), - TextureWrapT = ((int)0x2803), + TextureWrapT = ((int)0x2803), CurrentRasterIndex = ((int)0x0b05), - PostColorMatrixGreenBiasSgi = ((int)0x80b9), - Sampler2dShadow = ((int)0x8b62), - VertexShaderInstructionsExt = ((int)0x87cf), + Matrix20 = ((int)0x88d4), + Matrix30 = ((int)0x88de), + VertexShaderInstructionsExt = ((int)0x87cf), + Luminance16Alpha16 = ((int)0x8048), TransposeProjectionMatrix = ((int)0x84e4), StencilBackRef = ((int)0x8ca3), Texture9 = ((int)0x84c9), - PostColorMatrixColorTableSgi = ((int)0x80d2), - OpIndexExt = ((int)0x8782), - GeometryShaderExt = ((int)0x8dd9), + GeometryShaderExt = ((int)0x8dd9), Back = ((int)0x0405), LinkStatus = ((int)0x8b82), FramebufferExt = ((int)0x8d40), @@ -5360,29 +5209,29 @@ namespace OpenTK.OpenGL VertexStream1Ati = ((int)0x876d), Modelview3Arb = ((int)0x8723), Source1AlphaArb = ((int)0x8589), - IncrWrap = ((int)0x8507), + BoolVec4Arb = ((int)0x8b59), PointSize = ((int)0x0b11), IndexShift = ((int)0x0d12), LinearClipmapLinearSgix = ((int)0x8170), ProxyTexture2dStackMesax = ((int)0x875c), - Texture30 = ((int)0x84de), + CombinerCdDotProductNv = ((int)0x8546), BackRight = ((int)0x0403), - AliasedPointSizeRange = ((int)0x846d), - MaxProgramNativeTemporariesArb = ((int)0x88a7), + ClientVertexArrayBit = ((int)0x00000002), + Operand1AlphaArb = ((int)0x8599), TextureHiSizeNv = ((int)0x871b), MaxEvalOrder = ((int)0x0d30), PackSkipPixels = ((int)0x0d04), Intensity4Ext = ((int)0x804a), - PointFadeThresholdSizeSgis = ((int)0x8128), - MaxAsyncReadPixelsSgix = ((int)0x8361), + MaxAsyncReadPixelsSgix = ((int)0x8361), NormalArrayStride = ((int)0x807f), PixelMapBToBSize = ((int)0x0cb8), MaxProgramAluInstructionsArb = ((int)0x880b), MaxElementsVerticesExt = ((int)0x80e8), FloatRgNv = ((int)0x8881), + ProgramLength = ((int)0x8627), + MapTessellationNv = ((int)0x86c2), PostColorMatrixBlueBias = ((int)0x80ba), - ColorTableSgi = ((int)0x80d0), - SrgbAlphaExt = ((int)0x8c42), + SrgbAlphaExt = ((int)0x8c42), EyeRadialNv = ((int)0x855b), BgraIntegerExt = ((int)0x8d9b), PixelTexGenQRoundSgix = ((int)0x8185), @@ -5398,6 +5247,7 @@ namespace OpenTK.OpenGL Byte = ((int)0x1400), ConvolutionHintSgix = ((int)0x8316), CoordReplace = ((int)0x8862), + Matrix17 = ((int)0x88d1), BgrIntegerExt = ((int)0x8d9a), BoolVec2 = ((int)0x8b57), Texture3Arb = ((int)0x84c3), @@ -5408,19 +5258,22 @@ namespace OpenTK.OpenGL Luminance4Alpha4Ext = ((int)0x8043), OneMinusDstColor = ((int)0x0307), ProxyTextureCubeMap = ((int)0x851b), - HistogramRedSize = ((int)0x8028), + HalfFloatNv = ((int)0x140b), Map1GridSegments = ((int)0x0dd1), VertexStream4Ati = ((int)0x8770), ScaleByTwoNv = ((int)0x853e), TextureBorder = ((int)0x1005), SampleBuffers = ((int)0x80a8), + Matrix2 = ((int)0x88c2), VariableANv = ((int)0x8523), - PostConvolutionGreenScale = ((int)0x801d), - T2fIuiN3fV3fExt = ((int)0x81b4), - FormatSubsample244244Oml = ((int)0x8983), + Matrix0 = ((int)0x88c0), + Matrix1 = ((int)0x88c1), + Matrix6 = ((int)0x88c6), + Matrix7 = ((int)0x88c7), BlueIntegerExt = ((int)0x8d96), - VertexAttribArrayEnabledArb = ((int)0x8622), + Matrix5 = ((int)0x88c5), UnsignedShort88RevMesa = ((int)0x85bb), + MaxProgramNativeInstructions = ((int)0x88a3), QuadStrip = ((int)0x0008), DepthComponent24 = ((int)0x81a6), ClientActiveTextureArb = ((int)0x84e1), @@ -5437,37 +5290,33 @@ namespace OpenTK.OpenGL Map2VertexAttrib134Nv = ((int)0x867d), Dot3RgbArb = ((int)0x86ae), PolygonOffsetExt = ((int)0x8037), + Operand3RgbNv = ((int)0x8593), ObjectBufferUsageAti = ((int)0x8765), - Modelview13Arb = ((int)0x872d), + DrawBuffer6Arb = ((int)0x882b), AuxBuffers = ((int)0x0c00), - BinormalArrayStrideExt = ((int)0x8441), - SampleCoverageInvertArb = ((int)0x80ab), - CompressedRedGreenRgtc2Ext = ((int)0x8dbd), + CompressedRedGreenRgtc2Ext = ((int)0x8dbd), GreenBitAti = ((int)0x00000002), FragmentProgramBindingNv = ((int)0x8873), - ProxyTexture3dExt = ((int)0x8070), - PackResampleSgix = ((int)0x842c), + PackResampleSgix = ((int)0x842c), Source0Rgb = ((int)0x8580), Map2Color4 = ((int)0x0db0), SpriteAxialSgix = ((int)0x814c), BufferMapPointer = ((int)0x88bd), - SamplesExt = ((int)0x80a9), + VertexStream6Ati = ((int)0x8772), ClientAttribStackDepth = ((int)0x0bb1), ObjectCompileStatusArb = ((int)0x8b81), TextureBindingRectangleNv = ((int)0x84f6), MaxActiveLightsSgix = ((int)0x8405), - PerStageConstantsNv = ((int)0x8535), + DsBiasNv = ((int)0x8716), VertexProgramParameterBufferNv = ((int)0x8da2), - FogCoordinateArrayStride = ((int)0x8455), + VariableCNv = ((int)0x8525), SampleMaskExt = ((int)0x80a0), - FuncAddExt = ((int)0x8006), - MaxVertexShaderLocalsExt = ((int)0x87c9), + MaxVertexShaderLocalsExt = ((int)0x87c9), Modelview10Arb = ((int)0x872a), MultisampleFilterHintNv = ((int)0x8534), - CullVertexEyePositionExt = ((int)0x81ab), + TransformHintApple = ((int)0x85b1), Depth32fStencil8Nv = ((int)0x8dac), PostColorMatrixGreenBias = ((int)0x80b9), - FloatRgb32Nv = ((int)0x8889), PackSkipRows = ((int)0x0d03), DepthBufferFloatModeNv = ((int)0x8daf), PackResampleOml = ((int)0x8984), @@ -5479,6 +5328,7 @@ namespace OpenTK.OpenGL R5G6B5A8IccSgix = ((int)0x8467), Con28Ati = ((int)0x895d), MaxTextureImageUnits = ((int)0x8872), + ProgramBinding = ((int)0x8677), DepthComponent32fNv = ((int)0x8dab), Rgba8Ext = ((int)0x8058), FogCoordinateArrayListStrideIbm = ((int)103086), @@ -5491,11 +5341,9 @@ namespace OpenTK.OpenGL Modelview19Arb = ((int)0x8733), Gl4pass3Sgis = ((int)0x80a7), OffsetHiloTexture2dNv = ((int)0x8854), - FogCoordinateArray = ((int)0x8457), + SamplerCubeShadowExt = ((int)0x8dc5), Previous = ((int)0x8578), - MinmaxSinkExt = ((int)0x8030), - Equal = ((int)0x0202), - MaxProgramNativeAddressRegistersArb = ((int)0x88b3), + Equal = ((int)0x0202), VertexAttribArray12Nv = ((int)0x865c), VariableENv = ((int)0x8527), SpotExponent = ((int)0x1205), @@ -5508,14 +5356,14 @@ namespace OpenTK.OpenGL VertexArrayRangeWithoutFlushNv = ((int)0x8533), MaxConvolutionWidth = ((int)0x801a), PixelTileBestAlignmentSgix = ((int)0x813e), + BufferMapped = ((int)0x88bc), VertexStream3Ati = ((int)0x876f), BitmapToken = ((int)0x0704), TextureClipmapOffsetSgix = ((int)0x8173), HistogramSink = ((int)0x802d), ProxyPostColorMatrixColorTable = ((int)0x80d5), BufferMappedArb = ((int)0x88bc), - TextureDepthExt = ((int)0x8071), - PixelFragmentRgbSourceSgis = ((int)0x8354), + PixelFragmentRgbSourceSgis = ((int)0x8354), EvalVertexAttrib11Nv = ((int)0x86d1), ShadeModel = ((int)0x0b54), FogOffsetSgix = ((int)0x8198), @@ -5524,6 +5372,7 @@ namespace OpenTK.OpenGL DrawBuffer12Ati = ((int)0x8831), DotProductAffineDepthReplaceNv = ((int)0x885d), ElementArrayBufferArb = ((int)0x8893), + Matrix26 = ((int)0x88da), LinesAdjacencyExt = ((int)0x000a), Map1GridDomain = ((int)0x0dd0), ConstantColor0Nv = ((int)0x852a), @@ -5533,23 +5382,22 @@ namespace OpenTK.OpenGL FragmentNormalExt = ((int)0x834a), TransformFeedbackBufferModeNv = ((int)0x8c7f), FragmentProgramParameterBufferNv = ((int)0x8da4), - VariableGNv = ((int)0x8529), + Sampler2dShadow = ((int)0x8b62), VertexArrayStrideExt = ((int)0x807c), + ProgramTemporaries = ((int)0x88a4), MapAttribVOrderNv = ((int)0x86c4), TextureCubeMapPositiveXArb = ((int)0x8515), DrawBuffer5Arb = ((int)0x882a), - FloatMat4x2 = ((int)0x8b69), VertexAttribArray10Nv = ((int)0x865a), + Clear = ((int)0x1500), UnpackSkipVolumesSgis = ((int)0x8132), - Matrix30Arb = ((int)0x88de), MaxElementsVertices = ((int)0x80e8), PixelTexGenAlphaReplaceSgix = ((int)0x8187), VertexStream5Ati = ((int)0x8771), QuadTextureSelectSgis = ((int)0x8125), PreferDoublebufferHintPgi = ((int)0x1a1f8), TextureDeformationSgix = ((int)0x8195), - ConvolutionFilterBiasExt = ((int)0x8015), - Modelview14Arb = ((int)0x872e), + Modelview14Arb = ((int)0x872e), ClampVertexColorArb = ((int)0x891a), Modelview11Arb = ((int)0x872b), IntensityIccSgix = ((int)0x8464), @@ -5559,46 +5407,42 @@ namespace OpenTK.OpenGL Depth = ((int)0x1801), VertexStream0Ati = ((int)0x876c), Sampler2dArrayShadowExt = ((int)0x8dc4), - PostConvolutionGreenScaleExt = ((int)0x801d), - Map2VertexAttrib64Nv = ((int)0x8676), + Map2VertexAttrib64Nv = ((int)0x8676), MatrixIndexArrayArb = ((int)0x8844), TextureCoordArrayStrideExt = ((int)0x808a), MaxGeometryVaryingComponentsExt = ((int)0x8ddd), - BlendEquationRgb = ((int)ArbImaging.BlendEquation), + BlendEquationRgb = ((int)0x8009), LinearDetailSgis = ((int)0x8097), LuminanceAlphaIccSgix = ((int)0x8465), TextureLodBiasSSgix = ((int)0x818e), - VertexStream6Ati = ((int)0x8772), + TextureCubeMapNegativeX = ((int)0x8516), TextureCubeMapNegativeY = ((int)0x8518), + TextureCubeMapNegativeZ = ((int)0x851a), BlendDst = ((int)0x0be0), FragmentColorMaterialFaceSgix = ((int)0x8402), ReadOnly = ((int)0x88b8), - ConvolutionWidthExt = ((int)0x8018), - DrawBuffer11Ati = ((int)0x8830), + DrawBuffer11Ati = ((int)0x8830), IgnoreBorderHp = ((int)0x8150), CombinerAbDotProductNv = ((int)0x8545), PolygonOffsetUnits = ((int)0x2a00), ColorAttachment10Ext = ((int)0x8cea), - Modelview1StackDepthExt = ((int)0x8502), TextureCubeMapPositiveZArb = ((int)0x8519), BlueMinClampIngr = ((int)0x8562), TextureResident = ((int)0x8067), WeightArrayArb = ((int)0x86ad), Rgba8 = ((int)0x8058), - HistogramGreenSizeExt = ((int)0x8029), - PixelUnpackBuffer = ((int)0x88ec), + PixelUnpackBuffer = ((int)0x88ec), VertexStream7Ati = ((int)0x8773), Rgba2 = ((int)0x8055), Luminance8uiExt = ((int)0x8d80), StencilRef = ((int)0x0b97), - OffsetTextureScaleNv = ((int)0x86e2), + EvalVertexAttrib4Nv = ((int)0x86ca), DsdtMagIntensityNv = ((int)0x86dc), Combiner1Nv = ((int)0x8551), Rgba4 = ((int)0x8056), ProxyTexture3d = ((int)0x8070), ProxyTexture2d = ((int)0x8064), ProxyTexture1d = ((int)0x8063), - ProgramNativeTemporariesArb = ((int)0x88a6), PostConvolutionGreenBias = ((int)0x8021), PolygonOffsetFactor = ((int)0x8038), } @@ -5682,316 +5526,314 @@ namespace OpenTK.OpenGL HistogramBlueSize = ((int)0x802a), } - public enum Version13 + public enum TextureEnvModeCombine { - Combine = ((int)0x8570), - Texture9 = ((int)0x84c9), - TextureCubeMapNegativeX = ((int)0x8516), - Texture26 = ((int)0x84da), - Texture27 = ((int)0x84db), - Texture24 = ((int)0x84d8), - Texture25 = ((int)0x84d9), - SampleAlphaToOne = ((int)0x809f), - Texture23 = ((int)0x84d7), - Texture20 = ((int)0x84d4), - Texture21 = ((int)0x84d5), - Operand0Alpha = ((int)0x8598), + Dot3Rgba = ((int)0x86af), + Dot3Rgb = ((int)0x86ae), + Add = ((int)0x0104), + Modulate = ((int)0x2100), + Replace = ((int)0x1e01), + Subtract = ((int)0x84e7), + AddSigned = ((int)0x8574), + Interpolate = ((int)0x8575), + } + + public enum TextureEnvModeSource + { + Texture5 = ((int)0x84c5), + Texture3 = ((int)0x84c3), + Texture30 = ((int)0x84de), + Texture = ((int)0x1702), + Texture12 = ((int)0x84cc), + Texture13 = ((int)0x84cd), + Texture6 = ((int)0x84c6), + Previous = ((int)0x8578), Texture16 = ((int)0x84d0), Texture17 = ((int)0x84d1), Texture14 = ((int)0x84ce), Texture15 = ((int)0x84cf), - Samples = ((int)0x80a9), - Texture29 = ((int)0x84dd), - Texture4 = ((int)0x84c4), + PrimaryColor = ((int)0x8577), + Texture28 = ((int)0x84dc), + Texture10 = ((int)0x84ca), Texture11 = ((int)0x84cb), - Subtract = ((int)0x84e7), + Texture8 = ((int)0x84c8), Texture18 = ((int)0x84d2), Texture19 = ((int)0x84d3), - Texture3 = ((int)0x84c3), - TransposeProjectionMatrix = ((int)0x84e4), - AddSigned = ((int)0x8574), - SampleAlphaToCoverage = ((int)0x809e), - CombineRgb = ((int)0x8571), - TransposeTextureMatrix = ((int)0x84e5), - SampleCoverage = ((int)0x80a0), - ReflectionMap = ((int)0x8512), - TextureCubeMapNegativeZ = ((int)0x851a), - MultisampleBit = ((int)0x20000000), - Multisample = ((int)0x809d), - ClientActiveTexture = ((int)0x84e1), - CompressedLuminanceAlpha = ((int)0x84eb), - Constant = ((int)0x8576), - TextureBindingCubeMap = ((int)0x8514), - Texture7 = ((int)0x84c7), - NormalMap = ((int)0x8511), - PrimaryColor = ((int)0x8577), Texture2 = ((int)0x84c2), - TransposeColorMatrix = ((int)0x84e6), - Source1Alpha = ((int)0x8589), - Previous = ((int)0x8578), - TextureCubeMapNegativeY = ((int)0x8518), - CompressedAlpha = ((int)0x84e9), - TextureCompressedImageSize = ((int)0x86a0), - SampleCoverageValue = ((int)0x80aa), - Operand1Rgb = ((int)0x8591), - Source0Alpha = ((int)0x8588), + Texture31 = ((int)0x84df), + Texture26 = ((int)0x84da), + Texture27 = ((int)0x84db), + Texture24 = ((int)0x84d8), + Texture25 = ((int)0x84d9), + Texture22 = ((int)0x84d6), + Texture23 = ((int)0x84d7), + Texture20 = ((int)0x84d4), + Texture21 = ((int)0x84d5), + Texture0 = ((int)0x84c0), + Texture29 = ((int)0x84dd), + Texture7 = ((int)0x84c7), + Constant = ((int)0x8576), + Texture1 = ((int)0x84c1), + Texture4 = ((int)0x84c4), + Texture9 = ((int)0x84c9), + } + + public enum TextureEnvModeOperandRgb + { + OneMinusSrcColor = ((int)0x0301), + SrcColor = ((int)0x0300), + OneMinusSrcAlpha = ((int)0x0303), + SrcAlpha = ((int)0x0302), + } + + public enum TextureEnvModeOperandAlpha + { + OneMinusSrcAlpha = ((int)0x0303), + SrcAlpha = ((int)0x0302), + } + + public enum TextureEnvModeScale + { + Two = ((int)2), + One = ((int)1), + Four = ((int)4), + } + + public enum TextureUnit + { + Texture17 = ((int)0x84d1), Texture8 = ((int)0x84c8), - TransposeModelviewMatrix = ((int)0x84e3), - MaxCubeMapTextureSize = ((int)0x851c), - ProxyTextureCubeMap = ((int)0x851b), - Operand2Alpha = ((int)0x859a), - TextureCubeMap = ((int)0x8513), - RgbScale = ((int)0x8573), - Operand0Rgb = ((int)0x8590), - SampleCoverageInvert = ((int)0x80ab), - Operand1Alpha = ((int)0x8599), - Texture30 = ((int)0x84de), - TextureCompressionHint = ((int)0x84ef), + Texture10 = ((int)0x84ca), Texture12 = ((int)0x84cc), Texture13 = ((int)0x84cd), - Texture10 = ((int)0x84ca), - Texture31 = ((int)0x84df), - Dot3Rgba = ((int)0x86af), - NumCompressedTextureFormats = ((int)0x86a2), - TextureCubeMapPositiveZ = ((int)0x8519), + Texture9 = ((int)0x84c9), + Texture11 = ((int)0x84cb), + Texture29 = ((int)0x84dd), Texture1 = ((int)0x84c1), - TextureCubeMapPositiveX = ((int)0x8515), - TextureCubeMapPositiveY = ((int)0x8517), - CompressedRgba = ((int)0x84ee), - Source2Alpha = ((int)0x858a), - MaxTextureUnits = ((int)0x84e2), - CompressedTextureFormats = ((int)0x86a3), - Operand2Rgb = ((int)0x8592), - Source0Rgb = ((int)0x8580), - CombineAlpha = ((int)0x8572), - CompressedRgb = ((int)0x84ed), - Interpolate = ((int)0x8575), - Texture6 = ((int)0x84c6), + Texture26 = ((int)0x84da), + Texture18 = ((int)0x84d2), + Texture19 = ((int)0x84d3), Texture22 = ((int)0x84d6), - CompressedLuminance = ((int)0x84ea), - Source1Rgb = ((int)0x8581), + Texture23 = ((int)0x84d7), + Texture6 = ((int)0x84c6), + Texture21 = ((int)0x84d5), + Texture7 = ((int)0x84c7), Texture5 = ((int)0x84c5), - ClampToBorder = ((int)0x812d), Texture28 = ((int)0x84dc), - Dot3Rgb = ((int)0x86ae), - SampleBuffers = ((int)0x80a8), + Texture2 = ((int)0x84c2), + Texture3 = ((int)0x84c3), + Texture25 = ((int)0x84d9), + Texture30 = ((int)0x84de), + Texture31 = ((int)0x84df), Texture0 = ((int)0x84c0), - TextureCompressed = ((int)0x86a1), - CompressedIntensity = ((int)0x84ec), - Source2Rgb = ((int)0x8582), - ActiveTexture = ((int)0x84e0), + Texture27 = ((int)0x84db), + Texture24 = ((int)0x84d8), + Texture16 = ((int)0x84d0), + Texture15 = ((int)0x84cf), + Texture14 = ((int)0x84ce), + Texture20 = ((int)0x84d4), + Texture4 = ((int)0x84c4), } - public enum Version14 + public enum TextureCompareMode { - PointSizeMax = ((int)0x8127), - FragmentDepth = ((int)0x8452), - DepthTextureMode = ((int)0x884b), CompareRToTexture = ((int)0x884e), - TextureCompareMode = ((int)0x884c), - BlendDstAlpha = ((int)0x80ca), - SecondaryColorArrayType = ((int)0x845b), - FogCoordinateArrayType = ((int)0x8454), - TextureLodBias = ((int)0x8501), - CurrentSecondaryColor = ((int)0x8459), - SecondaryColorArray = ((int)0x845e), - CurrentFogCoordinate = ((int)0x8453), - DecrWrap = ((int)0x8508), - BlendSrcRgb = ((int)0x80c9), - SecondaryColorArrayStride = ((int)0x845c), - SecondaryColorArraySize = ((int)0x845a), - TextureFilterControl = ((int)0x8500), - MaxTextureLodBias = ((int)0x84fd), - MirroredRepeat = ((int)0x8370), - BlendDstRgb = ((int)0x80c8), - FogCoordinateArray = ((int)0x8457), - PointFadeThresholdSize = ((int)0x8128), - IncrWrap = ((int)0x8507), - SecondaryColorArrayPointer = ((int)0x845d), - FogCoordinateArrayPointer = ((int)0x8456), - BlendSrcAlpha = ((int)0x80cb), - PointSizeMin = ((int)0x8126), - DepthComponent32 = ((int)0x81a7), - TextureDepthSize = ((int)0x884a), - GenerateMipmapHint = ((int)0x8192), - DepthComponent16 = ((int)0x81a5), - FogCoordinate = ((int)0x8451), - GenerateMipmap = ((int)0x8191), - FogCoordinateSource = ((int)0x8450), - FogCoordinateArrayStride = ((int)0x8455), - TextureCompareFunc = ((int)0x884d), - ColorSum = ((int)0x8458), - DepthComponent24 = ((int)0x81a6), - PointDistanceAttenuation = ((int)0x8129), } - public enum Version15 + public enum FogPointerType + { + Float = ((int)0x1406), + Double = ((int)0x140a), + } + + public enum PointParameterName + { + PointFadeThresholdSize = ((int)0x8128), + PointSizeMax = ((int)0x8127), + PointDistanceAttenuation = ((int)0x8129), + PointSizeMin = ((int)0x8126), + PointSpriteCoordOrigin = ((int)0x8ca0), + } + + public enum QueryTarget + { + SamplesPassed = ((int)0x8914), + } + + public enum GetQueryParam + { + QueryCounterBits = ((int)0x8864), + CurrentQuery = ((int)0x8865), + } + + public enum GetQueryObjectParam + { + QueryResultAvailable = ((int)0x8867), + QueryResult = ((int)0x8866), + } + + public enum BufferTarget { ArrayBuffer = ((int)0x8892), - FogCoordArrayType = ((int)Version14.FogCoordinateArrayType), - TextureCoordArrayBufferBinding = ((int)0x889a), - SecondaryColorArrayBufferBinding = ((int)0x889c), - StreamDraw = ((int)0x88e0), - FogCoordArrayBufferBinding = ((int)Version15.FogCoordinateArrayBufferBinding), - StaticCopy = ((int)0x88e6), - ArrayBufferBinding = ((int)0x8894), - NormalArrayBufferBinding = ((int)0x8897), - StaticRead = ((int)0x88e5), - QueryCounterBits = ((int)0x8864), - ReadWrite = ((int)0x88ba), - CurrentQuery = ((int)0x8865), - BufferMapPointer = ((int)0x88bd), - StreamRead = ((int)0x88e1), - Src0Rgb = ((int)Version13.Source0Rgb), - FogCoordSrc = ((int)Version14.FogCoordinateSource), - BufferAccess = ((int)0x88bb), ElementArrayBuffer = ((int)0x8893), - ReadOnly = ((int)0x88b8), - QueryResult = ((int)0x8866), - Src1Alpha = ((int)Version13.Source1Alpha), - Src2Alpha = ((int)Version13.Source2Alpha), - CurrentFogCoord = ((int)Version14.CurrentFogCoordinate), - FogCoord = ((int)Version14.FogCoordinate), - DynamicRead = ((int)0x88e9), - FogCoordinateArrayBufferBinding = ((int)0x889d), - ElementArrayBufferBinding = ((int)0x8895), - StaticDraw = ((int)0x88e4), - Src2Rgb = ((int)Version13.Source2Rgb), - Src1Rgb = ((int)Version13.Source1Rgb), - FogCoordArrayPointer = ((int)Version14.FogCoordinateArrayPointer), - WriteOnly = ((int)0x88b9), - WeightArrayBufferBinding = ((int)0x889e), - StreamCopy = ((int)0x88e2), - FogCoordArray = ((int)Version14.FogCoordinateArray), - EdgeFlagArrayBufferBinding = ((int)0x889b), - BufferUsage = ((int)0x8765), - DynamicCopy = ((int)0x88ea), - BufferSize = ((int)0x8764), - QueryResultAvailable = ((int)0x8867), - VertexAttribArrayBufferBinding = ((int)0x889f), - FogCoordArrayStride = ((int)Version14.FogCoordinateArrayStride), - VertexArrayBufferBinding = ((int)0x8896), - ColorArrayBufferBinding = ((int)0x8898), - BufferMapped = ((int)0x88bc), - SamplesPassed = ((int)0x8914), - Src0Alpha = ((int)Version13.Source0Alpha), - DynamicDraw = ((int)0x88e8), - IndexArrayBufferBinding = ((int)0x8899), + PixelUnpackBuffer = ((int)0x88ec), + PixelPackBuffer = ((int)0x88eb), } - public enum Version20 + public enum BufferUsageHint { - CompileStatus = ((int)0x8b81), - IntVec2 = ((int)0x8b53), - IntVec3 = ((int)0x8b54), - MaxTextureImageUnits = ((int)0x8872), - IntVec4 = ((int)0x8b55), - ActiveUniformMaxLength = ((int)0x8b87), - ShadingLanguageVersion = ((int)0x8b8c), - MaxCombinedTextureImageUnits = ((int)0x8b4d), - VertexProgramTwoSide = ((int)0x8643), - DeleteStatus = ((int)0x8b80), - DrawBuffer9 = ((int)0x882e), - DrawBuffer6 = ((int)0x882b), - DrawBuffer7 = ((int)0x882c), - DrawBuffer4 = ((int)0x8829), - DrawBuffer5 = ((int)0x882a), - DrawBuffer2 = ((int)0x8827), - DrawBuffer3 = ((int)0x8828), - DrawBuffer0 = ((int)0x8825), - DrawBuffer1 = ((int)0x8826), - Sampler1d = ((int)0x8b5d), - PointSpriteCoordOrigin = ((int)0x8ca0), - DrawBuffer11 = ((int)0x8830), - StencilBackPassDepthPass = ((int)0x8803), - Sampler1dShadow = ((int)0x8b61), - Sampler3d = ((int)0x8b5f), - ShaderSourceLength = ((int)0x8b88), - ShaderType = ((int)0x8b4f), - StencilBackRef = ((int)0x8ca3), - VertexAttribArrayEnabled = ((int)0x8622), - InfoLogLength = ((int)0x8b84), - FloatVec2 = ((int)0x8b50), - FloatVec3 = ((int)0x8b51), - VertexAttribArrayType = ((int)0x8625), - MaxDrawBuffers = ((int)0x8824), - FloatVec4 = ((int)0x8b52), - CurrentVertexAttrib = ((int)0x8626), - StencilBackFunc = ((int)0x8800), - MaxFragmentUniformComponents = ((int)0x8b49), - Sampler2dShadow = ((int)0x8b62), - FragmentShaderDerivativeHint = ((int)0x8b8b), - StencilBackWritemask = ((int)0x8ca5), - VertexAttribArrayPointer = ((int)0x8645), - CurrentProgram = ((int)0x8b8d), - DrawBuffer8 = ((int)0x882d), - SamplerCube = ((int)0x8b60), - DrawBuffer13 = ((int)0x8832), - PointSprite = ((int)0x8861), - StencilBackValueMask = ((int)0x8ca4), - DrawBuffer14 = ((int)0x8833), - ActiveAttributes = ((int)0x8b89), - StencilBackPassDepthFail = ((int)0x8802), - CoordReplace = ((int)0x8862), - MaxVertexTextureImageUnits = ((int)0x8b4c), - Bool = ((int)0x8b56), - ValidateStatus = ((int)0x8b83), - MaxTextureCoords = ((int)0x8871), - BlendEquationRgb = ((int)ArbImaging.BlendEquation), - VertexProgramPointSize = ((int)0x8642), - StencilBackFail = ((int)0x8801), - VertexShader = ((int)0x8b31), - DrawBuffer10 = ((int)0x882f), - BlendEquationAlpha = ((int)0x883d), - BoolVec2 = ((int)0x8b57), - AttachedShaders = ((int)0x8b85), - DrawBuffer15 = ((int)0x8834), - FragmentShader = ((int)0x8b30), - ActiveUniforms = ((int)0x8b86), - LowerLeft = ((int)0x8ca1), - MaxVaryingFloats = ((int)0x8b4b), - ActiveAttributeMaxLength = ((int)0x8b8a), - BoolVec4 = ((int)0x8b59), - FloatMat4 = ((int)0x8b5c), - FloatMat2 = ((int)0x8b5a), - FloatMat3 = ((int)0x8b5b), - VertexAttribArrayStride = ((int)0x8624), - UpperLeft = ((int)0x8ca2), - LinkStatus = ((int)0x8b82), - MaxVertexAttribs = ((int)0x8869), - DrawBuffer12 = ((int)0x8831), - VertexAttribArrayNormalized = ((int)0x886a), - MaxVertexUniformComponents = ((int)0x8b4a), - BoolVec3 = ((int)0x8b58), - Sampler2d = ((int)0x8b5e), - VertexAttribArraySize = ((int)0x8623), + StreamDraw = ((int)0x88e0), + DynamicCopy = ((int)0x88ea), + StaticDraw = ((int)0x88e4), + StaticCopy = ((int)0x88e6), + StaticRead = ((int)0x88e5), + StreamCopy = ((int)0x88e2), + DynamicDraw = ((int)0x88e8), + DynamicRead = ((int)0x88e9), + StreamRead = ((int)0x88e1), } - public enum Version21 + public enum BufferAccess + { + WriteOnly = ((int)0x88b9), + ReadWrite = ((int)0x88ba), + ReadOnly = ((int)0x88b8), + } + + public enum BufferParameterName + { + BufferUsage = ((int)0x8765), + BufferSize = ((int)0x8764), + BufferAccess = ((int)0x88bb), + BufferMapped = ((int)0x88bc), + } + + public enum BufferPointer + { + BufferMapPointer = ((int)0x88bd), + } + + public enum ShaderType + { + GeometryShaderExt = ((int)0x8dd9), + FragmentShader = ((int)0x8b30), + VertexShader = ((int)0x8b31), + } + + public enum ActiveUniformType { FloatMat4x2 = ((int)0x8b69), FloatMat4x3 = ((int)0x8b6a), - Srgb8Alpha8 = ((int)0x8c43), - Srgb8 = ((int)0x8c41), - CompressedSrgbAlpha = ((int)0x8c49), - CurrentRasterSecondaryColor = ((int)0x845f), - FloatMat3x2 = ((int)0x8b67), - PixelUnpackBuffer = ((int)0x88ec), - CompressedSluminance = ((int)0x8c4a), - CompressedSluminanceAlpha = ((int)0x8c4b), - FloatMat2x4 = ((int)0x8b66), - PixelUnpackBufferBinding = ((int)0x88ef), + Bool = ((int)0x8b56), + IntVec4 = ((int)0x8b55), + Sampler1d = ((int)0x8b5d), + SamplerCube = ((int)0x8b60), FloatMat3x4 = ((int)0x8b68), - SluminanceAlpha = ((int)0x8c44), - Sluminance = ((int)0x8c46), - PixelPackBuffer = ((int)0x88eb), FloatMat2x3 = ((int)0x8b65), - PixelPackBufferBinding = ((int)0x88ed), - Sluminance8 = ((int)0x8c47), - Srgb = ((int)0x8c40), - CompressedSrgb = ((int)0x8c48), - SrgbAlpha = ((int)0x8c42), - Sluminance8Alpha8 = ((int)0x8c45), + Sampler2d = ((int)0x8b5e), + FloatMat2x4 = ((int)0x8b66), + Sampler1dShadow = ((int)0x8b61), + BoolVec2 = ((int)0x8b57), + FloatMat4 = ((int)0x8b5c), + FloatMat2 = ((int)0x8b5a), + FloatMat3 = ((int)0x8b5b), + FloatMat3x2 = ((int)0x8b67), + Sampler2dShadow = ((int)0x8b62), + FloatVec2 = ((int)0x8b50), + FloatVec3 = ((int)0x8b51), + Int = ((int)0x1404), + BoolVec4 = ((int)0x8b59), + Sampler3d = ((int)0x8b5f), + FloatVec4 = ((int)0x8b52), + Float = ((int)0x1406), + BoolVec3 = ((int)0x8b58), + IntVec2 = ((int)0x8b53), + IntVec3 = ((int)0x8b54), + } + + public enum ActiveAttribType + { + FloatMat2 = ((int)0x8b5a), + Float = ((int)0x1406), + FloatVec2 = ((int)0x8b50), + FloatVec3 = ((int)0x8b51), + FloatMat3 = ((int)0x8b5b), + FloatVec4 = ((int)0x8b52), + FloatMat4 = ((int)0x8b5c), + } + + public enum VertexAttribPointerType + { + UnsignedByte = ((int)0x1401), + Byte = ((int)0x1400), + UnsignedInt = ((int)0x1405), + Short = ((int)0x1402), + Int = ((int)0x1404), + Float = ((int)0x1406), + Double = ((int)0x140a), + UnsignedShort = ((int)0x1403), + } + + public enum ShaderParameter + { + DeleteStatus = ((int)0x8b80), + InfoLogLength = ((int)0x8b84), + CompileStatus = ((int)0x8b81), + ShaderSourceLength = ((int)0x8b88), + ShaderType = ((int)0x8b4f), + } + + public enum ProgramParameter + { + ActiveAttributeMaxLength = ((int)0x8b8a), + DeleteStatus = ((int)0x8b80), + ActiveUniformMaxLength = ((int)0x8b87), + AttachedShaders = ((int)0x8b85), + ActiveUniforms = ((int)0x8b86), + InfoLogLength = ((int)0x8b84), + ValidateStatus = ((int)0x8b83), + ActiveAttributes = ((int)0x8b89), + LinkStatus = ((int)0x8b82), + } + + public enum VertexAttribParameter + { + ArrayEnabled = ((int)0x8622), + ArrayNormalized = ((int)0x886a), + ArraySize = ((int)0x8623), + CurrentVertexAttrib = ((int)0x8626), + ArrayStride = ((int)0x8624), + ArrayType = ((int)0x8625), + } + + public enum VertexAttribPointerParameter + { + ArrayPointer = ((int)0x8645), + } + + public enum DrawBuffersEnum + { + FrontRight = ((int)0x0401), + BackLeft = ((int)0x0402), + BackRight = ((int)0x0403), + Aux1 = ((int)0x040a), + Aux0 = ((int)0x0409), + Aux3 = ((int)0x040c), + Aux2 = ((int)0x040b), + FrontLeft = ((int)0x0400), + None = ((int)0), + } + + public enum PointSpriteCoordOriginParameter + { + UpperLeft = ((int)0x8ca2), + LowerLeft = ((int)0x8ca1), + } + + public enum TextureEnvModePointSprite + { + True = ((int)1), + False = ((int)0), } public enum ArbMultitexture @@ -6217,104 +6059,189 @@ namespace OpenTK.OpenGL public enum ArbVertexProgram { - MaxProgramNativeInstructionsArb = ((int)0x88a3), - Matrix24Arb = ((int)0x88d8), - VertexProgramArb = ((int)0x8620), - Matrix4Arb = ((int)0x88c4), - ProgramNativeAttribsArb = ((int)0x88ae), TransposeCurrentMatrixArb = ((int)0x88b7), - Matrix19Arb = ((int)0x88d3), - CurrentMatrixStackDepthArb = ((int)0x8640), - Matrix14Arb = ((int)0x88ce), - ProgramNativeInstructionsArb = ((int)0x88a2), - MaxProgramMatricesArb = ((int)0x862f), - ProgramInstructionsArb = ((int)0x88a0), - Matrix23Arb = ((int)0x88d7), - Matrix27Arb = ((int)0x88db), - Matrix12Arb = ((int)0x88cc), - Matrix20Arb = ((int)0x88d4), - Matrix7Arb = ((int)0x88c7), - VertexAttribArrayPointerArb = ((int)0x8645), - MaxProgramNativeAttribsArb = ((int)0x88af), - ProgramNativeTemporariesArb = ((int)0x88a6), - ProgramTemporariesArb = ((int)0x88a4), - Matrix6Arb = ((int)0x88c6), - Matrix16Arb = ((int)0x88d0), - Matrix9Arb = ((int)0x88c9), - VertexAttribArraySizeArb = ((int)0x8623), - Matrix21Arb = ((int)0x88d5), - MaxProgramNativeTemporariesArb = ((int)0x88a7), - ProgramNativeParametersArb = ((int)0x88aa), - ProgramErrorPositionArb = ((int)0x864b), - Matrix1Arb = ((int)0x88c1), - ProgramAddressRegistersArb = ((int)0x88b0), - Matrix8Arb = ((int)0x88c8), - Matrix25Arb = ((int)0x88d9), - ProgramLengthArb = ((int)0x8627), - Matrix15Arb = ((int)0x88cf), - ProgramFormatArb = ((int)0x8876), - VertexAttribArrayStrideArb = ((int)0x8624), - ProgramParametersArb = ((int)0x88a8), - Matrix0Arb = ((int)0x88c0), - Matrix13Arb = ((int)0x88cd), - MaxProgramAttribsArb = ((int)0x88ad), - ProgramUnderNativeLimitsArb = ((int)0x88b6), - Matrix18Arb = ((int)0x88d2), - VertexAttribArrayEnabledArb = ((int)0x8622), - ProgramNativeAddressRegistersArb = ((int)0x88b2), - Matrix17Arb = ((int)0x88d1), - Matrix3Arb = ((int)0x88c3), - MaxVertexAttribsArb = ((int)0x8869), - CurrentVertexAttribArb = ((int)0x8626), - Matrix30Arb = ((int)0x88de), - MaxProgramParametersArb = ((int)0x88a9), - MaxProgramInstructionsArb = ((int)0x88a1), - Matrix11Arb = ((int)0x88cb), - VertexAttribArrayNormalizedArb = ((int)0x886a), - Matrix2Arb = ((int)0x88c2), - ProgramFormatAsciiArb = ((int)0x8875), - Matrix29Arb = ((int)0x88dd), - MaxProgramAddressRegistersArb = ((int)0x88b1), - MaxProgramNativeAddressRegistersArb = ((int)0x88b3), - CurrentMatrixArb = ((int)0x8641), - Matrix28Arb = ((int)0x88dc), - MaxProgramEnvParametersArb = ((int)0x88b5), - MaxProgramNativeParametersArb = ((int)0x88ab), - Matrix22Arb = ((int)0x88d6), - ColorSumArb = ((int)0x8458), - MaxProgramMatrixStackDepthArb = ((int)0x862e), - ProgramStringArb = ((int)0x8628), VertexProgramTwoSideArb = ((int)0x8643), + CurrentMatrixStackDepthArb = ((int)0x8640), + ProgramErrorPositionArb = ((int)0x864b), + MaxVertexAttribsArb = ((int)0x8869), ProgramErrorStringArb = ((int)0x8874), - Matrix26Arb = ((int)0x88da), - ProgramBindingArb = ((int)0x8677), - ProgramAttribsArb = ((int)0x88ac), - Matrix31Arb = ((int)0x88df), - MaxProgramTemporariesArb = ((int)0x88a5), - Matrix5Arb = ((int)0x88c5), - VertexAttribArrayTypeArb = ((int)0x8625), - Matrix10Arb = ((int)0x88ca), + MaxProgramMatrixStackDepthArb = ((int)0x862e), + MaxProgramMatricesArb = ((int)0x862f), + ColorSumArb = ((int)0x8458), + CurrentMatrixArb = ((int)0x8641), VertexProgramPointSizeArb = ((int)0x8642), - MaxProgramLocalParametersArb = ((int)0x88b4), + ProgramFormatAsciiArb = ((int)0x8875), + } + + public enum AssemblyProgramTargetArb + { + VertexProgram = ((int)0x8620), + GeometryProgramNv = ((int)0x8c26), + FragmentProgram = ((int)0x8804), + } + + public enum AssemblyProgramFormatArb + { + ProgramFormatAsciiArb = ((int)0x8875), + } + + public enum AssemblyProgramParameterArb + { + MaxProgramAttribs = ((int)0x88ad), + MaxProgramLocalParameters = ((int)0x88b4), + ProgramAluInstructionsArb = ((int)0x8805), + ProgramAttribs = ((int)0x88ac), + ProgramTemporaries = ((int)0x88a4), + MaxProgramNativeAddressRegisters = ((int)0x88b3), + ProgramNativeAluInstructionsArb = ((int)0x8808), + MaxProgramNativeTexInstructionsArb = ((int)0x880f), + MaxProgramTexIndirectionsArb = ((int)0x880d), + ProgramParameters = ((int)0x88a8), + ProgramNativeTemporaries = ((int)0x88a6), + MaxProgramNativeTexIndirectionsArb = ((int)0x8810), + ProgramNativeAttribs = ((int)0x88ae), + ProgramAddressRegisters = ((int)0x88b0), + ProgramUnderNativeLimits = ((int)0x88b6), + ProgramNativeInstructions = ((int)0x88a2), + MaxProgramParameters = ((int)0x88a9), + MaxProgramEnvParameters = ((int)0x88b5), + ProgramFormat = ((int)0x8876), + MaxProgramTexInstructionsArb = ((int)0x880c), + MaxProgramInstructions = ((int)0x88a1), + ProgramTexIndirectionsArb = ((int)0x8807), + ProgramTexInstructionsArb = ((int)0x8806), + ProgramNativeParameters = ((int)0x88aa), + ProgramBinding = ((int)0x8677), + MaxProgramNativeTemporaries = ((int)0x88a7), + MaxProgramNativeAttribs = ((int)0x88af), + MaxProgramAddressRegisters = ((int)0x88b1), + MaxProgramNativeParameters = ((int)0x88ab), + ProgramNativeTexInstructionsArb = ((int)0x8809), + ProgramNativeAddressRegisters = ((int)0x88b2), + MaxProgramTemporaries = ((int)0x88a5), + ProgramLength = ((int)0x8627), + MaxProgramAluInstructionsArb = ((int)0x880b), + MaxProgramNativeAluInstructionsArb = ((int)0x880e), + MaxProgramNativeInstructions = ((int)0x88a3), + ProgramNativeTexIndirectionsArb = ((int)0x880a), + ProgramInstruction = ((int)0x88a0), + } + + public enum AssemblyProgramStringParameterArb + { + ProgramString = ((int)0x8628), + } + + public enum MatrixModeArb + { + Matrix23 = ((int)0x88d7), + Matrix26 = ((int)0x88da), + Matrix16 = ((int)0x88d0), + Texture = ((int)0x1702), + Matrix20 = ((int)0x88d4), + Matrix30 = ((int)0x88de), + Matrix10 = ((int)0x88ca), + Matrix25 = ((int)0x88d9), + Matrix15 = ((int)0x88cf), + Matrix21 = ((int)0x88d5), + Matrix31 = ((int)0x88df), + Matrix11 = ((int)0x88cb), + Matrix14 = ((int)0x88ce), + Matrix8 = ((int)0x88c8), + Matrix9 = ((int)0x88c9), + Projection = ((int)0x1701), + Matrix2 = ((int)0x88c2), + Matrix3 = ((int)0x88c3), + Matrix0 = ((int)0x88c0), + Matrix28 = ((int)0x88dc), + Matrix6 = ((int)0x88c6), + Matrix7 = ((int)0x88c7), + Matrix4 = ((int)0x88c4), + Matrix5 = ((int)0x88c5), + Color = ((int)0x1800), + Matrix27 = ((int)0x88db), + Matrix17 = ((int)0x88d1), + Matrix29 = ((int)0x88dd), + Matrix19 = ((int)0x88d3), + Matrix18 = ((int)0x88d2), + Matrix13 = ((int)0x88cd), + Matrix1 = ((int)0x88c1), + Modelview = ((int)0x1700), + Matrix24 = ((int)0x88d8), + Matrix22 = ((int)0x88d6), + Matrix12 = ((int)0x88cc), + } + + public enum VertexAttribParameterArb + { + ArrayEnabled = ((int)0x8622), + ArrayNormalized = ((int)0x886a), + ArraySize = ((int)0x8623), + CurrentVertexAttrib = ((int)0x8626), + ArrayStride = ((int)0x8624), + ArrayType = ((int)0x8625), + } + + public enum VertexAttribPointerParameterArb + { + ArrayPointer = ((int)0x8645), + } + + public enum VertexAttribPointerTypeArb + { + UnsignedByte = ((int)0x1401), + Byte = ((int)0x1400), + UnsignedInt = ((int)0x1405), + Short = ((int)0x1402), + Int = ((int)0x1404), + Float = ((int)0x1406), + Double = ((int)0x140a), + UnsignedShort = ((int)0x1403), } public enum ArbFragmentProgram { - ProgramNativeTexIndirectionsArb = ((int)0x880a), - MaxTextureCoordsArb = ((int)0x8871), - ProgramNativeAluInstructionsArb = ((int)0x8808), - ProgramAluInstructionsArb = ((int)0x8805), - MaxProgramAluInstructionsArb = ((int)0x880b), - FragmentProgramArb = ((int)0x8804), - MaxProgramNativeAluInstructionsArb = ((int)0x880e), - ProgramNativeTexInstructionsArb = ((int)0x8809), - MaxProgramTexInstructionsArb = ((int)0x880c), MaxTextureImageUnitsArb = ((int)0x8872), - ProgramTexInstructionsArb = ((int)0x8806), - ProgramTexIndirectionsArb = ((int)0x8807), - MaxProgramNativeTexIndirectionsArb = ((int)0x8810), - MaxProgramNativeTexInstructionsArb = ((int)0x880f), - MaxProgramTexIndirectionsArb = ((int)0x880d), + MaxTextureCoordsArb = ((int)0x8871), + } + + public enum BufferTargetArb + { + ArrayBuffer = ((int)0x8892), + ElementArrayBuffer = ((int)0x8893), + } + + public enum BufferUsageArb + { + StreamDraw = ((int)0x88e0), + DynamicCopy = ((int)0x88ea), + StaticDraw = ((int)0x88e4), + StaticCopy = ((int)0x88e6), + StaticRead = ((int)0x88e5), + StreamCopy = ((int)0x88e2), + DynamicDraw = ((int)0x88e8), + DynamicRead = ((int)0x88e9), + StreamRead = ((int)0x88e1), + } + + public enum BufferAccessArb + { + WriteOnly = ((int)0x88b9), + ReadWrite = ((int)0x88ba), + ReadOnly = ((int)0x88b8), + } + + public enum BufferParameterNameArb + { + BufferUsage = ((int)0x8765), + BufferSize = ((int)0x8764), + BufferAccess = ((int)0x88bb), + BufferMapped = ((int)0x88bc), + } + + public enum BufferPointerNameArb + { + BufferMapPointer = ((int)0x88bd), } public enum ArbVertexBufferObject @@ -6719,7 +6646,7 @@ namespace OpenTK.OpenGL public enum ExtLightTexture { ShadowAttenuationExt = ((int)0x834e), - FragmentDepthExt = ((int)ExtFogCoord.FragmentDepthExt), + FragmentDepthExt = ((int)0x8452), TextureLightExt = ((int)0x8350), AttenuationExt = ((int)0x834d), TextureMaterialParameterExt = ((int)0x8352), @@ -6971,14 +6898,14 @@ namespace OpenTK.OpenGL { Modelview1StackDepthExt = ((int)0x8502), VertexWeightArraySizeExt = ((int)0x850d), - Modelview0MatrixExt = ((int)All.ModelviewMatrix), + Modelview0MatrixExt = ((int)0x0ba6), VertexWeightingExt = ((int)0x8509), VertexWeightArrayPointerExt = ((int)0x8510), Modelview1MatrixExt = ((int)0x8506), VertexWeightArrayTypeExt = ((int)0x850e), - Modelview0StackDepthExt = ((int)All.ModelviewStackDepth), + Modelview0StackDepthExt = ((int)0x0ba3), VertexWeightArrayStrideExt = ((int)0x850f), - Modelview0Ext = ((int)All.Modelview), + Modelview0Ext = ((int)0x1700), Modelview1Ext = ((int)0x850a), CurrentVertexWeightExt = ((int)0x850b), VertexWeightArrayExt = ((int)0x850c), @@ -7007,7 +6934,7 @@ namespace OpenTK.OpenGL CombinerCdOutputNv = ((int)0x854b), Combiner7Nv = ((int)0x8557), Combiner4Nv = ((int)0x8554), - Texture1Arb = ((int)ArbMultitexture.Texture1Arb), + Texture1Arb = ((int)0x84c1), HalfBiasNegateNv = ((int)0x853b), VariableANv = ((int)0x8523), CombinerComponentUsageNv = ((int)0x8544), @@ -7025,13 +6952,13 @@ namespace OpenTK.OpenGL Combiner3Nv = ((int)0x8553), Spare0Nv = ((int)0x852e), CombinerAbDotProductNv = ((int)0x8545), - None = ((int)DrawBufferMode.None), + None = ((int)0), VariableBNv = ((int)0x8524), CombinerAbOutputNv = ((int)0x854a), Spare1Nv = ((int)0x852f), Combiner2Nv = ((int)0x8552), ConstantColor0Nv = ((int)0x852a), - Texture0Arb = ((int)ArbMultitexture.Texture0Arb), + Texture0Arb = ((int)0x84c0), Combiner6Nv = ((int)0x8556), DiscardNv = ((int)0x8530), VariableFNv = ((int)0x8528), @@ -7044,12 +6971,12 @@ namespace OpenTK.OpenGL CombinerScaleNv = ((int)0x8548), VariableCNv = ((int)0x8525), NumGeneralCombinersNv = ((int)0x854e), - Fog = ((int)GetPName.Fog), + Fog = ((int)0x0b60), Combiner5Nv = ((int)0x8555), RegisterCombinersNv = ((int)0x8522), ConstantColor1Nv = ((int)0x852b), HalfBiasNormalNv = ((int)0x853a), - Zero = ((int)BlendingFactorDest.Zero), + Zero = ((int)0), UnsignedIdentityNv = ((int)0x8536), Spare0PlusSecondaryColorNv = ((int)0x8532), VariableGNv = ((int)0x8529), @@ -7062,7 +6989,7 @@ namespace OpenTK.OpenGL public enum NvFogDistance { EyeRadialNv = ((int)0x855b), - EyePlane = ((int)TextureGenParameter.EyePlane), + EyePlane = ((int)0x2502), EyePlaneAbsoluteNv = ((int)0x855c), FogDistanceModeNv = ((int)0x855a), } @@ -7273,7 +7200,7 @@ namespace OpenTK.OpenGL OffsetTextureRectangleScaleNv = ((int)0x864d), TextureShaderNv = ((int)0x86de), TextureHiSizeNv = ((int)0x871b), - OffsetTexture2dBiasNv = ((int)NvTextureShader.OffsetTextureBiasNv), + OffsetTexture2dBiasNv = ((int)0x86e3), RgbaUnsignedDotProductMappingNv = ((int)0x86d9), SignedAlphaNv = ((int)0x8705), VibranceBiasNv = ((int)0x8719), @@ -7306,7 +7233,7 @@ namespace OpenTK.OpenGL Dsdt8Mag8Intensity8Nv = ((int)0x870b), CullModesNv = ((int)0x86e0), DotProductReflectCubeMapNv = ((int)0x86f2), - OffsetTexture2dMatrixNv = ((int)NvTextureShader.OffsetTextureMatrixNv), + OffsetTexture2dMatrixNv = ((int)0x86e1), SignedRgbaNv = ((int)0x86fb), TextureLoSizeNv = ((int)0x871c), DsdtMagNv = ((int)0x86f6), @@ -7324,7 +7251,7 @@ namespace OpenTK.OpenGL TextureMagSizeNv = ((int)0x871f), OffsetTextureBiasNv = ((int)0x86e3), SignedLuminance8Nv = ((int)0x8702), - OffsetTexture2dScaleNv = ((int)NvTextureShader.OffsetTextureScaleNv), + OffsetTexture2dScaleNv = ((int)0x86e2), SignedLuminanceNv = ((int)0x8701), DsdtNv = ((int)0x86f5), OffsetTexture2dNv = ((int)0x86e8), @@ -8018,7 +7945,7 @@ namespace OpenTK.OpenGL public enum ExtBlendEquationSeparate { BlendEquationAlphaExt = ((int)0x883d), - BlendEquationRgbExt = ((int)ArbImaging.BlendEquation), + BlendEquationRgbExt = ((int)0x8009), } public enum MesaPackInvert @@ -8056,13 +7983,13 @@ namespace OpenTK.OpenGL public enum NvVertexProgram2Option { - MaxProgramCallDepthNv = ((int)NvFragmentProgram2.MaxProgramCallDepthNv), - MaxProgramExecInstructionsNv = ((int)NvFragmentProgram2.MaxProgramExecInstructionsNv), + MaxProgramCallDepthNv = ((int)0x88f5), + MaxProgramExecInstructionsNv = ((int)0x88f4), } public enum NvVertexProgram3 { - MaxVertexTextureImageUnitsArb = ((int)ArbVertexShader.MaxVertexTextureImageUnitsArb), + MaxVertexTextureImageUnitsArb = ((int)0x8b4c), } public enum ExtFramebufferObject @@ -8162,7 +8089,7 @@ namespace OpenTK.OpenGL { DrawFramebufferBindingExt = ((int)0x8caa), ReadFramebufferExt = ((int)0x8ca8), - ReadFramebufferBindingExt = ((int)ExtFramebufferObject.FramebufferBindingExt), + ReadFramebufferBindingExt = ((int)0x8ca6), DrawFramebufferExt = ((int)0x8ca9), } @@ -8232,26 +8159,26 @@ namespace OpenTK.OpenGL public enum ExtGeometryShader4 { - TriangleStripAdjacencyExt = ((int)NvGeometryProgram4.TriangleStripAdjacencyExt), + TriangleStripAdjacencyExt = ((int)0x000d), MaxGeometryUniformComponentsExt = ((int)0x8ddf), MaxGeometryTotalOutputComponentsExt = ((int)0x8de1), - FramebufferAttachmentTextureLayerExt = ((int)NvGeometryProgram4.FramebufferAttachmentTextureLayerExt), - GeometryOutputTypeExt = ((int)NvGeometryProgram4.GeometryOutputTypeExt), - FramebufferAttachmentLayeredExt = ((int)NvGeometryProgram4.FramebufferAttachmentLayeredExt), - TrianglesAdjacencyExt = ((int)NvGeometryProgram4.TrianglesAdjacencyExt), - GeometryInputTypeExt = ((int)NvGeometryProgram4.GeometryInputTypeExt), + FramebufferAttachmentTextureLayerExt = ((int)0x8cd4), + GeometryOutputTypeExt = ((int)0x8ddc), + FramebufferAttachmentLayeredExt = ((int)0x8da7), + TrianglesAdjacencyExt = ((int)0x000c), + GeometryInputTypeExt = ((int)0x8ddb), MaxGeometryOutputVerticesExt = ((int)0x8de0), GeometryShaderExt = ((int)0x8dd9), - LineStripAdjacencyExt = ((int)NvGeometryProgram4.LineStripAdjacencyExt), + LineStripAdjacencyExt = ((int)0x000b), MaxVaryingComponentsExt = ((int)0x8b4b), - FramebufferIncompleteLayerTargetsExt = ((int)NvGeometryProgram4.FramebufferIncompleteLayerTargetsExt), + FramebufferIncompleteLayerTargetsExt = ((int)0x8da8), MaxVertexVaryingComponentsExt = ((int)0x8dde), - MaxGeometryTextureImageUnitsExt = ((int)NvGeometryProgram4.MaxGeometryTextureImageUnitsExt), + MaxGeometryTextureImageUnitsExt = ((int)0x8c29), MaxGeometryVaryingComponentsExt = ((int)0x8ddd), - ProgramPointSizeExt = ((int)NvGeometryProgram4.ProgramPointSizeExt), - FramebufferIncompleteLayerCountExt = ((int)NvGeometryProgram4.FramebufferIncompleteLayerCountExt), - LinesAdjacencyExt = ((int)NvGeometryProgram4.LinesAdjacencyExt), - GeometryVerticesOutExt = ((int)NvGeometryProgram4.GeometryVerticesOutExt), + ProgramPointSizeExt = ((int)0x8642), + FramebufferIncompleteLayerCountExt = ((int)0x8da9), + LinesAdjacencyExt = ((int)0x000a), + GeometryVerticesOutExt = ((int)0x8dda), } public enum NvVertexProgram4 @@ -8301,7 +8228,7 @@ namespace OpenTK.OpenGL public enum ExtTextureArray { - FramebufferAttachmentTextureLayerExt = ((int)NvGeometryProgram4.FramebufferAttachmentTextureLayerExt), + FramebufferAttachmentTextureLayerExt = ((int)0x8cd4), Texture1dArrayExt = ((int)0x8c18), TextureBinding2dArrayExt = ((int)0x8c1d), CompareRefDepthToTextureExt = ((int)0x884e),