From 57b097f7d05031c851137e71cf2cd4474244ccd9 Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Sun, 13 Apr 2008 16:45:56 +0000 Subject: [PATCH] Moved OpenTK.Graphics.OpenGL to OpenTK.Graphics. --- Source/Examples/OpenGL/GluTessellation.cs | 3 +- .../Examples/Tutorial/T04_Vertex_Lighting.cs | 3 +- .../Tutorial/T07_Display_Lists_Flower.cs | 3 +- Source/Examples/Tutorial/T08_VBO.cs | 7 +- Source/Examples/Tutorial/Textures.cs | 4 +- Source/Examples/WinForms/DerivedGLControl.cs | 3 +- Source/Examples/WinForms/W01_First_Window.cs | 3 +- .../WinForms/W02_Immediate_Mode_Cube.cs | 8 +- Source/OpenTK/Graphics/{OpenGL => }/GL/GL.cs | 7300 ++++++++--------- .../OpenTK/Graphics/{OpenGL => }/GL/GLCore.cs | 478 +- .../Graphics/{OpenGL => }/GL/GLDelegates.cs | 1426 ++-- .../Graphics/{OpenGL => }/GL/GLEnums.cs | 2 +- .../Graphics/{OpenGL => }/GL/GLHelper.cs | 2 +- .../OpenTK/Graphics/{OpenGL => }/Glu/Glu.cs | 82 +- .../Graphics/{OpenGL => }/Glu/GluCore.cs | 30 +- .../Graphics/{OpenGL => }/Glu/GluDelegates.cs | 30 +- .../Graphics/{OpenGL => }/Glu/GluEnums.cs | 2 +- .../Graphics/{OpenGL => }/Glu/GluHelper.cs | 2 +- Source/Utilities/Fonts/TextureFont.cs | 11 +- 19 files changed, 4694 insertions(+), 4705 deletions(-) rename Source/OpenTK/Graphics/{OpenGL => }/GL/GL.cs (73%) rename Source/OpenTK/Graphics/{OpenGL => }/GL/GLCore.cs (86%) rename Source/OpenTK/Graphics/{OpenGL => }/GL/GLDelegates.cs (82%) rename Source/OpenTK/Graphics/{OpenGL => }/GL/GLEnums.cs (97%) rename Source/OpenTK/Graphics/{OpenGL => }/GL/GLHelper.cs (97%) rename Source/OpenTK/Graphics/{OpenGL => }/Glu/Glu.cs (90%) rename Source/OpenTK/Graphics/{OpenGL => }/Glu/GluCore.cs (94%) rename Source/OpenTK/Graphics/{OpenGL => }/Glu/GluDelegates.cs (92%) rename Source/OpenTK/Graphics/{OpenGL => }/Glu/GluEnums.cs (96%) rename Source/OpenTK/Graphics/{OpenGL => }/Glu/GluHelper.cs (97%) diff --git a/Source/Examples/OpenGL/GluTessellation.cs b/Source/Examples/OpenGL/GluTessellation.cs index bed4d9cb..fbf485fa 100644 --- a/Source/Examples/OpenGL/GluTessellation.cs +++ b/Source/Examples/OpenGL/GluTessellation.cs @@ -8,8 +8,7 @@ using System; using System.Diagnostics; using OpenTK; -using OpenTK.Graphics.OpenGL; -using OpenTK.Graphics.OpenGL.Enums; +using OpenTK.Graphics; using OpenTK.Input; using System.Runtime.InteropServices; diff --git a/Source/Examples/Tutorial/T04_Vertex_Lighting.cs b/Source/Examples/Tutorial/T04_Vertex_Lighting.cs index 787e1949..1ed5d4b4 100644 --- a/Source/Examples/Tutorial/T04_Vertex_Lighting.cs +++ b/Source/Examples/Tutorial/T04_Vertex_Lighting.cs @@ -10,9 +10,8 @@ using System.Text; using System.Drawing; using OpenTK; -using OpenTK.Graphics.OpenGL; +using OpenTK.Graphics; using Examples.Shapes; -using OpenTK.Graphics.OpenGL.Enums; namespace Examples.Tutorial { diff --git a/Source/Examples/Tutorial/T07_Display_Lists_Flower.cs b/Source/Examples/Tutorial/T07_Display_Lists_Flower.cs index 7abb2656..178de914 100644 --- a/Source/Examples/Tutorial/T07_Display_Lists_Flower.cs +++ b/Source/Examples/Tutorial/T07_Display_Lists_Flower.cs @@ -16,8 +16,7 @@ using System.Windows.Forms; using System.Threading; using OpenTK; -using OpenTK.Graphics.OpenGL; -using OpenTK.Graphics.OpenGL.Enums; +using OpenTK.Graphics; #endregion --- Using Directives --- diff --git a/Source/Examples/Tutorial/T08_VBO.cs b/Source/Examples/Tutorial/T08_VBO.cs index d865b699..a7d6f353 100644 --- a/Source/Examples/Tutorial/T08_VBO.cs +++ b/Source/Examples/Tutorial/T08_VBO.cs @@ -9,13 +9,12 @@ using System; using System.Collections.Generic; using System.Text; +using System.Runtime.InteropServices; +using System.Threading; using OpenTK; -using OpenTK.Graphics.OpenGL; +using OpenTK.Graphics; using OpenTK.Platform; -using System.Threading; -using OpenTK.Graphics.OpenGL.Enums; -using System.Runtime.InteropServices; using OpenTK.Math; #endregion diff --git a/Source/Examples/Tutorial/Textures.cs b/Source/Examples/Tutorial/Textures.cs index 44f46097..45674714 100644 --- a/Source/Examples/Tutorial/Textures.cs +++ b/Source/Examples/Tutorial/Textures.cs @@ -20,8 +20,6 @@ using OpenTK.Graphics.OpenGL.Enums; namespace Examples.Tutorial { - using PixelFormat = OpenTK.Graphics.OpenGL.PixelFormat; - /// /// Demonstrates simple OpenGL Texturing. /// @@ -53,7 +51,7 @@ namespace Examples.Tutorial ImageLockMode.ReadOnly, System.Drawing.Imaging.PixelFormat.Format32bppArgb); GL.TexImage2D(TextureTarget.Texture2D, 0, PixelInternalFormat.Rgba, data.Width, data.Height, 0, - PixelFormat.Bgra, PixelType.UnsignedByte, data.Scan0); + OpenTK.Graphics.PixelFormat.Bgra, PixelType.UnsignedByte, data.Scan0); bitmap.UnlockBits(data); diff --git a/Source/Examples/WinForms/DerivedGLControl.cs b/Source/Examples/WinForms/DerivedGLControl.cs index 3f11e1da..399d0c2a 100644 --- a/Source/Examples/WinForms/DerivedGLControl.cs +++ b/Source/Examples/WinForms/DerivedGLControl.cs @@ -7,8 +7,7 @@ using System.Text; using System.Windows.Forms; using OpenTK; -using OpenTK.Graphics.OpenGL; -using OpenTK.Graphics.OpenGL.Enums; +using OpenTK.Graphics; namespace Examples.WinForms { diff --git a/Source/Examples/WinForms/W01_First_Window.cs b/Source/Examples/WinForms/W01_First_Window.cs index fb11e277..022192d2 100644 --- a/Source/Examples/WinForms/W01_First_Window.cs +++ b/Source/Examples/WinForms/W01_First_Window.cs @@ -15,8 +15,7 @@ using System.Text; using System.Windows.Forms; using OpenTK; -using OpenTK.Graphics.OpenGL; -using OpenTK.Graphics.OpenGL.Enums; +using OpenTK.Graphics; #endregion diff --git a/Source/Examples/WinForms/W02_Immediate_Mode_Cube.cs b/Source/Examples/WinForms/W02_Immediate_Mode_Cube.cs index 416adb9b..da4ecd22 100644 --- a/Source/Examples/WinForms/W02_Immediate_Mode_Cube.cs +++ b/Source/Examples/WinForms/W02_Immediate_Mode_Cube.cs @@ -14,12 +14,10 @@ using System.Drawing; using System.Text; using System.Windows.Forms; using System.Diagnostics; - -using OpenTK.Graphics.OpenGL; -//using Enums = OpenTK.Graphics.OpenGL.GL.Enums; -using OpenTK.Platform; using System.Threading; -using OpenTK.Graphics.OpenGL.Enums; + +using OpenTK.Graphics; +using OpenTK.Platform; #endregion diff --git a/Source/OpenTK/Graphics/OpenGL/GL/GL.cs b/Source/OpenTK/Graphics/GL/GL.cs similarity index 73% rename from Source/OpenTK/Graphics/OpenGL/GL/GL.cs rename to Source/OpenTK/Graphics/GL/GL.cs index eec62084..e63e68ec 100644 --- a/Source/OpenTK/Graphics/OpenGL/GL/GL.cs +++ b/Source/OpenTK/Graphics/GL/GL.cs @@ -1,4 +1,4 @@ -namespace OpenTK.Graphics.OpenGL +namespace OpenTK.Graphics { using System; using System.Runtime.InteropServices; @@ -10,15 +10,15 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void NewList(UInt32 list, OpenTK.Graphics.OpenGL.ListMode mode) + void NewList(UInt32 list, OpenTK.Graphics.ListMode mode) { - Delegates.glNewList((UInt32)list, (OpenTK.Graphics.OpenGL.ListMode)mode); + Delegates.glNewList((UInt32)list, (OpenTK.Graphics.ListMode)mode); } public static - void NewList(Int32 list, OpenTK.Graphics.OpenGL.ListMode mode) + void NewList(Int32 list, OpenTK.Graphics.ListMode mode) { - Delegates.glNewList((UInt32)list, (OpenTK.Graphics.OpenGL.ListMode)mode); + Delegates.glNewList((UInt32)list, (OpenTK.Graphics.ListMode)mode); } public static @@ -41,23 +41,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void CallLists(Int32 n, OpenTK.Graphics.OpenGL.ListNameType type, IntPtr lists) + void CallLists(Int32 n, OpenTK.Graphics.ListNameType type, IntPtr lists) { unsafe { - Delegates.glCallLists((Int32)n, (OpenTK.Graphics.OpenGL.ListNameType)type, (IntPtr)lists); + Delegates.glCallLists((Int32)n, (OpenTK.Graphics.ListNameType)type, (IntPtr)lists); } } public static - void CallLists(Int32 n, OpenTK.Graphics.OpenGL.ListNameType type, [In, Out] object lists) + void CallLists(Int32 n, OpenTK.Graphics.ListNameType type, [In, Out] object lists) { unsafe { System.Runtime.InteropServices.GCHandle lists_ptr = System.Runtime.InteropServices.GCHandle.Alloc(lists, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glCallLists((Int32)n, (OpenTK.Graphics.OpenGL.ListNameType)type, (IntPtr)lists_ptr.AddrOfPinnedObject()); + Delegates.glCallLists((Int32)n, (OpenTK.Graphics.ListNameType)type, (IntPtr)lists_ptr.AddrOfPinnedObject()); } finally { @@ -99,9 +99,9 @@ namespace OpenTK.Graphics.OpenGL } public static - void Begin(OpenTK.Graphics.OpenGL.BeginMode mode) + void Begin(OpenTK.Graphics.BeginMode mode) { - Delegates.glBegin((OpenTK.Graphics.OpenGL.BeginMode)mode); + Delegates.glBegin((OpenTK.Graphics.BeginMode)mode); } public static @@ -2798,280 +2798,280 @@ namespace OpenTK.Graphics.OpenGL } public static - void ClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, Double[] equation) + void ClipPlane(OpenTK.Graphics.ClipPlaneName plane, Double[] equation) { unsafe { fixed (Double* equation_ptr = equation) { - Delegates.glClipPlane((OpenTK.Graphics.OpenGL.ClipPlaneName)plane, (Double*)equation_ptr); + Delegates.glClipPlane((OpenTK.Graphics.ClipPlaneName)plane, (Double*)equation_ptr); } } } public static - void ClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, ref Double equation) + void ClipPlane(OpenTK.Graphics.ClipPlaneName plane, ref Double equation) { unsafe { fixed (Double* equation_ptr = &equation) { - Delegates.glClipPlane((OpenTK.Graphics.OpenGL.ClipPlaneName)plane, (Double*)equation_ptr); + Delegates.glClipPlane((OpenTK.Graphics.ClipPlaneName)plane, (Double*)equation_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, Double* equation) + unsafe void ClipPlane(OpenTK.Graphics.ClipPlaneName plane, Double* equation) { - Delegates.glClipPlane((OpenTK.Graphics.OpenGL.ClipPlaneName)plane, (Double*)equation); + Delegates.glClipPlane((OpenTK.Graphics.ClipPlaneName)plane, (Double*)equation); } public static - void ColorMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.ColorMaterialParameter mode) + void ColorMaterial(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.ColorMaterialParameter mode) { - Delegates.glColorMaterial((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.ColorMaterialParameter)mode); + Delegates.glColorMaterial((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.ColorMaterialParameter)mode); } public static - void CullFace(OpenTK.Graphics.OpenGL.CullFaceMode mode) + void CullFace(OpenTK.Graphics.CullFaceMode mode) { - Delegates.glCullFace((OpenTK.Graphics.OpenGL.CullFaceMode)mode); + Delegates.glCullFace((OpenTK.Graphics.CullFaceMode)mode); } public static - void Fog(OpenTK.Graphics.OpenGL.FogParameter pname, Single param) + void Fog(OpenTK.Graphics.FogParameter pname, Single param) { - Delegates.glFogf((OpenTK.Graphics.OpenGL.FogParameter)pname, (Single)param); + Delegates.glFogf((OpenTK.Graphics.FogParameter)pname, (Single)param); } public static - void Fogv(OpenTK.Graphics.OpenGL.FogParameter pname, Single[] @params) + void Fogv(OpenTK.Graphics.FogParameter pname, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glFogfv((OpenTK.Graphics.OpenGL.FogParameter)pname, (Single*)@params_ptr); + Delegates.glFogfv((OpenTK.Graphics.FogParameter)pname, (Single*)@params_ptr); } } } public static - void Fogv(OpenTK.Graphics.OpenGL.FogParameter pname, ref Single @params) + void Fogv(OpenTK.Graphics.FogParameter pname, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glFogfv((OpenTK.Graphics.OpenGL.FogParameter)pname, (Single*)@params_ptr); + Delegates.glFogfv((OpenTK.Graphics.FogParameter)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void Fogv(OpenTK.Graphics.OpenGL.FogParameter pname, Single* @params) + unsafe void Fogv(OpenTK.Graphics.FogParameter pname, Single* @params) { - Delegates.glFogfv((OpenTK.Graphics.OpenGL.FogParameter)pname, (Single*)@params); + Delegates.glFogfv((OpenTK.Graphics.FogParameter)pname, (Single*)@params); } public static - void Fog(OpenTK.Graphics.OpenGL.FogParameter pname, Int32 param) + void Fog(OpenTK.Graphics.FogParameter pname, Int32 param) { - Delegates.glFogi((OpenTK.Graphics.OpenGL.FogParameter)pname, (Int32)param); + Delegates.glFogi((OpenTK.Graphics.FogParameter)pname, (Int32)param); } public static - void Fogv(OpenTK.Graphics.OpenGL.FogParameter pname, Int32[] @params) + void Fogv(OpenTK.Graphics.FogParameter pname, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glFogiv((OpenTK.Graphics.OpenGL.FogParameter)pname, (Int32*)@params_ptr); + Delegates.glFogiv((OpenTK.Graphics.FogParameter)pname, (Int32*)@params_ptr); } } } public static - void Fogv(OpenTK.Graphics.OpenGL.FogParameter pname, ref Int32 @params) + void Fogv(OpenTK.Graphics.FogParameter pname, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glFogiv((OpenTK.Graphics.OpenGL.FogParameter)pname, (Int32*)@params_ptr); + Delegates.glFogiv((OpenTK.Graphics.FogParameter)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void Fogv(OpenTK.Graphics.OpenGL.FogParameter pname, Int32* @params) + unsafe void Fogv(OpenTK.Graphics.FogParameter pname, Int32* @params) { - Delegates.glFogiv((OpenTK.Graphics.OpenGL.FogParameter)pname, (Int32*)@params); + Delegates.glFogiv((OpenTK.Graphics.FogParameter)pname, (Int32*)@params); } public static - void FrontFace(OpenTK.Graphics.OpenGL.FrontFaceDirection mode) + void FrontFace(OpenTK.Graphics.FrontFaceDirection mode) { - Delegates.glFrontFace((OpenTK.Graphics.OpenGL.FrontFaceDirection)mode); + Delegates.glFrontFace((OpenTK.Graphics.FrontFaceDirection)mode); } public static - void Hint(OpenTK.Graphics.OpenGL.HintTarget target, OpenTK.Graphics.OpenGL.HintMode mode) + void Hint(OpenTK.Graphics.HintTarget target, OpenTK.Graphics.HintMode mode) { - Delegates.glHint((OpenTK.Graphics.OpenGL.HintTarget)target, (OpenTK.Graphics.OpenGL.HintMode)mode); + Delegates.glHint((OpenTK.Graphics.HintTarget)target, (OpenTK.Graphics.HintMode)mode); } public static - void Light(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, Single param) + void Light(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, Single param) { - Delegates.glLightf((OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)pname, (Single)param); + Delegates.glLightf((OpenTK.Graphics.LightName)light, (OpenTK.Graphics.LightParameter)pname, (Single)param); } public static - void Lightv(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, Single[] @params) + void Lightv(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glLightfv((OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)pname, (Single*)@params_ptr); + Delegates.glLightfv((OpenTK.Graphics.LightName)light, (OpenTK.Graphics.LightParameter)pname, (Single*)@params_ptr); } } } public static - void Lightv(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, ref Single @params) + void Lightv(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glLightfv((OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)pname, (Single*)@params_ptr); + Delegates.glLightfv((OpenTK.Graphics.LightName)light, (OpenTK.Graphics.LightParameter)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void Lightv(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, Single* @params) + unsafe void Lightv(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, Single* @params) { - Delegates.glLightfv((OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)pname, (Single*)@params); + Delegates.glLightfv((OpenTK.Graphics.LightName)light, (OpenTK.Graphics.LightParameter)pname, (Single*)@params); } public static - void Light(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, Int32 param) + void Light(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, Int32 param) { - Delegates.glLighti((OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)pname, (Int32)param); + Delegates.glLighti((OpenTK.Graphics.LightName)light, (OpenTK.Graphics.LightParameter)pname, (Int32)param); } public static - void Lightv(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, Int32[] @params) + void Lightv(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glLightiv((OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)pname, (Int32*)@params_ptr); + Delegates.glLightiv((OpenTK.Graphics.LightName)light, (OpenTK.Graphics.LightParameter)pname, (Int32*)@params_ptr); } } } public static - void Lightv(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, ref Int32 @params) + void Lightv(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glLightiv((OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)pname, (Int32*)@params_ptr); + Delegates.glLightiv((OpenTK.Graphics.LightName)light, (OpenTK.Graphics.LightParameter)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void Lightv(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, Int32* @params) + unsafe void Lightv(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, Int32* @params) { - Delegates.glLightiv((OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)pname, (Int32*)@params); + Delegates.glLightiv((OpenTK.Graphics.LightName)light, (OpenTK.Graphics.LightParameter)pname, (Int32*)@params); } public static - void LightModel(OpenTK.Graphics.OpenGL.LightModelParameter pname, Single param) + void LightModel(OpenTK.Graphics.LightModelParameter pname, Single param) { - Delegates.glLightModelf((OpenTK.Graphics.OpenGL.LightModelParameter)pname, (Single)param); + Delegates.glLightModelf((OpenTK.Graphics.LightModelParameter)pname, (Single)param); } public static - void LightModelv(OpenTK.Graphics.OpenGL.LightModelParameter pname, Single[] @params) + void LightModelv(OpenTK.Graphics.LightModelParameter pname, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glLightModelfv((OpenTK.Graphics.OpenGL.LightModelParameter)pname, (Single*)@params_ptr); + Delegates.glLightModelfv((OpenTK.Graphics.LightModelParameter)pname, (Single*)@params_ptr); } } } public static - void LightModelv(OpenTK.Graphics.OpenGL.LightModelParameter pname, ref Single @params) + void LightModelv(OpenTK.Graphics.LightModelParameter pname, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glLightModelfv((OpenTK.Graphics.OpenGL.LightModelParameter)pname, (Single*)@params_ptr); + Delegates.glLightModelfv((OpenTK.Graphics.LightModelParameter)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void LightModelv(OpenTK.Graphics.OpenGL.LightModelParameter pname, Single* @params) + unsafe void LightModelv(OpenTK.Graphics.LightModelParameter pname, Single* @params) { - Delegates.glLightModelfv((OpenTK.Graphics.OpenGL.LightModelParameter)pname, (Single*)@params); + Delegates.glLightModelfv((OpenTK.Graphics.LightModelParameter)pname, (Single*)@params); } public static - void LightModel(OpenTK.Graphics.OpenGL.LightModelParameter pname, Int32 param) + void LightModel(OpenTK.Graphics.LightModelParameter pname, Int32 param) { - Delegates.glLightModeli((OpenTK.Graphics.OpenGL.LightModelParameter)pname, (Int32)param); + Delegates.glLightModeli((OpenTK.Graphics.LightModelParameter)pname, (Int32)param); } public static - void LightModelv(OpenTK.Graphics.OpenGL.LightModelParameter pname, Int32[] @params) + void LightModelv(OpenTK.Graphics.LightModelParameter pname, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glLightModeliv((OpenTK.Graphics.OpenGL.LightModelParameter)pname, (Int32*)@params_ptr); + Delegates.glLightModeliv((OpenTK.Graphics.LightModelParameter)pname, (Int32*)@params_ptr); } } } public static - void LightModelv(OpenTK.Graphics.OpenGL.LightModelParameter pname, ref Int32 @params) + void LightModelv(OpenTK.Graphics.LightModelParameter pname, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glLightModeliv((OpenTK.Graphics.OpenGL.LightModelParameter)pname, (Int32*)@params_ptr); + Delegates.glLightModeliv((OpenTK.Graphics.LightModelParameter)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void LightModelv(OpenTK.Graphics.OpenGL.LightModelParameter pname, Int32* @params) + unsafe void LightModelv(OpenTK.Graphics.LightModelParameter pname, Int32* @params) { - Delegates.glLightModeliv((OpenTK.Graphics.OpenGL.LightModelParameter)pname, (Int32*)@params); + Delegates.glLightModeliv((OpenTK.Graphics.LightModelParameter)pname, (Int32*)@params); } [System.CLSCompliant(false)] @@ -3100,77 +3100,77 @@ namespace OpenTK.Graphics.OpenGL } public static - void Material(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Single param) + void Material(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, Single param) { - Delegates.glMaterialf((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Single)param); + Delegates.glMaterialf((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Single)param); } public static - void Materialv(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Single[] @params) + void Materialv(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glMaterialfv((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Single*)@params_ptr); + Delegates.glMaterialfv((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Single*)@params_ptr); } } } public static - void Materialv(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, ref Single @params) + void Materialv(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glMaterialfv((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Single*)@params_ptr); + Delegates.glMaterialfv((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void Materialv(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Single* @params) + unsafe void Materialv(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, Single* @params) { - Delegates.glMaterialfv((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Single*)@params); + Delegates.glMaterialfv((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Single*)@params); } public static - void Material(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Int32 param) + void Material(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, Int32 param) { - Delegates.glMateriali((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Int32)param); + Delegates.glMateriali((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Int32)param); } public static - void Materialv(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Int32[] @params) + void Materialv(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glMaterialiv((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Int32*)@params_ptr); + Delegates.glMaterialiv((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Int32*)@params_ptr); } } } public static - void Materialv(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, ref Int32 @params) + void Materialv(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glMaterialiv((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Int32*)@params_ptr); + Delegates.glMaterialiv((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void Materialv(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Int32* @params) + unsafe void Materialv(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, Int32* @params) { - Delegates.glMaterialiv((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Int32*)@params); + Delegates.glMaterialiv((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Int32*)@params); } public static @@ -3180,9 +3180,9 @@ namespace OpenTK.Graphics.OpenGL } public static - void PolygonMode(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.PolygonMode mode) + void PolygonMode(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.PolygonMode mode) { - Delegates.glPolygonMode((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.PolygonMode)mode); + Delegates.glPolygonMode((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.PolygonMode)mode); } public static @@ -3223,103 +3223,103 @@ namespace OpenTK.Graphics.OpenGL } public static - void ShadeModel(OpenTK.Graphics.OpenGL.ShadingModel mode) + void ShadeModel(OpenTK.Graphics.ShadingModel mode) { - Delegates.glShadeModel((OpenTK.Graphics.OpenGL.ShadingModel)mode); + Delegates.glShadeModel((OpenTK.Graphics.ShadingModel)mode); } public static - void TexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single param) + void TexParameter(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Single param) { - Delegates.glTexParameterf((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Single)param); + Delegates.glTexParameterf((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (Single)param); } public static - void TexParameterv(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single[] @params) + void TexParameterv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glTexParameterfv((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Single*)@params_ptr); + Delegates.glTexParameterfv((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (Single*)@params_ptr); } } } public static - void TexParameterv(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, ref Single @params) + void TexParameterv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glTexParameterfv((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Single*)@params_ptr); + Delegates.glTexParameterfv((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void TexParameterv(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single* @params) + unsafe void TexParameterv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Single* @params) { - Delegates.glTexParameterfv((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Single*)@params); + Delegates.glTexParameterfv((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (Single*)@params); } public static - void TexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32 param) + void TexParameter(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32 param) { - Delegates.glTexParameteri((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Int32)param); + Delegates.glTexParameteri((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (Int32)param); } public static - void TexParameterv(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32[] @params) + void TexParameterv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glTexParameteriv((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Int32*)@params_ptr); + Delegates.glTexParameteriv((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (Int32*)@params_ptr); } } } public static - void TexParameterv(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, ref Int32 @params) + void TexParameterv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glTexParameteriv((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Int32*)@params_ptr); + Delegates.glTexParameteriv((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void TexParameterv(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32* @params) + unsafe void TexParameterv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32* @params) { - Delegates.glTexParameteriv((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Int32*)@params); + Delegates.glTexParameteriv((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (Int32*)@params); } public static - void TexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) + void TexImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels) { unsafe { - Delegates.glTexImage1D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + Delegates.glTexImage1D((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels); } } public static - void TexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [In, Out] object pixels) + void TexImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.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.glTexImage1D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + Delegates.glTexImage1D((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -3329,23 +3329,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void TexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) + void TexImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels) { unsafe { - Delegates.glTexImage2D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + Delegates.glTexImage2D((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels); } } public static - void TexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [In, Out] object pixels) + void TexImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.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.glTexImage2D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + Delegates.glTexImage2D((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -3355,210 +3355,210 @@ namespace OpenTK.Graphics.OpenGL } public static - void TexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Single param) + void TexEnv(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, Single param) { - Delegates.glTexEnvf((OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Single)param); + Delegates.glTexEnvf((OpenTK.Graphics.TextureEnvTarget)target, (OpenTK.Graphics.TextureEnvParameter)pname, (Single)param); } public static - void TexEnvv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Single[] @params) + void TexEnvv(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glTexEnvfv((OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Single*)@params_ptr); + Delegates.glTexEnvfv((OpenTK.Graphics.TextureEnvTarget)target, (OpenTK.Graphics.TextureEnvParameter)pname, (Single*)@params_ptr); } } } public static - void TexEnvv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, ref Single @params) + void TexEnvv(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glTexEnvfv((OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Single*)@params_ptr); + Delegates.glTexEnvfv((OpenTK.Graphics.TextureEnvTarget)target, (OpenTK.Graphics.TextureEnvParameter)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void TexEnvv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Single* @params) + unsafe void TexEnvv(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, Single* @params) { - Delegates.glTexEnvfv((OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Single*)@params); + Delegates.glTexEnvfv((OpenTK.Graphics.TextureEnvTarget)target, (OpenTK.Graphics.TextureEnvParameter)pname, (Single*)@params); } public static - void TexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Int32 param) + void TexEnv(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, Int32 param) { - Delegates.glTexEnvi((OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Int32)param); + Delegates.glTexEnvi((OpenTK.Graphics.TextureEnvTarget)target, (OpenTK.Graphics.TextureEnvParameter)pname, (Int32)param); } public static - void TexEnvv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Int32[] @params) + void TexEnvv(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glTexEnviv((OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Int32*)@params_ptr); + Delegates.glTexEnviv((OpenTK.Graphics.TextureEnvTarget)target, (OpenTK.Graphics.TextureEnvParameter)pname, (Int32*)@params_ptr); } } } public static - void TexEnvv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, ref Int32 @params) + void TexEnvv(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glTexEnviv((OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Int32*)@params_ptr); + Delegates.glTexEnviv((OpenTK.Graphics.TextureEnvTarget)target, (OpenTK.Graphics.TextureEnvParameter)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void TexEnvv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Int32* @params) + unsafe void TexEnvv(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, Int32* @params) { - Delegates.glTexEnviv((OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Int32*)@params); + Delegates.glTexEnviv((OpenTK.Graphics.TextureEnvTarget)target, (OpenTK.Graphics.TextureEnvParameter)pname, (Int32*)@params); } public static - void TexGend(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Double param) + void TexGend(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Double param) { - Delegates.glTexGend((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Double)param); + Delegates.glTexGend((OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Double)param); } public static - void TexGenv(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Double[] @params) + void TexGenv(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Double[] @params) { unsafe { fixed (Double* @params_ptr = @params) { - Delegates.glTexGendv((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Double*)@params_ptr); + Delegates.glTexGendv((OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Double*)@params_ptr); } } } public static - void TexGenv(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, ref Double @params) + void TexGenv(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, ref Double @params) { unsafe { fixed (Double* @params_ptr = &@params) { - Delegates.glTexGendv((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Double*)@params_ptr); + Delegates.glTexGendv((OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Double*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void TexGenv(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Double* @params) + unsafe void TexGenv(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Double* @params) { - Delegates.glTexGendv((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Double*)@params); + Delegates.glTexGendv((OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Double*)@params); } public static - void TexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Single param) + void TexGen(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Single param) { - Delegates.glTexGenf((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Single)param); + Delegates.glTexGenf((OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Single)param); } public static - void TexGenv(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Single[] @params) + void TexGenv(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glTexGenfv((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Single*)@params_ptr); + Delegates.glTexGenfv((OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Single*)@params_ptr); } } } public static - void TexGenv(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, ref Single @params) + void TexGenv(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glTexGenfv((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Single*)@params_ptr); + Delegates.glTexGenfv((OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void TexGenv(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Single* @params) + unsafe void TexGenv(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Single* @params) { - Delegates.glTexGenfv((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Single*)@params); + Delegates.glTexGenfv((OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Single*)@params); } public static - void TexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Int32 param) + void TexGen(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Int32 param) { - Delegates.glTexGeni((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Int32)param); + Delegates.glTexGeni((OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Int32)param); } public static - void TexGenv(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Int32[] @params) + void TexGenv(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glTexGeniv((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Int32*)@params_ptr); + Delegates.glTexGeniv((OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Int32*)@params_ptr); } } } public static - void TexGenv(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, ref Int32 @params) + void TexGenv(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glTexGeniv((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Int32*)@params_ptr); + Delegates.glTexGeniv((OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void TexGenv(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Int32* @params) + unsafe void TexGenv(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Int32* @params) { - Delegates.glTexGeniv((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Int32*)@params); + Delegates.glTexGeniv((OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Int32*)@params); } public static - void FeedbackBuffer(Int32 size, OpenTK.Graphics.OpenGL.FeedbackType type, [Out] Single[] buffer) + void FeedbackBuffer(Int32 size, OpenTK.Graphics.FeedbackType type, [Out] Single[] buffer) { unsafe { fixed (Single* buffer_ptr = buffer) { - Delegates.glFeedbackBuffer((Int32)size, (OpenTK.Graphics.OpenGL.FeedbackType)type, (Single*)buffer_ptr); + Delegates.glFeedbackBuffer((Int32)size, (OpenTK.Graphics.FeedbackType)type, (Single*)buffer_ptr); } } } public static - void FeedbackBuffer(Int32 size, OpenTK.Graphics.OpenGL.FeedbackType type, [Out] out Single buffer) + void FeedbackBuffer(Int32 size, OpenTK.Graphics.FeedbackType type, [Out] out Single buffer) { unsafe { fixed (Single* buffer_ptr = &buffer) { - Delegates.glFeedbackBuffer((Int32)size, (OpenTK.Graphics.OpenGL.FeedbackType)type, (Single*)buffer_ptr); + Delegates.glFeedbackBuffer((Int32)size, (OpenTK.Graphics.FeedbackType)type, (Single*)buffer_ptr); buffer = *buffer_ptr; } } @@ -3566,9 +3566,9 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void FeedbackBuffer(Int32 size, OpenTK.Graphics.OpenGL.FeedbackType type, [Out] Single* buffer) + unsafe void FeedbackBuffer(Int32 size, OpenTK.Graphics.FeedbackType type, [Out] Single* buffer) { - Delegates.glFeedbackBuffer((Int32)size, (OpenTK.Graphics.OpenGL.FeedbackType)type, (Single*)buffer); + Delegates.glFeedbackBuffer((Int32)size, (OpenTK.Graphics.FeedbackType)type, (Single*)buffer); } [System.CLSCompliant(false)] @@ -3638,9 +3638,9 @@ namespace OpenTK.Graphics.OpenGL } public static - Int32 RenderMode(OpenTK.Graphics.OpenGL.RenderingMode mode) + Int32 RenderMode(OpenTK.Graphics.RenderingMode mode) { - return Delegates.glRenderMode((OpenTK.Graphics.OpenGL.RenderingMode)mode); + return Delegates.glRenderMode((OpenTK.Graphics.RenderingMode)mode); } public static @@ -3688,15 +3688,15 @@ namespace OpenTK.Graphics.OpenGL } public static - void DrawBuffer(OpenTK.Graphics.OpenGL.DrawBufferMode mode) + void DrawBuffer(OpenTK.Graphics.DrawBufferMode mode) { - Delegates.glDrawBuffer((OpenTK.Graphics.OpenGL.DrawBufferMode)mode); + Delegates.glDrawBuffer((OpenTK.Graphics.DrawBufferMode)mode); } public static - void Clear(OpenTK.Graphics.OpenGL.ClearBufferMask mask) + void Clear(OpenTK.Graphics.ClearBufferMask mask) { - Delegates.glClear((OpenTK.Graphics.OpenGL.ClearBufferMask)mask); + Delegates.glClear((OpenTK.Graphics.ClearBufferMask)mask); } public static @@ -3768,21 +3768,21 @@ namespace OpenTK.Graphics.OpenGL } public static - void Accum(OpenTK.Graphics.OpenGL.AccumOp op, Single value) + void Accum(OpenTK.Graphics.AccumOp op, Single value) { - Delegates.glAccum((OpenTK.Graphics.OpenGL.AccumOp)op, (Single)value); + Delegates.glAccum((OpenTK.Graphics.AccumOp)op, (Single)value); } public static - void Disable(OpenTK.Graphics.OpenGL.EnableCap cap) + void Disable(OpenTK.Graphics.EnableCap cap) { - Delegates.glDisable((OpenTK.Graphics.OpenGL.EnableCap)cap); + Delegates.glDisable((OpenTK.Graphics.EnableCap)cap); } public static - void Enable(OpenTK.Graphics.OpenGL.EnableCap cap) + void Enable(OpenTK.Graphics.EnableCap cap) { - Delegates.glEnable((OpenTK.Graphics.OpenGL.EnableCap)cap); + Delegates.glEnable((OpenTK.Graphics.EnableCap)cap); } public static @@ -3804,133 +3804,133 @@ namespace OpenTK.Graphics.OpenGL } public static - void PushAttrib(OpenTK.Graphics.OpenGL.AttribMask mask) + void PushAttrib(OpenTK.Graphics.AttribMask mask) { - Delegates.glPushAttrib((OpenTK.Graphics.OpenGL.AttribMask)mask); + Delegates.glPushAttrib((OpenTK.Graphics.AttribMask)mask); } public static - void Map1(OpenTK.Graphics.OpenGL.MapTarget target, Double u1, Double u2, Int32 stride, Int32 order, Double[] points) + void Map1(OpenTK.Graphics.MapTarget target, Double u1, Double u2, Int32 stride, Int32 order, Double[] points) { unsafe { fixed (Double* points_ptr = points) { - Delegates.glMap1d((OpenTK.Graphics.OpenGL.MapTarget)target, (Double)u1, (Double)u2, (Int32)stride, (Int32)order, (Double*)points_ptr); + Delegates.glMap1d((OpenTK.Graphics.MapTarget)target, (Double)u1, (Double)u2, (Int32)stride, (Int32)order, (Double*)points_ptr); } } } public static - void Map1(OpenTK.Graphics.OpenGL.MapTarget target, Double u1, Double u2, Int32 stride, Int32 order, ref Double points) + void Map1(OpenTK.Graphics.MapTarget target, Double u1, Double u2, Int32 stride, Int32 order, ref Double points) { unsafe { fixed (Double* points_ptr = &points) { - Delegates.glMap1d((OpenTK.Graphics.OpenGL.MapTarget)target, (Double)u1, (Double)u2, (Int32)stride, (Int32)order, (Double*)points_ptr); + Delegates.glMap1d((OpenTK.Graphics.MapTarget)target, (Double)u1, (Double)u2, (Int32)stride, (Int32)order, (Double*)points_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void Map1(OpenTK.Graphics.OpenGL.MapTarget target, Double u1, Double u2, Int32 stride, Int32 order, Double* points) + unsafe void Map1(OpenTK.Graphics.MapTarget target, Double u1, Double u2, Int32 stride, Int32 order, Double* points) { - Delegates.glMap1d((OpenTK.Graphics.OpenGL.MapTarget)target, (Double)u1, (Double)u2, (Int32)stride, (Int32)order, (Double*)points); + Delegates.glMap1d((OpenTK.Graphics.MapTarget)target, (Double)u1, (Double)u2, (Int32)stride, (Int32)order, (Double*)points); } public static - void Map1(OpenTK.Graphics.OpenGL.MapTarget target, Single u1, Single u2, Int32 stride, Int32 order, Single[] points) + void Map1(OpenTK.Graphics.MapTarget target, Single u1, Single u2, Int32 stride, Int32 order, Single[] points) { unsafe { fixed (Single* points_ptr = points) { - Delegates.glMap1f((OpenTK.Graphics.OpenGL.MapTarget)target, (Single)u1, (Single)u2, (Int32)stride, (Int32)order, (Single*)points_ptr); + Delegates.glMap1f((OpenTK.Graphics.MapTarget)target, (Single)u1, (Single)u2, (Int32)stride, (Int32)order, (Single*)points_ptr); } } } public static - void Map1(OpenTK.Graphics.OpenGL.MapTarget target, Single u1, Single u2, Int32 stride, Int32 order, ref Single points) + void Map1(OpenTK.Graphics.MapTarget target, Single u1, Single u2, Int32 stride, Int32 order, ref Single points) { unsafe { fixed (Single* points_ptr = &points) { - Delegates.glMap1f((OpenTK.Graphics.OpenGL.MapTarget)target, (Single)u1, (Single)u2, (Int32)stride, (Int32)order, (Single*)points_ptr); + Delegates.glMap1f((OpenTK.Graphics.MapTarget)target, (Single)u1, (Single)u2, (Int32)stride, (Int32)order, (Single*)points_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void Map1(OpenTK.Graphics.OpenGL.MapTarget target, Single u1, Single u2, Int32 stride, Int32 order, Single* points) + unsafe void Map1(OpenTK.Graphics.MapTarget target, Single u1, Single u2, Int32 stride, Int32 order, Single* points) { - Delegates.glMap1f((OpenTK.Graphics.OpenGL.MapTarget)target, (Single)u1, (Single)u2, (Int32)stride, (Int32)order, (Single*)points); + Delegates.glMap1f((OpenTK.Graphics.MapTarget)target, (Single)u1, (Single)u2, (Int32)stride, (Int32)order, (Single*)points); } public static - void Map2(OpenTK.Graphics.OpenGL.MapTarget target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double[] points) + void Map2(OpenTK.Graphics.MapTarget target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double[] points) { unsafe { fixed (Double* points_ptr = points) { - Delegates.glMap2d((OpenTK.Graphics.OpenGL.MapTarget)target, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (Double*)points_ptr); + Delegates.glMap2d((OpenTK.Graphics.MapTarget)target, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (Double*)points_ptr); } } } public static - void Map2(OpenTK.Graphics.OpenGL.MapTarget target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, ref Double points) + void Map2(OpenTK.Graphics.MapTarget target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, ref Double points) { unsafe { fixed (Double* points_ptr = &points) { - Delegates.glMap2d((OpenTK.Graphics.OpenGL.MapTarget)target, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (Double*)points_ptr); + Delegates.glMap2d((OpenTK.Graphics.MapTarget)target, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (Double*)points_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void Map2(OpenTK.Graphics.OpenGL.MapTarget target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double* points) + unsafe void Map2(OpenTK.Graphics.MapTarget target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double* points) { - Delegates.glMap2d((OpenTK.Graphics.OpenGL.MapTarget)target, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (Double*)points); + Delegates.glMap2d((OpenTK.Graphics.MapTarget)target, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (Double*)points); } public static - void Map2(OpenTK.Graphics.OpenGL.MapTarget target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single[] points) + void Map2(OpenTK.Graphics.MapTarget target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single[] points) { unsafe { fixed (Single* points_ptr = points) { - Delegates.glMap2f((OpenTK.Graphics.OpenGL.MapTarget)target, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (Single*)points_ptr); + Delegates.glMap2f((OpenTK.Graphics.MapTarget)target, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (Single*)points_ptr); } } } public static - void Map2(OpenTK.Graphics.OpenGL.MapTarget target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, ref Single points) + void Map2(OpenTK.Graphics.MapTarget target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, ref Single points) { unsafe { fixed (Single* points_ptr = &points) { - Delegates.glMap2f((OpenTK.Graphics.OpenGL.MapTarget)target, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (Single*)points_ptr); + Delegates.glMap2f((OpenTK.Graphics.MapTarget)target, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (Single*)points_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void Map2(OpenTK.Graphics.OpenGL.MapTarget target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single* points) + unsafe void Map2(OpenTK.Graphics.MapTarget target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single* points) { - Delegates.glMap2f((OpenTK.Graphics.OpenGL.MapTarget)target, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (Single*)points); + Delegates.glMap2f((OpenTK.Graphics.MapTarget)target, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (Single*)points); } public static @@ -4106,9 +4106,9 @@ namespace OpenTK.Graphics.OpenGL } public static - void EvalMesh1(OpenTK.Graphics.OpenGL.MeshMode1 mode, Int32 i1, Int32 i2) + void EvalMesh1(OpenTK.Graphics.MeshMode1 mode, Int32 i1, Int32 i2) { - Delegates.glEvalMesh1((OpenTK.Graphics.OpenGL.MeshMode1)mode, (Int32)i1, (Int32)i2); + Delegates.glEvalMesh1((OpenTK.Graphics.MeshMode1)mode, (Int32)i1, (Int32)i2); } public static @@ -4118,9 +4118,9 @@ namespace OpenTK.Graphics.OpenGL } public static - void EvalMesh2(OpenTK.Graphics.OpenGL.MeshMode2 mode, Int32 i1, Int32 i2, Int32 j1, Int32 j2) + void EvalMesh2(OpenTK.Graphics.MeshMode2 mode, Int32 i1, Int32 i2, Int32 j1, Int32 j2) { - Delegates.glEvalMesh2((OpenTK.Graphics.OpenGL.MeshMode2)mode, (Int32)i1, (Int32)i2, (Int32)j1, (Int32)j2); + Delegates.glEvalMesh2((OpenTK.Graphics.MeshMode2)mode, (Int32)i1, (Int32)i2, (Int32)j1, (Int32)j2); } public static @@ -4130,46 +4130,46 @@ namespace OpenTK.Graphics.OpenGL } public static - void AlphaFunc(OpenTK.Graphics.OpenGL.AlphaFunction func, Single @ref) + void AlphaFunc(OpenTK.Graphics.AlphaFunction func, Single @ref) { - Delegates.glAlphaFunc((OpenTK.Graphics.OpenGL.AlphaFunction)func, (Single)@ref); + Delegates.glAlphaFunc((OpenTK.Graphics.AlphaFunction)func, (Single)@ref); } public static - void BlendFunc(OpenTK.Graphics.OpenGL.BlendingFactorSrc sfactor, OpenTK.Graphics.OpenGL.BlendingFactorDest dfactor) + void BlendFunc(OpenTK.Graphics.BlendingFactorSrc sfactor, OpenTK.Graphics.BlendingFactorDest dfactor) { - Delegates.glBlendFunc((OpenTK.Graphics.OpenGL.BlendingFactorSrc)sfactor, (OpenTK.Graphics.OpenGL.BlendingFactorDest)dfactor); + Delegates.glBlendFunc((OpenTK.Graphics.BlendingFactorSrc)sfactor, (OpenTK.Graphics.BlendingFactorDest)dfactor); } public static - void LogicOp(OpenTK.Graphics.OpenGL.LogicOp opcode) + void LogicOp(OpenTK.Graphics.LogicOp opcode) { - Delegates.glLogicOp((OpenTK.Graphics.OpenGL.LogicOp)opcode); + Delegates.glLogicOp((OpenTK.Graphics.LogicOp)opcode); } [System.CLSCompliant(false)] public static - void StencilFunc(OpenTK.Graphics.OpenGL.StencilFunction func, Int32 @ref, UInt32 mask) + void StencilFunc(OpenTK.Graphics.StencilFunction func, Int32 @ref, UInt32 mask) { - Delegates.glStencilFunc((OpenTK.Graphics.OpenGL.StencilFunction)func, (Int32)@ref, (UInt32)mask); + Delegates.glStencilFunc((OpenTK.Graphics.StencilFunction)func, (Int32)@ref, (UInt32)mask); } public static - void StencilFunc(OpenTK.Graphics.OpenGL.StencilFunction func, Int32 @ref, Int32 mask) + void StencilFunc(OpenTK.Graphics.StencilFunction func, Int32 @ref, Int32 mask) { - Delegates.glStencilFunc((OpenTK.Graphics.OpenGL.StencilFunction)func, (Int32)@ref, (UInt32)mask); + Delegates.glStencilFunc((OpenTK.Graphics.StencilFunction)func, (Int32)@ref, (UInt32)mask); } public static - void StencilOp(OpenTK.Graphics.OpenGL.StencilOp fail, OpenTK.Graphics.OpenGL.StencilOp zfail, OpenTK.Graphics.OpenGL.StencilOp zpass) + void StencilOp(OpenTK.Graphics.StencilOp fail, OpenTK.Graphics.StencilOp zfail, OpenTK.Graphics.StencilOp zpass) { - Delegates.glStencilOp((OpenTK.Graphics.OpenGL.StencilOp)fail, (OpenTK.Graphics.OpenGL.StencilOp)zfail, (OpenTK.Graphics.OpenGL.StencilOp)zpass); + Delegates.glStencilOp((OpenTK.Graphics.StencilOp)fail, (OpenTK.Graphics.StencilOp)zfail, (OpenTK.Graphics.StencilOp)zpass); } public static - void DepthFunc(OpenTK.Graphics.OpenGL.DepthFunction func) + void DepthFunc(OpenTK.Graphics.DepthFunction func) { - Delegates.glDepthFunc((OpenTK.Graphics.OpenGL.DepthFunction)func); + Delegates.glDepthFunc((OpenTK.Graphics.DepthFunction)func); } public static @@ -4179,218 +4179,218 @@ namespace OpenTK.Graphics.OpenGL } public static - void PixelTransfer(OpenTK.Graphics.OpenGL.PixelTransferParameter pname, Single param) + void PixelTransfer(OpenTK.Graphics.PixelTransferParameter pname, Single param) { - Delegates.glPixelTransferf((OpenTK.Graphics.OpenGL.PixelTransferParameter)pname, (Single)param); + Delegates.glPixelTransferf((OpenTK.Graphics.PixelTransferParameter)pname, (Single)param); } public static - void PixelTransfer(OpenTK.Graphics.OpenGL.PixelTransferParameter pname, Int32 param) + void PixelTransfer(OpenTK.Graphics.PixelTransferParameter pname, Int32 param) { - Delegates.glPixelTransferi((OpenTK.Graphics.OpenGL.PixelTransferParameter)pname, (Int32)param); + Delegates.glPixelTransferi((OpenTK.Graphics.PixelTransferParameter)pname, (Int32)param); } public static - void PixelStore(OpenTK.Graphics.OpenGL.PixelStoreParameter pname, Single param) + void PixelStore(OpenTK.Graphics.PixelStoreParameter pname, Single param) { - Delegates.glPixelStoref((OpenTK.Graphics.OpenGL.PixelStoreParameter)pname, (Single)param); + Delegates.glPixelStoref((OpenTK.Graphics.PixelStoreParameter)pname, (Single)param); } public static - void PixelStore(OpenTK.Graphics.OpenGL.PixelStoreParameter pname, Int32 param) + void PixelStore(OpenTK.Graphics.PixelStoreParameter pname, Int32 param) { - Delegates.glPixelStorei((OpenTK.Graphics.OpenGL.PixelStoreParameter)pname, (Int32)param); + Delegates.glPixelStorei((OpenTK.Graphics.PixelStoreParameter)pname, (Int32)param); } public static - void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, Single[] values) + void PixelMap(OpenTK.Graphics.PixelMap map, Int32 mapsize, Single[] values) { unsafe { fixed (Single* values_ptr = values) { - Delegates.glPixelMapfv((OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (Single*)values_ptr); + Delegates.glPixelMapfv((OpenTK.Graphics.PixelMap)map, (Int32)mapsize, (Single*)values_ptr); } } } public static - void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, ref Single values) + void PixelMap(OpenTK.Graphics.PixelMap map, Int32 mapsize, ref Single values) { unsafe { fixed (Single* values_ptr = &values) { - Delegates.glPixelMapfv((OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (Single*)values_ptr); + Delegates.glPixelMapfv((OpenTK.Graphics.PixelMap)map, (Int32)mapsize, (Single*)values_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, Single* values) + unsafe void PixelMap(OpenTK.Graphics.PixelMap map, Int32 mapsize, Single* values) { - Delegates.glPixelMapfv((OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (Single*)values); + Delegates.glPixelMapfv((OpenTK.Graphics.PixelMap)map, (Int32)mapsize, (Single*)values); } [System.CLSCompliant(false)] public static - void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, UInt32[] values) + void PixelMap(OpenTK.Graphics.PixelMap map, Int32 mapsize, UInt32[] values) { unsafe { fixed (UInt32* values_ptr = values) { - Delegates.glPixelMapuiv((OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (UInt32*)values_ptr); + Delegates.glPixelMapuiv((OpenTK.Graphics.PixelMap)map, (Int32)mapsize, (UInt32*)values_ptr); } } } public static - void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, Int32[] values) + void PixelMap(OpenTK.Graphics.PixelMap map, Int32 mapsize, Int32[] values) { unsafe { fixed (Int32* values_ptr = values) { - Delegates.glPixelMapuiv((OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (UInt32*)values_ptr); + Delegates.glPixelMapuiv((OpenTK.Graphics.PixelMap)map, (Int32)mapsize, (UInt32*)values_ptr); } } } [System.CLSCompliant(false)] public static - void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, ref UInt32 values) + void PixelMap(OpenTK.Graphics.PixelMap map, Int32 mapsize, ref UInt32 values) { unsafe { fixed (UInt32* values_ptr = &values) { - Delegates.glPixelMapuiv((OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (UInt32*)values_ptr); + Delegates.glPixelMapuiv((OpenTK.Graphics.PixelMap)map, (Int32)mapsize, (UInt32*)values_ptr); } } } public static - void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, ref Int32 values) + void PixelMap(OpenTK.Graphics.PixelMap map, Int32 mapsize, ref Int32 values) { unsafe { fixed (Int32* values_ptr = &values) { - Delegates.glPixelMapuiv((OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (UInt32*)values_ptr); + Delegates.glPixelMapuiv((OpenTK.Graphics.PixelMap)map, (Int32)mapsize, (UInt32*)values_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, UInt32* values) + unsafe void PixelMap(OpenTK.Graphics.PixelMap map, Int32 mapsize, UInt32* values) { - Delegates.glPixelMapuiv((OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (UInt32*)values); + Delegates.glPixelMapuiv((OpenTK.Graphics.PixelMap)map, (Int32)mapsize, (UInt32*)values); } [System.CLSCompliant(false)] public static - unsafe void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, Int32* values) + unsafe void PixelMap(OpenTK.Graphics.PixelMap map, Int32 mapsize, Int32* values) { - Delegates.glPixelMapuiv((OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (UInt32*)values); + Delegates.glPixelMapuiv((OpenTK.Graphics.PixelMap)map, (Int32)mapsize, (UInt32*)values); } [System.CLSCompliant(false)] public static - void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, UInt16[] values) + void PixelMap(OpenTK.Graphics.PixelMap map, Int32 mapsize, UInt16[] values) { unsafe { fixed (UInt16* values_ptr = values) { - Delegates.glPixelMapusv((OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (UInt16*)values_ptr); + Delegates.glPixelMapusv((OpenTK.Graphics.PixelMap)map, (Int32)mapsize, (UInt16*)values_ptr); } } } public static - void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, Int16[] values) + void PixelMap(OpenTK.Graphics.PixelMap map, Int32 mapsize, Int16[] values) { unsafe { fixed (Int16* values_ptr = values) { - Delegates.glPixelMapusv((OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (UInt16*)values_ptr); + Delegates.glPixelMapusv((OpenTK.Graphics.PixelMap)map, (Int32)mapsize, (UInt16*)values_ptr); } } } [System.CLSCompliant(false)] public static - void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, ref UInt16 values) + void PixelMap(OpenTK.Graphics.PixelMap map, Int32 mapsize, ref UInt16 values) { unsafe { fixed (UInt16* values_ptr = &values) { - Delegates.glPixelMapusv((OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (UInt16*)values_ptr); + Delegates.glPixelMapusv((OpenTK.Graphics.PixelMap)map, (Int32)mapsize, (UInt16*)values_ptr); } } } public static - void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, ref Int16 values) + void PixelMap(OpenTK.Graphics.PixelMap map, Int32 mapsize, ref Int16 values) { unsafe { fixed (Int16* values_ptr = &values) { - Delegates.glPixelMapusv((OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (UInt16*)values_ptr); + Delegates.glPixelMapusv((OpenTK.Graphics.PixelMap)map, (Int32)mapsize, (UInt16*)values_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, UInt16* values) + unsafe void PixelMap(OpenTK.Graphics.PixelMap map, Int32 mapsize, UInt16* values) { - Delegates.glPixelMapusv((OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (UInt16*)values); + Delegates.glPixelMapusv((OpenTK.Graphics.PixelMap)map, (Int32)mapsize, (UInt16*)values); } [System.CLSCompliant(false)] public static - unsafe void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, Int16* values) + unsafe void PixelMap(OpenTK.Graphics.PixelMap map, Int32 mapsize, Int16* values) { - Delegates.glPixelMapusv((OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (UInt16*)values); + Delegates.glPixelMapusv((OpenTK.Graphics.PixelMap)map, (Int32)mapsize, (UInt16*)values); } public static - void ReadBuffer(OpenTK.Graphics.OpenGL.ReadBufferMode mode) + void ReadBuffer(OpenTK.Graphics.ReadBufferMode mode) { - Delegates.glReadBuffer((OpenTK.Graphics.OpenGL.ReadBufferMode)mode); + Delegates.glReadBuffer((OpenTK.Graphics.ReadBufferMode)mode); } public static - void CopyPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelCopyType type) + void CopyPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.PixelCopyType type) { - Delegates.glCopyPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelCopyType)type); + Delegates.glCopyPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelCopyType)type); } public static - void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [Out] IntPtr pixels) + void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr pixels) { unsafe { - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels); } } public static - void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [In, Out] object pixels) + void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.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.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -4400,23 +4400,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void DrawPixels(Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) + void DrawPixels(Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels) { unsafe { - Delegates.glDrawPixels((Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + Delegates.glDrawPixels((Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels); } } public static - void DrawPixels(Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [In, Out] object pixels) + void DrawPixels(Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.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.glDrawPixels((Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + Delegates.glDrawPixels((Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -4426,25 +4426,25 @@ namespace OpenTK.Graphics.OpenGL } public static - void GetClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [Out] Double[] equation) + void GetClipPlane(OpenTK.Graphics.ClipPlaneName plane, [Out] Double[] equation) { unsafe { fixed (Double* equation_ptr = equation) { - Delegates.glGetClipPlane((OpenTK.Graphics.OpenGL.ClipPlaneName)plane, (Double*)equation_ptr); + Delegates.glGetClipPlane((OpenTK.Graphics.ClipPlaneName)plane, (Double*)equation_ptr); } } } public static - void GetClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [Out] out Double equation) + void GetClipPlane(OpenTK.Graphics.ClipPlaneName plane, [Out] out Double equation) { unsafe { fixed (Double* equation_ptr = &equation) { - Delegates.glGetClipPlane((OpenTK.Graphics.OpenGL.ClipPlaneName)plane, (Double*)equation_ptr); + Delegates.glGetClipPlane((OpenTK.Graphics.ClipPlaneName)plane, (Double*)equation_ptr); equation = *equation_ptr; } } @@ -4452,31 +4452,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [Out] Double* equation) + unsafe void GetClipPlane(OpenTK.Graphics.ClipPlaneName plane, [Out] Double* equation) { - Delegates.glGetClipPlane((OpenTK.Graphics.OpenGL.ClipPlaneName)plane, (Double*)equation); + Delegates.glGetClipPlane((OpenTK.Graphics.ClipPlaneName)plane, (Double*)equation); } public static - void GetDouble(OpenTK.Graphics.OpenGL.GetPName pname, [Out] Double[] @params) + void GetDouble(OpenTK.Graphics.GetPName pname, [Out] Double[] @params) { unsafe { fixed (Double* @params_ptr = @params) { - Delegates.glGetDoublev((OpenTK.Graphics.OpenGL.GetPName)pname, (Double*)@params_ptr); + Delegates.glGetDoublev((OpenTK.Graphics.GetPName)pname, (Double*)@params_ptr); } } } public static - void GetDouble(OpenTK.Graphics.OpenGL.GetPName pname, [Out] out Double @params) + void GetDouble(OpenTK.Graphics.GetPName pname, [Out] out Double @params) { unsafe { fixed (Double* @params_ptr = &@params) { - Delegates.glGetDoublev((OpenTK.Graphics.OpenGL.GetPName)pname, (Double*)@params_ptr); + Delegates.glGetDoublev((OpenTK.Graphics.GetPName)pname, (Double*)@params_ptr); @params = *@params_ptr; } } @@ -4484,37 +4484,37 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetDouble(OpenTK.Graphics.OpenGL.GetPName pname, [Out] Double* @params) + unsafe void GetDouble(OpenTK.Graphics.GetPName pname, [Out] Double* @params) { - Delegates.glGetDoublev((OpenTK.Graphics.OpenGL.GetPName)pname, (Double*)@params); + Delegates.glGetDoublev((OpenTK.Graphics.GetPName)pname, (Double*)@params); } public static - OpenTK.Graphics.OpenGL.ErrorCode GetError() + OpenTK.Graphics.ErrorCode GetError() { return Delegates.glGetError(); } public static - void GetFloat(OpenTK.Graphics.OpenGL.GetPName pname, [Out] Single[] @params) + void GetFloat(OpenTK.Graphics.GetPName pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetFloatv((OpenTK.Graphics.OpenGL.GetPName)pname, (Single*)@params_ptr); + Delegates.glGetFloatv((OpenTK.Graphics.GetPName)pname, (Single*)@params_ptr); } } } public static - void GetFloat(OpenTK.Graphics.OpenGL.GetPName pname, [Out] out Single @params) + void GetFloat(OpenTK.Graphics.GetPName pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetFloatv((OpenTK.Graphics.OpenGL.GetPName)pname, (Single*)@params_ptr); + Delegates.glGetFloatv((OpenTK.Graphics.GetPName)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -4522,31 +4522,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetFloat(OpenTK.Graphics.OpenGL.GetPName pname, [Out] Single* @params) + unsafe void GetFloat(OpenTK.Graphics.GetPName pname, [Out] Single* @params) { - Delegates.glGetFloatv((OpenTK.Graphics.OpenGL.GetPName)pname, (Single*)@params); + Delegates.glGetFloatv((OpenTK.Graphics.GetPName)pname, (Single*)@params); } public static - void GetInteger(OpenTK.Graphics.OpenGL.GetPName pname, [Out] Int32[] @params) + void GetInteger(OpenTK.Graphics.GetPName pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetIntegerv((OpenTK.Graphics.OpenGL.GetPName)pname, (Int32*)@params_ptr); + Delegates.glGetIntegerv((OpenTK.Graphics.GetPName)pname, (Int32*)@params_ptr); } } } public static - void GetInteger(OpenTK.Graphics.OpenGL.GetPName pname, [Out] out Int32 @params) + void GetInteger(OpenTK.Graphics.GetPName pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetIntegerv((OpenTK.Graphics.OpenGL.GetPName)pname, (Int32*)@params_ptr); + Delegates.glGetIntegerv((OpenTK.Graphics.GetPName)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -4554,31 +4554,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetInteger(OpenTK.Graphics.OpenGL.GetPName pname, [Out] Int32* @params) + unsafe void GetInteger(OpenTK.Graphics.GetPName pname, [Out] Int32* @params) { - Delegates.glGetIntegerv((OpenTK.Graphics.OpenGL.GetPName)pname, (Int32*)@params); + Delegates.glGetIntegerv((OpenTK.Graphics.GetPName)pname, (Int32*)@params); } public static - void GetLight(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [Out] Single[] @params) + void GetLight(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetLightfv((OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)pname, (Single*)@params_ptr); + Delegates.glGetLightfv((OpenTK.Graphics.LightName)light, (OpenTK.Graphics.LightParameter)pname, (Single*)@params_ptr); } } } public static - void GetLight(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [Out] out Single @params) + void GetLight(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetLightfv((OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)pname, (Single*)@params_ptr); + Delegates.glGetLightfv((OpenTK.Graphics.LightName)light, (OpenTK.Graphics.LightParameter)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -4586,31 +4586,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetLight(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [Out] Single* @params) + unsafe void GetLight(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, [Out] Single* @params) { - Delegates.glGetLightfv((OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)pname, (Single*)@params); + Delegates.glGetLightfv((OpenTK.Graphics.LightName)light, (OpenTK.Graphics.LightParameter)pname, (Single*)@params); } public static - void GetLight(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [Out] Int32[] @params) + void GetLight(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetLightiv((OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)pname, (Int32*)@params_ptr); + Delegates.glGetLightiv((OpenTK.Graphics.LightName)light, (OpenTK.Graphics.LightParameter)pname, (Int32*)@params_ptr); } } } public static - void GetLight(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [Out] out Int32 @params) + void GetLight(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetLightiv((OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)pname, (Int32*)@params_ptr); + Delegates.glGetLightiv((OpenTK.Graphics.LightName)light, (OpenTK.Graphics.LightParameter)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -4618,31 +4618,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetLight(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [Out] Int32* @params) + unsafe void GetLight(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, [Out] Int32* @params) { - Delegates.glGetLightiv((OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)pname, (Int32*)@params); + Delegates.glGetLightiv((OpenTK.Graphics.LightName)light, (OpenTK.Graphics.LightParameter)pname, (Int32*)@params); } public static - void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [Out] Double[] v) + void GetMap(OpenTK.Graphics.MapTarget target, OpenTK.Graphics.GetMapQuery query, [Out] Double[] v) { unsafe { fixed (Double* v_ptr = v) { - Delegates.glGetMapdv((OpenTK.Graphics.OpenGL.MapTarget)target, (OpenTK.Graphics.OpenGL.GetMapQuery)query, (Double*)v_ptr); + Delegates.glGetMapdv((OpenTK.Graphics.MapTarget)target, (OpenTK.Graphics.GetMapQuery)query, (Double*)v_ptr); } } } public static - void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [Out] out Double v) + void GetMap(OpenTK.Graphics.MapTarget target, OpenTK.Graphics.GetMapQuery query, [Out] out Double v) { unsafe { fixed (Double* v_ptr = &v) { - Delegates.glGetMapdv((OpenTK.Graphics.OpenGL.MapTarget)target, (OpenTK.Graphics.OpenGL.GetMapQuery)query, (Double*)v_ptr); + Delegates.glGetMapdv((OpenTK.Graphics.MapTarget)target, (OpenTK.Graphics.GetMapQuery)query, (Double*)v_ptr); v = *v_ptr; } } @@ -4650,31 +4650,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [Out] Double* v) + unsafe void GetMap(OpenTK.Graphics.MapTarget target, OpenTK.Graphics.GetMapQuery query, [Out] Double* v) { - Delegates.glGetMapdv((OpenTK.Graphics.OpenGL.MapTarget)target, (OpenTK.Graphics.OpenGL.GetMapQuery)query, (Double*)v); + Delegates.glGetMapdv((OpenTK.Graphics.MapTarget)target, (OpenTK.Graphics.GetMapQuery)query, (Double*)v); } public static - void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [Out] Single[] v) + void GetMap(OpenTK.Graphics.MapTarget target, OpenTK.Graphics.GetMapQuery query, [Out] Single[] v) { unsafe { fixed (Single* v_ptr = v) { - Delegates.glGetMapfv((OpenTK.Graphics.OpenGL.MapTarget)target, (OpenTK.Graphics.OpenGL.GetMapQuery)query, (Single*)v_ptr); + Delegates.glGetMapfv((OpenTK.Graphics.MapTarget)target, (OpenTK.Graphics.GetMapQuery)query, (Single*)v_ptr); } } } public static - void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [Out] out Single v) + void GetMap(OpenTK.Graphics.MapTarget target, OpenTK.Graphics.GetMapQuery query, [Out] out Single v) { unsafe { fixed (Single* v_ptr = &v) { - Delegates.glGetMapfv((OpenTK.Graphics.OpenGL.MapTarget)target, (OpenTK.Graphics.OpenGL.GetMapQuery)query, (Single*)v_ptr); + Delegates.glGetMapfv((OpenTK.Graphics.MapTarget)target, (OpenTK.Graphics.GetMapQuery)query, (Single*)v_ptr); v = *v_ptr; } } @@ -4682,31 +4682,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [Out] Single* v) + unsafe void GetMap(OpenTK.Graphics.MapTarget target, OpenTK.Graphics.GetMapQuery query, [Out] Single* v) { - Delegates.glGetMapfv((OpenTK.Graphics.OpenGL.MapTarget)target, (OpenTK.Graphics.OpenGL.GetMapQuery)query, (Single*)v); + Delegates.glGetMapfv((OpenTK.Graphics.MapTarget)target, (OpenTK.Graphics.GetMapQuery)query, (Single*)v); } public static - void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [Out] Int32[] v) + void GetMap(OpenTK.Graphics.MapTarget target, OpenTK.Graphics.GetMapQuery query, [Out] Int32[] v) { unsafe { fixed (Int32* v_ptr = v) { - Delegates.glGetMapiv((OpenTK.Graphics.OpenGL.MapTarget)target, (OpenTK.Graphics.OpenGL.GetMapQuery)query, (Int32*)v_ptr); + Delegates.glGetMapiv((OpenTK.Graphics.MapTarget)target, (OpenTK.Graphics.GetMapQuery)query, (Int32*)v_ptr); } } } public static - void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [Out] out Int32 v) + void GetMap(OpenTK.Graphics.MapTarget target, OpenTK.Graphics.GetMapQuery query, [Out] out Int32 v) { unsafe { fixed (Int32* v_ptr = &v) { - Delegates.glGetMapiv((OpenTK.Graphics.OpenGL.MapTarget)target, (OpenTK.Graphics.OpenGL.GetMapQuery)query, (Int32*)v_ptr); + Delegates.glGetMapiv((OpenTK.Graphics.MapTarget)target, (OpenTK.Graphics.GetMapQuery)query, (Int32*)v_ptr); v = *v_ptr; } } @@ -4714,31 +4714,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [Out] Int32* v) + unsafe void GetMap(OpenTK.Graphics.MapTarget target, OpenTK.Graphics.GetMapQuery query, [Out] Int32* v) { - Delegates.glGetMapiv((OpenTK.Graphics.OpenGL.MapTarget)target, (OpenTK.Graphics.OpenGL.GetMapQuery)query, (Int32*)v); + Delegates.glGetMapiv((OpenTK.Graphics.MapTarget)target, (OpenTK.Graphics.GetMapQuery)query, (Int32*)v); } public static - void GetMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [Out] Single[] @params) + void GetMaterial(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetMaterialfv((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Single*)@params_ptr); + Delegates.glGetMaterialfv((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Single*)@params_ptr); } } } public static - void GetMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [Out] out Single @params) + void GetMaterial(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetMaterialfv((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Single*)@params_ptr); + Delegates.glGetMaterialfv((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -4746,31 +4746,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [Out] Single* @params) + unsafe void GetMaterial(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, [Out] Single* @params) { - Delegates.glGetMaterialfv((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Single*)@params); + Delegates.glGetMaterialfv((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Single*)@params); } public static - void GetMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [Out] Int32[] @params) + void GetMaterial(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetMaterialiv((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Int32*)@params_ptr); + Delegates.glGetMaterialiv((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Int32*)@params_ptr); } } } public static - void GetMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [Out] out Int32 @params) + void GetMaterial(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetMaterialiv((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Int32*)@params_ptr); + Delegates.glGetMaterialiv((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -4778,31 +4778,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [Out] Int32* @params) + unsafe void GetMaterial(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, [Out] Int32* @params) { - Delegates.glGetMaterialiv((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Int32*)@params); + Delegates.glGetMaterialiv((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Int32*)@params); } public static - void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [Out] Single[] values) + void GetPixelMap(OpenTK.Graphics.PixelMap map, [Out] Single[] values) { unsafe { fixed (Single* values_ptr = values) { - Delegates.glGetPixelMapfv((OpenTK.Graphics.OpenGL.PixelMap)map, (Single*)values_ptr); + Delegates.glGetPixelMapfv((OpenTK.Graphics.PixelMap)map, (Single*)values_ptr); } } } public static - void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [Out] out Single values) + void GetPixelMap(OpenTK.Graphics.PixelMap map, [Out] out Single values) { unsafe { fixed (Single* values_ptr = &values) { - Delegates.glGetPixelMapfv((OpenTK.Graphics.OpenGL.PixelMap)map, (Single*)values_ptr); + Delegates.glGetPixelMapfv((OpenTK.Graphics.PixelMap)map, (Single*)values_ptr); values = *values_ptr; } } @@ -4810,58 +4810,58 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [Out] Single* values) + unsafe void GetPixelMap(OpenTK.Graphics.PixelMap map, [Out] Single* values) { - Delegates.glGetPixelMapfv((OpenTK.Graphics.OpenGL.PixelMap)map, (Single*)values); + Delegates.glGetPixelMapfv((OpenTK.Graphics.PixelMap)map, (Single*)values); } [System.CLSCompliant(false)] public static - void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [Out] UInt32[] values) + void GetPixelMap(OpenTK.Graphics.PixelMap map, [Out] UInt32[] values) { unsafe { fixed (UInt32* values_ptr = values) { - Delegates.glGetPixelMapuiv((OpenTK.Graphics.OpenGL.PixelMap)map, (UInt32*)values_ptr); + Delegates.glGetPixelMapuiv((OpenTK.Graphics.PixelMap)map, (UInt32*)values_ptr); } } } public static - void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [Out] Int32[] values) + void GetPixelMap(OpenTK.Graphics.PixelMap map, [Out] Int32[] values) { unsafe { fixed (Int32* values_ptr = values) { - Delegates.glGetPixelMapuiv((OpenTK.Graphics.OpenGL.PixelMap)map, (UInt32*)values_ptr); + Delegates.glGetPixelMapuiv((OpenTK.Graphics.PixelMap)map, (UInt32*)values_ptr); } } } [System.CLSCompliant(false)] public static - void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [Out] out UInt32 values) + void GetPixelMap(OpenTK.Graphics.PixelMap map, [Out] out UInt32 values) { unsafe { fixed (UInt32* values_ptr = &values) { - Delegates.glGetPixelMapuiv((OpenTK.Graphics.OpenGL.PixelMap)map, (UInt32*)values_ptr); + Delegates.glGetPixelMapuiv((OpenTK.Graphics.PixelMap)map, (UInt32*)values_ptr); values = *values_ptr; } } } public static - void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [Out] out Int32 values) + void GetPixelMap(OpenTK.Graphics.PixelMap map, [Out] out Int32 values) { unsafe { fixed (Int32* values_ptr = &values) { - Delegates.glGetPixelMapuiv((OpenTK.Graphics.OpenGL.PixelMap)map, (UInt32*)values_ptr); + Delegates.glGetPixelMapuiv((OpenTK.Graphics.PixelMap)map, (UInt32*)values_ptr); values = *values_ptr; } } @@ -4869,65 +4869,65 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [Out] UInt32* values) + unsafe void GetPixelMap(OpenTK.Graphics.PixelMap map, [Out] UInt32* values) { - Delegates.glGetPixelMapuiv((OpenTK.Graphics.OpenGL.PixelMap)map, (UInt32*)values); + Delegates.glGetPixelMapuiv((OpenTK.Graphics.PixelMap)map, (UInt32*)values); } [System.CLSCompliant(false)] public static - unsafe void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [Out] Int32* values) + unsafe void GetPixelMap(OpenTK.Graphics.PixelMap map, [Out] Int32* values) { - Delegates.glGetPixelMapuiv((OpenTK.Graphics.OpenGL.PixelMap)map, (UInt32*)values); + Delegates.glGetPixelMapuiv((OpenTK.Graphics.PixelMap)map, (UInt32*)values); } [System.CLSCompliant(false)] public static - void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [Out] UInt16[] values) + void GetPixelMap(OpenTK.Graphics.PixelMap map, [Out] UInt16[] values) { unsafe { fixed (UInt16* values_ptr = values) { - Delegates.glGetPixelMapusv((OpenTK.Graphics.OpenGL.PixelMap)map, (UInt16*)values_ptr); + Delegates.glGetPixelMapusv((OpenTK.Graphics.PixelMap)map, (UInt16*)values_ptr); } } } public static - void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [Out] Int16[] values) + void GetPixelMap(OpenTK.Graphics.PixelMap map, [Out] Int16[] values) { unsafe { fixed (Int16* values_ptr = values) { - Delegates.glGetPixelMapusv((OpenTK.Graphics.OpenGL.PixelMap)map, (UInt16*)values_ptr); + Delegates.glGetPixelMapusv((OpenTK.Graphics.PixelMap)map, (UInt16*)values_ptr); } } } [System.CLSCompliant(false)] public static - void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [Out] out UInt16 values) + void GetPixelMap(OpenTK.Graphics.PixelMap map, [Out] out UInt16 values) { unsafe { fixed (UInt16* values_ptr = &values) { - Delegates.glGetPixelMapusv((OpenTK.Graphics.OpenGL.PixelMap)map, (UInt16*)values_ptr); + Delegates.glGetPixelMapusv((OpenTK.Graphics.PixelMap)map, (UInt16*)values_ptr); values = *values_ptr; } } } public static - void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [Out] out Int16 values) + void GetPixelMap(OpenTK.Graphics.PixelMap map, [Out] out Int16 values) { unsafe { fixed (Int16* values_ptr = &values) { - Delegates.glGetPixelMapusv((OpenTK.Graphics.OpenGL.PixelMap)map, (UInt16*)values_ptr); + Delegates.glGetPixelMapusv((OpenTK.Graphics.PixelMap)map, (UInt16*)values_ptr); values = *values_ptr; } } @@ -4935,16 +4935,16 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [Out] UInt16* values) + unsafe void GetPixelMap(OpenTK.Graphics.PixelMap map, [Out] UInt16* values) { - Delegates.glGetPixelMapusv((OpenTK.Graphics.OpenGL.PixelMap)map, (UInt16*)values); + Delegates.glGetPixelMapusv((OpenTK.Graphics.PixelMap)map, (UInt16*)values); } [System.CLSCompliant(false)] public static - unsafe void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [Out] Int16* values) + unsafe void GetPixelMap(OpenTK.Graphics.PixelMap map, [Out] Int16* values) { - Delegates.glGetPixelMapusv((OpenTK.Graphics.OpenGL.PixelMap)map, (UInt16*)values); + Delegates.glGetPixelMapusv((OpenTK.Graphics.PixelMap)map, (UInt16*)values); } public static @@ -4980,34 +4980,34 @@ namespace OpenTK.Graphics.OpenGL } public static - string GetString(OpenTK.Graphics.OpenGL.StringName name) + string GetString(OpenTK.Graphics.StringName name) { unsafe { - return System.Runtime.InteropServices.Marshal.PtrToStringAnsi(Delegates.glGetString((OpenTK.Graphics.OpenGL.StringName)name)); + return System.Runtime.InteropServices.Marshal.PtrToStringAnsi(Delegates.glGetString((OpenTK.Graphics.StringName)name)); } } public static - void GetTexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [Out] Single[] @params) + void GetTexEnv(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetTexEnvfv((OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Single*)@params_ptr); + Delegates.glGetTexEnvfv((OpenTK.Graphics.TextureEnvTarget)target, (OpenTK.Graphics.TextureEnvParameter)pname, (Single*)@params_ptr); } } } public static - void GetTexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [Out] out Single @params) + void GetTexEnv(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetTexEnvfv((OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Single*)@params_ptr); + Delegates.glGetTexEnvfv((OpenTK.Graphics.TextureEnvTarget)target, (OpenTK.Graphics.TextureEnvParameter)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -5015,31 +5015,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetTexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [Out] Single* @params) + unsafe void GetTexEnv(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, [Out] Single* @params) { - Delegates.glGetTexEnvfv((OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Single*)@params); + Delegates.glGetTexEnvfv((OpenTK.Graphics.TextureEnvTarget)target, (OpenTK.Graphics.TextureEnvParameter)pname, (Single*)@params); } public static - void GetTexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [Out] Int32[] @params) + void GetTexEnv(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetTexEnviv((OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Int32*)@params_ptr); + Delegates.glGetTexEnviv((OpenTK.Graphics.TextureEnvTarget)target, (OpenTK.Graphics.TextureEnvParameter)pname, (Int32*)@params_ptr); } } } public static - void GetTexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [Out] out Int32 @params) + void GetTexEnv(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetTexEnviv((OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Int32*)@params_ptr); + Delegates.glGetTexEnviv((OpenTK.Graphics.TextureEnvTarget)target, (OpenTK.Graphics.TextureEnvParameter)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -5047,31 +5047,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetTexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [Out] Int32* @params) + unsafe void GetTexEnv(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, [Out] Int32* @params) { - Delegates.glGetTexEnviv((OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Int32*)@params); + Delegates.glGetTexEnviv((OpenTK.Graphics.TextureEnvTarget)target, (OpenTK.Graphics.TextureEnvParameter)pname, (Int32*)@params); } public static - void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [Out] Double[] @params) + void GetTexGen(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, [Out] Double[] @params) { unsafe { fixed (Double* @params_ptr = @params) { - Delegates.glGetTexGendv((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Double*)@params_ptr); + Delegates.glGetTexGendv((OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Double*)@params_ptr); } } } public static - void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [Out] out Double @params) + void GetTexGen(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, [Out] out Double @params) { unsafe { fixed (Double* @params_ptr = &@params) { - Delegates.glGetTexGendv((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Double*)@params_ptr); + Delegates.glGetTexGendv((OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Double*)@params_ptr); @params = *@params_ptr; } } @@ -5079,31 +5079,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [Out] Double* @params) + unsafe void GetTexGen(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, [Out] Double* @params) { - Delegates.glGetTexGendv((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Double*)@params); + Delegates.glGetTexGendv((OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Double*)@params); } public static - void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [Out] Single[] @params) + void GetTexGen(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetTexGenfv((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Single*)@params_ptr); + Delegates.glGetTexGenfv((OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Single*)@params_ptr); } } } public static - void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [Out] out Single @params) + void GetTexGen(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetTexGenfv((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Single*)@params_ptr); + Delegates.glGetTexGenfv((OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -5111,31 +5111,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [Out] Single* @params) + unsafe void GetTexGen(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, [Out] Single* @params) { - Delegates.glGetTexGenfv((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Single*)@params); + Delegates.glGetTexGenfv((OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Single*)@params); } public static - void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [Out] Int32[] @params) + void GetTexGen(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetTexGeniv((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Int32*)@params_ptr); + Delegates.glGetTexGeniv((OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Int32*)@params_ptr); } } } public static - void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [Out] out Int32 @params) + void GetTexGen(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetTexGeniv((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Int32*)@params_ptr); + Delegates.glGetTexGeniv((OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -5143,29 +5143,29 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [Out] Int32* @params) + unsafe void GetTexGen(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, [Out] Int32* @params) { - Delegates.glGetTexGeniv((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Int32*)@params); + Delegates.glGetTexGeniv((OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Int32*)@params); } public static - void GetTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [Out] IntPtr pixels) + void GetTexImage(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr pixels) { unsafe { - Delegates.glGetTexImage((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + Delegates.glGetTexImage((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels); } } public static - void GetTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [In, Out] object pixels) + void GetTexImage(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.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.glGetTexImage((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + Delegates.glGetTexImage((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -5175,25 +5175,25 @@ namespace OpenTK.Graphics.OpenGL } public static - void GetTexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [Out] Single[] @params) + void GetTexParameter(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetTexParameterfv((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Single*)@params_ptr); + Delegates.glGetTexParameterfv((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (Single*)@params_ptr); } } } public static - void GetTexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [Out] out Single @params) + void GetTexParameter(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetTexParameterfv((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Single*)@params_ptr); + Delegates.glGetTexParameterfv((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -5201,31 +5201,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetTexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [Out] Single* @params) + unsafe void GetTexParameter(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Single* @params) { - Delegates.glGetTexParameterfv((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Single*)@params); + Delegates.glGetTexParameterfv((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (Single*)@params); } public static - void GetTexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [Out] Int32[] @params) + void GetTexParameter(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetTexParameteriv((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params_ptr); + Delegates.glGetTexParameteriv((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (Int32*)@params_ptr); } } } public static - void GetTexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [Out] out Int32 @params) + void GetTexParameter(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetTexParameteriv((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params_ptr); + Delegates.glGetTexParameteriv((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -5233,31 +5233,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetTexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [Out] Int32* @params) + unsafe void GetTexParameter(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32* @params) { - Delegates.glGetTexParameteriv((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params); + Delegates.glGetTexParameteriv((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (Int32*)@params); } public static - void GetTexLevelParameter(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [Out] Single[] @params) + void GetTexLevelParameter(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.GetTextureParameter pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetTexLevelParameterfv((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Single*)@params_ptr); + Delegates.glGetTexLevelParameterfv((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.GetTextureParameter)pname, (Single*)@params_ptr); } } } public static - void GetTexLevelParameter(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [Out] out Single @params) + void GetTexLevelParameter(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.GetTextureParameter pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetTexLevelParameterfv((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Single*)@params_ptr); + Delegates.glGetTexLevelParameterfv((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.GetTextureParameter)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -5265,31 +5265,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetTexLevelParameter(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [Out] Single* @params) + unsafe void GetTexLevelParameter(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.GetTextureParameter pname, [Out] Single* @params) { - Delegates.glGetTexLevelParameterfv((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Single*)@params); + Delegates.glGetTexLevelParameterfv((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.GetTextureParameter)pname, (Single*)@params); } public static - void GetTexLevelParameter(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [Out] Int32[] @params) + void GetTexLevelParameter(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetTexLevelParameteriv((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params_ptr); + Delegates.glGetTexLevelParameteriv((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.GetTextureParameter)pname, (Int32*)@params_ptr); } } } public static - void GetTexLevelParameter(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [Out] out Int32 @params) + void GetTexLevelParameter(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.GetTextureParameter pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetTexLevelParameteriv((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params_ptr); + Delegates.glGetTexLevelParameteriv((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.GetTextureParameter)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -5297,15 +5297,15 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetTexLevelParameter(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [Out] Int32* @params) + unsafe void GetTexLevelParameter(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32* @params) { - Delegates.glGetTexLevelParameteriv((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params); + Delegates.glGetTexLevelParameteriv((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.GetTextureParameter)pname, (Int32*)@params); } public static - bool IsEnabled(OpenTK.Graphics.OpenGL.EnableCap cap) + bool IsEnabled(OpenTK.Graphics.EnableCap cap) { - return Delegates.glIsEnabled((OpenTK.Graphics.OpenGL.EnableCap)cap); + return Delegates.glIsEnabled((OpenTK.Graphics.EnableCap)cap); } [System.CLSCompliant(false)] @@ -5402,9 +5402,9 @@ namespace OpenTK.Graphics.OpenGL } public static - void MatrixMode(OpenTK.Graphics.OpenGL.MatrixMode mode) + void MatrixMode(OpenTK.Graphics.MatrixMode mode) { - Delegates.glMatrixMode((OpenTK.Graphics.OpenGL.MatrixMode)mode); + Delegates.glMatrixMode((OpenTK.Graphics.MatrixMode)mode); } public static @@ -5536,23 +5536,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, IntPtr pointer) + void ColorPointer(Int32 size, OpenTK.Graphics.ColorPointerType type, Int32 stride, IntPtr pointer) { unsafe { - Delegates.glColorPointer((Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer); + Delegates.glColorPointer((Int32)size, (OpenTK.Graphics.ColorPointerType)type, (Int32)stride, (IntPtr)pointer); } } public static - void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [In, Out] object pointer) + void ColorPointer(Int32 size, OpenTK.Graphics.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.glColorPointer((Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glColorPointer((Int32)size, (OpenTK.Graphics.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -5562,35 +5562,35 @@ namespace OpenTK.Graphics.OpenGL } public static - void DisableClientState(OpenTK.Graphics.OpenGL.EnableCap array) + void DisableClientState(OpenTK.Graphics.EnableCap array) { - Delegates.glDisableClientState((OpenTK.Graphics.OpenGL.EnableCap)array); + Delegates.glDisableClientState((OpenTK.Graphics.EnableCap)array); } public static - void DrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 first, Int32 count) + void DrawArrays(OpenTK.Graphics.BeginMode mode, Int32 first, Int32 count) { - Delegates.glDrawArrays((OpenTK.Graphics.OpenGL.BeginMode)mode, (Int32)first, (Int32)count); + Delegates.glDrawArrays((OpenTK.Graphics.BeginMode)mode, (Int32)first, (Int32)count); } public static - void DrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices) + void DrawElements(OpenTK.Graphics.BeginMode mode, Int32 count, OpenTK.Graphics.DrawElementsType type, IntPtr indices) { unsafe { - Delegates.glDrawElements((OpenTK.Graphics.OpenGL.BeginMode)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices); + Delegates.glDrawElements((OpenTK.Graphics.BeginMode)mode, (Int32)count, (OpenTK.Graphics.DrawElementsType)type, (IntPtr)indices); } } public static - void DrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [In, Out] object indices) + void DrawElements(OpenTK.Graphics.BeginMode mode, Int32 count, OpenTK.Graphics.DrawElementsType 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.glDrawElements((OpenTK.Graphics.OpenGL.BeginMode)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + Delegates.glDrawElements((OpenTK.Graphics.BeginMode)mode, (Int32)count, (OpenTK.Graphics.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -5626,29 +5626,29 @@ namespace OpenTK.Graphics.OpenGL } public static - void EnableClientState(OpenTK.Graphics.OpenGL.EnableCap array) + void EnableClientState(OpenTK.Graphics.EnableCap array) { - Delegates.glEnableClientState((OpenTK.Graphics.OpenGL.EnableCap)array); + Delegates.glEnableClientState((OpenTK.Graphics.EnableCap)array); } public static - void GetPointer(OpenTK.Graphics.OpenGL.GetPointervPName pname, [Out] IntPtr @params) + void GetPointer(OpenTK.Graphics.GetPointervPName pname, [Out] IntPtr @params) { unsafe { - Delegates.glGetPointerv((OpenTK.Graphics.OpenGL.GetPointervPName)pname, (IntPtr)@params); + Delegates.glGetPointerv((OpenTK.Graphics.GetPointervPName)pname, (IntPtr)@params); } } public static - void GetPointer(OpenTK.Graphics.OpenGL.GetPointervPName pname, [In, Out] object @params) + void GetPointer(OpenTK.Graphics.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.glGetPointerv((OpenTK.Graphics.OpenGL.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + Delegates.glGetPointerv((OpenTK.Graphics.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -5658,23 +5658,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void IndexPointer(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, IntPtr pointer) + void IndexPointer(OpenTK.Graphics.IndexPointerType type, Int32 stride, IntPtr pointer) { unsafe { - Delegates.glIndexPointer((OpenTK.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (IntPtr)pointer); + Delegates.glIndexPointer((OpenTK.Graphics.IndexPointerType)type, (Int32)stride, (IntPtr)pointer); } } public static - void IndexPointer(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, [In, Out] object pointer) + void IndexPointer(OpenTK.Graphics.IndexPointerType 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.glIndexPointer((OpenTK.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glIndexPointer((OpenTK.Graphics.IndexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -5684,23 +5684,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void InterleavedArrays(OpenTK.Graphics.OpenGL.InterleavedArrayFormat format, Int32 stride, IntPtr pointer) + void InterleavedArrays(OpenTK.Graphics.InterleavedArrayFormat format, Int32 stride, IntPtr pointer) { unsafe { - Delegates.glInterleavedArrays((OpenTK.Graphics.OpenGL.InterleavedArrayFormat)format, (Int32)stride, (IntPtr)pointer); + Delegates.glInterleavedArrays((OpenTK.Graphics.InterleavedArrayFormat)format, (Int32)stride, (IntPtr)pointer); } } public static - void InterleavedArrays(OpenTK.Graphics.OpenGL.InterleavedArrayFormat format, Int32 stride, [In, Out] object pointer) + void InterleavedArrays(OpenTK.Graphics.InterleavedArrayFormat format, 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.glInterleavedArrays((OpenTK.Graphics.OpenGL.InterleavedArrayFormat)format, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glInterleavedArrays((OpenTK.Graphics.InterleavedArrayFormat)format, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -5710,23 +5710,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, IntPtr pointer) + void NormalPointer(OpenTK.Graphics.NormalPointerType type, Int32 stride, IntPtr pointer) { unsafe { - Delegates.glNormalPointer((OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer); + Delegates.glNormalPointer((OpenTK.Graphics.NormalPointerType)type, (Int32)stride, (IntPtr)pointer); } } public static - void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [In, Out] object pointer) + void NormalPointer(OpenTK.Graphics.NormalPointerType 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.glNormalPointer((OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glNormalPointer((OpenTK.Graphics.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -5736,23 +5736,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, IntPtr pointer) + void TexCoordPointer(Int32 size, OpenTK.Graphics.TexCoordPointerType type, Int32 stride, IntPtr pointer) { unsafe { - Delegates.glTexCoordPointer((Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer); + Delegates.glTexCoordPointer((Int32)size, (OpenTK.Graphics.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer); } } public static - void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [In, Out] object pointer) + void TexCoordPointer(Int32 size, OpenTK.Graphics.TexCoordPointerType 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.glTexCoordPointer((Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glTexCoordPointer((Int32)size, (OpenTK.Graphics.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -5762,23 +5762,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, IntPtr pointer) + void VertexPointer(Int32 size, OpenTK.Graphics.VertexPointerType type, Int32 stride, IntPtr pointer) { unsafe { - Delegates.glVertexPointer((Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (IntPtr)pointer); + Delegates.glVertexPointer((Int32)size, (OpenTK.Graphics.VertexPointerType)type, (Int32)stride, (IntPtr)pointer); } } public static - void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, [In, Out] object pointer) + void VertexPointer(Int32 size, OpenTK.Graphics.VertexPointerType 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.glVertexPointer((Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glVertexPointer((Int32)size, (OpenTK.Graphics.VertexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -5794,47 +5794,47 @@ namespace OpenTK.Graphics.OpenGL } public static - void CopyTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border) + void CopyTexImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { - Delegates.glCopyTexImage1D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)border); + Delegates.glCopyTexImage1D((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)border); } public static - void CopyTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) + void CopyTexImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { - Delegates.glCopyTexImage2D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border); + Delegates.glCopyTexImage2D((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border); } public static - void CopyTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) + void CopyTexSubImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { - Delegates.glCopyTexSubImage1D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)x, (Int32)y, (Int32)width); + Delegates.glCopyTexSubImage1D((OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)x, (Int32)y, (Int32)width); } public static - void CopyTexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) + void CopyTexSubImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { - Delegates.glCopyTexSubImage2D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + Delegates.glCopyTexSubImage2D((OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); } public static - void TexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) + void TexSubImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels) { unsafe { - Delegates.glTexSubImage1D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + Delegates.glTexSubImage1D((OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels); } } public static - void TexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [In, Out] object pixels) + void TexSubImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.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.glTexSubImage1D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + Delegates.glTexSubImage1D((OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -5844,23 +5844,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void TexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) + void TexSubImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels) { unsafe { - Delegates.glTexSubImage2D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + Delegates.glTexSubImage2D((OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels); } } public static - void TexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [In, Out] object pixels) + void TexSubImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.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.glTexSubImage2D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + Delegates.glTexSubImage2D((OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -5943,15 +5943,15 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void BindTexture(OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 texture) + void BindTexture(OpenTK.Graphics.TextureTarget target, UInt32 texture) { - Delegates.glBindTexture((OpenTK.Graphics.OpenGL.TextureTarget)target, (UInt32)texture); + Delegates.glBindTexture((OpenTK.Graphics.TextureTarget)target, (UInt32)texture); } public static - void BindTexture(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 texture) + void BindTexture(OpenTK.Graphics.TextureTarget target, Int32 texture) { - Delegates.glBindTexture((OpenTK.Graphics.OpenGL.TextureTarget)target, (UInt32)texture); + Delegates.glBindTexture((OpenTK.Graphics.TextureTarget)target, (UInt32)texture); } [System.CLSCompliant(false)] @@ -6209,9 +6209,9 @@ namespace OpenTK.Graphics.OpenGL } public static - void PushClientAttrib(OpenTK.Graphics.OpenGL.ClientAttribMask mask) + void PushClientAttrib(OpenTK.Graphics.ClientAttribMask mask) { - Delegates.glPushClientAttrib((OpenTK.Graphics.OpenGL.ClientAttribMask)mask); + Delegates.glPushClientAttrib((OpenTK.Graphics.ClientAttribMask)mask); } public static @@ -6221,40 +6221,40 @@ namespace OpenTK.Graphics.OpenGL } public static - void BlendEquation(OpenTK.Graphics.OpenGL.BlendEquationMode mode) + void BlendEquation(OpenTK.Graphics.BlendEquationMode mode) { - Delegates.glBlendEquation((OpenTK.Graphics.OpenGL.BlendEquationMode)mode); + Delegates.glBlendEquation((OpenTK.Graphics.BlendEquationMode)mode); } [System.CLSCompliant(false)] public static - void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices) + void DrawRangeElements(OpenTK.Graphics.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.DrawElementsType type, IntPtr indices) { unsafe { - Delegates.glDrawRangeElements((OpenTK.Graphics.OpenGL.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices); + Delegates.glDrawRangeElements((OpenTK.Graphics.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.DrawElementsType)type, (IntPtr)indices); } } public static - void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices) + void DrawRangeElements(OpenTK.Graphics.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.DrawElementsType type, IntPtr indices) { unsafe { - Delegates.glDrawRangeElements((OpenTK.Graphics.OpenGL.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices); + Delegates.glDrawRangeElements((OpenTK.Graphics.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.DrawElementsType)type, (IntPtr)indices); } } [System.CLSCompliant(false)] public static - void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [In, Out] object indices) + void DrawRangeElements(OpenTK.Graphics.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.DrawElementsType 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.Graphics.OpenGL.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + Delegates.glDrawRangeElements((OpenTK.Graphics.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -6264,14 +6264,14 @@ namespace OpenTK.Graphics.OpenGL } public static - void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [In, Out] object indices) + void DrawRangeElements(OpenTK.Graphics.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.DrawElementsType 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.Graphics.OpenGL.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + Delegates.glDrawRangeElements((OpenTK.Graphics.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -6281,23 +6281,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void ColorTable(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr table) + void ColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr table) { unsafe { - Delegates.glColorTable((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table); + Delegates.glColorTable((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)table); } } public static - void ColorTable(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [In, Out] object table) + void ColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.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.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); + Delegates.glColorTable((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); } finally { @@ -6307,91 +6307,91 @@ namespace OpenTK.Graphics.OpenGL } public static - void ColorTableParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Single[] @params) + void ColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glColorTableParameterfv((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glColorTableParameterfv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void ColorTableParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, ref Single @params) + void ColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glColorTableParameterfv((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glColorTableParameterfv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Single* @params) + unsafe void ColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single* @params) { - Delegates.glColorTableParameterfv((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glColorTableParameterfv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params); } public static - void ColorTableParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Int32[] @params) + void ColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glColorTableParameteriv((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glColorTableParameteriv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void ColorTableParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, ref Int32 @params) + void ColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glColorTableParameteriv((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glColorTableParameteriv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Int32* @params) + unsafe void ColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32* @params) { - Delegates.glColorTableParameteriv((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glColorTableParameteriv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params); } public static - void CopyColorTable(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) + void CopyColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { - Delegates.glCopyColorTable((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width); + Delegates.glCopyColorTable((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width); } public static - void GetColorTable(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [Out] IntPtr table) + void GetColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr table) { unsafe { - Delegates.glGetColorTable((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table); + Delegates.glGetColorTable((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)table); } } public static - void GetColorTable(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [In, Out] object table) + void GetColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.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.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); + Delegates.glGetColorTable((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); } finally { @@ -6401,25 +6401,25 @@ namespace OpenTK.Graphics.OpenGL } public static - void GetColorTableParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Single[] @params) + void GetColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetColorTableParameterfv((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetColorTableParameterfv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void GetColorTableParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] out Single @params) + void GetColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetColorTableParameterfv((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetColorTableParameterfv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -6427,31 +6427,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params) + unsafe void GetColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params) { - Delegates.glGetColorTableParameterfv((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glGetColorTableParameterfv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params); } public static - void GetColorTableParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetColorTableParameteriv((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetColorTableParameteriv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void GetColorTableParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetColorTableParameteriv((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetColorTableParameteriv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -6459,29 +6459,29 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetColorTableParameteriv((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glGetColorTableParameteriv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params); } public static - void ColorSubTable(OpenTK.Graphics.OpenGL.All target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr data) + void ColorSubTable(OpenTK.Graphics.All target, Int32 start, Int32 count, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr data) { unsafe { - Delegates.glColorSubTable((OpenTK.Graphics.OpenGL.All)target, (Int32)start, (Int32)count, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data); + Delegates.glColorSubTable((OpenTK.Graphics.All)target, (Int32)start, (Int32)count, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)data); } } public static - void ColorSubTable(OpenTK.Graphics.OpenGL.All target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [In, Out] object data) + void ColorSubTable(OpenTK.Graphics.All target, Int32 start, Int32 count, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.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.Graphics.OpenGL.All)target, (Int32)start, (Int32)count, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + Delegates.glColorSubTable((OpenTK.Graphics.All)target, (Int32)start, (Int32)count, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -6491,29 +6491,29 @@ namespace OpenTK.Graphics.OpenGL } public static - void CopyColorSubTable(OpenTK.Graphics.OpenGL.All target, Int32 start, Int32 x, Int32 y, Int32 width) + void CopyColorSubTable(OpenTK.Graphics.All target, Int32 start, Int32 x, Int32 y, Int32 width) { - Delegates.glCopyColorSubTable((OpenTK.Graphics.OpenGL.All)target, (Int32)start, (Int32)x, (Int32)y, (Int32)width); + Delegates.glCopyColorSubTable((OpenTK.Graphics.All)target, (Int32)start, (Int32)x, (Int32)y, (Int32)width); } public static - void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr image) + void ConvolutionFilter1D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr image) { unsafe { - Delegates.glConvolutionFilter1D((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image); + Delegates.glConvolutionFilter1D((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)image); } } public static - void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [In, Out] object image) + void ConvolutionFilter1D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.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.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + Delegates.glConvolutionFilter1D((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -6523,23 +6523,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr image) + void ConvolutionFilter2D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr image) { unsafe { - Delegates.glConvolutionFilter2D((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image); + Delegates.glConvolutionFilter2D((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)image); } } public static - void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [In, Out] object image) + void ConvolutionFilter2D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.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.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + Delegates.glConvolutionFilter2D((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -6549,109 +6549,109 @@ namespace OpenTK.Graphics.OpenGL } public static - void ConvolutionParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Single @params) + void ConvolutionParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single @params) { - Delegates.glConvolutionParameterf((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single)@params); + Delegates.glConvolutionParameterf((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single)@params); } public static - void ConvolutionParameterv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Single[] @params) + void ConvolutionParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glConvolutionParameterfv((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glConvolutionParameterfv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void ConvolutionParameterv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, ref Single @params) + void ConvolutionParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glConvolutionParameterfv((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glConvolutionParameterfv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ConvolutionParameterv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Single* @params) + unsafe void ConvolutionParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single* @params) { - Delegates.glConvolutionParameterfv((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glConvolutionParameterfv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params); } public static - void ConvolutionParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Int32 @params) + void ConvolutionParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32 @params) { - Delegates.glConvolutionParameteri((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32)@params); + Delegates.glConvolutionParameteri((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32)@params); } public static - void ConvolutionParameterv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Int32[] @params) + void ConvolutionParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glConvolutionParameteriv((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glConvolutionParameteriv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void ConvolutionParameterv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, ref Int32 @params) + void ConvolutionParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glConvolutionParameteriv((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glConvolutionParameteriv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ConvolutionParameterv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Int32* @params) + unsafe void ConvolutionParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32* @params) { - Delegates.glConvolutionParameteriv((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glConvolutionParameteriv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params); } public static - void CopyConvolutionFilter1D(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) + void CopyConvolutionFilter1D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { - Delegates.glCopyConvolutionFilter1D((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width); + Delegates.glCopyConvolutionFilter1D((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width); } public static - void CopyConvolutionFilter2D(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height) + void CopyConvolutionFilter2D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height) { - Delegates.glCopyConvolutionFilter2D((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + Delegates.glCopyConvolutionFilter2D((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height); } public static - void GetConvolutionFilter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [Out] IntPtr image) + void GetConvolutionFilter(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr image) { unsafe { - Delegates.glGetConvolutionFilter((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image); + Delegates.glGetConvolutionFilter((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)image); } } public static - void GetConvolutionFilter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [In, Out] object image) + void GetConvolutionFilter(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.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.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + Delegates.glGetConvolutionFilter((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -6661,25 +6661,25 @@ namespace OpenTK.Graphics.OpenGL } public static - void GetConvolutionParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Single[] @params) + void GetConvolutionParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetConvolutionParameterfv((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetConvolutionParameterfv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void GetConvolutionParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] out Single @params) + void GetConvolutionParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetConvolutionParameterfv((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetConvolutionParameterfv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -6687,31 +6687,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params) + unsafe void GetConvolutionParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params) { - Delegates.glGetConvolutionParameterfv((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glGetConvolutionParameterfv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params); } public static - void GetConvolutionParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetConvolutionParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetConvolutionParameteriv((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetConvolutionParameteriv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void GetConvolutionParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetConvolutionParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetConvolutionParameteriv((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetConvolutionParameteriv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -6719,22 +6719,22 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetConvolutionParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetConvolutionParameteriv((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glGetConvolutionParameteriv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params); } public static - void GetSeparableFilter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [Out] IntPtr row, [Out] IntPtr column, [Out] IntPtr span) + void GetSeparableFilter(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr row, [Out] IntPtr column, [Out] IntPtr span) { unsafe { - Delegates.glGetSeparableFilter((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row, (IntPtr)column, (IntPtr)span); + Delegates.glGetSeparableFilter((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)row, (IntPtr)column, (IntPtr)span); } } public static - void GetSeparableFilter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [In, Out] object row, [In, Out] object column, [In, Out] object span) + void GetSeparableFilter(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object row, [In, Out] object column, [In, Out] object span) { unsafe { @@ -6743,7 +6743,7 @@ namespace OpenTK.Graphics.OpenGL System.Runtime.InteropServices.GCHandle span_ptr = System.Runtime.InteropServices.GCHandle.Alloc(span, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glGetSeparableFilter((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); + Delegates.glGetSeparableFilter((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); } finally { @@ -6755,16 +6755,16 @@ namespace OpenTK.Graphics.OpenGL } public static - void SeparableFilter2D(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr row, IntPtr column) + void SeparableFilter2D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr row, IntPtr column) { unsafe { - Delegates.glSeparableFilter2D((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row, (IntPtr)column); + Delegates.glSeparableFilter2D((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)row, (IntPtr)column); } } public static - void SeparableFilter2D(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [In, Out] object row, [In, Out] object column) + void SeparableFilter2D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object row, [In, Out] object column) { unsafe { @@ -6772,7 +6772,7 @@ namespace OpenTK.Graphics.OpenGL System.Runtime.InteropServices.GCHandle column_ptr = System.Runtime.InteropServices.GCHandle.Alloc(column, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glSeparableFilter2D((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject()); + Delegates.glSeparableFilter2D((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject()); } finally { @@ -6783,23 +6783,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void GetHistogram(OpenTK.Graphics.OpenGL.All target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [Out] IntPtr values) + void GetHistogram(OpenTK.Graphics.All target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr values) { unsafe { - Delegates.glGetHistogram((OpenTK.Graphics.OpenGL.All)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values); + Delegates.glGetHistogram((OpenTK.Graphics.All)target, (bool)reset, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)values); } } public static - void GetHistogram(OpenTK.Graphics.OpenGL.All target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [In, Out] object values) + void GetHistogram(OpenTK.Graphics.All target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.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.Graphics.OpenGL.All)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); + Delegates.glGetHistogram((OpenTK.Graphics.All)target, (bool)reset, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); } finally { @@ -6809,25 +6809,25 @@ namespace OpenTK.Graphics.OpenGL } public static - void GetHistogramParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Single[] @params) + void GetHistogramParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetHistogramParameterfv((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetHistogramParameterfv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void GetHistogramParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] out Single @params) + void GetHistogramParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetHistogramParameterfv((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetHistogramParameterfv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -6835,31 +6835,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params) + unsafe void GetHistogramParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params) { - Delegates.glGetHistogramParameterfv((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glGetHistogramParameterfv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params); } public static - void GetHistogramParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetHistogramParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetHistogramParameteriv((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetHistogramParameteriv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void GetHistogramParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetHistogramParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetHistogramParameteriv((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetHistogramParameteriv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -6867,29 +6867,29 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetHistogramParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetHistogramParameteriv((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glGetHistogramParameteriv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params); } public static - void GetMinmax(OpenTK.Graphics.OpenGL.All target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [Out] IntPtr values) + void GetMinmax(OpenTK.Graphics.All target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr values) { unsafe { - Delegates.glGetMinmax((OpenTK.Graphics.OpenGL.All)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values); + Delegates.glGetMinmax((OpenTK.Graphics.All)target, (bool)reset, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)values); } } public static - void GetMinmax(OpenTK.Graphics.OpenGL.All target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [In, Out] object values) + void GetMinmax(OpenTK.Graphics.All target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.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.Graphics.OpenGL.All)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); + Delegates.glGetMinmax((OpenTK.Graphics.All)target, (bool)reset, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); } finally { @@ -6899,25 +6899,25 @@ namespace OpenTK.Graphics.OpenGL } public static - void GetMinmaxParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Single[] @params) + void GetMinmaxParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetMinmaxParameterfv((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetMinmaxParameterfv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void GetMinmaxParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] out Single @params) + void GetMinmaxParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetMinmaxParameterfv((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetMinmaxParameterfv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -6925,31 +6925,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params) + unsafe void GetMinmaxParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params) { - Delegates.glGetMinmaxParameterfv((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glGetMinmaxParameterfv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params); } public static - void GetMinmaxParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetMinmaxParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetMinmaxParameteriv((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetMinmaxParameteriv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void GetMinmaxParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetMinmaxParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetMinmaxParameteriv((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetMinmaxParameteriv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -6957,53 +6957,53 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetMinmaxParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetMinmaxParameteriv((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glGetMinmaxParameteriv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params); } public static - void Histogram(OpenTK.Graphics.OpenGL.All target, Int32 width, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink) + void Histogram(OpenTK.Graphics.All target, Int32 width, OpenTK.Graphics.PixelInternalFormat internalformat, bool sink) { - Delegates.glHistogram((OpenTK.Graphics.OpenGL.All)target, (Int32)width, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (bool)sink); + Delegates.glHistogram((OpenTK.Graphics.All)target, (Int32)width, (OpenTK.Graphics.PixelInternalFormat)internalformat, (bool)sink); } public static - void Minmax(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink) + void Minmax(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, bool sink) { - Delegates.glMinmax((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (bool)sink); + Delegates.glMinmax((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (bool)sink); } public static - void ResetHistogram(OpenTK.Graphics.OpenGL.All target) + void ResetHistogram(OpenTK.Graphics.All target) { - Delegates.glResetHistogram((OpenTK.Graphics.OpenGL.All)target); + Delegates.glResetHistogram((OpenTK.Graphics.All)target); } public static - void ResetMinmax(OpenTK.Graphics.OpenGL.All target) + void ResetMinmax(OpenTK.Graphics.All target) { - Delegates.glResetMinmax((OpenTK.Graphics.OpenGL.All)target); + Delegates.glResetMinmax((OpenTK.Graphics.All)target); } public static - void TexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) + void TexImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels) { unsafe { - Delegates.glTexImage3D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + Delegates.glTexImage3D((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels); } } public static - void TexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [In, Out] object pixels) + void TexImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.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.glTexImage3D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + Delegates.glTexImage3D((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -7013,23 +7013,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void TexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) + void TexSubImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels) { unsafe { - Delegates.glTexSubImage3D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + Delegates.glTexSubImage3D((OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels); } } public static - void TexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [In, Out] object pixels) + void TexSubImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.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.glTexSubImage3D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + Delegates.glTexSubImage3D((OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -7039,613 +7039,613 @@ namespace OpenTK.Graphics.OpenGL } public static - void CopyTexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) + void CopyTexSubImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { - Delegates.glCopyTexSubImage3D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + Delegates.glCopyTexSubImage3D((OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); } public static - void ActiveTexture(OpenTK.Graphics.OpenGL.TextureUnit texture) + void ActiveTexture(OpenTK.Graphics.TextureUnit texture) { - Delegates.glActiveTexture((OpenTK.Graphics.OpenGL.TextureUnit)texture); + Delegates.glActiveTexture((OpenTK.Graphics.TextureUnit)texture); } public static - void ClientActiveTexture(OpenTK.Graphics.OpenGL.TextureUnit texture) + void ClientActiveTexture(OpenTK.Graphics.TextureUnit texture) { - Delegates.glClientActiveTexture((OpenTK.Graphics.OpenGL.TextureUnit)texture); + Delegates.glClientActiveTexture((OpenTK.Graphics.TextureUnit)texture); } public static - void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Double s) + void MultiTexCoord1(OpenTK.Graphics.TextureUnit target, Double s) { - Delegates.glMultiTexCoord1d((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double)s); + Delegates.glMultiTexCoord1d((OpenTK.Graphics.TextureUnit)target, (Double)s); } public static - void MultiTexCoord1v(OpenTK.Graphics.OpenGL.TextureUnit target, Double[] v) + void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, Double[] v) { unsafe { fixed (Double* v_ptr = v) { - Delegates.glMultiTexCoord1dv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v_ptr); + Delegates.glMultiTexCoord1dv((OpenTK.Graphics.TextureUnit)target, (Double*)v_ptr); } } } public static - void MultiTexCoord1v(OpenTK.Graphics.OpenGL.TextureUnit target, ref Double v) + void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, ref Double v) { unsafe { fixed (Double* v_ptr = &v) { - Delegates.glMultiTexCoord1dv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v_ptr); + Delegates.glMultiTexCoord1dv((OpenTK.Graphics.TextureUnit)target, (Double*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord1v(OpenTK.Graphics.OpenGL.TextureUnit target, Double* v) + unsafe void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, Double* v) { - Delegates.glMultiTexCoord1dv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v); + Delegates.glMultiTexCoord1dv((OpenTK.Graphics.TextureUnit)target, (Double*)v); } public static - void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Single s) + void MultiTexCoord1(OpenTK.Graphics.TextureUnit target, Single s) { - Delegates.glMultiTexCoord1f((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single)s); + Delegates.glMultiTexCoord1f((OpenTK.Graphics.TextureUnit)target, (Single)s); } public static - void MultiTexCoord1v(OpenTK.Graphics.OpenGL.TextureUnit target, Single[] v) + void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, Single[] v) { unsafe { fixed (Single* v_ptr = v) { - Delegates.glMultiTexCoord1fv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v_ptr); + Delegates.glMultiTexCoord1fv((OpenTK.Graphics.TextureUnit)target, (Single*)v_ptr); } } } public static - void MultiTexCoord1v(OpenTK.Graphics.OpenGL.TextureUnit target, ref Single v) + void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, ref Single v) { unsafe { fixed (Single* v_ptr = &v) { - Delegates.glMultiTexCoord1fv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v_ptr); + Delegates.glMultiTexCoord1fv((OpenTK.Graphics.TextureUnit)target, (Single*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord1v(OpenTK.Graphics.OpenGL.TextureUnit target, Single* v) + unsafe void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, Single* v) { - Delegates.glMultiTexCoord1fv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v); + Delegates.glMultiTexCoord1fv((OpenTK.Graphics.TextureUnit)target, (Single*)v); } public static - void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s) + void MultiTexCoord1(OpenTK.Graphics.TextureUnit target, Int32 s) { - Delegates.glMultiTexCoord1i((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32)s); + Delegates.glMultiTexCoord1i((OpenTK.Graphics.TextureUnit)target, (Int32)s); } public static - void MultiTexCoord1v(OpenTK.Graphics.OpenGL.TextureUnit target, Int32[] v) + void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, Int32[] v) { unsafe { fixed (Int32* v_ptr = v) { - Delegates.glMultiTexCoord1iv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v_ptr); + Delegates.glMultiTexCoord1iv((OpenTK.Graphics.TextureUnit)target, (Int32*)v_ptr); } } } public static - void MultiTexCoord1v(OpenTK.Graphics.OpenGL.TextureUnit target, ref Int32 v) + void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, ref Int32 v) { unsafe { fixed (Int32* v_ptr = &v) { - Delegates.glMultiTexCoord1iv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v_ptr); + Delegates.glMultiTexCoord1iv((OpenTK.Graphics.TextureUnit)target, (Int32*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord1v(OpenTK.Graphics.OpenGL.TextureUnit target, Int32* v) + unsafe void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, Int32* v) { - Delegates.glMultiTexCoord1iv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v); + Delegates.glMultiTexCoord1iv((OpenTK.Graphics.TextureUnit)target, (Int32*)v); } public static - void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s) + void MultiTexCoord1(OpenTK.Graphics.TextureUnit target, Int16 s) { - Delegates.glMultiTexCoord1s((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16)s); + Delegates.glMultiTexCoord1s((OpenTK.Graphics.TextureUnit)target, (Int16)s); } public static - void MultiTexCoord1v(OpenTK.Graphics.OpenGL.TextureUnit target, Int16[] v) + void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, Int16[] v) { unsafe { fixed (Int16* v_ptr = v) { - Delegates.glMultiTexCoord1sv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v_ptr); + Delegates.glMultiTexCoord1sv((OpenTK.Graphics.TextureUnit)target, (Int16*)v_ptr); } } } public static - void MultiTexCoord1v(OpenTK.Graphics.OpenGL.TextureUnit target, ref Int16 v) + void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, ref Int16 v) { unsafe { fixed (Int16* v_ptr = &v) { - Delegates.glMultiTexCoord1sv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v_ptr); + Delegates.glMultiTexCoord1sv((OpenTK.Graphics.TextureUnit)target, (Int16*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord1v(OpenTK.Graphics.OpenGL.TextureUnit target, Int16* v) + unsafe void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, Int16* v) { - Delegates.glMultiTexCoord1sv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v); + Delegates.glMultiTexCoord1sv((OpenTK.Graphics.TextureUnit)target, (Int16*)v); } public static - void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t) + void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Double s, Double t) { - Delegates.glMultiTexCoord2d((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double)s, (Double)t); + Delegates.glMultiTexCoord2d((OpenTK.Graphics.TextureUnit)target, (Double)s, (Double)t); } public static - void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Double[] v) + void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Double[] v) { unsafe { fixed (Double* v_ptr = v) { - Delegates.glMultiTexCoord2dv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v_ptr); + Delegates.glMultiTexCoord2dv((OpenTK.Graphics.TextureUnit)target, (Double*)v_ptr); } } } public static - void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, ref Double v) + void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, ref Double v) { unsafe { fixed (Double* v_ptr = &v) { - Delegates.glMultiTexCoord2dv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v_ptr); + Delegates.glMultiTexCoord2dv((OpenTK.Graphics.TextureUnit)target, (Double*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Double* v) + unsafe void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Double* v) { - Delegates.glMultiTexCoord2dv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v); + Delegates.glMultiTexCoord2dv((OpenTK.Graphics.TextureUnit)target, (Double*)v); } public static - void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t) + void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Single s, Single t) { - Delegates.glMultiTexCoord2f((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single)s, (Single)t); + Delegates.glMultiTexCoord2f((OpenTK.Graphics.TextureUnit)target, (Single)s, (Single)t); } public static - void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Single[] v) + void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Single[] v) { unsafe { fixed (Single* v_ptr = v) { - Delegates.glMultiTexCoord2fv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v_ptr); + Delegates.glMultiTexCoord2fv((OpenTK.Graphics.TextureUnit)target, (Single*)v_ptr); } } } public static - void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, ref Single v) + void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, ref Single v) { unsafe { fixed (Single* v_ptr = &v) { - Delegates.glMultiTexCoord2fv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v_ptr); + Delegates.glMultiTexCoord2fv((OpenTK.Graphics.TextureUnit)target, (Single*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Single* v) + unsafe void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Single* v) { - Delegates.glMultiTexCoord2fv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v); + Delegates.glMultiTexCoord2fv((OpenTK.Graphics.TextureUnit)target, (Single*)v); } public static - void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t) + void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Int32 s, Int32 t) { - Delegates.glMultiTexCoord2i((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32)s, (Int32)t); + Delegates.glMultiTexCoord2i((OpenTK.Graphics.TextureUnit)target, (Int32)s, (Int32)t); } public static - void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Int32[] v) + void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Int32[] v) { unsafe { fixed (Int32* v_ptr = v) { - Delegates.glMultiTexCoord2iv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v_ptr); + Delegates.glMultiTexCoord2iv((OpenTK.Graphics.TextureUnit)target, (Int32*)v_ptr); } } } public static - void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, ref Int32 v) + void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, ref Int32 v) { unsafe { fixed (Int32* v_ptr = &v) { - Delegates.glMultiTexCoord2iv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v_ptr); + Delegates.glMultiTexCoord2iv((OpenTK.Graphics.TextureUnit)target, (Int32*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Int32* v) + unsafe void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Int32* v) { - Delegates.glMultiTexCoord2iv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v); + Delegates.glMultiTexCoord2iv((OpenTK.Graphics.TextureUnit)target, (Int32*)v); } public static - void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t) + void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Int16 s, Int16 t) { - Delegates.glMultiTexCoord2s((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16)s, (Int16)t); + Delegates.glMultiTexCoord2s((OpenTK.Graphics.TextureUnit)target, (Int16)s, (Int16)t); } public static - void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Int16[] v) + void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Int16[] v) { unsafe { fixed (Int16* v_ptr = v) { - Delegates.glMultiTexCoord2sv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v_ptr); + Delegates.glMultiTexCoord2sv((OpenTK.Graphics.TextureUnit)target, (Int16*)v_ptr); } } } public static - void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, ref Int16 v) + void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, ref Int16 v) { unsafe { fixed (Int16* v_ptr = &v) { - Delegates.glMultiTexCoord2sv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v_ptr); + Delegates.glMultiTexCoord2sv((OpenTK.Graphics.TextureUnit)target, (Int16*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Int16* v) + unsafe void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Int16* v) { - Delegates.glMultiTexCoord2sv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v); + Delegates.glMultiTexCoord2sv((OpenTK.Graphics.TextureUnit)target, (Int16*)v); } public static - void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t, Double r) + void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Double s, Double t, Double r) { - Delegates.glMultiTexCoord3d((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double)s, (Double)t, (Double)r); + Delegates.glMultiTexCoord3d((OpenTK.Graphics.TextureUnit)target, (Double)s, (Double)t, (Double)r); } public static - void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Double[] v) + void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Double[] v) { unsafe { fixed (Double* v_ptr = v) { - Delegates.glMultiTexCoord3dv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v_ptr); + Delegates.glMultiTexCoord3dv((OpenTK.Graphics.TextureUnit)target, (Double*)v_ptr); } } } public static - void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, ref Double v) + void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, ref Double v) { unsafe { fixed (Double* v_ptr = &v) { - Delegates.glMultiTexCoord3dv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v_ptr); + Delegates.glMultiTexCoord3dv((OpenTK.Graphics.TextureUnit)target, (Double*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Double* v) + unsafe void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Double* v) { - Delegates.glMultiTexCoord3dv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v); + Delegates.glMultiTexCoord3dv((OpenTK.Graphics.TextureUnit)target, (Double*)v); } public static - void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t, Single r) + void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Single s, Single t, Single r) { - Delegates.glMultiTexCoord3f((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single)s, (Single)t, (Single)r); + Delegates.glMultiTexCoord3f((OpenTK.Graphics.TextureUnit)target, (Single)s, (Single)t, (Single)r); } public static - void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Single[] v) + void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Single[] v) { unsafe { fixed (Single* v_ptr = v) { - Delegates.glMultiTexCoord3fv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v_ptr); + Delegates.glMultiTexCoord3fv((OpenTK.Graphics.TextureUnit)target, (Single*)v_ptr); } } } public static - void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, ref Single v) + void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, ref Single v) { unsafe { fixed (Single* v_ptr = &v) { - Delegates.glMultiTexCoord3fv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v_ptr); + Delegates.glMultiTexCoord3fv((OpenTK.Graphics.TextureUnit)target, (Single*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Single* v) + unsafe void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Single* v) { - Delegates.glMultiTexCoord3fv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v); + Delegates.glMultiTexCoord3fv((OpenTK.Graphics.TextureUnit)target, (Single*)v); } public static - void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t, Int32 r) + void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Int32 s, Int32 t, Int32 r) { - Delegates.glMultiTexCoord3i((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32)s, (Int32)t, (Int32)r); + Delegates.glMultiTexCoord3i((OpenTK.Graphics.TextureUnit)target, (Int32)s, (Int32)t, (Int32)r); } public static - void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Int32[] v) + void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Int32[] v) { unsafe { fixed (Int32* v_ptr = v) { - Delegates.glMultiTexCoord3iv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v_ptr); + Delegates.glMultiTexCoord3iv((OpenTK.Graphics.TextureUnit)target, (Int32*)v_ptr); } } } public static - void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, ref Int32 v) + void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, ref Int32 v) { unsafe { fixed (Int32* v_ptr = &v) { - Delegates.glMultiTexCoord3iv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v_ptr); + Delegates.glMultiTexCoord3iv((OpenTK.Graphics.TextureUnit)target, (Int32*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Int32* v) + unsafe void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Int32* v) { - Delegates.glMultiTexCoord3iv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v); + Delegates.glMultiTexCoord3iv((OpenTK.Graphics.TextureUnit)target, (Int32*)v); } public static - void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t, Int16 r) + void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Int16 s, Int16 t, Int16 r) { - Delegates.glMultiTexCoord3s((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16)s, (Int16)t, (Int16)r); + Delegates.glMultiTexCoord3s((OpenTK.Graphics.TextureUnit)target, (Int16)s, (Int16)t, (Int16)r); } public static - void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Int16[] v) + void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Int16[] v) { unsafe { fixed (Int16* v_ptr = v) { - Delegates.glMultiTexCoord3sv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v_ptr); + Delegates.glMultiTexCoord3sv((OpenTK.Graphics.TextureUnit)target, (Int16*)v_ptr); } } } public static - void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, ref Int16 v) + void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, ref Int16 v) { unsafe { fixed (Int16* v_ptr = &v) { - Delegates.glMultiTexCoord3sv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v_ptr); + Delegates.glMultiTexCoord3sv((OpenTK.Graphics.TextureUnit)target, (Int16*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Int16* v) + unsafe void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Int16* v) { - Delegates.glMultiTexCoord3sv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v); + Delegates.glMultiTexCoord3sv((OpenTK.Graphics.TextureUnit)target, (Int16*)v); } public static - void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t, Double r, Double q) + void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Double s, Double t, Double r, Double q) { - Delegates.glMultiTexCoord4d((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double)s, (Double)t, (Double)r, (Double)q); + Delegates.glMultiTexCoord4d((OpenTK.Graphics.TextureUnit)target, (Double)s, (Double)t, (Double)r, (Double)q); } public static - void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Double[] v) + void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Double[] v) { unsafe { fixed (Double* v_ptr = v) { - Delegates.glMultiTexCoord4dv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v_ptr); + Delegates.glMultiTexCoord4dv((OpenTK.Graphics.TextureUnit)target, (Double*)v_ptr); } } } public static - void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, ref Double v) + void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, ref Double v) { unsafe { fixed (Double* v_ptr = &v) { - Delegates.glMultiTexCoord4dv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v_ptr); + Delegates.glMultiTexCoord4dv((OpenTK.Graphics.TextureUnit)target, (Double*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Double* v) + unsafe void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Double* v) { - Delegates.glMultiTexCoord4dv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v); + Delegates.glMultiTexCoord4dv((OpenTK.Graphics.TextureUnit)target, (Double*)v); } public static - void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t, Single r, Single q) + void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Single s, Single t, Single r, Single q) { - Delegates.glMultiTexCoord4f((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single)s, (Single)t, (Single)r, (Single)q); + Delegates.glMultiTexCoord4f((OpenTK.Graphics.TextureUnit)target, (Single)s, (Single)t, (Single)r, (Single)q); } public static - void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Single[] v) + void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Single[] v) { unsafe { fixed (Single* v_ptr = v) { - Delegates.glMultiTexCoord4fv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v_ptr); + Delegates.glMultiTexCoord4fv((OpenTK.Graphics.TextureUnit)target, (Single*)v_ptr); } } } public static - void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, ref Single v) + void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, ref Single v) { unsafe { fixed (Single* v_ptr = &v) { - Delegates.glMultiTexCoord4fv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v_ptr); + Delegates.glMultiTexCoord4fv((OpenTK.Graphics.TextureUnit)target, (Single*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Single* v) + unsafe void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Single* v) { - Delegates.glMultiTexCoord4fv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v); + Delegates.glMultiTexCoord4fv((OpenTK.Graphics.TextureUnit)target, (Single*)v); } public static - void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t, Int32 r, Int32 q) + void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Int32 s, Int32 t, Int32 r, Int32 q) { - Delegates.glMultiTexCoord4i((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32)s, (Int32)t, (Int32)r, (Int32)q); + Delegates.glMultiTexCoord4i((OpenTK.Graphics.TextureUnit)target, (Int32)s, (Int32)t, (Int32)r, (Int32)q); } public static - void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Int32[] v) + void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Int32[] v) { unsafe { fixed (Int32* v_ptr = v) { - Delegates.glMultiTexCoord4iv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v_ptr); + Delegates.glMultiTexCoord4iv((OpenTK.Graphics.TextureUnit)target, (Int32*)v_ptr); } } } public static - void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, ref Int32 v) + void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, ref Int32 v) { unsafe { fixed (Int32* v_ptr = &v) { - Delegates.glMultiTexCoord4iv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v_ptr); + Delegates.glMultiTexCoord4iv((OpenTK.Graphics.TextureUnit)target, (Int32*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Int32* v) + unsafe void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Int32* v) { - Delegates.glMultiTexCoord4iv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v); + Delegates.glMultiTexCoord4iv((OpenTK.Graphics.TextureUnit)target, (Int32*)v); } public static - void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t, Int16 r, Int16 q) + void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Int16 s, Int16 t, Int16 r, Int16 q) { - Delegates.glMultiTexCoord4s((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16)s, (Int16)t, (Int16)r, (Int16)q); + Delegates.glMultiTexCoord4s((OpenTK.Graphics.TextureUnit)target, (Int16)s, (Int16)t, (Int16)r, (Int16)q); } public static - void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Int16[] v) + void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Int16[] v) { unsafe { fixed (Int16* v_ptr = v) { - Delegates.glMultiTexCoord4sv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v_ptr); + Delegates.glMultiTexCoord4sv((OpenTK.Graphics.TextureUnit)target, (Int16*)v_ptr); } } } public static - void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, ref Int16 v) + void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, ref Int16 v) { unsafe { fixed (Int16* v_ptr = &v) { - Delegates.glMultiTexCoord4sv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v_ptr); + Delegates.glMultiTexCoord4sv((OpenTK.Graphics.TextureUnit)target, (Int16*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Int16* v) + unsafe void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Int16* v) { - Delegates.glMultiTexCoord4sv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v); + Delegates.glMultiTexCoord4sv((OpenTK.Graphics.TextureUnit)target, (Int16*)v); } public static @@ -7779,23 +7779,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, IntPtr data) + void CompressedTexImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, IntPtr data) { unsafe { - Delegates.glCompressedTexImage3D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data); + Delegates.glCompressedTexImage3D((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data); } } public static - void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [In, Out] object data) + void CompressedTexImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.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.glCompressedTexImage3D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + Delegates.glCompressedTexImage3D((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -7805,23 +7805,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, IntPtr data) + void CompressedTexImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, IntPtr data) { unsafe { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data); + Delegates.glCompressedTexImage2D((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data); } } public static - void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [In, Out] object data) + void CompressedTexImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.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.glCompressedTexImage2D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + Delegates.glCompressedTexImage2D((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -7831,23 +7831,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, IntPtr data) + void CompressedTexImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, IntPtr data) { unsafe { - Delegates.glCompressedTexImage1D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data); + Delegates.glCompressedTexImage1D((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data); } } public static - void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [In, Out] object data) + void CompressedTexImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.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.glCompressedTexImage1D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + Delegates.glCompressedTexImage1D((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -7857,23 +7857,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void CompressedTexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data) + void CompressedTexSubImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.PixelFormat format, Int32 imageSize, IntPtr data) { unsafe { - Delegates.glCompressedTexSubImage3D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data); + Delegates.glCompressedTexSubImage3D((OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.PixelFormat)format, (Int32)imageSize, (IntPtr)data); } } public static - void CompressedTexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [In, Out] object data) + void CompressedTexSubImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.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.glCompressedTexSubImage3D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + Delegates.glCompressedTexSubImage3D((OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -7883,23 +7883,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void CompressedTexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data) + void CompressedTexSubImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, Int32 imageSize, IntPtr data) { unsafe { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data); + Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (Int32)imageSize, (IntPtr)data); } } public static - void CompressedTexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [In, Out] object data) + void CompressedTexSubImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.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.glCompressedTexSubImage2D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -7909,23 +7909,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data) + void CompressedTexSubImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.PixelFormat format, Int32 imageSize, IntPtr data) { unsafe { - Delegates.glCompressedTexSubImage1D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data); + Delegates.glCompressedTexSubImage1D((OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (Int32)imageSize, (IntPtr)data); } } public static - void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [In, Out] object data) + void CompressedTexSubImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.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.glCompressedTexSubImage1D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + Delegates.glCompressedTexSubImage1D((OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -7935,23 +7935,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void GetCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, [Out] IntPtr img) + void GetCompressedTexImage(OpenTK.Graphics.TextureTarget target, Int32 level, [Out] IntPtr img) { unsafe { - Delegates.glGetCompressedTexImage((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (IntPtr)img); + Delegates.glGetCompressedTexImage((OpenTK.Graphics.TextureTarget)target, (Int32)level, (IntPtr)img); } } public static - void GetCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, [In, Out] object img) + void GetCompressedTexImage(OpenTK.Graphics.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.glGetCompressedTexImage((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (IntPtr)img_ptr.AddrOfPinnedObject()); + Delegates.glGetCompressedTexImage((OpenTK.Graphics.TextureTarget)target, (Int32)level, (IntPtr)img_ptr.AddrOfPinnedObject()); } finally { @@ -7961,9 +7961,9 @@ namespace OpenTK.Graphics.OpenGL } public static - void BlendFuncSeparate(OpenTK.Graphics.OpenGL.BlendingFactorSrc sfactorRGB, OpenTK.Graphics.OpenGL.BlendingFactorDest dfactorRGB, OpenTK.Graphics.OpenGL.BlendingFactorSrc sfactorAlpha, OpenTK.Graphics.OpenGL.BlendingFactorDest dfactorAlpha) + void BlendFuncSeparate(OpenTK.Graphics.BlendingFactorSrc sfactorRGB, OpenTK.Graphics.BlendingFactorDest dfactorRGB, OpenTK.Graphics.BlendingFactorSrc sfactorAlpha, OpenTK.Graphics.BlendingFactorDest dfactorAlpha) { - Delegates.glBlendFuncSeparate((OpenTK.Graphics.OpenGL.BlendingFactorSrc)sfactorRGB, (OpenTK.Graphics.OpenGL.BlendingFactorDest)dfactorRGB, (OpenTK.Graphics.OpenGL.BlendingFactorSrc)sfactorAlpha, (OpenTK.Graphics.OpenGL.BlendingFactorDest)dfactorAlpha); + Delegates.glBlendFuncSeparate((OpenTK.Graphics.BlendingFactorSrc)sfactorRGB, (OpenTK.Graphics.BlendingFactorDest)dfactorRGB, (OpenTK.Graphics.BlendingFactorSrc)sfactorAlpha, (OpenTK.Graphics.BlendingFactorDest)dfactorAlpha); } public static @@ -8041,23 +8041,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void FogCoordPointer(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, IntPtr pointer) + void FogCoordPointer(OpenTK.Graphics.FogPointerType type, Int32 stride, IntPtr pointer) { unsafe { - Delegates.glFogCoordPointer((OpenTK.Graphics.OpenGL.FogPointerType)type, (Int32)stride, (IntPtr)pointer); + Delegates.glFogCoordPointer((OpenTK.Graphics.FogPointerType)type, (Int32)stride, (IntPtr)pointer); } } public static - void FogCoordPointer(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, [In, Out] object pointer) + void FogCoordPointer(OpenTK.Graphics.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.Graphics.OpenGL.FogPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glFogCoordPointer((OpenTK.Graphics.FogPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -8067,27 +8067,27 @@ namespace OpenTK.Graphics.OpenGL } public static - void MultiDrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, [Out] Int32[] first, [Out] Int32[] count, Int32 primcount) + void MultiDrawArrays(OpenTK.Graphics.BeginMode mode, [Out] Int32[] first, [Out] Int32[] count, Int32 primcount) { unsafe { fixed (Int32* first_ptr = first) fixed (Int32* count_ptr = count) { - Delegates.glMultiDrawArrays((OpenTK.Graphics.OpenGL.BeginMode)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + Delegates.glMultiDrawArrays((OpenTK.Graphics.BeginMode)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); } } } public static - void MultiDrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, [Out] out Int32 first, [Out] out Int32 count, Int32 primcount) + void MultiDrawArrays(OpenTK.Graphics.BeginMode mode, [Out] out Int32 first, [Out] out Int32 count, Int32 primcount) { unsafe { fixed (Int32* first_ptr = &first) fixed (Int32* count_ptr = &count) { - Delegates.glMultiDrawArrays((OpenTK.Graphics.OpenGL.BeginMode)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + Delegates.glMultiDrawArrays((OpenTK.Graphics.BeginMode)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); first = *first_ptr; count = *count_ptr; } @@ -8096,25 +8096,25 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiDrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, [Out] Int32* first, [Out] Int32* count, Int32 primcount) + unsafe void MultiDrawArrays(OpenTK.Graphics.BeginMode mode, [Out] Int32* first, [Out] Int32* count, Int32 primcount) { - Delegates.glMultiDrawArrays((OpenTK.Graphics.OpenGL.BeginMode)mode, (Int32*)first, (Int32*)count, (Int32)primcount); + Delegates.glMultiDrawArrays((OpenTK.Graphics.BeginMode)mode, (Int32*)first, (Int32*)count, (Int32)primcount); } public static - void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount) + void MultiDrawElements(OpenTK.Graphics.BeginMode mode, Int32[] count, OpenTK.Graphics.DrawElementsType type, IntPtr indices, Int32 primcount) { unsafe { fixed (Int32* count_ptr = count) { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL.BeginMode)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + Delegates.glMultiDrawElements((OpenTK.Graphics.BeginMode)mode, (Int32*)count_ptr, (OpenTK.Graphics.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); } } } public static - void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [In, Out] object indices, Int32 primcount) + void MultiDrawElements(OpenTK.Graphics.BeginMode mode, Int32[] count, OpenTK.Graphics.DrawElementsType type, [In, Out] object indices, Int32 primcount) { unsafe { @@ -8123,7 +8123,7 @@ namespace OpenTK.Graphics.OpenGL System.Runtime.InteropServices.GCHandle indices_ptr = System.Runtime.InteropServices.GCHandle.Alloc(indices, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL.BeginMode)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + Delegates.glMultiDrawElements((OpenTK.Graphics.BeginMode)mode, (Int32*)count_ptr, (OpenTK.Graphics.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -8134,19 +8134,19 @@ namespace OpenTK.Graphics.OpenGL } public static - void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount) + void MultiDrawElements(OpenTK.Graphics.BeginMode mode, ref Int32 count, OpenTK.Graphics.DrawElementsType type, IntPtr indices, Int32 primcount) { unsafe { fixed (Int32* count_ptr = &count) { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL.BeginMode)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + Delegates.glMultiDrawElements((OpenTK.Graphics.BeginMode)mode, (Int32*)count_ptr, (OpenTK.Graphics.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); } } } public static - void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [In, Out] object indices, Int32 primcount) + void MultiDrawElements(OpenTK.Graphics.BeginMode mode, ref Int32 count, OpenTK.Graphics.DrawElementsType type, [In, Out] object indices, Int32 primcount) { unsafe { @@ -8155,7 +8155,7 @@ namespace OpenTK.Graphics.OpenGL System.Runtime.InteropServices.GCHandle indices_ptr = System.Runtime.InteropServices.GCHandle.Alloc(indices, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL.BeginMode)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + Delegates.glMultiDrawElements((OpenTK.Graphics.BeginMode)mode, (Int32*)count_ptr, (OpenTK.Graphics.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -8167,19 +8167,19 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount) + unsafe void MultiDrawElements(OpenTK.Graphics.BeginMode mode, Int32* count, OpenTK.Graphics.DrawElementsType type, IntPtr indices, Int32 primcount) { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL.BeginMode)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + Delegates.glMultiDrawElements((OpenTK.Graphics.BeginMode)mode, (Int32*)count, (OpenTK.Graphics.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); } [System.CLSCompliant(false)] public static - unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [In, Out] object indices, Int32 primcount) + unsafe void MultiDrawElements(OpenTK.Graphics.BeginMode mode, Int32* count, OpenTK.Graphics.DrawElementsType 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.Graphics.OpenGL.BeginMode)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + Delegates.glMultiDrawElements((OpenTK.Graphics.BeginMode)mode, (Int32*)count, (OpenTK.Graphics.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -8188,77 +8188,77 @@ namespace OpenTK.Graphics.OpenGL } public static - void PointParameter(OpenTK.Graphics.OpenGL.PointParameterName pname, Single param) + void PointParameter(OpenTK.Graphics.PointParameterName pname, Single param) { - Delegates.glPointParameterf((OpenTK.Graphics.OpenGL.PointParameterName)pname, (Single)param); + Delegates.glPointParameterf((OpenTK.Graphics.PointParameterName)pname, (Single)param); } public static - void PointParameterv(OpenTK.Graphics.OpenGL.PointParameterName pname, Single[] @params) + void PointParameterv(OpenTK.Graphics.PointParameterName pname, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glPointParameterfv((OpenTK.Graphics.OpenGL.PointParameterName)pname, (Single*)@params_ptr); + Delegates.glPointParameterfv((OpenTK.Graphics.PointParameterName)pname, (Single*)@params_ptr); } } } public static - void PointParameterv(OpenTK.Graphics.OpenGL.PointParameterName pname, ref Single @params) + void PointParameterv(OpenTK.Graphics.PointParameterName pname, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glPointParameterfv((OpenTK.Graphics.OpenGL.PointParameterName)pname, (Single*)@params_ptr); + Delegates.glPointParameterfv((OpenTK.Graphics.PointParameterName)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void PointParameterv(OpenTK.Graphics.OpenGL.PointParameterName pname, Single* @params) + unsafe void PointParameterv(OpenTK.Graphics.PointParameterName pname, Single* @params) { - Delegates.glPointParameterfv((OpenTK.Graphics.OpenGL.PointParameterName)pname, (Single*)@params); + Delegates.glPointParameterfv((OpenTK.Graphics.PointParameterName)pname, (Single*)@params); } public static - void PointParameter(OpenTK.Graphics.OpenGL.PointParameterName pname, Int32 param) + void PointParameter(OpenTK.Graphics.PointParameterName pname, Int32 param) { - Delegates.glPointParameteri((OpenTK.Graphics.OpenGL.PointParameterName)pname, (Int32)param); + Delegates.glPointParameteri((OpenTK.Graphics.PointParameterName)pname, (Int32)param); } public static - void PointParameterv(OpenTK.Graphics.OpenGL.PointParameterName pname, Int32[] @params) + void PointParameterv(OpenTK.Graphics.PointParameterName pname, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glPointParameteriv((OpenTK.Graphics.OpenGL.PointParameterName)pname, (Int32*)@params_ptr); + Delegates.glPointParameteriv((OpenTK.Graphics.PointParameterName)pname, (Int32*)@params_ptr); } } } public static - void PointParameterv(OpenTK.Graphics.OpenGL.PointParameterName pname, ref Int32 @params) + void PointParameterv(OpenTK.Graphics.PointParameterName pname, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glPointParameteriv((OpenTK.Graphics.OpenGL.PointParameterName)pname, (Int32*)@params_ptr); + Delegates.glPointParameteriv((OpenTK.Graphics.PointParameterName)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void PointParameterv(OpenTK.Graphics.OpenGL.PointParameterName pname, Int32* @params) + unsafe void PointParameterv(OpenTK.Graphics.PointParameterName pname, Int32* @params) { - Delegates.glPointParameteriv((OpenTK.Graphics.OpenGL.PointParameterName)pname, (Int32*)@params); + Delegates.glPointParameteriv((OpenTK.Graphics.PointParameterName)pname, (Int32*)@params); } [System.CLSCompliant(false)] @@ -8567,23 +8567,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void SecondaryColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, IntPtr pointer) + void SecondaryColorPointer(Int32 size, OpenTK.Graphics.ColorPointerType type, Int32 stride, IntPtr pointer) { unsafe { - Delegates.glSecondaryColorPointer((Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer); + Delegates.glSecondaryColorPointer((Int32)size, (OpenTK.Graphics.ColorPointerType)type, (Int32)stride, (IntPtr)pointer); } } public static - void SecondaryColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [In, Out] object pointer) + void SecondaryColorPointer(Int32 size, OpenTK.Graphics.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.glSecondaryColorPointer((Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glSecondaryColorPointer((Int32)size, (OpenTK.Graphics.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -9033,43 +9033,43 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void BeginQuery(OpenTK.Graphics.OpenGL.QueryTarget target, UInt32 id) + void BeginQuery(OpenTK.Graphics.QueryTarget target, UInt32 id) { - Delegates.glBeginQuery((OpenTK.Graphics.OpenGL.QueryTarget)target, (UInt32)id); + Delegates.glBeginQuery((OpenTK.Graphics.QueryTarget)target, (UInt32)id); } public static - void BeginQuery(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 id) + void BeginQuery(OpenTK.Graphics.QueryTarget target, Int32 id) { - Delegates.glBeginQuery((OpenTK.Graphics.OpenGL.QueryTarget)target, (UInt32)id); + Delegates.glBeginQuery((OpenTK.Graphics.QueryTarget)target, (UInt32)id); } public static - void EndQuery(OpenTK.Graphics.OpenGL.QueryTarget target) + void EndQuery(OpenTK.Graphics.QueryTarget target) { - Delegates.glEndQuery((OpenTK.Graphics.OpenGL.QueryTarget)target); + Delegates.glEndQuery((OpenTK.Graphics.QueryTarget)target); } public static - void GetQuery(OpenTK.Graphics.OpenGL.QueryTarget target, OpenTK.Graphics.OpenGL.GetQueryParam pname, [Out] Int32[] @params) + void GetQuery(OpenTK.Graphics.QueryTarget target, OpenTK.Graphics.GetQueryParam pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetQueryiv((OpenTK.Graphics.OpenGL.QueryTarget)target, (OpenTK.Graphics.OpenGL.GetQueryParam)pname, (Int32*)@params_ptr); + Delegates.glGetQueryiv((OpenTK.Graphics.QueryTarget)target, (OpenTK.Graphics.GetQueryParam)pname, (Int32*)@params_ptr); } } } public static - void GetQuery(OpenTK.Graphics.OpenGL.QueryTarget target, OpenTK.Graphics.OpenGL.GetQueryParam pname, [Out] out Int32 @params) + void GetQuery(OpenTK.Graphics.QueryTarget target, OpenTK.Graphics.GetQueryParam pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetQueryiv((OpenTK.Graphics.OpenGL.QueryTarget)target, (OpenTK.Graphics.OpenGL.GetQueryParam)pname, (Int32*)@params_ptr); + Delegates.glGetQueryiv((OpenTK.Graphics.QueryTarget)target, (OpenTK.Graphics.GetQueryParam)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -9077,33 +9077,33 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetQuery(OpenTK.Graphics.OpenGL.QueryTarget target, OpenTK.Graphics.OpenGL.GetQueryParam pname, [Out] Int32* @params) + unsafe void GetQuery(OpenTK.Graphics.QueryTarget target, OpenTK.Graphics.GetQueryParam pname, [Out] Int32* @params) { - Delegates.glGetQueryiv((OpenTK.Graphics.OpenGL.QueryTarget)target, (OpenTK.Graphics.OpenGL.GetQueryParam)pname, (Int32*)@params); + Delegates.glGetQueryiv((OpenTK.Graphics.QueryTarget)target, (OpenTK.Graphics.GetQueryParam)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [Out] Int32[] @params) + void GetQueryObject(UInt32 id, OpenTK.Graphics.GetQueryObjectParam pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetQueryObjectiv((UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (Int32*)@params_ptr); + Delegates.glGetQueryObjectiv((UInt32)id, (OpenTK.Graphics.GetQueryObjectParam)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [Out] out Int32 @params) + void GetQueryObject(UInt32 id, OpenTK.Graphics.GetQueryObjectParam pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetQueryObjectiv((UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (Int32*)@params_ptr); + Delegates.glGetQueryObjectiv((UInt32)id, (OpenTK.Graphics.GetQueryObjectParam)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -9111,58 +9111,58 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [Out] Int32* @params) + unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.GetQueryObjectParam pname, [Out] Int32* @params) { - Delegates.glGetQueryObjectiv((UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (Int32*)@params); + Delegates.glGetQueryObjectiv((UInt32)id, (OpenTK.Graphics.GetQueryObjectParam)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [Out] UInt32[] @params) + void GetQueryObject(UInt32 id, OpenTK.Graphics.GetQueryObjectParam pname, [Out] UInt32[] @params) { unsafe { fixed (UInt32* @params_ptr = @params) { - Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (UInt32*)@params_ptr); + Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.Graphics.GetQueryObjectParam)pname, (UInt32*)@params_ptr); } } } public static - void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [Out] Int32[] @params) + void GetQueryObject(Int32 id, OpenTK.Graphics.GetQueryObjectParam pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (UInt32*)@params_ptr); + Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.Graphics.GetQueryObjectParam)pname, (UInt32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [Out] out UInt32 @params) + void GetQueryObject(UInt32 id, OpenTK.Graphics.GetQueryObjectParam pname, [Out] out UInt32 @params) { unsafe { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (UInt32*)@params_ptr); + Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.Graphics.GetQueryObjectParam)pname, (UInt32*)@params_ptr); @params = *@params_ptr; } } } public static - void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [Out] out Int32 @params) + void GetQueryObject(Int32 id, OpenTK.Graphics.GetQueryObjectParam pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (UInt32*)@params_ptr); + Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.Graphics.GetQueryObjectParam)pname, (UInt32*)@params_ptr); @params = *@params_ptr; } } @@ -9170,29 +9170,29 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [Out] UInt32* @params) + unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.GetQueryObjectParam pname, [Out] UInt32* @params) { - Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (UInt32*)@params); + Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.Graphics.GetQueryObjectParam)pname, (UInt32*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [Out] Int32* @params) + unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.GetQueryObjectParam pname, [Out] Int32* @params) { - Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (UInt32*)@params); + Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.Graphics.GetQueryObjectParam)pname, (UInt32*)@params); } [System.CLSCompliant(false)] public static - void BindBuffer(OpenTK.Graphics.OpenGL.BufferTarget target, UInt32 buffer) + void BindBuffer(OpenTK.Graphics.BufferTarget target, UInt32 buffer) { - Delegates.glBindBuffer((OpenTK.Graphics.OpenGL.BufferTarget)target, (UInt32)buffer); + Delegates.glBindBuffer((OpenTK.Graphics.BufferTarget)target, (UInt32)buffer); } public static - void BindBuffer(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 buffer) + void BindBuffer(OpenTK.Graphics.BufferTarget target, Int32 buffer) { - Delegates.glBindBuffer((OpenTK.Graphics.OpenGL.BufferTarget)target, (UInt32)buffer); + Delegates.glBindBuffer((OpenTK.Graphics.BufferTarget)target, (UInt32)buffer); } [System.CLSCompliant(false)] @@ -9339,23 +9339,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void BufferData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr size, IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) + void BufferData(OpenTK.Graphics.BufferTarget target, IntPtr size, IntPtr data, OpenTK.Graphics.BufferUsageHint usage) { unsafe { - Delegates.glBufferData((OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)size, (IntPtr)data, (OpenTK.Graphics.OpenGL.BufferUsageHint)usage); + Delegates.glBufferData((OpenTK.Graphics.BufferTarget)target, (IntPtr)size, (IntPtr)data, (OpenTK.Graphics.BufferUsageHint)usage); } } public static - void BufferData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr size, [In, Out] object data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) + void BufferData(OpenTK.Graphics.BufferTarget target, IntPtr size, [In, Out] object data, OpenTK.Graphics.BufferUsageHint usage) { unsafe { System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glBufferData((OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.BufferUsageHint)usage); + Delegates.glBufferData((OpenTK.Graphics.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.BufferUsageHint)usage); } finally { @@ -9365,23 +9365,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void BufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, IntPtr data) + void BufferSubData(OpenTK.Graphics.BufferTarget target, IntPtr offset, IntPtr size, IntPtr data) { unsafe { - Delegates.glBufferSubData((OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data); + Delegates.glBufferSubData((OpenTK.Graphics.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data); } } public static - void BufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [In, Out] object data) + void BufferSubData(OpenTK.Graphics.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.Graphics.OpenGL.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + Delegates.glBufferSubData((OpenTK.Graphics.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -9391,23 +9391,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [Out] IntPtr data) + void GetBufferSubData(OpenTK.Graphics.BufferTarget target, IntPtr offset, IntPtr size, [Out] IntPtr data) { unsafe { - Delegates.glGetBufferSubData((OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data); + Delegates.glGetBufferSubData((OpenTK.Graphics.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data); } } public static - void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [In, Out] object data) + void GetBufferSubData(OpenTK.Graphics.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.Graphics.OpenGL.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + Delegates.glGetBufferSubData((OpenTK.Graphics.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -9418,37 +9418,37 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe IntPtr MapBuffer(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferAccess access) + unsafe IntPtr MapBuffer(OpenTK.Graphics.BufferTarget target, OpenTK.Graphics.BufferAccess access) { - return Delegates.glMapBuffer((OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.BufferAccess)access); + return Delegates.glMapBuffer((OpenTK.Graphics.BufferTarget)target, (OpenTK.Graphics.BufferAccess)access); } public static - bool UnmapBuffer(OpenTK.Graphics.OpenGL.BufferTarget target) + bool UnmapBuffer(OpenTK.Graphics.BufferTarget target) { - return Delegates.glUnmapBuffer((OpenTK.Graphics.OpenGL.BufferTarget)target); + return Delegates.glUnmapBuffer((OpenTK.Graphics.BufferTarget)target); } public static - void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [Out] Int32[] @params) + void GetBufferParameter(OpenTK.Graphics.BufferTarget target, OpenTK.Graphics.BufferParameterName pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetBufferParameteriv((OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.BufferParameterName)pname, (Int32*)@params_ptr); + Delegates.glGetBufferParameteriv((OpenTK.Graphics.BufferTarget)target, (OpenTK.Graphics.BufferParameterName)pname, (Int32*)@params_ptr); } } } public static - void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [Out] out Int32 @params) + void GetBufferParameter(OpenTK.Graphics.BufferTarget target, OpenTK.Graphics.BufferParameterName pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetBufferParameteriv((OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.BufferParameterName)pname, (Int32*)@params_ptr); + Delegates.glGetBufferParameteriv((OpenTK.Graphics.BufferTarget)target, (OpenTK.Graphics.BufferParameterName)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -9456,29 +9456,29 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [Out] Int32* @params) + unsafe void GetBufferParameter(OpenTK.Graphics.BufferTarget target, OpenTK.Graphics.BufferParameterName pname, [Out] Int32* @params) { - Delegates.glGetBufferParameteriv((OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.BufferParameterName)pname, (Int32*)@params); + Delegates.glGetBufferParameteriv((OpenTK.Graphics.BufferTarget)target, (OpenTK.Graphics.BufferParameterName)pname, (Int32*)@params); } public static - void GetBufferPointer(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferPointer pname, [Out] IntPtr @params) + void GetBufferPointer(OpenTK.Graphics.BufferTarget target, OpenTK.Graphics.BufferPointer pname, [Out] IntPtr @params) { unsafe { - Delegates.glGetBufferPointerv((OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.BufferPointer)pname, (IntPtr)@params); + Delegates.glGetBufferPointerv((OpenTK.Graphics.BufferTarget)target, (OpenTK.Graphics.BufferPointer)pname, (IntPtr)@params); } } public static - void GetBufferPointer(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferPointer pname, [In, Out] object @params) + void GetBufferPointer(OpenTK.Graphics.BufferTarget target, OpenTK.Graphics.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.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + Delegates.glGetBufferPointerv((OpenTK.Graphics.BufferTarget)target, (OpenTK.Graphics.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -9488,72 +9488,72 @@ namespace OpenTK.Graphics.OpenGL } public static - void BlendEquationSeparate(OpenTK.Graphics.OpenGL.All modeRGB, OpenTK.Graphics.OpenGL.All modeAlpha) + void BlendEquationSeparate(OpenTK.Graphics.All modeRGB, OpenTK.Graphics.All modeAlpha) { - Delegates.glBlendEquationSeparate((OpenTK.Graphics.OpenGL.All)modeRGB, (OpenTK.Graphics.OpenGL.All)modeAlpha); + Delegates.glBlendEquationSeparate((OpenTK.Graphics.All)modeRGB, (OpenTK.Graphics.All)modeAlpha); } public static - void DrawBuffers(Int32 n, OpenTK.Graphics.OpenGL.DrawBuffersEnum[] bufs) + void DrawBuffers(Int32 n, OpenTK.Graphics.DrawBuffersEnum[] bufs) { unsafe { - fixed (OpenTK.Graphics.OpenGL.DrawBuffersEnum* bufs_ptr = bufs) + fixed (OpenTK.Graphics.DrawBuffersEnum* bufs_ptr = bufs) { - Delegates.glDrawBuffers((Int32)n, (OpenTK.Graphics.OpenGL.DrawBuffersEnum*)bufs_ptr); + Delegates.glDrawBuffers((Int32)n, (OpenTK.Graphics.DrawBuffersEnum*)bufs_ptr); } } } public static - void DrawBuffers(Int32 n, ref OpenTK.Graphics.OpenGL.DrawBuffersEnum bufs) + void DrawBuffers(Int32 n, ref OpenTK.Graphics.DrawBuffersEnum bufs) { unsafe { - fixed (OpenTK.Graphics.OpenGL.DrawBuffersEnum* bufs_ptr = &bufs) + fixed (OpenTK.Graphics.DrawBuffersEnum* bufs_ptr = &bufs) { - Delegates.glDrawBuffers((Int32)n, (OpenTK.Graphics.OpenGL.DrawBuffersEnum*)bufs_ptr); + Delegates.glDrawBuffers((Int32)n, (OpenTK.Graphics.DrawBuffersEnum*)bufs_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.OpenGL.DrawBuffersEnum* bufs) + unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.DrawBuffersEnum* bufs) { - Delegates.glDrawBuffers((Int32)n, (OpenTK.Graphics.OpenGL.DrawBuffersEnum*)bufs); + Delegates.glDrawBuffers((Int32)n, (OpenTK.Graphics.DrawBuffersEnum*)bufs); } public static - void StencilOpSeparate(OpenTK.Graphics.OpenGL.All face, OpenTK.Graphics.OpenGL.StencilOp sfail, OpenTK.Graphics.OpenGL.StencilOp dpfail, OpenTK.Graphics.OpenGL.StencilOp dppass) + void StencilOpSeparate(OpenTK.Graphics.All face, OpenTK.Graphics.StencilOp sfail, OpenTK.Graphics.StencilOp dpfail, OpenTK.Graphics.StencilOp dppass) { - Delegates.glStencilOpSeparate((OpenTK.Graphics.OpenGL.All)face, (OpenTK.Graphics.OpenGL.StencilOp)sfail, (OpenTK.Graphics.OpenGL.StencilOp)dpfail, (OpenTK.Graphics.OpenGL.StencilOp)dppass); + Delegates.glStencilOpSeparate((OpenTK.Graphics.All)face, (OpenTK.Graphics.StencilOp)sfail, (OpenTK.Graphics.StencilOp)dpfail, (OpenTK.Graphics.StencilOp)dppass); } [System.CLSCompliant(false)] public static - void StencilFuncSeparate(OpenTK.Graphics.OpenGL.StencilFunction frontfunc, OpenTK.Graphics.OpenGL.StencilFunction backfunc, Int32 @ref, UInt32 mask) + void StencilFuncSeparate(OpenTK.Graphics.StencilFunction frontfunc, OpenTK.Graphics.StencilFunction backfunc, Int32 @ref, UInt32 mask) { - Delegates.glStencilFuncSeparate((OpenTK.Graphics.OpenGL.StencilFunction)frontfunc, (OpenTK.Graphics.OpenGL.StencilFunction)backfunc, (Int32)@ref, (UInt32)mask); + Delegates.glStencilFuncSeparate((OpenTK.Graphics.StencilFunction)frontfunc, (OpenTK.Graphics.StencilFunction)backfunc, (Int32)@ref, (UInt32)mask); } public static - void StencilFuncSeparate(OpenTK.Graphics.OpenGL.StencilFunction frontfunc, OpenTK.Graphics.OpenGL.StencilFunction backfunc, Int32 @ref, Int32 mask) + void StencilFuncSeparate(OpenTK.Graphics.StencilFunction frontfunc, OpenTK.Graphics.StencilFunction backfunc, Int32 @ref, Int32 mask) { - Delegates.glStencilFuncSeparate((OpenTK.Graphics.OpenGL.StencilFunction)frontfunc, (OpenTK.Graphics.OpenGL.StencilFunction)backfunc, (Int32)@ref, (UInt32)mask); + Delegates.glStencilFuncSeparate((OpenTK.Graphics.StencilFunction)frontfunc, (OpenTK.Graphics.StencilFunction)backfunc, (Int32)@ref, (UInt32)mask); } [System.CLSCompliant(false)] public static - void StencilMaskSeparate(OpenTK.Graphics.OpenGL.All face, UInt32 mask) + void StencilMaskSeparate(OpenTK.Graphics.All face, UInt32 mask) { - Delegates.glStencilMaskSeparate((OpenTK.Graphics.OpenGL.All)face, (UInt32)mask); + Delegates.glStencilMaskSeparate((OpenTK.Graphics.All)face, (UInt32)mask); } public static - void StencilMaskSeparate(OpenTK.Graphics.OpenGL.All face, Int32 mask) + void StencilMaskSeparate(OpenTK.Graphics.All face, Int32 mask) { - Delegates.glStencilMaskSeparate((OpenTK.Graphics.OpenGL.All)face, (UInt32)mask); + Delegates.glStencilMaskSeparate((OpenTK.Graphics.All)face, (UInt32)mask); } [System.CLSCompliant(false)] @@ -9602,9 +9602,9 @@ namespace OpenTK.Graphics.OpenGL } public static - Int32 CreateShader(OpenTK.Graphics.OpenGL.ShaderType type) + Int32 CreateShader(OpenTK.Graphics.ShaderType type) { - return Delegates.glCreateShader((OpenTK.Graphics.OpenGL.ShaderType)type); + return Delegates.glCreateShader((OpenTK.Graphics.ShaderType)type); } [System.CLSCompliant(false)] @@ -9674,44 +9674,44 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.Graphics.OpenGL.ActiveAttribType[] type, [Out] System.Text.StringBuilder name) + void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.Graphics.ActiveAttribType[] type, [Out] System.Text.StringBuilder name) { unsafe { fixed (Int32* length_ptr = length) fixed (Int32* size_ptr = size) - fixed (OpenTK.Graphics.OpenGL.ActiveAttribType* type_ptr = type) + fixed (OpenTK.Graphics.ActiveAttribType* type_ptr = type) { - Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL.ActiveAttribType*)type_ptr, (System.Text.StringBuilder)name); + Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.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.Graphics.OpenGL.ActiveAttribType[] type, [Out] System.Text.StringBuilder name) + void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.Graphics.ActiveAttribType[] type, [Out] System.Text.StringBuilder name) { unsafe { fixed (Int32* length_ptr = length) fixed (Int32* size_ptr = size) - fixed (OpenTK.Graphics.OpenGL.ActiveAttribType* type_ptr = type) + fixed (OpenTK.Graphics.ActiveAttribType* type_ptr = type) { - Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL.ActiveAttribType*)type_ptr, (System.Text.StringBuilder)name); + Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.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.Graphics.OpenGL.ActiveAttribType 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.Graphics.ActiveAttribType type, [Out] System.Text.StringBuilder name) { unsafe { fixed (Int32* length_ptr = &length) fixed (Int32* size_ptr = &size) - fixed (OpenTK.Graphics.OpenGL.ActiveAttribType* type_ptr = &type) + fixed (OpenTK.Graphics.ActiveAttribType* type_ptr = &type) { - Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL.ActiveAttribType*)type_ptr, (System.Text.StringBuilder)name); + Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.ActiveAttribType*)type_ptr, (System.Text.StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -9720,15 +9720,15 @@ namespace OpenTK.Graphics.OpenGL } public static - void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.Graphics.OpenGL.ActiveAttribType 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.Graphics.ActiveAttribType type, [Out] System.Text.StringBuilder name) { unsafe { fixed (Int32* length_ptr = &length) fixed (Int32* size_ptr = &size) - fixed (OpenTK.Graphics.OpenGL.ActiveAttribType* type_ptr = &type) + fixed (OpenTK.Graphics.ActiveAttribType* type_ptr = &type) { - Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL.ActiveAttribType*)type_ptr, (System.Text.StringBuilder)name); + Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.ActiveAttribType*)type_ptr, (System.Text.StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -9738,58 +9738,58 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.Graphics.OpenGL.ActiveAttribType* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.Graphics.ActiveAttribType* type, [Out] System.Text.StringBuilder name) { - Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.OpenGL.ActiveAttribType*)type, (System.Text.StringBuilder)name); + Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.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.Graphics.OpenGL.ActiveAttribType* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.Graphics.ActiveAttribType* type, [Out] System.Text.StringBuilder name) { - Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.OpenGL.ActiveAttribType*)type, (System.Text.StringBuilder)name); + Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.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.Graphics.OpenGL.ActiveUniformType[] type, [Out] System.Text.StringBuilder name) + void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.Graphics.ActiveUniformType[] type, [Out] System.Text.StringBuilder name) { unsafe { fixed (Int32* length_ptr = length) fixed (Int32* size_ptr = size) - fixed (OpenTK.Graphics.OpenGL.ActiveUniformType* type_ptr = type) + fixed (OpenTK.Graphics.ActiveUniformType* type_ptr = type) { - Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL.ActiveUniformType*)type_ptr, (System.Text.StringBuilder)name); + Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.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.Graphics.OpenGL.ActiveUniformType[] type, [Out] System.Text.StringBuilder name) + void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.Graphics.ActiveUniformType[] type, [Out] System.Text.StringBuilder name) { unsafe { fixed (Int32* length_ptr = length) fixed (Int32* size_ptr = size) - fixed (OpenTK.Graphics.OpenGL.ActiveUniformType* type_ptr = type) + fixed (OpenTK.Graphics.ActiveUniformType* type_ptr = type) { - Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL.ActiveUniformType*)type_ptr, (System.Text.StringBuilder)name); + Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.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.Graphics.OpenGL.ActiveUniformType 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.Graphics.ActiveUniformType type, [Out] System.Text.StringBuilder name) { unsafe { fixed (Int32* length_ptr = &length) fixed (Int32* size_ptr = &size) - fixed (OpenTK.Graphics.OpenGL.ActiveUniformType* type_ptr = &type) + fixed (OpenTK.Graphics.ActiveUniformType* type_ptr = &type) { - Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL.ActiveUniformType*)type_ptr, (System.Text.StringBuilder)name); + Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.ActiveUniformType*)type_ptr, (System.Text.StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -9798,15 +9798,15 @@ namespace OpenTK.Graphics.OpenGL } public static - void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.Graphics.OpenGL.ActiveUniformType 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.Graphics.ActiveUniformType type, [Out] System.Text.StringBuilder name) { unsafe { fixed (Int32* length_ptr = &length) fixed (Int32* size_ptr = &size) - fixed (OpenTK.Graphics.OpenGL.ActiveUniformType* type_ptr = &type) + fixed (OpenTK.Graphics.ActiveUniformType* type_ptr = &type) { - Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL.ActiveUniformType*)type_ptr, (System.Text.StringBuilder)name); + Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.ActiveUniformType*)type_ptr, (System.Text.StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -9816,16 +9816,16 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.Graphics.OpenGL.ActiveUniformType* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.Graphics.ActiveUniformType* type, [Out] System.Text.StringBuilder name) { - Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.OpenGL.ActiveUniformType*)type, (System.Text.StringBuilder)name); + Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.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.Graphics.OpenGL.ActiveUniformType* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.Graphics.ActiveUniformType* type, [Out] System.Text.StringBuilder name) { - Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.OpenGL.ActiveUniformType*)type, (System.Text.StringBuilder)name); + Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.ActiveUniformType*)type, (System.Text.StringBuilder)name); } [System.CLSCompliant(false)] @@ -9915,51 +9915,51 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL.ProgramParameter pname, [Out] Int32[] @params) + void GetProgram(UInt32 program, OpenTK.Graphics.ProgramParameter pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.OpenGL.ProgramParameter)pname, (Int32*)@params_ptr); + Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.ProgramParameter)pname, (Int32*)@params_ptr); } } } public static - void GetProgram(Int32 program, OpenTK.Graphics.OpenGL.ProgramParameter pname, [Out] Int32[] @params) + void GetProgram(Int32 program, OpenTK.Graphics.ProgramParameter pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.OpenGL.ProgramParameter)pname, (Int32*)@params_ptr); + Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.ProgramParameter)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL.ProgramParameter pname, [Out] out Int32 @params) + void GetProgram(UInt32 program, OpenTK.Graphics.ProgramParameter pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.OpenGL.ProgramParameter)pname, (Int32*)@params_ptr); + Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.ProgramParameter)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } } public static - void GetProgram(Int32 program, OpenTK.Graphics.OpenGL.ProgramParameter pname, [Out] out Int32 @params) + void GetProgram(Int32 program, OpenTK.Graphics.ProgramParameter pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.OpenGL.ProgramParameter)pname, (Int32*)@params_ptr); + Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.ProgramParameter)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -9967,16 +9967,16 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL.ProgramParameter pname, [Out] Int32* @params) + unsafe void GetProgram(UInt32 program, OpenTK.Graphics.ProgramParameter pname, [Out] Int32* @params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.OpenGL.ProgramParameter)pname, (Int32*)@params); + Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.ProgramParameter)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetProgram(Int32 program, OpenTK.Graphics.OpenGL.ProgramParameter pname, [Out] Int32* @params) + unsafe void GetProgram(Int32 program, OpenTK.Graphics.ProgramParameter pname, [Out] Int32* @params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.OpenGL.ProgramParameter)pname, (Int32*)@params); + Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.ProgramParameter)pname, (Int32*)@params); } [System.CLSCompliant(false)] @@ -10047,51 +10047,51 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void GetShader(UInt32 shader, OpenTK.Graphics.OpenGL.ShaderParameter pname, [Out] Int32[] @params) + void GetShader(UInt32 shader, OpenTK.Graphics.ShaderParameter pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.OpenGL.ShaderParameter)pname, (Int32*)@params_ptr); + Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.ShaderParameter)pname, (Int32*)@params_ptr); } } } public static - void GetShader(Int32 shader, OpenTK.Graphics.OpenGL.ShaderParameter pname, [Out] Int32[] @params) + void GetShader(Int32 shader, OpenTK.Graphics.ShaderParameter pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.OpenGL.ShaderParameter)pname, (Int32*)@params_ptr); + Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.ShaderParameter)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetShader(UInt32 shader, OpenTK.Graphics.OpenGL.ShaderParameter pname, [Out] out Int32 @params) + void GetShader(UInt32 shader, OpenTK.Graphics.ShaderParameter pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.OpenGL.ShaderParameter)pname, (Int32*)@params_ptr); + Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.ShaderParameter)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } } public static - void GetShader(Int32 shader, OpenTK.Graphics.OpenGL.ShaderParameter pname, [Out] out Int32 @params) + void GetShader(Int32 shader, OpenTK.Graphics.ShaderParameter pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.OpenGL.ShaderParameter)pname, (Int32*)@params_ptr); + Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.ShaderParameter)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -10099,16 +10099,16 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetShader(UInt32 shader, OpenTK.Graphics.OpenGL.ShaderParameter pname, [Out] Int32* @params) + unsafe void GetShader(UInt32 shader, OpenTK.Graphics.ShaderParameter pname, [Out] Int32* @params) { - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.OpenGL.ShaderParameter)pname, (Int32*)@params); + Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.ShaderParameter)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetShader(Int32 shader, OpenTK.Graphics.OpenGL.ShaderParameter pname, [Out] Int32* @params) + unsafe void GetShader(Int32 shader, OpenTK.Graphics.ShaderParameter pname, [Out] Int32* @params) { - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.OpenGL.ShaderParameter)pname, (Int32*)@params); + Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.ShaderParameter)pname, (Int32*)@params); } [System.CLSCompliant(false)] @@ -10390,51 +10390,51 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [Out] Double[] @params) + void GetVertexAttrib(UInt32 index, OpenTK.Graphics.VertexAttribParameter pname, [Out] Double[] @params) { unsafe { fixed (Double* @params_ptr = @params) { - Delegates.glGetVertexAttribdv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Double*)@params_ptr); + Delegates.glGetVertexAttribdv((UInt32)index, (OpenTK.Graphics.VertexAttribParameter)pname, (Double*)@params_ptr); } } } public static - void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [Out] Double[] @params) + void GetVertexAttrib(Int32 index, OpenTK.Graphics.VertexAttribParameter pname, [Out] Double[] @params) { unsafe { fixed (Double* @params_ptr = @params) { - Delegates.glGetVertexAttribdv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Double*)@params_ptr); + Delegates.glGetVertexAttribdv((UInt32)index, (OpenTK.Graphics.VertexAttribParameter)pname, (Double*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [Out] out Double @params) + void GetVertexAttrib(UInt32 index, OpenTK.Graphics.VertexAttribParameter pname, [Out] out Double @params) { unsafe { fixed (Double* @params_ptr = &@params) { - Delegates.glGetVertexAttribdv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Double*)@params_ptr); + Delegates.glGetVertexAttribdv((UInt32)index, (OpenTK.Graphics.VertexAttribParameter)pname, (Double*)@params_ptr); @params = *@params_ptr; } } } public static - void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [Out] out Double @params) + void GetVertexAttrib(Int32 index, OpenTK.Graphics.VertexAttribParameter pname, [Out] out Double @params) { unsafe { fixed (Double* @params_ptr = &@params) { - Delegates.glGetVertexAttribdv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Double*)@params_ptr); + Delegates.glGetVertexAttribdv((UInt32)index, (OpenTK.Graphics.VertexAttribParameter)pname, (Double*)@params_ptr); @params = *@params_ptr; } } @@ -10442,65 +10442,65 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [Out] Double* @params) + unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.VertexAttribParameter pname, [Out] Double* @params) { - Delegates.glGetVertexAttribdv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Double*)@params); + Delegates.glGetVertexAttribdv((UInt32)index, (OpenTK.Graphics.VertexAttribParameter)pname, (Double*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [Out] Double* @params) + unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.VertexAttribParameter pname, [Out] Double* @params) { - Delegates.glGetVertexAttribdv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Double*)@params); + Delegates.glGetVertexAttribdv((UInt32)index, (OpenTK.Graphics.VertexAttribParameter)pname, (Double*)@params); } [System.CLSCompliant(false)] public static - void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [Out] Single[] @params) + void GetVertexAttrib(UInt32 index, OpenTK.Graphics.VertexAttribParameter pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Single*)@params_ptr); + Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.VertexAttribParameter)pname, (Single*)@params_ptr); } } } public static - void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [Out] Single[] @params) + void GetVertexAttrib(Int32 index, OpenTK.Graphics.VertexAttribParameter pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Single*)@params_ptr); + Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.VertexAttribParameter)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [Out] out Single @params) + void GetVertexAttrib(UInt32 index, OpenTK.Graphics.VertexAttribParameter pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Single*)@params_ptr); + Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.VertexAttribParameter)pname, (Single*)@params_ptr); @params = *@params_ptr; } } } public static - void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [Out] out Single @params) + void GetVertexAttrib(Int32 index, OpenTK.Graphics.VertexAttribParameter pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Single*)@params_ptr); + Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.VertexAttribParameter)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -10508,65 +10508,65 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [Out] Single* @params) + unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.VertexAttribParameter pname, [Out] Single* @params) { - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Single*)@params); + Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.VertexAttribParameter)pname, (Single*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [Out] Single* @params) + unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.VertexAttribParameter pname, [Out] Single* @params) { - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Single*)@params); + Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.VertexAttribParameter)pname, (Single*)@params); } [System.CLSCompliant(false)] public static - void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [Out] Int32[] @params) + void GetVertexAttrib(UInt32 index, OpenTK.Graphics.VertexAttribParameter pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Int32*)@params_ptr); + Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.VertexAttribParameter)pname, (Int32*)@params_ptr); } } } public static - void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [Out] Int32[] @params) + void GetVertexAttrib(Int32 index, OpenTK.Graphics.VertexAttribParameter pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Int32*)@params_ptr); + Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.VertexAttribParameter)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [Out] out Int32 @params) + void GetVertexAttrib(UInt32 index, OpenTK.Graphics.VertexAttribParameter pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Int32*)@params_ptr); + Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.VertexAttribParameter)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } } public static - void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [Out] out Int32 @params) + void GetVertexAttrib(Int32 index, OpenTK.Graphics.VertexAttribParameter pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Int32*)@params_ptr); + Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.VertexAttribParameter)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -10574,47 +10574,47 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [Out] Int32* @params) + unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.VertexAttribParameter pname, [Out] Int32* @params) { - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Int32*)@params); + Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.VertexAttribParameter)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [Out] Int32* @params) + unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.VertexAttribParameter pname, [Out] Int32* @params) { - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Int32*)@params); + Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.VertexAttribParameter)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameter pname, [Out] IntPtr pointer) + void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.VertexAttribPointerParameter pname, [Out] IntPtr pointer) { unsafe { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameter)pname, (IntPtr)pointer); + Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.VertexAttribPointerParameter)pname, (IntPtr)pointer); } } public static - void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameter pname, [Out] IntPtr pointer) + void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.VertexAttribPointerParameter pname, [Out] IntPtr pointer) { unsafe { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameter)pname, (IntPtr)pointer); + Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.VertexAttribPointerParameter)pname, (IntPtr)pointer); } } [System.CLSCompliant(false)] public static - void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameter pname, [In, Out] object pointer) + void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.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.Graphics.OpenGL.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -10624,14 +10624,14 @@ namespace OpenTK.Graphics.OpenGL } public static - void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameter pname, [In, Out] object pointer) + void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.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.Graphics.OpenGL.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -12615,33 +12615,33 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, IntPtr pointer) + void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.VertexAttribPointerType type, bool normalized, Int32 stride, IntPtr pointer) { unsafe { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); + Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); } } public static - void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, IntPtr pointer) + void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.VertexAttribPointerType type, bool normalized, Int32 stride, IntPtr pointer) { unsafe { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); + Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); } } [System.CLSCompliant(false)] public static - void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, [In, Out] object pointer) + void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.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.Graphics.OpenGL.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -12651,14 +12651,14 @@ namespace OpenTK.Graphics.OpenGL } public static - void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, [In, Out] object pointer) + void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.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.Graphics.OpenGL.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -12938,9 +12938,9 @@ namespace OpenTK.Graphics.OpenGL } public static - void TextureLightEXT(OpenTK.Graphics.OpenGL.All pname) + void TextureLightEXT(OpenTK.Graphics.All pname) { - Delegates.glTextureLightEXT((OpenTK.Graphics.OpenGL.All)pname); + Delegates.glTextureLightEXT((OpenTK.Graphics.All)pname); } [System.CLSCompliant(false)] @@ -12971,33 +12971,33 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void SetInvariantEXT(UInt32 id, OpenTK.Graphics.OpenGL.All type, IntPtr addr) + void SetInvariantEXT(UInt32 id, OpenTK.Graphics.All type, IntPtr addr) { unsafe { - Delegates.glSetInvariantEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)addr); + Delegates.glSetInvariantEXT((UInt32)id, (OpenTK.Graphics.All)type, (IntPtr)addr); } } public static - void SetInvariantEXT(Int32 id, OpenTK.Graphics.OpenGL.All type, IntPtr addr) + void SetInvariantEXT(Int32 id, OpenTK.Graphics.All type, IntPtr addr) { unsafe { - Delegates.glSetInvariantEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)addr); + Delegates.glSetInvariantEXT((UInt32)id, (OpenTK.Graphics.All)type, (IntPtr)addr); } } [System.CLSCompliant(false)] public static - void SetInvariantEXT(UInt32 id, OpenTK.Graphics.OpenGL.All type, [In, Out] object addr) + void SetInvariantEXT(UInt32 id, OpenTK.Graphics.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.Graphics.OpenGL.All)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); + Delegates.glSetInvariantEXT((UInt32)id, (OpenTK.Graphics.All)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); } finally { @@ -13007,14 +13007,14 @@ namespace OpenTK.Graphics.OpenGL } public static - void SetInvariantEXT(Int32 id, OpenTK.Graphics.OpenGL.All type, [In, Out] object addr) + void SetInvariantEXT(Int32 id, OpenTK.Graphics.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.Graphics.OpenGL.All)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); + Delegates.glSetInvariantEXT((UInt32)id, (OpenTK.Graphics.All)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); } finally { @@ -13025,33 +13025,33 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void SetLocalConstantEXT(UInt32 id, OpenTK.Graphics.OpenGL.All type, IntPtr addr) + void SetLocalConstantEXT(UInt32 id, OpenTK.Graphics.All type, IntPtr addr) { unsafe { - Delegates.glSetLocalConstantEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)addr); + Delegates.glSetLocalConstantEXT((UInt32)id, (OpenTK.Graphics.All)type, (IntPtr)addr); } } public static - void SetLocalConstantEXT(Int32 id, OpenTK.Graphics.OpenGL.All type, IntPtr addr) + void SetLocalConstantEXT(Int32 id, OpenTK.Graphics.All type, IntPtr addr) { unsafe { - Delegates.glSetLocalConstantEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)addr); + Delegates.glSetLocalConstantEXT((UInt32)id, (OpenTK.Graphics.All)type, (IntPtr)addr); } } [System.CLSCompliant(false)] public static - void SetLocalConstantEXT(UInt32 id, OpenTK.Graphics.OpenGL.All type, [In, Out] object addr) + void SetLocalConstantEXT(UInt32 id, OpenTK.Graphics.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.Graphics.OpenGL.All)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); + Delegates.glSetLocalConstantEXT((UInt32)id, (OpenTK.Graphics.All)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); } finally { @@ -13061,14 +13061,14 @@ namespace OpenTK.Graphics.OpenGL } public static - void SetLocalConstantEXT(Int32 id, OpenTK.Graphics.OpenGL.All type, [In, Out] object addr) + void SetLocalConstantEXT(Int32 id, OpenTK.Graphics.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.Graphics.OpenGL.All)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); + Delegates.glSetLocalConstantEXT((UInt32)id, (OpenTK.Graphics.All)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); } finally { @@ -13093,25 +13093,25 @@ namespace OpenTK.Graphics.OpenGL public static partial class NV { public static - void GetBoolea(OpenTK.Graphics.OpenGL.GetPName pname, [Out] bool[] @params) + void GetBoolea(OpenTK.Graphics.GetPName pname, [Out] bool[] @params) { unsafe { fixed (bool* @params_ptr = @params) { - Delegates.glGetBooleanv((OpenTK.Graphics.OpenGL.GetPName)pname, (bool*)@params_ptr); + Delegates.glGetBooleanv((OpenTK.Graphics.GetPName)pname, (bool*)@params_ptr); } } } public static - void GetBoolea(OpenTK.Graphics.OpenGL.GetPName pname, [Out] out bool @params) + void GetBoolea(OpenTK.Graphics.GetPName pname, [Out] out bool @params) { unsafe { fixed (bool* @params_ptr = &@params) { - Delegates.glGetBooleanv((OpenTK.Graphics.OpenGL.GetPName)pname, (bool*)@params_ptr); + Delegates.glGetBooleanv((OpenTK.Graphics.GetPName)pname, (bool*)@params_ptr); @params = *@params_ptr; } } @@ -13119,9 +13119,9 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetBoolea(OpenTK.Graphics.OpenGL.GetPName pname, [Out] bool* @params) + unsafe void GetBoolea(OpenTK.Graphics.GetPName pname, [Out] bool* @params) { - Delegates.glGetBooleanv((OpenTK.Graphics.OpenGL.GetPName)pname, (bool*)@params); + Delegates.glGetBooleanv((OpenTK.Graphics.GetPName)pname, (bool*)@params); } public static @@ -13157,117 +13157,117 @@ namespace OpenTK.Graphics.OpenGL } public static - void CombinerParameterv(OpenTK.Graphics.OpenGL.All pname, Single[] @params) + void CombinerParameterv(OpenTK.Graphics.All pname, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glCombinerParameterfvNV((OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glCombinerParameterfvNV((OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void CombinerParameterv(OpenTK.Graphics.OpenGL.All pname, ref Single @params) + void CombinerParameterv(OpenTK.Graphics.All pname, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glCombinerParameterfvNV((OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glCombinerParameterfvNV((OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void CombinerParameterv(OpenTK.Graphics.OpenGL.All pname, Single* @params) + unsafe void CombinerParameterv(OpenTK.Graphics.All pname, Single* @params) { - Delegates.glCombinerParameterfvNV((OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glCombinerParameterfvNV((OpenTK.Graphics.All)pname, (Single*)@params); } public static - void CombinerParameter(OpenTK.Graphics.OpenGL.All pname, Single param) + void CombinerParameter(OpenTK.Graphics.All pname, Single param) { - Delegates.glCombinerParameterfNV((OpenTK.Graphics.OpenGL.All)pname, (Single)param); + Delegates.glCombinerParameterfNV((OpenTK.Graphics.All)pname, (Single)param); } public static - void CombinerParameterv(OpenTK.Graphics.OpenGL.All pname, Int32[] @params) + void CombinerParameterv(OpenTK.Graphics.All pname, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glCombinerParameterivNV((OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glCombinerParameterivNV((OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void CombinerParameterv(OpenTK.Graphics.OpenGL.All pname, ref Int32 @params) + void CombinerParameterv(OpenTK.Graphics.All pname, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glCombinerParameterivNV((OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glCombinerParameterivNV((OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void CombinerParameterv(OpenTK.Graphics.OpenGL.All pname, Int32* @params) + unsafe void CombinerParameterv(OpenTK.Graphics.All pname, Int32* @params) { - Delegates.glCombinerParameterivNV((OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glCombinerParameterivNV((OpenTK.Graphics.All)pname, (Int32*)@params); } public static - void CombinerParameter(OpenTK.Graphics.OpenGL.All pname, Int32 param) + void CombinerParameter(OpenTK.Graphics.All pname, Int32 param) { - Delegates.glCombinerParameteriNV((OpenTK.Graphics.OpenGL.All)pname, (Int32)param); + Delegates.glCombinerParameteriNV((OpenTK.Graphics.All)pname, (Int32)param); } public static - void CombinerInput(OpenTK.Graphics.OpenGL.All stage, OpenTK.Graphics.OpenGL.All portion, OpenTK.Graphics.OpenGL.All variable, OpenTK.Graphics.OpenGL.All input, OpenTK.Graphics.OpenGL.All mapping, OpenTK.Graphics.OpenGL.All componentUsage) + void CombinerInput(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All variable, OpenTK.Graphics.All input, OpenTK.Graphics.All mapping, OpenTK.Graphics.All componentUsage) { - Delegates.glCombinerInputNV((OpenTK.Graphics.OpenGL.All)stage, (OpenTK.Graphics.OpenGL.All)portion, (OpenTK.Graphics.OpenGL.All)variable, (OpenTK.Graphics.OpenGL.All)input, (OpenTK.Graphics.OpenGL.All)mapping, (OpenTK.Graphics.OpenGL.All)componentUsage); + Delegates.glCombinerInputNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)portion, (OpenTK.Graphics.All)variable, (OpenTK.Graphics.All)input, (OpenTK.Graphics.All)mapping, (OpenTK.Graphics.All)componentUsage); } public static - void CombinerOutput(OpenTK.Graphics.OpenGL.All stage, OpenTK.Graphics.OpenGL.All portion, OpenTK.Graphics.OpenGL.All abOutput, OpenTK.Graphics.OpenGL.All cdOutput, OpenTK.Graphics.OpenGL.All sumOutput, OpenTK.Graphics.OpenGL.All scale, OpenTK.Graphics.OpenGL.All bias, bool abDotProduct, bool cdDotProduct, bool muxSum) + void CombinerOutput(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All abOutput, OpenTK.Graphics.All cdOutput, OpenTK.Graphics.All sumOutput, OpenTK.Graphics.All scale, OpenTK.Graphics.All bias, bool abDotProduct, bool cdDotProduct, bool muxSum) { - Delegates.glCombinerOutputNV((OpenTK.Graphics.OpenGL.All)stage, (OpenTK.Graphics.OpenGL.All)portion, (OpenTK.Graphics.OpenGL.All)abOutput, (OpenTK.Graphics.OpenGL.All)cdOutput, (OpenTK.Graphics.OpenGL.All)sumOutput, (OpenTK.Graphics.OpenGL.All)scale, (OpenTK.Graphics.OpenGL.All)bias, (bool)abDotProduct, (bool)cdDotProduct, (bool)muxSum); + Delegates.glCombinerOutputNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)portion, (OpenTK.Graphics.All)abOutput, (OpenTK.Graphics.All)cdOutput, (OpenTK.Graphics.All)sumOutput, (OpenTK.Graphics.All)scale, (OpenTK.Graphics.All)bias, (bool)abDotProduct, (bool)cdDotProduct, (bool)muxSum); } public static - void FinalCombinerInput(OpenTK.Graphics.OpenGL.All variable, OpenTK.Graphics.OpenGL.All input, OpenTK.Graphics.OpenGL.All mapping, OpenTK.Graphics.OpenGL.All componentUsage) + void FinalCombinerInput(OpenTK.Graphics.All variable, OpenTK.Graphics.All input, OpenTK.Graphics.All mapping, OpenTK.Graphics.All componentUsage) { - Delegates.glFinalCombinerInputNV((OpenTK.Graphics.OpenGL.All)variable, (OpenTK.Graphics.OpenGL.All)input, (OpenTK.Graphics.OpenGL.All)mapping, (OpenTK.Graphics.OpenGL.All)componentUsage); + Delegates.glFinalCombinerInputNV((OpenTK.Graphics.All)variable, (OpenTK.Graphics.All)input, (OpenTK.Graphics.All)mapping, (OpenTK.Graphics.All)componentUsage); } public static - void GetCombinerInputParameter(OpenTK.Graphics.OpenGL.All stage, OpenTK.Graphics.OpenGL.All portion, OpenTK.Graphics.OpenGL.All variable, OpenTK.Graphics.OpenGL.All pname, [Out] Single[] @params) + void GetCombinerInputParameter(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All variable, OpenTK.Graphics.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetCombinerInputParameterfvNV((OpenTK.Graphics.OpenGL.All)stage, (OpenTK.Graphics.OpenGL.All)portion, (OpenTK.Graphics.OpenGL.All)variable, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetCombinerInputParameterfvNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)portion, (OpenTK.Graphics.All)variable, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void GetCombinerInputParameter(OpenTK.Graphics.OpenGL.All stage, OpenTK.Graphics.OpenGL.All portion, OpenTK.Graphics.OpenGL.All variable, OpenTK.Graphics.OpenGL.All pname, [Out] out Single @params) + void GetCombinerInputParameter(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All variable, OpenTK.Graphics.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetCombinerInputParameterfvNV((OpenTK.Graphics.OpenGL.All)stage, (OpenTK.Graphics.OpenGL.All)portion, (OpenTK.Graphics.OpenGL.All)variable, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetCombinerInputParameterfvNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)portion, (OpenTK.Graphics.All)variable, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -13275,31 +13275,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetCombinerInputParameter(OpenTK.Graphics.OpenGL.All stage, OpenTK.Graphics.OpenGL.All portion, OpenTK.Graphics.OpenGL.All variable, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params) + unsafe void GetCombinerInputParameter(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All variable, OpenTK.Graphics.All pname, [Out] Single* @params) { - Delegates.glGetCombinerInputParameterfvNV((OpenTK.Graphics.OpenGL.All)stage, (OpenTK.Graphics.OpenGL.All)portion, (OpenTK.Graphics.OpenGL.All)variable, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glGetCombinerInputParameterfvNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)portion, (OpenTK.Graphics.All)variable, (OpenTK.Graphics.All)pname, (Single*)@params); } public static - void GetCombinerInputParameter(OpenTK.Graphics.OpenGL.All stage, OpenTK.Graphics.OpenGL.All portion, OpenTK.Graphics.OpenGL.All variable, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetCombinerInputParameter(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All variable, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetCombinerInputParameterivNV((OpenTK.Graphics.OpenGL.All)stage, (OpenTK.Graphics.OpenGL.All)portion, (OpenTK.Graphics.OpenGL.All)variable, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetCombinerInputParameterivNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)portion, (OpenTK.Graphics.All)variable, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void GetCombinerInputParameter(OpenTK.Graphics.OpenGL.All stage, OpenTK.Graphics.OpenGL.All portion, OpenTK.Graphics.OpenGL.All variable, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetCombinerInputParameter(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All variable, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetCombinerInputParameterivNV((OpenTK.Graphics.OpenGL.All)stage, (OpenTK.Graphics.OpenGL.All)portion, (OpenTK.Graphics.OpenGL.All)variable, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetCombinerInputParameterivNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)portion, (OpenTK.Graphics.All)variable, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -13307,31 +13307,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetCombinerInputParameter(OpenTK.Graphics.OpenGL.All stage, OpenTK.Graphics.OpenGL.All portion, OpenTK.Graphics.OpenGL.All variable, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetCombinerInputParameter(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All variable, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetCombinerInputParameterivNV((OpenTK.Graphics.OpenGL.All)stage, (OpenTK.Graphics.OpenGL.All)portion, (OpenTK.Graphics.OpenGL.All)variable, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glGetCombinerInputParameterivNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)portion, (OpenTK.Graphics.All)variable, (OpenTK.Graphics.All)pname, (Int32*)@params); } public static - void GetCombinerOutputParameter(OpenTK.Graphics.OpenGL.All stage, OpenTK.Graphics.OpenGL.All portion, OpenTK.Graphics.OpenGL.All pname, [Out] Single[] @params) + void GetCombinerOutputParameter(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetCombinerOutputParameterfvNV((OpenTK.Graphics.OpenGL.All)stage, (OpenTK.Graphics.OpenGL.All)portion, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetCombinerOutputParameterfvNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)portion, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void GetCombinerOutputParameter(OpenTK.Graphics.OpenGL.All stage, OpenTK.Graphics.OpenGL.All portion, OpenTK.Graphics.OpenGL.All pname, [Out] out Single @params) + void GetCombinerOutputParameter(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetCombinerOutputParameterfvNV((OpenTK.Graphics.OpenGL.All)stage, (OpenTK.Graphics.OpenGL.All)portion, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetCombinerOutputParameterfvNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)portion, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -13339,31 +13339,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetCombinerOutputParameter(OpenTK.Graphics.OpenGL.All stage, OpenTK.Graphics.OpenGL.All portion, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params) + unsafe void GetCombinerOutputParameter(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All pname, [Out] Single* @params) { - Delegates.glGetCombinerOutputParameterfvNV((OpenTK.Graphics.OpenGL.All)stage, (OpenTK.Graphics.OpenGL.All)portion, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glGetCombinerOutputParameterfvNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)portion, (OpenTK.Graphics.All)pname, (Single*)@params); } public static - void GetCombinerOutputParameter(OpenTK.Graphics.OpenGL.All stage, OpenTK.Graphics.OpenGL.All portion, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetCombinerOutputParameter(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetCombinerOutputParameterivNV((OpenTK.Graphics.OpenGL.All)stage, (OpenTK.Graphics.OpenGL.All)portion, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetCombinerOutputParameterivNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)portion, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void GetCombinerOutputParameter(OpenTK.Graphics.OpenGL.All stage, OpenTK.Graphics.OpenGL.All portion, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetCombinerOutputParameter(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetCombinerOutputParameterivNV((OpenTK.Graphics.OpenGL.All)stage, (OpenTK.Graphics.OpenGL.All)portion, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetCombinerOutputParameterivNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)portion, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -13371,31 +13371,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetCombinerOutputParameter(OpenTK.Graphics.OpenGL.All stage, OpenTK.Graphics.OpenGL.All portion, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetCombinerOutputParameter(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetCombinerOutputParameterivNV((OpenTK.Graphics.OpenGL.All)stage, (OpenTK.Graphics.OpenGL.All)portion, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glGetCombinerOutputParameterivNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)portion, (OpenTK.Graphics.All)pname, (Int32*)@params); } public static - void GetFinalCombinerInputParameter(OpenTK.Graphics.OpenGL.All variable, OpenTK.Graphics.OpenGL.All pname, [Out] Single[] @params) + void GetFinalCombinerInputParameter(OpenTK.Graphics.All variable, OpenTK.Graphics.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetFinalCombinerInputParameterfvNV((OpenTK.Graphics.OpenGL.All)variable, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetFinalCombinerInputParameterfvNV((OpenTK.Graphics.All)variable, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void GetFinalCombinerInputParameter(OpenTK.Graphics.OpenGL.All variable, OpenTK.Graphics.OpenGL.All pname, [Out] out Single @params) + void GetFinalCombinerInputParameter(OpenTK.Graphics.All variable, OpenTK.Graphics.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetFinalCombinerInputParameterfvNV((OpenTK.Graphics.OpenGL.All)variable, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetFinalCombinerInputParameterfvNV((OpenTK.Graphics.All)variable, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -13403,31 +13403,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetFinalCombinerInputParameter(OpenTK.Graphics.OpenGL.All variable, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params) + unsafe void GetFinalCombinerInputParameter(OpenTK.Graphics.All variable, OpenTK.Graphics.All pname, [Out] Single* @params) { - Delegates.glGetFinalCombinerInputParameterfvNV((OpenTK.Graphics.OpenGL.All)variable, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glGetFinalCombinerInputParameterfvNV((OpenTK.Graphics.All)variable, (OpenTK.Graphics.All)pname, (Single*)@params); } public static - void GetFinalCombinerInputParameter(OpenTK.Graphics.OpenGL.All variable, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetFinalCombinerInputParameter(OpenTK.Graphics.All variable, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetFinalCombinerInputParameterivNV((OpenTK.Graphics.OpenGL.All)variable, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetFinalCombinerInputParameterivNV((OpenTK.Graphics.All)variable, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void GetFinalCombinerInputParameter(OpenTK.Graphics.OpenGL.All variable, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetFinalCombinerInputParameter(OpenTK.Graphics.All variable, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetFinalCombinerInputParameterivNV((OpenTK.Graphics.OpenGL.All)variable, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetFinalCombinerInputParameterivNV((OpenTK.Graphics.All)variable, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -13435,9 +13435,9 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetFinalCombinerInputParameter(OpenTK.Graphics.OpenGL.All variable, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetFinalCombinerInputParameter(OpenTK.Graphics.All variable, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetFinalCombinerInputParameterivNV((OpenTK.Graphics.OpenGL.All)variable, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glGetFinalCombinerInputParameterivNV((OpenTK.Graphics.All)variable, (OpenTK.Graphics.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] @@ -13598,51 +13598,51 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void GetFence(UInt32 fence, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetFence(UInt32 fence, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void GetFence(Int32 fence, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetFence(Int32 fence, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetFence(UInt32 fence, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetFence(UInt32 fence, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } } public static - void GetFence(Int32 fence, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetFence(Int32 fence, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -13650,16 +13650,16 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetFence(UInt32 fence, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetFence(UInt32 fence, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetFence(Int32 fence, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetFence(Int32 fence, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] @@ -13677,46 +13677,46 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void SetFence(UInt32 fence, OpenTK.Graphics.OpenGL.All condition) + void SetFence(UInt32 fence, OpenTK.Graphics.All condition) { - Delegates.glSetFenceNV((UInt32)fence, (OpenTK.Graphics.OpenGL.All)condition); + Delegates.glSetFenceNV((UInt32)fence, (OpenTK.Graphics.All)condition); } public static - void SetFence(Int32 fence, OpenTK.Graphics.OpenGL.All condition) + void SetFence(Int32 fence, OpenTK.Graphics.All condition) { - Delegates.glSetFenceNV((UInt32)fence, (OpenTK.Graphics.OpenGL.All)condition); + Delegates.glSetFenceNV((UInt32)fence, (OpenTK.Graphics.All)condition); } [System.CLSCompliant(false)] public static - void MapControlPoints(OpenTK.Graphics.OpenGL.All target, UInt32 index, OpenTK.Graphics.OpenGL.All type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, IntPtr points) + void MapControlPoints(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, IntPtr points) { unsafe { - Delegates.glMapControlPointsNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (OpenTK.Graphics.OpenGL.All)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points); + Delegates.glMapControlPointsNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points); } } public static - void MapControlPoints(OpenTK.Graphics.OpenGL.All target, Int32 index, OpenTK.Graphics.OpenGL.All type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, IntPtr points) + void MapControlPoints(OpenTK.Graphics.All target, Int32 index, OpenTK.Graphics.All type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, IntPtr points) { unsafe { - Delegates.glMapControlPointsNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (OpenTK.Graphics.OpenGL.All)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points); + Delegates.glMapControlPointsNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points); } } [System.CLSCompliant(false)] public static - void MapControlPoints(OpenTK.Graphics.OpenGL.All target, UInt32 index, OpenTK.Graphics.OpenGL.All type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, [In, Out] object points) + void MapControlPoints(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.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.Graphics.OpenGL.All)target, (UInt32)index, (OpenTK.Graphics.OpenGL.All)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); + Delegates.glMapControlPointsNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); } finally { @@ -13726,14 +13726,14 @@ namespace OpenTK.Graphics.OpenGL } public static - void MapControlPoints(OpenTK.Graphics.OpenGL.All target, Int32 index, OpenTK.Graphics.OpenGL.All type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, [In, Out] object points) + void MapControlPoints(OpenTK.Graphics.All target, Int32 index, OpenTK.Graphics.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.Graphics.OpenGL.All)target, (UInt32)index, (OpenTK.Graphics.OpenGL.All)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); + Delegates.glMapControlPointsNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); } finally { @@ -13743,96 +13743,96 @@ namespace OpenTK.Graphics.OpenGL } public static - void MapParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Int32[] @params) + void MapParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glMapParameterivNV((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glMapParameterivNV((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void MapParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, ref Int32 @params) + void MapParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glMapParameterivNV((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glMapParameterivNV((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MapParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Int32* @params) + unsafe void MapParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32* @params) { - Delegates.glMapParameterivNV((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glMapParameterivNV((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params); } public static - void MapParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Single[] @params) + void MapParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glMapParameterfvNV((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glMapParameterfvNV((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void MapParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, ref Single @params) + void MapParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glMapParameterfvNV((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glMapParameterfvNV((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MapParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Single* @params) + unsafe void MapParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single* @params) { - Delegates.glMapParameterfvNV((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glMapParameterfvNV((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params); } [System.CLSCompliant(false)] public static - void GetMapControlPoints(OpenTK.Graphics.OpenGL.All target, UInt32 index, OpenTK.Graphics.OpenGL.All type, Int32 ustride, Int32 vstride, bool packed, [Out] IntPtr points) + void GetMapControlPoints(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All type, Int32 ustride, Int32 vstride, bool packed, [Out] IntPtr points) { unsafe { - Delegates.glGetMapControlPointsNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (OpenTK.Graphics.OpenGL.All)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points); + Delegates.glGetMapControlPointsNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points); } } public static - void GetMapControlPoints(OpenTK.Graphics.OpenGL.All target, Int32 index, OpenTK.Graphics.OpenGL.All type, Int32 ustride, Int32 vstride, bool packed, [Out] IntPtr points) + void GetMapControlPoints(OpenTK.Graphics.All target, Int32 index, OpenTK.Graphics.All type, Int32 ustride, Int32 vstride, bool packed, [Out] IntPtr points) { unsafe { - Delegates.glGetMapControlPointsNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (OpenTK.Graphics.OpenGL.All)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points); + Delegates.glGetMapControlPointsNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points); } } [System.CLSCompliant(false)] public static - void GetMapControlPoints(OpenTK.Graphics.OpenGL.All target, UInt32 index, OpenTK.Graphics.OpenGL.All type, Int32 ustride, Int32 vstride, bool packed, [In, Out] object points) + void GetMapControlPoints(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.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.Graphics.OpenGL.All)target, (UInt32)index, (OpenTK.Graphics.OpenGL.All)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); + Delegates.glGetMapControlPointsNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); } finally { @@ -13842,14 +13842,14 @@ namespace OpenTK.Graphics.OpenGL } public static - void GetMapControlPoints(OpenTK.Graphics.OpenGL.All target, Int32 index, OpenTK.Graphics.OpenGL.All type, Int32 ustride, Int32 vstride, bool packed, [In, Out] object points) + void GetMapControlPoints(OpenTK.Graphics.All target, Int32 index, OpenTK.Graphics.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.Graphics.OpenGL.All)target, (UInt32)index, (OpenTK.Graphics.OpenGL.All)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); + Delegates.glGetMapControlPointsNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); } finally { @@ -13859,25 +13859,25 @@ namespace OpenTK.Graphics.OpenGL } public static - void GetMapParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetMapParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetMapParameterivNV((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetMapParameterivNV((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void GetMapParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetMapParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetMapParameterivNV((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetMapParameterivNV((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -13885,31 +13885,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetMapParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetMapParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetMapParameterivNV((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glGetMapParameterivNV((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params); } public static - void GetMapParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Single[] @params) + void GetMapParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetMapParameterfvNV((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetMapParameterfvNV((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void GetMapParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] out Single @params) + void GetMapParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetMapParameterfvNV((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetMapParameterfvNV((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -13917,58 +13917,58 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetMapParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params) + unsafe void GetMapParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params) { - Delegates.glGetMapParameterfvNV((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glGetMapParameterfvNV((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params); } [System.CLSCompliant(false)] public static - void GetMapAttribParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetMapAttribParameter(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetMapAttribParameterivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetMapAttribParameterivNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void GetMapAttribParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetMapAttribParameter(OpenTK.Graphics.All target, Int32 index, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetMapAttribParameterivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetMapAttribParameterivNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetMapAttribParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetMapAttribParameter(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetMapAttribParameterivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetMapAttribParameterivNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } } public static - void GetMapAttribParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetMapAttribParameter(OpenTK.Graphics.All target, Int32 index, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetMapAttribParameterivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetMapAttribParameterivNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -13976,65 +13976,65 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetMapAttribParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetMapAttribParameter(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetMapAttribParameterivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glGetMapAttribParameterivNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetMapAttribParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetMapAttribParameter(OpenTK.Graphics.All target, Int32 index, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetMapAttribParameterivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glGetMapAttribParameterivNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - void GetMapAttribParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Single[] @params) + void GetMapAttribParameter(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetMapAttribParameterfvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetMapAttribParameterfvNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void GetMapAttribParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Single[] @params) + void GetMapAttribParameter(OpenTK.Graphics.All target, Int32 index, OpenTK.Graphics.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetMapAttribParameterfvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetMapAttribParameterfvNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetMapAttribParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] out Single @params) + void GetMapAttribParameter(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetMapAttribParameterfvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetMapAttribParameterfvNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } } public static - void GetMapAttribParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, OpenTK.Graphics.OpenGL.All pname, [Out] out Single @params) + void GetMapAttribParameter(OpenTK.Graphics.All target, Int32 index, OpenTK.Graphics.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetMapAttribParameterfvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetMapAttribParameterfvNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -14042,75 +14042,75 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetMapAttribParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params) + unsafe void GetMapAttribParameter(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All pname, [Out] Single* @params) { - Delegates.glGetMapAttribParameterfvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glGetMapAttribParameterfvNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetMapAttribParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params) + unsafe void GetMapAttribParameter(OpenTK.Graphics.All target, Int32 index, OpenTK.Graphics.All pname, [Out] Single* @params) { - Delegates.glGetMapAttribParameterfvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glGetMapAttribParameterfvNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params); } public static - void EvalMap(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All mode) + void EvalMap(OpenTK.Graphics.All target, OpenTK.Graphics.All mode) { - Delegates.glEvalMapsNV((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)mode); + Delegates.glEvalMapsNV((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)mode); } public static - void CombinerStageParameter(OpenTK.Graphics.OpenGL.All stage, OpenTK.Graphics.OpenGL.All pname, Single[] @params) + void CombinerStageParameter(OpenTK.Graphics.All stage, OpenTK.Graphics.All pname, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glCombinerStageParameterfvNV((OpenTK.Graphics.OpenGL.All)stage, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glCombinerStageParameterfvNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void CombinerStageParameter(OpenTK.Graphics.OpenGL.All stage, OpenTK.Graphics.OpenGL.All pname, ref Single @params) + void CombinerStageParameter(OpenTK.Graphics.All stage, OpenTK.Graphics.All pname, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glCombinerStageParameterfvNV((OpenTK.Graphics.OpenGL.All)stage, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glCombinerStageParameterfvNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void CombinerStageParameter(OpenTK.Graphics.OpenGL.All stage, OpenTK.Graphics.OpenGL.All pname, Single* @params) + unsafe void CombinerStageParameter(OpenTK.Graphics.All stage, OpenTK.Graphics.All pname, Single* @params) { - Delegates.glCombinerStageParameterfvNV((OpenTK.Graphics.OpenGL.All)stage, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glCombinerStageParameterfvNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)pname, (Single*)@params); } public static - void GetCombinerStageParameter(OpenTK.Graphics.OpenGL.All stage, OpenTK.Graphics.OpenGL.All pname, [Out] Single[] @params) + void GetCombinerStageParameter(OpenTK.Graphics.All stage, OpenTK.Graphics.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetCombinerStageParameterfvNV((OpenTK.Graphics.OpenGL.All)stage, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetCombinerStageParameterfvNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void GetCombinerStageParameter(OpenTK.Graphics.OpenGL.All stage, OpenTK.Graphics.OpenGL.All pname, [Out] out Single @params) + void GetCombinerStageParameter(OpenTK.Graphics.All stage, OpenTK.Graphics.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetCombinerStageParameterfvNV((OpenTK.Graphics.OpenGL.All)stage, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetCombinerStageParameterfvNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -14118,9 +14118,9 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetCombinerStageParameter(OpenTK.Graphics.OpenGL.All stage, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params) + unsafe void GetCombinerStageParameter(OpenTK.Graphics.All stage, OpenTK.Graphics.All pname, [Out] Single* @params) { - Delegates.glGetCombinerStageParameterfvNV((OpenTK.Graphics.OpenGL.All)stage, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glGetCombinerStageParameterfvNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)pname, (Single*)@params); } [System.CLSCompliant(false)] @@ -14197,15 +14197,15 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void BindProgram(OpenTK.Graphics.OpenGL.All target, UInt32 id) + void BindProgram(OpenTK.Graphics.All target, UInt32 id) { - Delegates.glBindProgramNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)id); + Delegates.glBindProgramNV((OpenTK.Graphics.All)target, (UInt32)id); } public static - void BindProgram(OpenTK.Graphics.OpenGL.All target, Int32 id) + void BindProgram(OpenTK.Graphics.All target, Int32 id) { - Delegates.glBindProgramNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)id); + Delegates.glBindProgramNV((OpenTK.Graphics.All)target, (UInt32)id); } [System.CLSCompliant(false)] @@ -14274,66 +14274,66 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void ExecuteProgram(OpenTK.Graphics.OpenGL.All target, UInt32 id, Single[] @params) + void ExecuteProgram(OpenTK.Graphics.All target, UInt32 id, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glExecuteProgramNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)id, (Single*)@params_ptr); + Delegates.glExecuteProgramNV((OpenTK.Graphics.All)target, (UInt32)id, (Single*)@params_ptr); } } } public static - void ExecuteProgram(OpenTK.Graphics.OpenGL.All target, Int32 id, Single[] @params) + void ExecuteProgram(OpenTK.Graphics.All target, Int32 id, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glExecuteProgramNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)id, (Single*)@params_ptr); + Delegates.glExecuteProgramNV((OpenTK.Graphics.All)target, (UInt32)id, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void ExecuteProgram(OpenTK.Graphics.OpenGL.All target, UInt32 id, ref Single @params) + void ExecuteProgram(OpenTK.Graphics.All target, UInt32 id, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glExecuteProgramNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)id, (Single*)@params_ptr); + Delegates.glExecuteProgramNV((OpenTK.Graphics.All)target, (UInt32)id, (Single*)@params_ptr); } } } public static - void ExecuteProgram(OpenTK.Graphics.OpenGL.All target, Int32 id, ref Single @params) + void ExecuteProgram(OpenTK.Graphics.All target, Int32 id, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glExecuteProgramNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)id, (Single*)@params_ptr); + Delegates.glExecuteProgramNV((OpenTK.Graphics.All)target, (UInt32)id, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ExecuteProgram(OpenTK.Graphics.OpenGL.All target, UInt32 id, Single* @params) + unsafe void ExecuteProgram(OpenTK.Graphics.All target, UInt32 id, Single* @params) { - Delegates.glExecuteProgramNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)id, (Single*)@params); + Delegates.glExecuteProgramNV((OpenTK.Graphics.All)target, (UInt32)id, (Single*)@params); } [System.CLSCompliant(false)] public static - unsafe void ExecuteProgram(OpenTK.Graphics.OpenGL.All target, Int32 id, Single* @params) + unsafe void ExecuteProgram(OpenTK.Graphics.All target, Int32 id, Single* @params) { - Delegates.glExecuteProgramNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)id, (Single*)@params); + Delegates.glExecuteProgramNV((OpenTK.Graphics.All)target, (UInt32)id, (Single*)@params); } [System.CLSCompliant(false)] @@ -14404,51 +14404,51 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void GetProgramParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Double[] @params) + void GetProgramParameter(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All pname, [Out] Double[] @params) { unsafe { fixed (Double* @params_ptr = @params) { - Delegates.glGetProgramParameterdvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Double*)@params_ptr); + Delegates.glGetProgramParameterdvNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Double*)@params_ptr); } } } public static - void GetProgramParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Double[] @params) + void GetProgramParameter(OpenTK.Graphics.All target, Int32 index, OpenTK.Graphics.All pname, [Out] Double[] @params) { unsafe { fixed (Double* @params_ptr = @params) { - Delegates.glGetProgramParameterdvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Double*)@params_ptr); + Delegates.glGetProgramParameterdvNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Double*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetProgramParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] out Double @params) + void GetProgramParameter(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All pname, [Out] out Double @params) { unsafe { fixed (Double* @params_ptr = &@params) { - Delegates.glGetProgramParameterdvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Double*)@params_ptr); + Delegates.glGetProgramParameterdvNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Double*)@params_ptr); @params = *@params_ptr; } } } public static - void GetProgramParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, OpenTK.Graphics.OpenGL.All pname, [Out] out Double @params) + void GetProgramParameter(OpenTK.Graphics.All target, Int32 index, OpenTK.Graphics.All pname, [Out] out Double @params) { unsafe { fixed (Double* @params_ptr = &@params) { - Delegates.glGetProgramParameterdvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Double*)@params_ptr); + Delegates.glGetProgramParameterdvNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Double*)@params_ptr); @params = *@params_ptr; } } @@ -14456,65 +14456,65 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetProgramParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Double* @params) + unsafe void GetProgramParameter(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All pname, [Out] Double* @params) { - Delegates.glGetProgramParameterdvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Double*)@params); + Delegates.glGetProgramParameterdvNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Double*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetProgramParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Double* @params) + unsafe void GetProgramParameter(OpenTK.Graphics.All target, Int32 index, OpenTK.Graphics.All pname, [Out] Double* @params) { - Delegates.glGetProgramParameterdvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Double*)@params); + Delegates.glGetProgramParameterdvNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Double*)@params); } [System.CLSCompliant(false)] public static - void GetProgramParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Single[] @params) + void GetProgramParameter(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetProgramParameterfvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetProgramParameterfvNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void GetProgramParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Single[] @params) + void GetProgramParameter(OpenTK.Graphics.All target, Int32 index, OpenTK.Graphics.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetProgramParameterfvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetProgramParameterfvNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetProgramParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] out Single @params) + void GetProgramParameter(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetProgramParameterfvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetProgramParameterfvNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } } public static - void GetProgramParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, OpenTK.Graphics.OpenGL.All pname, [Out] out Single @params) + void GetProgramParameter(OpenTK.Graphics.All target, Int32 index, OpenTK.Graphics.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetProgramParameterfvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetProgramParameterfvNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -14522,65 +14522,65 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetProgramParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params) + unsafe void GetProgramParameter(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All pname, [Out] Single* @params) { - Delegates.glGetProgramParameterfvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glGetProgramParameterfvNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetProgramParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params) + unsafe void GetProgramParameter(OpenTK.Graphics.All target, Int32 index, OpenTK.Graphics.All pname, [Out] Single* @params) { - Delegates.glGetProgramParameterfvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glGetProgramParameterfvNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params); } [System.CLSCompliant(false)] public static - void GetProgram(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetProgram(UInt32 id, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramivNV((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetProgramivNV((UInt32)id, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void GetProgram(Int32 id, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetProgram(Int32 id, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramivNV((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetProgramivNV((UInt32)id, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetProgram(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetProgram(UInt32 id, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramivNV((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetProgramivNV((UInt32)id, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } } public static - void GetProgram(Int32 id, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetProgram(Int32 id, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramivNV((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetProgramivNV((UInt32)id, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -14588,65 +14588,65 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetProgram(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetProgram(UInt32 id, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetProgramivNV((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glGetProgramivNV((UInt32)id, (OpenTK.Graphics.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetProgram(Int32 id, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetProgram(Int32 id, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetProgramivNV((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glGetProgramivNV((UInt32)id, (OpenTK.Graphics.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - void GetProgramString(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] Byte[] program) + void GetProgramString(UInt32 id, OpenTK.Graphics.All pname, [Out] Byte[] program) { unsafe { fixed (Byte* program_ptr = program) { - Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (Byte*)program_ptr); + Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.Graphics.All)pname, (Byte*)program_ptr); } } } public static - void GetProgramString(Int32 id, OpenTK.Graphics.OpenGL.All pname, [Out] Byte[] program) + void GetProgramString(Int32 id, OpenTK.Graphics.All pname, [Out] Byte[] program) { unsafe { fixed (Byte* program_ptr = program) { - Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (Byte*)program_ptr); + Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.Graphics.All)pname, (Byte*)program_ptr); } } } [System.CLSCompliant(false)] public static - void GetProgramString(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] out Byte program) + void GetProgramString(UInt32 id, OpenTK.Graphics.All pname, [Out] out Byte program) { unsafe { fixed (Byte* program_ptr = &program) { - Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (Byte*)program_ptr); + Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.Graphics.All)pname, (Byte*)program_ptr); program = *program_ptr; } } } public static - void GetProgramString(Int32 id, OpenTK.Graphics.OpenGL.All pname, [Out] out Byte program) + void GetProgramString(Int32 id, OpenTK.Graphics.All pname, [Out] out Byte program) { unsafe { fixed (Byte* program_ptr = &program) { - Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (Byte*)program_ptr); + Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.Graphics.All)pname, (Byte*)program_ptr); program = *program_ptr; } } @@ -14654,65 +14654,65 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetProgramString(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] Byte* program) + unsafe void GetProgramString(UInt32 id, OpenTK.Graphics.All pname, [Out] Byte* program) { - Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (Byte*)program); + Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.Graphics.All)pname, (Byte*)program); } [System.CLSCompliant(false)] public static - unsafe void GetProgramString(Int32 id, OpenTK.Graphics.OpenGL.All pname, [Out] Byte* program) + unsafe void GetProgramString(Int32 id, OpenTK.Graphics.All pname, [Out] Byte* program) { - Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (Byte*)program); + Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.Graphics.All)pname, (Byte*)program); } [System.CLSCompliant(false)] public static - void GetTrackMatrix(OpenTK.Graphics.OpenGL.All target, UInt32 address, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetTrackMatrix(OpenTK.Graphics.All target, UInt32 address, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetTrackMatrixivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)address, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetTrackMatrixivNV((OpenTK.Graphics.All)target, (UInt32)address, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void GetTrackMatrix(OpenTK.Graphics.OpenGL.All target, Int32 address, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetTrackMatrix(OpenTK.Graphics.All target, Int32 address, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetTrackMatrixivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)address, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetTrackMatrixivNV((OpenTK.Graphics.All)target, (UInt32)address, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetTrackMatrix(OpenTK.Graphics.OpenGL.All target, UInt32 address, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetTrackMatrix(OpenTK.Graphics.All target, UInt32 address, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetTrackMatrixivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)address, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetTrackMatrixivNV((OpenTK.Graphics.All)target, (UInt32)address, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } } public static - void GetTrackMatrix(OpenTK.Graphics.OpenGL.All target, Int32 address, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetTrackMatrix(OpenTK.Graphics.All target, Int32 address, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetTrackMatrixivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)address, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetTrackMatrixivNV((OpenTK.Graphics.All)target, (UInt32)address, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -14720,65 +14720,65 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetTrackMatrix(OpenTK.Graphics.OpenGL.All target, UInt32 address, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetTrackMatrix(OpenTK.Graphics.All target, UInt32 address, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetTrackMatrixivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)address, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glGetTrackMatrixivNV((OpenTK.Graphics.All)target, (UInt32)address, (OpenTK.Graphics.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetTrackMatrix(OpenTK.Graphics.OpenGL.All target, Int32 address, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetTrackMatrix(OpenTK.Graphics.All target, Int32 address, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetTrackMatrixivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)address, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glGetTrackMatrixivNV((OpenTK.Graphics.All)target, (UInt32)address, (OpenTK.Graphics.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Double[] @params) + void GetVertexAttrib(UInt32 index, OpenTK.Graphics.All pname, [Out] Double[] @params) { unsafe { fixed (Double* @params_ptr = @params) { - Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Double*)@params_ptr); + Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.Graphics.All)pname, (Double*)@params_ptr); } } } public static - void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Double[] @params) + void GetVertexAttrib(Int32 index, OpenTK.Graphics.All pname, [Out] Double[] @params) { unsafe { fixed (Double* @params_ptr = @params) { - Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Double*)@params_ptr); + Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.Graphics.All)pname, (Double*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] out Double @params) + void GetVertexAttrib(UInt32 index, OpenTK.Graphics.All pname, [Out] out Double @params) { unsafe { fixed (Double* @params_ptr = &@params) { - Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Double*)@params_ptr); + Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.Graphics.All)pname, (Double*)@params_ptr); @params = *@params_ptr; } } } public static - void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.All pname, [Out] out Double @params) + void GetVertexAttrib(Int32 index, OpenTK.Graphics.All pname, [Out] out Double @params) { unsafe { fixed (Double* @params_ptr = &@params) { - Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Double*)@params_ptr); + Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.Graphics.All)pname, (Double*)@params_ptr); @params = *@params_ptr; } } @@ -14786,65 +14786,65 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Double* @params) + unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.All pname, [Out] Double* @params) { - Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Double*)@params); + Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.Graphics.All)pname, (Double*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Double* @params) + unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.All pname, [Out] Double* @params) { - Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Double*)@params); + Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.Graphics.All)pname, (Double*)@params); } [System.CLSCompliant(false)] public static - void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Single[] @params) + void GetVertexAttrib(UInt32 index, OpenTK.Graphics.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Single[] @params) + void GetVertexAttrib(Int32 index, OpenTK.Graphics.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] out Single @params) + void GetVertexAttrib(UInt32 index, OpenTK.Graphics.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } } public static - void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.All pname, [Out] out Single @params) + void GetVertexAttrib(Int32 index, OpenTK.Graphics.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -14852,65 +14852,65 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params) + unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.All pname, [Out] Single* @params) { - Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params) + unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.All pname, [Out] Single* @params) { - Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params); } [System.CLSCompliant(false)] public static - void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetVertexAttrib(UInt32 index, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetVertexAttrib(Int32 index, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetVertexAttrib(UInt32 index, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } } public static - void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetVertexAttrib(Int32 index, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -14918,47 +14918,47 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] IntPtr pointer) + void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.All pname, [Out] IntPtr pointer) { unsafe { - Delegates.glGetVertexAttribPointervNV((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (IntPtr)pointer); + Delegates.glGetVertexAttribPointervNV((UInt32)index, (OpenTK.Graphics.All)pname, (IntPtr)pointer); } } public static - void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.All pname, [Out] IntPtr pointer) + void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.All pname, [Out] IntPtr pointer) { unsafe { - Delegates.glGetVertexAttribPointervNV((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (IntPtr)pointer); + Delegates.glGetVertexAttribPointervNV((UInt32)index, (OpenTK.Graphics.All)pname, (IntPtr)pointer); } } [System.CLSCompliant(false)] public static - void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.All pname, [In, Out] object pointer) + void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.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.Graphics.OpenGL.All)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glGetVertexAttribPointervNV((UInt32)index, (OpenTK.Graphics.All)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -14968,14 +14968,14 @@ namespace OpenTK.Graphics.OpenGL } public static - void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.All pname, [In, Out] object pointer) + void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.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.Graphics.OpenGL.All)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glGetVertexAttribPointervNV((UInt32)index, (OpenTK.Graphics.All)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -14999,348 +14999,348 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void LoadProgram(OpenTK.Graphics.OpenGL.All target, UInt32 id, Int32 len, Byte[] program) + void LoadProgram(OpenTK.Graphics.All target, UInt32 id, Int32 len, Byte[] program) { unsafe { fixed (Byte* program_ptr = program) { - Delegates.glLoadProgramNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)id, (Int32)len, (Byte*)program_ptr); + Delegates.glLoadProgramNV((OpenTK.Graphics.All)target, (UInt32)id, (Int32)len, (Byte*)program_ptr); } } } public static - void LoadProgram(OpenTK.Graphics.OpenGL.All target, Int32 id, Int32 len, Byte[] program) + void LoadProgram(OpenTK.Graphics.All target, Int32 id, Int32 len, Byte[] program) { unsafe { fixed (Byte* program_ptr = program) { - Delegates.glLoadProgramNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)id, (Int32)len, (Byte*)program_ptr); + Delegates.glLoadProgramNV((OpenTK.Graphics.All)target, (UInt32)id, (Int32)len, (Byte*)program_ptr); } } } [System.CLSCompliant(false)] public static - void LoadProgram(OpenTK.Graphics.OpenGL.All target, UInt32 id, Int32 len, ref Byte program) + void LoadProgram(OpenTK.Graphics.All target, UInt32 id, Int32 len, ref Byte program) { unsafe { fixed (Byte* program_ptr = &program) { - Delegates.glLoadProgramNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)id, (Int32)len, (Byte*)program_ptr); + Delegates.glLoadProgramNV((OpenTK.Graphics.All)target, (UInt32)id, (Int32)len, (Byte*)program_ptr); } } } public static - void LoadProgram(OpenTK.Graphics.OpenGL.All target, Int32 id, Int32 len, ref Byte program) + void LoadProgram(OpenTK.Graphics.All target, Int32 id, Int32 len, ref Byte program) { unsafe { fixed (Byte* program_ptr = &program) { - Delegates.glLoadProgramNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)id, (Int32)len, (Byte*)program_ptr); + Delegates.glLoadProgramNV((OpenTK.Graphics.All)target, (UInt32)id, (Int32)len, (Byte*)program_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void LoadProgram(OpenTK.Graphics.OpenGL.All target, UInt32 id, Int32 len, Byte* program) + unsafe void LoadProgram(OpenTK.Graphics.All target, UInt32 id, Int32 len, Byte* program) { - Delegates.glLoadProgramNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)id, (Int32)len, (Byte*)program); + Delegates.glLoadProgramNV((OpenTK.Graphics.All)target, (UInt32)id, (Int32)len, (Byte*)program); } [System.CLSCompliant(false)] public static - unsafe void LoadProgram(OpenTK.Graphics.OpenGL.All target, Int32 id, Int32 len, Byte* program) + unsafe void LoadProgram(OpenTK.Graphics.All target, Int32 id, Int32 len, Byte* program) { - Delegates.glLoadProgramNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)id, (Int32)len, (Byte*)program); + Delegates.glLoadProgramNV((OpenTK.Graphics.All)target, (UInt32)id, (Int32)len, (Byte*)program); } [System.CLSCompliant(false)] public static - void ProgramParameter4(OpenTK.Graphics.OpenGL.All target, UInt32 index, Double x, Double y, Double z, Double w) + void ProgramParameter4(OpenTK.Graphics.All target, UInt32 index, Double x, Double y, Double z, Double w) { - Delegates.glProgramParameter4dNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); + Delegates.glProgramParameter4dNV((OpenTK.Graphics.All)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); } public static - void ProgramParameter4(OpenTK.Graphics.OpenGL.All target, Int32 index, Double x, Double y, Double z, Double w) + void ProgramParameter4(OpenTK.Graphics.All target, Int32 index, Double x, Double y, Double z, Double w) { - Delegates.glProgramParameter4dNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); + Delegates.glProgramParameter4dNV((OpenTK.Graphics.All)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); } [System.CLSCompliant(false)] public static - void ProgramParameter4(OpenTK.Graphics.OpenGL.All target, UInt32 index, Double[] v) + void ProgramParameter4(OpenTK.Graphics.All target, UInt32 index, Double[] v) { unsafe { fixed (Double* v_ptr = v) { - Delegates.glProgramParameter4dvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Double*)v_ptr); + Delegates.glProgramParameter4dvNV((OpenTK.Graphics.All)target, (UInt32)index, (Double*)v_ptr); } } } public static - void ProgramParameter4(OpenTK.Graphics.OpenGL.All target, Int32 index, Double[] v) + void ProgramParameter4(OpenTK.Graphics.All target, Int32 index, Double[] v) { unsafe { fixed (Double* v_ptr = v) { - Delegates.glProgramParameter4dvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Double*)v_ptr); + Delegates.glProgramParameter4dvNV((OpenTK.Graphics.All)target, (UInt32)index, (Double*)v_ptr); } } } [System.CLSCompliant(false)] public static - void ProgramParameter4(OpenTK.Graphics.OpenGL.All target, UInt32 index, ref Double v) + void ProgramParameter4(OpenTK.Graphics.All target, UInt32 index, ref Double v) { unsafe { fixed (Double* v_ptr = &v) { - Delegates.glProgramParameter4dvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Double*)v_ptr); + Delegates.glProgramParameter4dvNV((OpenTK.Graphics.All)target, (UInt32)index, (Double*)v_ptr); } } } public static - void ProgramParameter4(OpenTK.Graphics.OpenGL.All target, Int32 index, ref Double v) + void ProgramParameter4(OpenTK.Graphics.All target, Int32 index, ref Double v) { unsafe { fixed (Double* v_ptr = &v) { - Delegates.glProgramParameter4dvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Double*)v_ptr); + Delegates.glProgramParameter4dvNV((OpenTK.Graphics.All)target, (UInt32)index, (Double*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ProgramParameter4(OpenTK.Graphics.OpenGL.All target, UInt32 index, Double* v) + unsafe void ProgramParameter4(OpenTK.Graphics.All target, UInt32 index, Double* v) { - Delegates.glProgramParameter4dvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Double*)v); + Delegates.glProgramParameter4dvNV((OpenTK.Graphics.All)target, (UInt32)index, (Double*)v); } [System.CLSCompliant(false)] public static - unsafe void ProgramParameter4(OpenTK.Graphics.OpenGL.All target, Int32 index, Double* v) + unsafe void ProgramParameter4(OpenTK.Graphics.All target, Int32 index, Double* v) { - Delegates.glProgramParameter4dvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Double*)v); + Delegates.glProgramParameter4dvNV((OpenTK.Graphics.All)target, (UInt32)index, (Double*)v); } [System.CLSCompliant(false)] public static - void ProgramParameter4(OpenTK.Graphics.OpenGL.All target, UInt32 index, Single x, Single y, Single z, Single w) + void ProgramParameter4(OpenTK.Graphics.All target, UInt32 index, Single x, Single y, Single z, Single w) { - Delegates.glProgramParameter4fNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); + Delegates.glProgramParameter4fNV((OpenTK.Graphics.All)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); } public static - void ProgramParameter4(OpenTK.Graphics.OpenGL.All target, Int32 index, Single x, Single y, Single z, Single w) + void ProgramParameter4(OpenTK.Graphics.All target, Int32 index, Single x, Single y, Single z, Single w) { - Delegates.glProgramParameter4fNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); + Delegates.glProgramParameter4fNV((OpenTK.Graphics.All)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); } [System.CLSCompliant(false)] public static - void ProgramParameter4(OpenTK.Graphics.OpenGL.All target, UInt32 index, Single[] v) + void ProgramParameter4(OpenTK.Graphics.All target, UInt32 index, Single[] v) { unsafe { fixed (Single* v_ptr = v) { - Delegates.glProgramParameter4fvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Single*)v_ptr); + Delegates.glProgramParameter4fvNV((OpenTK.Graphics.All)target, (UInt32)index, (Single*)v_ptr); } } } public static - void ProgramParameter4(OpenTK.Graphics.OpenGL.All target, Int32 index, Single[] v) + void ProgramParameter4(OpenTK.Graphics.All target, Int32 index, Single[] v) { unsafe { fixed (Single* v_ptr = v) { - Delegates.glProgramParameter4fvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Single*)v_ptr); + Delegates.glProgramParameter4fvNV((OpenTK.Graphics.All)target, (UInt32)index, (Single*)v_ptr); } } } [System.CLSCompliant(false)] public static - void ProgramParameter4(OpenTK.Graphics.OpenGL.All target, UInt32 index, ref Single v) + void ProgramParameter4(OpenTK.Graphics.All target, UInt32 index, ref Single v) { unsafe { fixed (Single* v_ptr = &v) { - Delegates.glProgramParameter4fvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Single*)v_ptr); + Delegates.glProgramParameter4fvNV((OpenTK.Graphics.All)target, (UInt32)index, (Single*)v_ptr); } } } public static - void ProgramParameter4(OpenTK.Graphics.OpenGL.All target, Int32 index, ref Single v) + void ProgramParameter4(OpenTK.Graphics.All target, Int32 index, ref Single v) { unsafe { fixed (Single* v_ptr = &v) { - Delegates.glProgramParameter4fvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Single*)v_ptr); + Delegates.glProgramParameter4fvNV((OpenTK.Graphics.All)target, (UInt32)index, (Single*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ProgramParameter4(OpenTK.Graphics.OpenGL.All target, UInt32 index, Single* v) + unsafe void ProgramParameter4(OpenTK.Graphics.All target, UInt32 index, Single* v) { - Delegates.glProgramParameter4fvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Single*)v); + Delegates.glProgramParameter4fvNV((OpenTK.Graphics.All)target, (UInt32)index, (Single*)v); } [System.CLSCompliant(false)] public static - unsafe void ProgramParameter4(OpenTK.Graphics.OpenGL.All target, Int32 index, Single* v) + unsafe void ProgramParameter4(OpenTK.Graphics.All target, Int32 index, Single* v) { - Delegates.glProgramParameter4fvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Single*)v); + Delegates.glProgramParameter4fvNV((OpenTK.Graphics.All)target, (UInt32)index, (Single*)v); } [System.CLSCompliant(false)] public static - void ProgramParameters4(OpenTK.Graphics.OpenGL.All target, UInt32 index, UInt32 count, Double[] v) + void ProgramParameters4(OpenTK.Graphics.All target, UInt32 index, UInt32 count, Double[] v) { unsafe { fixed (Double* v_ptr = v) { - Delegates.glProgramParameters4dvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32)count, (Double*)v_ptr); + Delegates.glProgramParameters4dvNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)count, (Double*)v_ptr); } } } public static - void ProgramParameters4(OpenTK.Graphics.OpenGL.All target, Int32 index, Int32 count, Double[] v) + void ProgramParameters4(OpenTK.Graphics.All target, Int32 index, Int32 count, Double[] v) { unsafe { fixed (Double* v_ptr = v) { - Delegates.glProgramParameters4dvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32)count, (Double*)v_ptr); + Delegates.glProgramParameters4dvNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)count, (Double*)v_ptr); } } } [System.CLSCompliant(false)] public static - void ProgramParameters4(OpenTK.Graphics.OpenGL.All target, UInt32 index, UInt32 count, ref Double v) + void ProgramParameters4(OpenTK.Graphics.All target, UInt32 index, UInt32 count, ref Double v) { unsafe { fixed (Double* v_ptr = &v) { - Delegates.glProgramParameters4dvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32)count, (Double*)v_ptr); + Delegates.glProgramParameters4dvNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)count, (Double*)v_ptr); } } } public static - void ProgramParameters4(OpenTK.Graphics.OpenGL.All target, Int32 index, Int32 count, ref Double v) + void ProgramParameters4(OpenTK.Graphics.All target, Int32 index, Int32 count, ref Double v) { unsafe { fixed (Double* v_ptr = &v) { - Delegates.glProgramParameters4dvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32)count, (Double*)v_ptr); + Delegates.glProgramParameters4dvNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)count, (Double*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ProgramParameters4(OpenTK.Graphics.OpenGL.All target, UInt32 index, UInt32 count, Double* v) + unsafe void ProgramParameters4(OpenTK.Graphics.All target, UInt32 index, UInt32 count, Double* v) { - Delegates.glProgramParameters4dvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32)count, (Double*)v); + Delegates.glProgramParameters4dvNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)count, (Double*)v); } [System.CLSCompliant(false)] public static - unsafe void ProgramParameters4(OpenTK.Graphics.OpenGL.All target, Int32 index, Int32 count, Double* v) + unsafe void ProgramParameters4(OpenTK.Graphics.All target, Int32 index, Int32 count, Double* v) { - Delegates.glProgramParameters4dvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32)count, (Double*)v); + Delegates.glProgramParameters4dvNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)count, (Double*)v); } [System.CLSCompliant(false)] public static - void ProgramParameters4(OpenTK.Graphics.OpenGL.All target, UInt32 index, UInt32 count, Single[] v) + void ProgramParameters4(OpenTK.Graphics.All target, UInt32 index, UInt32 count, Single[] v) { unsafe { fixed (Single* v_ptr = v) { - Delegates.glProgramParameters4fvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32)count, (Single*)v_ptr); + Delegates.glProgramParameters4fvNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)count, (Single*)v_ptr); } } } public static - void ProgramParameters4(OpenTK.Graphics.OpenGL.All target, Int32 index, Int32 count, Single[] v) + void ProgramParameters4(OpenTK.Graphics.All target, Int32 index, Int32 count, Single[] v) { unsafe { fixed (Single* v_ptr = v) { - Delegates.glProgramParameters4fvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32)count, (Single*)v_ptr); + Delegates.glProgramParameters4fvNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)count, (Single*)v_ptr); } } } [System.CLSCompliant(false)] public static - void ProgramParameters4(OpenTK.Graphics.OpenGL.All target, UInt32 index, UInt32 count, ref Single v) + void ProgramParameters4(OpenTK.Graphics.All target, UInt32 index, UInt32 count, ref Single v) { unsafe { fixed (Single* v_ptr = &v) { - Delegates.glProgramParameters4fvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32)count, (Single*)v_ptr); + Delegates.glProgramParameters4fvNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)count, (Single*)v_ptr); } } } public static - void ProgramParameters4(OpenTK.Graphics.OpenGL.All target, Int32 index, Int32 count, ref Single v) + void ProgramParameters4(OpenTK.Graphics.All target, Int32 index, Int32 count, ref Single v) { unsafe { fixed (Single* v_ptr = &v) { - Delegates.glProgramParameters4fvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32)count, (Single*)v_ptr); + Delegates.glProgramParameters4fvNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)count, (Single*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ProgramParameters4(OpenTK.Graphics.OpenGL.All target, UInt32 index, UInt32 count, Single* v) + unsafe void ProgramParameters4(OpenTK.Graphics.All target, UInt32 index, UInt32 count, Single* v) { - Delegates.glProgramParameters4fvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32)count, (Single*)v); + Delegates.glProgramParameters4fvNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)count, (Single*)v); } [System.CLSCompliant(false)] public static - unsafe void ProgramParameters4(OpenTK.Graphics.OpenGL.All target, Int32 index, Int32 count, Single* v) + unsafe void ProgramParameters4(OpenTK.Graphics.All target, Int32 index, Int32 count, Single* v) { - Delegates.glProgramParameters4fvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32)count, (Single*)v); + Delegates.glProgramParameters4fvNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)count, (Single*)v); } [System.CLSCompliant(false)] @@ -15409,46 +15409,46 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void TrackMatrix(OpenTK.Graphics.OpenGL.All target, UInt32 address, OpenTK.Graphics.OpenGL.All matrix, OpenTK.Graphics.OpenGL.All transform) + void TrackMatrix(OpenTK.Graphics.All target, UInt32 address, OpenTK.Graphics.All matrix, OpenTK.Graphics.All transform) { - Delegates.glTrackMatrixNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)address, (OpenTK.Graphics.OpenGL.All)matrix, (OpenTK.Graphics.OpenGL.All)transform); + Delegates.glTrackMatrixNV((OpenTK.Graphics.All)target, (UInt32)address, (OpenTK.Graphics.All)matrix, (OpenTK.Graphics.All)transform); } public static - void TrackMatrix(OpenTK.Graphics.OpenGL.All target, Int32 address, OpenTK.Graphics.OpenGL.All matrix, OpenTK.Graphics.OpenGL.All transform) + void TrackMatrix(OpenTK.Graphics.All target, Int32 address, OpenTK.Graphics.All matrix, OpenTK.Graphics.All transform) { - Delegates.glTrackMatrixNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)address, (OpenTK.Graphics.OpenGL.All)matrix, (OpenTK.Graphics.OpenGL.All)transform); + Delegates.glTrackMatrixNV((OpenTK.Graphics.All)target, (UInt32)address, (OpenTK.Graphics.All)matrix, (OpenTK.Graphics.All)transform); } [System.CLSCompliant(false)] public static - void VertexAttribPointer(UInt32 index, Int32 fsize, OpenTK.Graphics.OpenGL.All type, Int32 stride, IntPtr pointer) + void VertexAttribPointer(UInt32 index, Int32 fsize, OpenTK.Graphics.All type, Int32 stride, IntPtr pointer) { unsafe { - Delegates.glVertexAttribPointerNV((UInt32)index, (Int32)fsize, (OpenTK.Graphics.OpenGL.All)type, (Int32)stride, (IntPtr)pointer); + Delegates.glVertexAttribPointerNV((UInt32)index, (Int32)fsize, (OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer); } } public static - void VertexAttribPointer(Int32 index, Int32 fsize, OpenTK.Graphics.OpenGL.All type, Int32 stride, IntPtr pointer) + void VertexAttribPointer(Int32 index, Int32 fsize, OpenTK.Graphics.All type, Int32 stride, IntPtr pointer) { unsafe { - Delegates.glVertexAttribPointerNV((UInt32)index, (Int32)fsize, (OpenTK.Graphics.OpenGL.All)type, (Int32)stride, (IntPtr)pointer); + Delegates.glVertexAttribPointerNV((UInt32)index, (Int32)fsize, (OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer); } } [System.CLSCompliant(false)] public static - void VertexAttribPointer(UInt32 index, Int32 fsize, OpenTK.Graphics.OpenGL.All type, Int32 stride, [In, Out] object pointer) + void VertexAttribPointer(UInt32 index, Int32 fsize, OpenTK.Graphics.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.Graphics.OpenGL.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glVertexAttribPointerNV((UInt32)index, (Int32)fsize, (OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -15458,14 +15458,14 @@ namespace OpenTK.Graphics.OpenGL } public static - void VertexAttribPointer(Int32 index, Int32 fsize, OpenTK.Graphics.OpenGL.All type, Int32 stride, [In, Out] object pointer) + void VertexAttribPointer(Int32 index, Int32 fsize, OpenTK.Graphics.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.Graphics.OpenGL.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glVertexAttribPointerNV((UInt32)index, (Int32)fsize, (OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -17471,26 +17471,26 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetOcclusionQueryivNV((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetOcclusionQueryivNV((UInt32)id, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetOcclusionQueryivNV((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetOcclusionQueryivNV((UInt32)id, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -17498,58 +17498,58 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetOcclusionQueryivNV((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glGetOcclusionQueryivNV((UInt32)id, (OpenTK.Graphics.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] UInt32[] @params) + void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.All pname, [Out] UInt32[] @params) { unsafe { fixed (UInt32* @params_ptr = @params) { - Delegates.glGetOcclusionQueryuivNV((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (UInt32*)@params_ptr); + Delegates.glGetOcclusionQueryuivNV((UInt32)id, (OpenTK.Graphics.All)pname, (UInt32*)@params_ptr); } } } public static - void GetOcclusionQuery(Int32 id, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetOcclusionQuery(Int32 id, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetOcclusionQueryuivNV((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (UInt32*)@params_ptr); + Delegates.glGetOcclusionQueryuivNV((UInt32)id, (OpenTK.Graphics.All)pname, (UInt32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] out UInt32 @params) + void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.All pname, [Out] out UInt32 @params) { unsafe { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetOcclusionQueryuivNV((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (UInt32*)@params_ptr); + Delegates.glGetOcclusionQueryuivNV((UInt32)id, (OpenTK.Graphics.All)pname, (UInt32*)@params_ptr); @params = *@params_ptr; } } } public static - void GetOcclusionQuery(Int32 id, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetOcclusionQuery(Int32 id, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetOcclusionQueryuivNV((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (UInt32*)@params_ptr); + Delegates.glGetOcclusionQueryuivNV((UInt32)id, (OpenTK.Graphics.All)pname, (UInt32*)@params_ptr); @params = *@params_ptr; } } @@ -17557,53 +17557,53 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] UInt32* @params) + unsafe void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.All pname, [Out] UInt32* @params) { - Delegates.glGetOcclusionQueryuivNV((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (UInt32*)@params); + Delegates.glGetOcclusionQueryuivNV((UInt32)id, (OpenTK.Graphics.All)pname, (UInt32*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetOcclusionQuery(Int32 id, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetOcclusionQuery(Int32 id, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetOcclusionQueryuivNV((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (UInt32*)@params); + Delegates.glGetOcclusionQueryuivNV((UInt32)id, (OpenTK.Graphics.All)pname, (UInt32*)@params); } public static - void PointParameter(OpenTK.Graphics.OpenGL.All pname, Int32 param) + void PointParameter(OpenTK.Graphics.All pname, Int32 param) { - Delegates.glPointParameteriNV((OpenTK.Graphics.OpenGL.All)pname, (Int32)param); + Delegates.glPointParameteriNV((OpenTK.Graphics.All)pname, (Int32)param); } public static - void PointParameterv(OpenTK.Graphics.OpenGL.All pname, Int32[] @params) + void PointParameterv(OpenTK.Graphics.All pname, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glPointParameterivNV((OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glPointParameterivNV((OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void PointParameterv(OpenTK.Graphics.OpenGL.All pname, ref Int32 @params) + void PointParameterv(OpenTK.Graphics.All pname, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glPointParameterivNV((OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glPointParameterivNV((OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void PointParameterv(OpenTK.Graphics.OpenGL.All pname, Int32* @params) + unsafe void PointParameterv(OpenTK.Graphics.All pname, Int32* @params) { - Delegates.glPointParameterivNV((OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glPointParameterivNV((OpenTK.Graphics.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] @@ -18782,310 +18782,310 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void MultiTexCoord1h(OpenTK.Graphics.OpenGL.TextureUnit target, UInt16 s) + void MultiTexCoord1h(OpenTK.Graphics.TextureUnit target, UInt16 s) { - Delegates.glMultiTexCoord1hNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (UInt16)s); + Delegates.glMultiTexCoord1hNV((OpenTK.Graphics.TextureUnit)target, (UInt16)s); } public static - void MultiTexCoord1h(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s) + void MultiTexCoord1h(OpenTK.Graphics.TextureUnit target, Int16 s) { - Delegates.glMultiTexCoord1hNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (UInt16)s); + Delegates.glMultiTexCoord1hNV((OpenTK.Graphics.TextureUnit)target, (UInt16)s); } [System.CLSCompliant(false)] public static - void MultiTexCoord1hv(OpenTK.Graphics.OpenGL.TextureUnit target, UInt16[] v) + void MultiTexCoord1hv(OpenTK.Graphics.TextureUnit target, UInt16[] v) { unsafe { fixed (UInt16* v_ptr = v) { - Delegates.glMultiTexCoord1hvNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (UInt16*)v_ptr); + Delegates.glMultiTexCoord1hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v_ptr); } } } public static - void MultiTexCoord1hv(OpenTK.Graphics.OpenGL.TextureUnit target, Int16[] v) + void MultiTexCoord1hv(OpenTK.Graphics.TextureUnit target, Int16[] v) { unsafe { fixed (Int16* v_ptr = v) { - Delegates.glMultiTexCoord1hvNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (UInt16*)v_ptr); + Delegates.glMultiTexCoord1hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v_ptr); } } } [System.CLSCompliant(false)] public static - void MultiTexCoord1hv(OpenTK.Graphics.OpenGL.TextureUnit target, ref UInt16 v) + void MultiTexCoord1hv(OpenTK.Graphics.TextureUnit target, ref UInt16 v) { unsafe { fixed (UInt16* v_ptr = &v) { - Delegates.glMultiTexCoord1hvNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (UInt16*)v_ptr); + Delegates.glMultiTexCoord1hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v_ptr); } } } public static - void MultiTexCoord1hv(OpenTK.Graphics.OpenGL.TextureUnit target, ref Int16 v) + void MultiTexCoord1hv(OpenTK.Graphics.TextureUnit target, ref Int16 v) { unsafe { fixed (Int16* v_ptr = &v) { - Delegates.glMultiTexCoord1hvNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (UInt16*)v_ptr); + Delegates.glMultiTexCoord1hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord1hv(OpenTK.Graphics.OpenGL.TextureUnit target, UInt16* v) + unsafe void MultiTexCoord1hv(OpenTK.Graphics.TextureUnit target, UInt16* v) { - Delegates.glMultiTexCoord1hvNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (UInt16*)v); + Delegates.glMultiTexCoord1hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v); } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord1hv(OpenTK.Graphics.OpenGL.TextureUnit target, Int16* v) + unsafe void MultiTexCoord1hv(OpenTK.Graphics.TextureUnit target, Int16* v) { - Delegates.glMultiTexCoord1hvNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (UInt16*)v); + Delegates.glMultiTexCoord1hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v); } [System.CLSCompliant(false)] public static - void MultiTexCoord2h(OpenTK.Graphics.OpenGL.TextureUnit target, UInt16 s, UInt16 t) + void MultiTexCoord2h(OpenTK.Graphics.TextureUnit target, UInt16 s, UInt16 t) { - Delegates.glMultiTexCoord2hNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (UInt16)s, (UInt16)t); + Delegates.glMultiTexCoord2hNV((OpenTK.Graphics.TextureUnit)target, (UInt16)s, (UInt16)t); } public static - void MultiTexCoord2h(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t) + void MultiTexCoord2h(OpenTK.Graphics.TextureUnit target, Int16 s, Int16 t) { - Delegates.glMultiTexCoord2hNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (UInt16)s, (UInt16)t); + Delegates.glMultiTexCoord2hNV((OpenTK.Graphics.TextureUnit)target, (UInt16)s, (UInt16)t); } [System.CLSCompliant(false)] public static - void MultiTexCoord2h(OpenTK.Graphics.OpenGL.TextureUnit target, UInt16[] v) + void MultiTexCoord2h(OpenTK.Graphics.TextureUnit target, UInt16[] v) { unsafe { fixed (UInt16* v_ptr = v) { - Delegates.glMultiTexCoord2hvNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (UInt16*)v_ptr); + Delegates.glMultiTexCoord2hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v_ptr); } } } public static - void MultiTexCoord2h(OpenTK.Graphics.OpenGL.TextureUnit target, Int16[] v) + void MultiTexCoord2h(OpenTK.Graphics.TextureUnit target, Int16[] v) { unsafe { fixed (Int16* v_ptr = v) { - Delegates.glMultiTexCoord2hvNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (UInt16*)v_ptr); + Delegates.glMultiTexCoord2hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v_ptr); } } } [System.CLSCompliant(false)] public static - void MultiTexCoord2h(OpenTK.Graphics.OpenGL.TextureUnit target, ref UInt16 v) + void MultiTexCoord2h(OpenTK.Graphics.TextureUnit target, ref UInt16 v) { unsafe { fixed (UInt16* v_ptr = &v) { - Delegates.glMultiTexCoord2hvNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (UInt16*)v_ptr); + Delegates.glMultiTexCoord2hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v_ptr); } } } public static - void MultiTexCoord2h(OpenTK.Graphics.OpenGL.TextureUnit target, ref Int16 v) + void MultiTexCoord2h(OpenTK.Graphics.TextureUnit target, ref Int16 v) { unsafe { fixed (Int16* v_ptr = &v) { - Delegates.glMultiTexCoord2hvNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (UInt16*)v_ptr); + Delegates.glMultiTexCoord2hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord2h(OpenTK.Graphics.OpenGL.TextureUnit target, UInt16* v) + unsafe void MultiTexCoord2h(OpenTK.Graphics.TextureUnit target, UInt16* v) { - Delegates.glMultiTexCoord2hvNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (UInt16*)v); + Delegates.glMultiTexCoord2hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v); } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord2h(OpenTK.Graphics.OpenGL.TextureUnit target, Int16* v) + unsafe void MultiTexCoord2h(OpenTK.Graphics.TextureUnit target, Int16* v) { - Delegates.glMultiTexCoord2hvNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (UInt16*)v); + Delegates.glMultiTexCoord2hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v); } [System.CLSCompliant(false)] public static - void MultiTexCoord3h(OpenTK.Graphics.OpenGL.TextureUnit target, UInt16 s, UInt16 t, UInt16 r) + void MultiTexCoord3h(OpenTK.Graphics.TextureUnit target, UInt16 s, UInt16 t, UInt16 r) { - Delegates.glMultiTexCoord3hNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (UInt16)s, (UInt16)t, (UInt16)r); + Delegates.glMultiTexCoord3hNV((OpenTK.Graphics.TextureUnit)target, (UInt16)s, (UInt16)t, (UInt16)r); } public static - void MultiTexCoord3h(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t, Int16 r) + void MultiTexCoord3h(OpenTK.Graphics.TextureUnit target, Int16 s, Int16 t, Int16 r) { - Delegates.glMultiTexCoord3hNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (UInt16)s, (UInt16)t, (UInt16)r); + Delegates.glMultiTexCoord3hNV((OpenTK.Graphics.TextureUnit)target, (UInt16)s, (UInt16)t, (UInt16)r); } [System.CLSCompliant(false)] public static - void MultiTexCoord3h(OpenTK.Graphics.OpenGL.TextureUnit target, UInt16[] v) + void MultiTexCoord3h(OpenTK.Graphics.TextureUnit target, UInt16[] v) { unsafe { fixed (UInt16* v_ptr = v) { - Delegates.glMultiTexCoord3hvNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (UInt16*)v_ptr); + Delegates.glMultiTexCoord3hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v_ptr); } } } public static - void MultiTexCoord3h(OpenTK.Graphics.OpenGL.TextureUnit target, Int16[] v) + void MultiTexCoord3h(OpenTK.Graphics.TextureUnit target, Int16[] v) { unsafe { fixed (Int16* v_ptr = v) { - Delegates.glMultiTexCoord3hvNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (UInt16*)v_ptr); + Delegates.glMultiTexCoord3hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v_ptr); } } } [System.CLSCompliant(false)] public static - void MultiTexCoord3h(OpenTK.Graphics.OpenGL.TextureUnit target, ref UInt16 v) + void MultiTexCoord3h(OpenTK.Graphics.TextureUnit target, ref UInt16 v) { unsafe { fixed (UInt16* v_ptr = &v) { - Delegates.glMultiTexCoord3hvNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (UInt16*)v_ptr); + Delegates.glMultiTexCoord3hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v_ptr); } } } public static - void MultiTexCoord3h(OpenTK.Graphics.OpenGL.TextureUnit target, ref Int16 v) + void MultiTexCoord3h(OpenTK.Graphics.TextureUnit target, ref Int16 v) { unsafe { fixed (Int16* v_ptr = &v) { - Delegates.glMultiTexCoord3hvNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (UInt16*)v_ptr); + Delegates.glMultiTexCoord3hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord3h(OpenTK.Graphics.OpenGL.TextureUnit target, UInt16* v) + unsafe void MultiTexCoord3h(OpenTK.Graphics.TextureUnit target, UInt16* v) { - Delegates.glMultiTexCoord3hvNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (UInt16*)v); + Delegates.glMultiTexCoord3hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v); } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord3h(OpenTK.Graphics.OpenGL.TextureUnit target, Int16* v) + unsafe void MultiTexCoord3h(OpenTK.Graphics.TextureUnit target, Int16* v) { - Delegates.glMultiTexCoord3hvNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (UInt16*)v); + Delegates.glMultiTexCoord3hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v); } [System.CLSCompliant(false)] public static - void MultiTexCoord4h(OpenTK.Graphics.OpenGL.TextureUnit target, UInt16 s, UInt16 t, UInt16 r, UInt16 q) + void MultiTexCoord4h(OpenTK.Graphics.TextureUnit target, UInt16 s, UInt16 t, UInt16 r, UInt16 q) { - Delegates.glMultiTexCoord4hNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (UInt16)s, (UInt16)t, (UInt16)r, (UInt16)q); + Delegates.glMultiTexCoord4hNV((OpenTK.Graphics.TextureUnit)target, (UInt16)s, (UInt16)t, (UInt16)r, (UInt16)q); } public static - void MultiTexCoord4h(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t, Int16 r, Int16 q) + void MultiTexCoord4h(OpenTK.Graphics.TextureUnit target, Int16 s, Int16 t, Int16 r, Int16 q) { - Delegates.glMultiTexCoord4hNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (UInt16)s, (UInt16)t, (UInt16)r, (UInt16)q); + Delegates.glMultiTexCoord4hNV((OpenTK.Graphics.TextureUnit)target, (UInt16)s, (UInt16)t, (UInt16)r, (UInt16)q); } [System.CLSCompliant(false)] public static - void MultiTexCoord4h(OpenTK.Graphics.OpenGL.TextureUnit target, UInt16[] v) + void MultiTexCoord4h(OpenTK.Graphics.TextureUnit target, UInt16[] v) { unsafe { fixed (UInt16* v_ptr = v) { - Delegates.glMultiTexCoord4hvNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (UInt16*)v_ptr); + Delegates.glMultiTexCoord4hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v_ptr); } } } public static - void MultiTexCoord4h(OpenTK.Graphics.OpenGL.TextureUnit target, Int16[] v) + void MultiTexCoord4h(OpenTK.Graphics.TextureUnit target, Int16[] v) { unsafe { fixed (Int16* v_ptr = v) { - Delegates.glMultiTexCoord4hvNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (UInt16*)v_ptr); + Delegates.glMultiTexCoord4hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v_ptr); } } } [System.CLSCompliant(false)] public static - void MultiTexCoord4h(OpenTK.Graphics.OpenGL.TextureUnit target, ref UInt16 v) + void MultiTexCoord4h(OpenTK.Graphics.TextureUnit target, ref UInt16 v) { unsafe { fixed (UInt16* v_ptr = &v) { - Delegates.glMultiTexCoord4hvNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (UInt16*)v_ptr); + Delegates.glMultiTexCoord4hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v_ptr); } } } public static - void MultiTexCoord4h(OpenTK.Graphics.OpenGL.TextureUnit target, ref Int16 v) + void MultiTexCoord4h(OpenTK.Graphics.TextureUnit target, ref Int16 v) { unsafe { fixed (Int16* v_ptr = &v) { - Delegates.glMultiTexCoord4hvNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (UInt16*)v_ptr); + Delegates.glMultiTexCoord4hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord4h(OpenTK.Graphics.OpenGL.TextureUnit target, UInt16* v) + unsafe void MultiTexCoord4h(OpenTK.Graphics.TextureUnit target, UInt16* v) { - Delegates.glMultiTexCoord4hvNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (UInt16*)v); + Delegates.glMultiTexCoord4hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v); } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord4h(OpenTK.Graphics.OpenGL.TextureUnit target, Int16* v) + unsafe void MultiTexCoord4h(OpenTK.Graphics.TextureUnit target, Int16* v) { - Delegates.glMultiTexCoord4hvNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (UInt16*)v); + Delegates.glMultiTexCoord4hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v); } [System.CLSCompliant(false)] @@ -19884,23 +19884,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void PixelDataRange(OpenTK.Graphics.OpenGL.All target, Int32 length, [Out] IntPtr pointer) + void PixelDataRange(OpenTK.Graphics.All target, Int32 length, [Out] IntPtr pointer) { unsafe { - Delegates.glPixelDataRangeNV((OpenTK.Graphics.OpenGL.All)target, (Int32)length, (IntPtr)pointer); + Delegates.glPixelDataRangeNV((OpenTK.Graphics.All)target, (Int32)length, (IntPtr)pointer); } } public static - void PixelDataRange(OpenTK.Graphics.OpenGL.All target, Int32 length, [In, Out] object pointer) + void PixelDataRange(OpenTK.Graphics.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.Graphics.OpenGL.All)target, (Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glPixelDataRangeNV((OpenTK.Graphics.All)target, (Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -19910,9 +19910,9 @@ namespace OpenTK.Graphics.OpenGL } public static - void FlushPixelDataRange(OpenTK.Graphics.OpenGL.All target) + void FlushPixelDataRange(OpenTK.Graphics.All target) { - Delegates.glFlushPixelDataRangeNV((OpenTK.Graphics.OpenGL.All)target); + Delegates.glFlushPixelDataRangeNV((OpenTK.Graphics.All)target); } public static @@ -19936,454 +19936,454 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.All target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) + void ProgramLocalParameterI4(OpenTK.Graphics.All target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) { - Delegates.glProgramLocalParameterI4iNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); + Delegates.glProgramLocalParameterI4iNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); } [System.CLSCompliant(false)] public static - void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.All target, UInt32 index, Int32[] @params) + void ProgramLocalParameterI4(OpenTK.Graphics.All target, UInt32 index, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glProgramLocalParameterI4ivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32*)@params_ptr); + Delegates.glProgramLocalParameterI4ivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.All target, UInt32 index, ref Int32 @params) + void ProgramLocalParameterI4(OpenTK.Graphics.All target, UInt32 index, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glProgramLocalParameterI4ivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32*)@params_ptr); + Delegates.glProgramLocalParameterI4ivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.All target, UInt32 index, Int32* @params) + unsafe void ProgramLocalParameterI4(OpenTK.Graphics.All target, UInt32 index, Int32* @params) { - Delegates.glProgramLocalParameterI4ivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32*)@params); + Delegates.glProgramLocalParameterI4ivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32*)@params); } [System.CLSCompliant(false)] public static - void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.All target, UInt32 index, Int32 count, Int32[] @params) + void ProgramLocalParametersI4(OpenTK.Graphics.All target, UInt32 index, Int32 count, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glProgramLocalParametersI4ivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr); + Delegates.glProgramLocalParametersI4ivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.All target, UInt32 index, Int32 count, ref Int32 @params) + void ProgramLocalParametersI4(OpenTK.Graphics.All target, UInt32 index, Int32 count, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glProgramLocalParametersI4ivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr); + Delegates.glProgramLocalParametersI4ivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.All target, UInt32 index, Int32 count, Int32* @params) + unsafe void ProgramLocalParametersI4(OpenTK.Graphics.All target, UInt32 index, Int32 count, Int32* @params) { - Delegates.glProgramLocalParametersI4ivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32)count, (Int32*)@params); + Delegates.glProgramLocalParametersI4ivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (Int32*)@params); } [System.CLSCompliant(false)] public static - void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.All target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) + void ProgramLocalParameterI4(OpenTK.Graphics.All target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { - Delegates.glProgramLocalParameterI4uiNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w); + Delegates.glProgramLocalParameterI4uiNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w); } public static - void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.All target, Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) + void ProgramLocalParameterI4(OpenTK.Graphics.All target, Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { - Delegates.glProgramLocalParameterI4uiNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w); + Delegates.glProgramLocalParameterI4uiNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w); } [System.CLSCompliant(false)] public static - void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.All target, UInt32 index, UInt32[] @params) + void ProgramLocalParameterI4(OpenTK.Graphics.All target, UInt32 index, UInt32[] @params) { unsafe { fixed (UInt32* @params_ptr = @params) { - Delegates.glProgramLocalParameterI4uivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32*)@params_ptr); + Delegates.glProgramLocalParameterI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params_ptr); } } } public static - void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.All target, Int32 index, Int32[] @params) + void ProgramLocalParameterI4(OpenTK.Graphics.All target, Int32 index, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glProgramLocalParameterI4uivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32*)@params_ptr); + Delegates.glProgramLocalParameterI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.All target, UInt32 index, ref UInt32 @params) + void ProgramLocalParameterI4(OpenTK.Graphics.All target, UInt32 index, ref UInt32 @params) { unsafe { fixed (UInt32* @params_ptr = &@params) { - Delegates.glProgramLocalParameterI4uivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32*)@params_ptr); + Delegates.glProgramLocalParameterI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params_ptr); } } } public static - void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.All target, Int32 index, ref Int32 @params) + void ProgramLocalParameterI4(OpenTK.Graphics.All target, Int32 index, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glProgramLocalParameterI4uivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32*)@params_ptr); + Delegates.glProgramLocalParameterI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.All target, UInt32 index, UInt32* @params) + unsafe void ProgramLocalParameterI4(OpenTK.Graphics.All target, UInt32 index, UInt32* @params) { - Delegates.glProgramLocalParameterI4uivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32*)@params); + Delegates.glProgramLocalParameterI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params); } [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.All target, Int32 index, Int32* @params) + unsafe void ProgramLocalParameterI4(OpenTK.Graphics.All target, Int32 index, Int32* @params) { - Delegates.glProgramLocalParameterI4uivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32*)@params); + Delegates.glProgramLocalParameterI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params); } [System.CLSCompliant(false)] public static - void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.All target, UInt32 index, Int32 count, UInt32[] @params) + void ProgramLocalParametersI4(OpenTK.Graphics.All target, UInt32 index, Int32 count, UInt32[] @params) { unsafe { fixed (UInt32* @params_ptr = @params) { - Delegates.glProgramLocalParametersI4uivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); + Delegates.glProgramLocalParametersI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); } } } public static - void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.All target, Int32 index, Int32 count, Int32[] @params) + void ProgramLocalParametersI4(OpenTK.Graphics.All target, Int32 index, Int32 count, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glProgramLocalParametersI4uivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); + Delegates.glProgramLocalParametersI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.All target, UInt32 index, Int32 count, ref UInt32 @params) + void ProgramLocalParametersI4(OpenTK.Graphics.All target, UInt32 index, Int32 count, ref UInt32 @params) { unsafe { fixed (UInt32* @params_ptr = &@params) { - Delegates.glProgramLocalParametersI4uivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); + Delegates.glProgramLocalParametersI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); } } } public static - void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.All target, Int32 index, Int32 count, ref Int32 @params) + void ProgramLocalParametersI4(OpenTK.Graphics.All target, Int32 index, Int32 count, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glProgramLocalParametersI4uivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); + Delegates.glProgramLocalParametersI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.All target, UInt32 index, Int32 count, UInt32* @params) + unsafe void ProgramLocalParametersI4(OpenTK.Graphics.All target, UInt32 index, Int32 count, UInt32* @params) { - Delegates.glProgramLocalParametersI4uivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32)count, (UInt32*)@params); + Delegates.glProgramLocalParametersI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (UInt32*)@params); } [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.All target, Int32 index, Int32 count, Int32* @params) + unsafe void ProgramLocalParametersI4(OpenTK.Graphics.All target, Int32 index, Int32 count, Int32* @params) { - Delegates.glProgramLocalParametersI4uivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32)count, (UInt32*)@params); + Delegates.glProgramLocalParametersI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (UInt32*)@params); } [System.CLSCompliant(false)] public static - void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.All target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) + void ProgramEnvParameterI4(OpenTK.Graphics.All target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) { - Delegates.glProgramEnvParameterI4iNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); + Delegates.glProgramEnvParameterI4iNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); } [System.CLSCompliant(false)] public static - void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.All target, UInt32 index, Int32[] @params) + void ProgramEnvParameterI4(OpenTK.Graphics.All target, UInt32 index, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glProgramEnvParameterI4ivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32*)@params_ptr); + Delegates.glProgramEnvParameterI4ivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.All target, UInt32 index, ref Int32 @params) + void ProgramEnvParameterI4(OpenTK.Graphics.All target, UInt32 index, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glProgramEnvParameterI4ivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32*)@params_ptr); + Delegates.glProgramEnvParameterI4ivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.All target, UInt32 index, Int32* @params) + unsafe void ProgramEnvParameterI4(OpenTK.Graphics.All target, UInt32 index, Int32* @params) { - Delegates.glProgramEnvParameterI4ivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32*)@params); + Delegates.glProgramEnvParameterI4ivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32*)@params); } [System.CLSCompliant(false)] public static - void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.All target, UInt32 index, Int32 count, Int32[] @params) + void ProgramEnvParametersI4(OpenTK.Graphics.All target, UInt32 index, Int32 count, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glProgramEnvParametersI4ivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr); + Delegates.glProgramEnvParametersI4ivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.All target, UInt32 index, Int32 count, ref Int32 @params) + void ProgramEnvParametersI4(OpenTK.Graphics.All target, UInt32 index, Int32 count, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glProgramEnvParametersI4ivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr); + Delegates.glProgramEnvParametersI4ivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.All target, UInt32 index, Int32 count, Int32* @params) + unsafe void ProgramEnvParametersI4(OpenTK.Graphics.All target, UInt32 index, Int32 count, Int32* @params) { - Delegates.glProgramEnvParametersI4ivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32)count, (Int32*)@params); + Delegates.glProgramEnvParametersI4ivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (Int32*)@params); } [System.CLSCompliant(false)] public static - void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.All target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) + void ProgramEnvParameterI4(OpenTK.Graphics.All target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { - Delegates.glProgramEnvParameterI4uiNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w); + Delegates.glProgramEnvParameterI4uiNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w); } public static - void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.All target, Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) + void ProgramEnvParameterI4(OpenTK.Graphics.All target, Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { - Delegates.glProgramEnvParameterI4uiNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w); + Delegates.glProgramEnvParameterI4uiNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w); } [System.CLSCompliant(false)] public static - void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.All target, UInt32 index, UInt32[] @params) + void ProgramEnvParameterI4(OpenTK.Graphics.All target, UInt32 index, UInt32[] @params) { unsafe { fixed (UInt32* @params_ptr = @params) { - Delegates.glProgramEnvParameterI4uivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32*)@params_ptr); + Delegates.glProgramEnvParameterI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params_ptr); } } } public static - void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.All target, Int32 index, Int32[] @params) + void ProgramEnvParameterI4(OpenTK.Graphics.All target, Int32 index, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glProgramEnvParameterI4uivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32*)@params_ptr); + Delegates.glProgramEnvParameterI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.All target, UInt32 index, ref UInt32 @params) + void ProgramEnvParameterI4(OpenTK.Graphics.All target, UInt32 index, ref UInt32 @params) { unsafe { fixed (UInt32* @params_ptr = &@params) { - Delegates.glProgramEnvParameterI4uivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32*)@params_ptr); + Delegates.glProgramEnvParameterI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params_ptr); } } } public static - void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.All target, Int32 index, ref Int32 @params) + void ProgramEnvParameterI4(OpenTK.Graphics.All target, Int32 index, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glProgramEnvParameterI4uivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32*)@params_ptr); + Delegates.glProgramEnvParameterI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.All target, UInt32 index, UInt32* @params) + unsafe void ProgramEnvParameterI4(OpenTK.Graphics.All target, UInt32 index, UInt32* @params) { - Delegates.glProgramEnvParameterI4uivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32*)@params); + Delegates.glProgramEnvParameterI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params); } [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.All target, Int32 index, Int32* @params) + unsafe void ProgramEnvParameterI4(OpenTK.Graphics.All target, Int32 index, Int32* @params) { - Delegates.glProgramEnvParameterI4uivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32*)@params); + Delegates.glProgramEnvParameterI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params); } [System.CLSCompliant(false)] public static - void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.All target, UInt32 index, Int32 count, UInt32[] @params) + void ProgramEnvParametersI4(OpenTK.Graphics.All target, UInt32 index, Int32 count, UInt32[] @params) { unsafe { fixed (UInt32* @params_ptr = @params) { - Delegates.glProgramEnvParametersI4uivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); + Delegates.glProgramEnvParametersI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); } } } public static - void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.All target, Int32 index, Int32 count, Int32[] @params) + void ProgramEnvParametersI4(OpenTK.Graphics.All target, Int32 index, Int32 count, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glProgramEnvParametersI4uivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); + Delegates.glProgramEnvParametersI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.All target, UInt32 index, Int32 count, ref UInt32 @params) + void ProgramEnvParametersI4(OpenTK.Graphics.All target, UInt32 index, Int32 count, ref UInt32 @params) { unsafe { fixed (UInt32* @params_ptr = &@params) { - Delegates.glProgramEnvParametersI4uivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); + Delegates.glProgramEnvParametersI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); } } } public static - void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.All target, Int32 index, Int32 count, ref Int32 @params) + void ProgramEnvParametersI4(OpenTK.Graphics.All target, Int32 index, Int32 count, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glProgramEnvParametersI4uivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); + Delegates.glProgramEnvParametersI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.All target, UInt32 index, Int32 count, UInt32* @params) + unsafe void ProgramEnvParametersI4(OpenTK.Graphics.All target, UInt32 index, Int32 count, UInt32* @params) { - Delegates.glProgramEnvParametersI4uivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32)count, (UInt32*)@params); + Delegates.glProgramEnvParametersI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (UInt32*)@params); } [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.All target, Int32 index, Int32 count, Int32* @params) + unsafe void ProgramEnvParametersI4(OpenTK.Graphics.All target, Int32 index, Int32 count, Int32* @params) { - Delegates.glProgramEnvParametersI4uivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32)count, (UInt32*)@params); + Delegates.glProgramEnvParametersI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (UInt32*)@params); } [System.CLSCompliant(false)] public static - void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.All target, UInt32 index, [Out] Int32[] @params) + void GetProgramLocalParameterI(OpenTK.Graphics.All target, UInt32 index, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramLocalParameterIivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32*)@params_ptr); + Delegates.glGetProgramLocalParameterIivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.All target, UInt32 index, [Out] out Int32 @params) + void GetProgramLocalParameterI(OpenTK.Graphics.All target, UInt32 index, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramLocalParameterIivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32*)@params_ptr); + Delegates.glGetProgramLocalParameterIivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -20391,58 +20391,58 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.All target, UInt32 index, [Out] Int32* @params) + unsafe void GetProgramLocalParameterI(OpenTK.Graphics.All target, UInt32 index, [Out] Int32* @params) { - Delegates.glGetProgramLocalParameterIivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32*)@params); + Delegates.glGetProgramLocalParameterIivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32*)@params); } [System.CLSCompliant(false)] public static - void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.All target, UInt32 index, [Out] UInt32[] @params) + void GetProgramLocalParameterI(OpenTK.Graphics.All target, UInt32 index, [Out] UInt32[] @params) { unsafe { fixed (UInt32* @params_ptr = @params) { - Delegates.glGetProgramLocalParameterIuivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32*)@params_ptr); + Delegates.glGetProgramLocalParameterIuivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params_ptr); } } } public static - void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.All target, Int32 index, [Out] Int32[] @params) + void GetProgramLocalParameterI(OpenTK.Graphics.All target, Int32 index, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramLocalParameterIuivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32*)@params_ptr); + Delegates.glGetProgramLocalParameterIuivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.All target, UInt32 index, [Out] out UInt32 @params) + void GetProgramLocalParameterI(OpenTK.Graphics.All target, UInt32 index, [Out] out UInt32 @params) { unsafe { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetProgramLocalParameterIuivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32*)@params_ptr); + Delegates.glGetProgramLocalParameterIuivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params_ptr); @params = *@params_ptr; } } } public static - void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.All target, Int32 index, [Out] out Int32 @params) + void GetProgramLocalParameterI(OpenTK.Graphics.All target, Int32 index, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramLocalParameterIuivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32*)@params_ptr); + Delegates.glGetProgramLocalParameterIuivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params_ptr); @params = *@params_ptr; } } @@ -20450,40 +20450,40 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.All target, UInt32 index, [Out] UInt32* @params) + unsafe void GetProgramLocalParameterI(OpenTK.Graphics.All target, UInt32 index, [Out] UInt32* @params) { - Delegates.glGetProgramLocalParameterIuivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32*)@params); + Delegates.glGetProgramLocalParameterIuivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.All target, Int32 index, [Out] Int32* @params) + unsafe void GetProgramLocalParameterI(OpenTK.Graphics.All target, Int32 index, [Out] Int32* @params) { - Delegates.glGetProgramLocalParameterIuivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32*)@params); + Delegates.glGetProgramLocalParameterIuivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params); } [System.CLSCompliant(false)] public static - void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.All target, UInt32 index, [Out] Int32[] @params) + void GetProgramEnvParameterI(OpenTK.Graphics.All target, UInt32 index, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramEnvParameterIivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32*)@params_ptr); + Delegates.glGetProgramEnvParameterIivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.All target, UInt32 index, [Out] out Int32 @params) + void GetProgramEnvParameterI(OpenTK.Graphics.All target, UInt32 index, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramEnvParameterIivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32*)@params_ptr); + Delegates.glGetProgramEnvParameterIivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -20491,58 +20491,58 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.All target, UInt32 index, [Out] Int32* @params) + unsafe void GetProgramEnvParameterI(OpenTK.Graphics.All target, UInt32 index, [Out] Int32* @params) { - Delegates.glGetProgramEnvParameterIivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32*)@params); + Delegates.glGetProgramEnvParameterIivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32*)@params); } [System.CLSCompliant(false)] public static - void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.All target, UInt32 index, [Out] UInt32[] @params) + void GetProgramEnvParameterI(OpenTK.Graphics.All target, UInt32 index, [Out] UInt32[] @params) { unsafe { fixed (UInt32* @params_ptr = @params) { - Delegates.glGetProgramEnvParameterIuivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32*)@params_ptr); + Delegates.glGetProgramEnvParameterIuivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params_ptr); } } } public static - void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.All target, Int32 index, [Out] Int32[] @params) + void GetProgramEnvParameterI(OpenTK.Graphics.All target, Int32 index, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramEnvParameterIuivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32*)@params_ptr); + Delegates.glGetProgramEnvParameterIuivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.All target, UInt32 index, [Out] out UInt32 @params) + void GetProgramEnvParameterI(OpenTK.Graphics.All target, UInt32 index, [Out] out UInt32 @params) { unsafe { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetProgramEnvParameterIuivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32*)@params_ptr); + Delegates.glGetProgramEnvParameterIuivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params_ptr); @params = *@params_ptr; } } } public static - void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.All target, Int32 index, [Out] out Int32 @params) + void GetProgramEnvParameterI(OpenTK.Graphics.All target, Int32 index, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramEnvParameterIuivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32*)@params_ptr); + Delegates.glGetProgramEnvParameterIuivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params_ptr); @params = *@params_ptr; } } @@ -20550,22 +20550,22 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.All target, UInt32 index, [Out] UInt32* @params) + unsafe void GetProgramEnvParameterI(OpenTK.Graphics.All target, UInt32 index, [Out] UInt32* @params) { - Delegates.glGetProgramEnvParameterIuivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32*)@params); + Delegates.glGetProgramEnvParameterIuivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.All target, Int32 index, [Out] Int32* @params) + unsafe void GetProgramEnvParameterI(OpenTK.Graphics.All target, Int32 index, [Out] Int32* @params) { - Delegates.glGetProgramEnvParameterIuivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32*)@params); + Delegates.glGetProgramEnvParameterIuivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params); } public static - void ProgramVertexLimit(OpenTK.Graphics.OpenGL.All target, Int32 limit) + void ProgramVertexLimit(OpenTK.Graphics.All target, Int32 limit) { - Delegates.glProgramVertexLimitNV((OpenTK.Graphics.OpenGL.All)target, (Int32)limit); + Delegates.glProgramVertexLimitNV((OpenTK.Graphics.All)target, (Int32)limit); } public static @@ -20587,176 +20587,176 @@ namespace OpenTK.Graphics.OpenGL } public static - void RenderbufferStorageMultisampleCoverage(OpenTK.Graphics.OpenGL.RenderbufferTarget target, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height) + void RenderbufferStorageMultisampleCoverage(OpenTK.Graphics.RenderbufferTarget target, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height) { - Delegates.glRenderbufferStorageMultisampleCoverageNV((OpenTK.Graphics.OpenGL.RenderbufferTarget)target, (Int32)coverageSamples, (Int32)colorSamples, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height); + Delegates.glRenderbufferStorageMultisampleCoverageNV((OpenTK.Graphics.RenderbufferTarget)target, (Int32)coverageSamples, (Int32)colorSamples, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height); } [System.CLSCompliant(false)] public static - void ProgramBufferParameters(OpenTK.Graphics.OpenGL.All target, UInt32 buffer, UInt32 index, Int32 count, Single[] @params) + void ProgramBufferParameters(OpenTK.Graphics.All target, UInt32 buffer, UInt32 index, Int32 count, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glProgramBufferParametersfvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Single*)@params_ptr); + Delegates.glProgramBufferParametersfvNV((OpenTK.Graphics.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Single*)@params_ptr); } } } public static - void ProgramBufferParameters(OpenTK.Graphics.OpenGL.All target, Int32 buffer, Int32 index, Int32 count, Single[] @params) + void ProgramBufferParameters(OpenTK.Graphics.All target, Int32 buffer, Int32 index, Int32 count, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glProgramBufferParametersfvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Single*)@params_ptr); + Delegates.glProgramBufferParametersfvNV((OpenTK.Graphics.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void ProgramBufferParameters(OpenTK.Graphics.OpenGL.All target, UInt32 buffer, UInt32 index, Int32 count, ref Single @params) + void ProgramBufferParameters(OpenTK.Graphics.All target, UInt32 buffer, UInt32 index, Int32 count, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glProgramBufferParametersfvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Single*)@params_ptr); + Delegates.glProgramBufferParametersfvNV((OpenTK.Graphics.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Single*)@params_ptr); } } } public static - void ProgramBufferParameters(OpenTK.Graphics.OpenGL.All target, Int32 buffer, Int32 index, Int32 count, ref Single @params) + void ProgramBufferParameters(OpenTK.Graphics.All target, Int32 buffer, Int32 index, Int32 count, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glProgramBufferParametersfvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Single*)@params_ptr); + Delegates.glProgramBufferParametersfvNV((OpenTK.Graphics.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ProgramBufferParameters(OpenTK.Graphics.OpenGL.All target, UInt32 buffer, UInt32 index, Int32 count, Single* @params) + unsafe void ProgramBufferParameters(OpenTK.Graphics.All target, UInt32 buffer, UInt32 index, Int32 count, Single* @params) { - Delegates.glProgramBufferParametersfvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Single*)@params); + Delegates.glProgramBufferParametersfvNV((OpenTK.Graphics.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Single*)@params); } [System.CLSCompliant(false)] public static - unsafe void ProgramBufferParameters(OpenTK.Graphics.OpenGL.All target, Int32 buffer, Int32 index, Int32 count, Single* @params) + unsafe void ProgramBufferParameters(OpenTK.Graphics.All target, Int32 buffer, Int32 index, Int32 count, Single* @params) { - Delegates.glProgramBufferParametersfvNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Single*)@params); + Delegates.glProgramBufferParametersfvNV((OpenTK.Graphics.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Single*)@params); } [System.CLSCompliant(false)] public static - void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.All target, UInt32 buffer, UInt32 index, Int32 count, Int32[] @params) + void ProgramBufferParametersI(OpenTK.Graphics.All target, UInt32 buffer, UInt32 index, Int32 count, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glProgramBufferParametersIivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Int32*)@params_ptr); + Delegates.glProgramBufferParametersIivNV((OpenTK.Graphics.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.All target, UInt32 buffer, UInt32 index, Int32 count, ref Int32 @params) + void ProgramBufferParametersI(OpenTK.Graphics.All target, UInt32 buffer, UInt32 index, Int32 count, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glProgramBufferParametersIivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Int32*)@params_ptr); + Delegates.glProgramBufferParametersIivNV((OpenTK.Graphics.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.All target, UInt32 buffer, UInt32 index, Int32 count, Int32* @params) + unsafe void ProgramBufferParametersI(OpenTK.Graphics.All target, UInt32 buffer, UInt32 index, Int32 count, Int32* @params) { - Delegates.glProgramBufferParametersIivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Int32*)@params); + Delegates.glProgramBufferParametersIivNV((OpenTK.Graphics.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Int32*)@params); } [System.CLSCompliant(false)] public static - void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.All target, UInt32 buffer, UInt32 index, Int32 count, UInt32[] @params) + void ProgramBufferParametersI(OpenTK.Graphics.All target, UInt32 buffer, UInt32 index, Int32 count, UInt32[] @params) { unsafe { fixed (UInt32* @params_ptr = @params) { - Delegates.glProgramBufferParametersIuivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); + Delegates.glProgramBufferParametersIuivNV((OpenTK.Graphics.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); } } } public static - void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.All target, Int32 buffer, Int32 index, Int32 count, Int32[] @params) + void ProgramBufferParametersI(OpenTK.Graphics.All target, Int32 buffer, Int32 index, Int32 count, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glProgramBufferParametersIuivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); + Delegates.glProgramBufferParametersIuivNV((OpenTK.Graphics.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.All target, UInt32 buffer, UInt32 index, Int32 count, ref UInt32 @params) + void ProgramBufferParametersI(OpenTK.Graphics.All target, UInt32 buffer, UInt32 index, Int32 count, ref UInt32 @params) { unsafe { fixed (UInt32* @params_ptr = &@params) { - Delegates.glProgramBufferParametersIuivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); + Delegates.glProgramBufferParametersIuivNV((OpenTK.Graphics.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); } } } public static - void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.All target, Int32 buffer, Int32 index, Int32 count, ref Int32 @params) + void ProgramBufferParametersI(OpenTK.Graphics.All target, Int32 buffer, Int32 index, Int32 count, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glProgramBufferParametersIuivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); + Delegates.glProgramBufferParametersIuivNV((OpenTK.Graphics.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.All target, UInt32 buffer, UInt32 index, Int32 count, UInt32* @params) + unsafe void ProgramBufferParametersI(OpenTK.Graphics.All target, UInt32 buffer, UInt32 index, Int32 count, UInt32* @params) { - Delegates.glProgramBufferParametersIuivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (UInt32*)@params); + Delegates.glProgramBufferParametersIuivNV((OpenTK.Graphics.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (UInt32*)@params); } [System.CLSCompliant(false)] public static - unsafe void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.All target, Int32 buffer, Int32 index, Int32 count, Int32* @params) + unsafe void ProgramBufferParametersI(OpenTK.Graphics.All target, Int32 buffer, Int32 index, Int32 count, Int32* @params) { - Delegates.glProgramBufferParametersIuivNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (UInt32*)@params); + Delegates.glProgramBufferParametersIuivNV((OpenTK.Graphics.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (UInt32*)@params); } public static - void BeginTransformFeedback(OpenTK.Graphics.OpenGL.All primitiveMode) + void BeginTransformFeedback(OpenTK.Graphics.All primitiveMode) { - Delegates.glBeginTransformFeedbackNV((OpenTK.Graphics.OpenGL.All)primitiveMode); + Delegates.glBeginTransformFeedbackNV((OpenTK.Graphics.All)primitiveMode); } public static @@ -20767,169 +20767,169 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void TransformFeedbackAttrib(UInt32 count, Int32[] attribs, OpenTK.Graphics.OpenGL.All bufferMode) + void TransformFeedbackAttrib(UInt32 count, Int32[] attribs, OpenTK.Graphics.All bufferMode) { unsafe { fixed (Int32* attribs_ptr = attribs) { - Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs_ptr, (OpenTK.Graphics.OpenGL.All)bufferMode); + Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs_ptr, (OpenTK.Graphics.All)bufferMode); } } } public static - void TransformFeedbackAttrib(Int32 count, Int32[] attribs, OpenTK.Graphics.OpenGL.All bufferMode) + void TransformFeedbackAttrib(Int32 count, Int32[] attribs, OpenTK.Graphics.All bufferMode) { unsafe { fixed (Int32* attribs_ptr = attribs) { - Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs_ptr, (OpenTK.Graphics.OpenGL.All)bufferMode); + Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs_ptr, (OpenTK.Graphics.All)bufferMode); } } } [System.CLSCompliant(false)] public static - void TransformFeedbackAttrib(UInt32 count, ref Int32 attribs, OpenTK.Graphics.OpenGL.All bufferMode) + void TransformFeedbackAttrib(UInt32 count, ref Int32 attribs, OpenTK.Graphics.All bufferMode) { unsafe { fixed (Int32* attribs_ptr = &attribs) { - Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs_ptr, (OpenTK.Graphics.OpenGL.All)bufferMode); + Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs_ptr, (OpenTK.Graphics.All)bufferMode); } } } public static - void TransformFeedbackAttrib(Int32 count, ref Int32 attribs, OpenTK.Graphics.OpenGL.All bufferMode) + void TransformFeedbackAttrib(Int32 count, ref Int32 attribs, OpenTK.Graphics.All bufferMode) { unsafe { fixed (Int32* attribs_ptr = &attribs) { - Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs_ptr, (OpenTK.Graphics.OpenGL.All)bufferMode); + Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs_ptr, (OpenTK.Graphics.All)bufferMode); } } } [System.CLSCompliant(false)] public static - unsafe void TransformFeedbackAttrib(UInt32 count, Int32* attribs, OpenTK.Graphics.OpenGL.All bufferMode) + unsafe void TransformFeedbackAttrib(UInt32 count, Int32* attribs, OpenTK.Graphics.All bufferMode) { - Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs, (OpenTK.Graphics.OpenGL.All)bufferMode); + Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs, (OpenTK.Graphics.All)bufferMode); } [System.CLSCompliant(false)] public static - unsafe void TransformFeedbackAttrib(Int32 count, Int32* attribs, OpenTK.Graphics.OpenGL.All bufferMode) + unsafe void TransformFeedbackAttrib(Int32 count, Int32* attribs, OpenTK.Graphics.All bufferMode) { - Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs, (OpenTK.Graphics.OpenGL.All)bufferMode); + Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs, (OpenTK.Graphics.All)bufferMode); } [System.CLSCompliant(false)] public static - void BindBufferRange(OpenTK.Graphics.OpenGL.All target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) + void BindBufferRange(OpenTK.Graphics.All target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { - Delegates.glBindBufferRangeNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); + Delegates.glBindBufferRangeNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); } public static - void BindBufferRange(OpenTK.Graphics.OpenGL.All target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) + void BindBufferRange(OpenTK.Graphics.All target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { - Delegates.glBindBufferRangeNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); + Delegates.glBindBufferRangeNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); } [System.CLSCompliant(false)] public static - void BindBufferOffset(OpenTK.Graphics.OpenGL.All target, UInt32 index, UInt32 buffer, IntPtr offset) + void BindBufferOffset(OpenTK.Graphics.All target, UInt32 index, UInt32 buffer, IntPtr offset) { - Delegates.glBindBufferOffsetNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset); + Delegates.glBindBufferOffsetNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset); } public static - void BindBufferOffset(OpenTK.Graphics.OpenGL.All target, Int32 index, Int32 buffer, IntPtr offset) + void BindBufferOffset(OpenTK.Graphics.All target, Int32 index, Int32 buffer, IntPtr offset) { - Delegates.glBindBufferOffsetNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset); + Delegates.glBindBufferOffsetNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset); } [System.CLSCompliant(false)] public static - void BindBufferBase(OpenTK.Graphics.OpenGL.All target, UInt32 index, UInt32 buffer) + void BindBufferBase(OpenTK.Graphics.All target, UInt32 index, UInt32 buffer) { - Delegates.glBindBufferBaseNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32)buffer); + Delegates.glBindBufferBaseNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)buffer); } public static - void BindBufferBase(OpenTK.Graphics.OpenGL.All target, Int32 index, Int32 buffer) + void BindBufferBase(OpenTK.Graphics.All target, Int32 index, Int32 buffer) { - Delegates.glBindBufferBaseNV((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (UInt32)buffer); + Delegates.glBindBufferBaseNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)buffer); } [System.CLSCompliant(false)] public static - void TransformFeedbackVarying(UInt32 program, Int32 count, Int32[] locations, OpenTK.Graphics.OpenGL.All bufferMode) + void TransformFeedbackVarying(UInt32 program, Int32 count, Int32[] locations, OpenTK.Graphics.All bufferMode) { unsafe { fixed (Int32* locations_ptr = locations) { - Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations_ptr, (OpenTK.Graphics.OpenGL.All)bufferMode); + Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations_ptr, (OpenTK.Graphics.All)bufferMode); } } } public static - void TransformFeedbackVarying(Int32 program, Int32 count, Int32[] locations, OpenTK.Graphics.OpenGL.All bufferMode) + void TransformFeedbackVarying(Int32 program, Int32 count, Int32[] locations, OpenTK.Graphics.All bufferMode) { unsafe { fixed (Int32* locations_ptr = locations) { - Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations_ptr, (OpenTK.Graphics.OpenGL.All)bufferMode); + Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations_ptr, (OpenTK.Graphics.All)bufferMode); } } } [System.CLSCompliant(false)] public static - void TransformFeedbackVarying(UInt32 program, Int32 count, ref Int32 locations, OpenTK.Graphics.OpenGL.All bufferMode) + void TransformFeedbackVarying(UInt32 program, Int32 count, ref Int32 locations, OpenTK.Graphics.All bufferMode) { unsafe { fixed (Int32* locations_ptr = &locations) { - Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations_ptr, (OpenTK.Graphics.OpenGL.All)bufferMode); + Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations_ptr, (OpenTK.Graphics.All)bufferMode); } } } public static - void TransformFeedbackVarying(Int32 program, Int32 count, ref Int32 locations, OpenTK.Graphics.OpenGL.All bufferMode) + void TransformFeedbackVarying(Int32 program, Int32 count, ref Int32 locations, OpenTK.Graphics.All bufferMode) { unsafe { fixed (Int32* locations_ptr = &locations) { - Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations_ptr, (OpenTK.Graphics.OpenGL.All)bufferMode); + Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations_ptr, (OpenTK.Graphics.All)bufferMode); } } } [System.CLSCompliant(false)] public static - unsafe void TransformFeedbackVarying(UInt32 program, Int32 count, Int32* locations, OpenTK.Graphics.OpenGL.All bufferMode) + unsafe void TransformFeedbackVarying(UInt32 program, Int32 count, Int32* locations, OpenTK.Graphics.All bufferMode) { - Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations, (OpenTK.Graphics.OpenGL.All)bufferMode); + Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations, (OpenTK.Graphics.All)bufferMode); } [System.CLSCompliant(false)] public static - unsafe void TransformFeedbackVarying(Int32 program, Int32 count, Int32* locations, OpenTK.Graphics.OpenGL.All bufferMode) + unsafe void TransformFeedbackVarying(Int32 program, Int32 count, Int32* locations, OpenTK.Graphics.All bufferMode) { - Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations, (OpenTK.Graphics.OpenGL.All)bufferMode); + Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations, (OpenTK.Graphics.All)bufferMode); } [System.CLSCompliant(false)] @@ -20960,44 +20960,44 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.Graphics.OpenGL.All[] type, [Out] System.Text.StringBuilder name) + void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.Graphics.All[] type, [Out] System.Text.StringBuilder name) { unsafe { fixed (Int32* length_ptr = length) fixed (Int32* size_ptr = size) - fixed (OpenTK.Graphics.OpenGL.All* type_ptr = type) + fixed (OpenTK.Graphics.All* type_ptr = type) { - Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL.All*)type_ptr, (System.Text.StringBuilder)name); + Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.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.Graphics.OpenGL.All[] type, [Out] System.Text.StringBuilder name) + void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.Graphics.All[] type, [Out] System.Text.StringBuilder name) { unsafe { fixed (Int32* length_ptr = length) fixed (Int32* size_ptr = size) - fixed (OpenTK.Graphics.OpenGL.All* type_ptr = type) + fixed (OpenTK.Graphics.All* type_ptr = type) { - Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL.All*)type_ptr, (System.Text.StringBuilder)name); + Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.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.Graphics.OpenGL.All 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.Graphics.All type, [Out] System.Text.StringBuilder name) { unsafe { fixed (Int32* length_ptr = &length) fixed (Int32* size_ptr = &size) - fixed (OpenTK.Graphics.OpenGL.All* type_ptr = &type) + fixed (OpenTK.Graphics.All* type_ptr = &type) { - Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL.All*)type_ptr, (System.Text.StringBuilder)name); + Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.All*)type_ptr, (System.Text.StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -21006,15 +21006,15 @@ namespace OpenTK.Graphics.OpenGL } public static - void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.Graphics.OpenGL.All 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.Graphics.All type, [Out] System.Text.StringBuilder name) { unsafe { fixed (Int32* length_ptr = &length) fixed (Int32* size_ptr = &size) - fixed (OpenTK.Graphics.OpenGL.All* type_ptr = &type) + fixed (OpenTK.Graphics.All* type_ptr = &type) { - Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL.All*)type_ptr, (System.Text.StringBuilder)name); + Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.All*)type_ptr, (System.Text.StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -21024,16 +21024,16 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.Graphics.OpenGL.All* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.Graphics.All* type, [Out] System.Text.StringBuilder name) { - Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.OpenGL.All*)type, (System.Text.StringBuilder)name); + Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.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.Graphics.OpenGL.All* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.Graphics.All* type, [Out] System.Text.StringBuilder name) { - Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.OpenGL.All*)type, (System.Text.StringBuilder)name); + Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.All*)type, (System.Text.StringBuilder)name); } [System.CLSCompliant(false)] @@ -21107,607 +21107,607 @@ namespace OpenTK.Graphics.OpenGL public static partial class Arb { public static - void ActiveTexture(OpenTK.Graphics.OpenGL.TextureUnit texture) + void ActiveTexture(OpenTK.Graphics.TextureUnit texture) { - Delegates.glActiveTextureARB((OpenTK.Graphics.OpenGL.TextureUnit)texture); + Delegates.glActiveTextureARB((OpenTK.Graphics.TextureUnit)texture); } public static - void ClientActiveTexture(OpenTK.Graphics.OpenGL.TextureUnit texture) + void ClientActiveTexture(OpenTK.Graphics.TextureUnit texture) { - Delegates.glClientActiveTextureARB((OpenTK.Graphics.OpenGL.TextureUnit)texture); + Delegates.glClientActiveTextureARB((OpenTK.Graphics.TextureUnit)texture); } public static - void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Double s) + void MultiTexCoord1(OpenTK.Graphics.TextureUnit target, Double s) { - Delegates.glMultiTexCoord1dARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double)s); + Delegates.glMultiTexCoord1dARB((OpenTK.Graphics.TextureUnit)target, (Double)s); } public static - void MultiTexCoord1v(OpenTK.Graphics.OpenGL.TextureUnit target, Double[] v) + void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, Double[] v) { unsafe { fixed (Double* v_ptr = v) { - Delegates.glMultiTexCoord1dvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v_ptr); + Delegates.glMultiTexCoord1dvARB((OpenTK.Graphics.TextureUnit)target, (Double*)v_ptr); } } } public static - void MultiTexCoord1v(OpenTK.Graphics.OpenGL.TextureUnit target, ref Double v) + void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, ref Double v) { unsafe { fixed (Double* v_ptr = &v) { - Delegates.glMultiTexCoord1dvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v_ptr); + Delegates.glMultiTexCoord1dvARB((OpenTK.Graphics.TextureUnit)target, (Double*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord1v(OpenTK.Graphics.OpenGL.TextureUnit target, Double* v) + unsafe void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, Double* v) { - Delegates.glMultiTexCoord1dvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v); + Delegates.glMultiTexCoord1dvARB((OpenTK.Graphics.TextureUnit)target, (Double*)v); } public static - void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Single s) + void MultiTexCoord1(OpenTK.Graphics.TextureUnit target, Single s) { - Delegates.glMultiTexCoord1fARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single)s); + Delegates.glMultiTexCoord1fARB((OpenTK.Graphics.TextureUnit)target, (Single)s); } public static - void MultiTexCoord1v(OpenTK.Graphics.OpenGL.TextureUnit target, Single[] v) + void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, Single[] v) { unsafe { fixed (Single* v_ptr = v) { - Delegates.glMultiTexCoord1fvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v_ptr); + Delegates.glMultiTexCoord1fvARB((OpenTK.Graphics.TextureUnit)target, (Single*)v_ptr); } } } public static - void MultiTexCoord1v(OpenTK.Graphics.OpenGL.TextureUnit target, ref Single v) + void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, ref Single v) { unsafe { fixed (Single* v_ptr = &v) { - Delegates.glMultiTexCoord1fvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v_ptr); + Delegates.glMultiTexCoord1fvARB((OpenTK.Graphics.TextureUnit)target, (Single*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord1v(OpenTK.Graphics.OpenGL.TextureUnit target, Single* v) + unsafe void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, Single* v) { - Delegates.glMultiTexCoord1fvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v); + Delegates.glMultiTexCoord1fvARB((OpenTK.Graphics.TextureUnit)target, (Single*)v); } public static - void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s) + void MultiTexCoord1(OpenTK.Graphics.TextureUnit target, Int32 s) { - Delegates.glMultiTexCoord1iARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32)s); + Delegates.glMultiTexCoord1iARB((OpenTK.Graphics.TextureUnit)target, (Int32)s); } public static - void MultiTexCoord1v(OpenTK.Graphics.OpenGL.TextureUnit target, Int32[] v) + void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, Int32[] v) { unsafe { fixed (Int32* v_ptr = v) { - Delegates.glMultiTexCoord1ivARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v_ptr); + Delegates.glMultiTexCoord1ivARB((OpenTK.Graphics.TextureUnit)target, (Int32*)v_ptr); } } } public static - void MultiTexCoord1v(OpenTK.Graphics.OpenGL.TextureUnit target, ref Int32 v) + void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, ref Int32 v) { unsafe { fixed (Int32* v_ptr = &v) { - Delegates.glMultiTexCoord1ivARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v_ptr); + Delegates.glMultiTexCoord1ivARB((OpenTK.Graphics.TextureUnit)target, (Int32*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord1v(OpenTK.Graphics.OpenGL.TextureUnit target, Int32* v) + unsafe void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, Int32* v) { - Delegates.glMultiTexCoord1ivARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v); + Delegates.glMultiTexCoord1ivARB((OpenTK.Graphics.TextureUnit)target, (Int32*)v); } public static - void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s) + void MultiTexCoord1(OpenTK.Graphics.TextureUnit target, Int16 s) { - Delegates.glMultiTexCoord1sARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16)s); + Delegates.glMultiTexCoord1sARB((OpenTK.Graphics.TextureUnit)target, (Int16)s); } public static - void MultiTexCoord1v(OpenTK.Graphics.OpenGL.TextureUnit target, Int16[] v) + void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, Int16[] v) { unsafe { fixed (Int16* v_ptr = v) { - Delegates.glMultiTexCoord1svARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v_ptr); + Delegates.glMultiTexCoord1svARB((OpenTK.Graphics.TextureUnit)target, (Int16*)v_ptr); } } } public static - void MultiTexCoord1v(OpenTK.Graphics.OpenGL.TextureUnit target, ref Int16 v) + void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, ref Int16 v) { unsafe { fixed (Int16* v_ptr = &v) { - Delegates.glMultiTexCoord1svARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v_ptr); + Delegates.glMultiTexCoord1svARB((OpenTK.Graphics.TextureUnit)target, (Int16*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord1v(OpenTK.Graphics.OpenGL.TextureUnit target, Int16* v) + unsafe void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, Int16* v) { - Delegates.glMultiTexCoord1svARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v); + Delegates.glMultiTexCoord1svARB((OpenTK.Graphics.TextureUnit)target, (Int16*)v); } public static - void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t) + void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Double s, Double t) { - Delegates.glMultiTexCoord2dARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double)s, (Double)t); + Delegates.glMultiTexCoord2dARB((OpenTK.Graphics.TextureUnit)target, (Double)s, (Double)t); } public static - void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Double[] v) + void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Double[] v) { unsafe { fixed (Double* v_ptr = v) { - Delegates.glMultiTexCoord2dvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v_ptr); + Delegates.glMultiTexCoord2dvARB((OpenTK.Graphics.TextureUnit)target, (Double*)v_ptr); } } } public static - void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, ref Double v) + void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, ref Double v) { unsafe { fixed (Double* v_ptr = &v) { - Delegates.glMultiTexCoord2dvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v_ptr); + Delegates.glMultiTexCoord2dvARB((OpenTK.Graphics.TextureUnit)target, (Double*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Double* v) + unsafe void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Double* v) { - Delegates.glMultiTexCoord2dvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v); + Delegates.glMultiTexCoord2dvARB((OpenTK.Graphics.TextureUnit)target, (Double*)v); } public static - void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t) + void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Single s, Single t) { - Delegates.glMultiTexCoord2fARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single)s, (Single)t); + Delegates.glMultiTexCoord2fARB((OpenTK.Graphics.TextureUnit)target, (Single)s, (Single)t); } public static - void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Single[] v) + void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Single[] v) { unsafe { fixed (Single* v_ptr = v) { - Delegates.glMultiTexCoord2fvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v_ptr); + Delegates.glMultiTexCoord2fvARB((OpenTK.Graphics.TextureUnit)target, (Single*)v_ptr); } } } public static - void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, ref Single v) + void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, ref Single v) { unsafe { fixed (Single* v_ptr = &v) { - Delegates.glMultiTexCoord2fvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v_ptr); + Delegates.glMultiTexCoord2fvARB((OpenTK.Graphics.TextureUnit)target, (Single*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Single* v) + unsafe void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Single* v) { - Delegates.glMultiTexCoord2fvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v); + Delegates.glMultiTexCoord2fvARB((OpenTK.Graphics.TextureUnit)target, (Single*)v); } public static - void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t) + void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Int32 s, Int32 t) { - Delegates.glMultiTexCoord2iARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32)s, (Int32)t); + Delegates.glMultiTexCoord2iARB((OpenTK.Graphics.TextureUnit)target, (Int32)s, (Int32)t); } public static - void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Int32[] v) + void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Int32[] v) { unsafe { fixed (Int32* v_ptr = v) { - Delegates.glMultiTexCoord2ivARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v_ptr); + Delegates.glMultiTexCoord2ivARB((OpenTK.Graphics.TextureUnit)target, (Int32*)v_ptr); } } } public static - void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, ref Int32 v) + void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, ref Int32 v) { unsafe { fixed (Int32* v_ptr = &v) { - Delegates.glMultiTexCoord2ivARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v_ptr); + Delegates.glMultiTexCoord2ivARB((OpenTK.Graphics.TextureUnit)target, (Int32*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Int32* v) + unsafe void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Int32* v) { - Delegates.glMultiTexCoord2ivARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v); + Delegates.glMultiTexCoord2ivARB((OpenTK.Graphics.TextureUnit)target, (Int32*)v); } public static - void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t) + void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Int16 s, Int16 t) { - Delegates.glMultiTexCoord2sARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16)s, (Int16)t); + Delegates.glMultiTexCoord2sARB((OpenTK.Graphics.TextureUnit)target, (Int16)s, (Int16)t); } public static - void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Int16[] v) + void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Int16[] v) { unsafe { fixed (Int16* v_ptr = v) { - Delegates.glMultiTexCoord2svARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v_ptr); + Delegates.glMultiTexCoord2svARB((OpenTK.Graphics.TextureUnit)target, (Int16*)v_ptr); } } } public static - void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, ref Int16 v) + void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, ref Int16 v) { unsafe { fixed (Int16* v_ptr = &v) { - Delegates.glMultiTexCoord2svARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v_ptr); + Delegates.glMultiTexCoord2svARB((OpenTK.Graphics.TextureUnit)target, (Int16*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Int16* v) + unsafe void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Int16* v) { - Delegates.glMultiTexCoord2svARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v); + Delegates.glMultiTexCoord2svARB((OpenTK.Graphics.TextureUnit)target, (Int16*)v); } public static - void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t, Double r) + void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Double s, Double t, Double r) { - Delegates.glMultiTexCoord3dARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double)s, (Double)t, (Double)r); + Delegates.glMultiTexCoord3dARB((OpenTK.Graphics.TextureUnit)target, (Double)s, (Double)t, (Double)r); } public static - void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Double[] v) + void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Double[] v) { unsafe { fixed (Double* v_ptr = v) { - Delegates.glMultiTexCoord3dvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v_ptr); + Delegates.glMultiTexCoord3dvARB((OpenTK.Graphics.TextureUnit)target, (Double*)v_ptr); } } } public static - void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, ref Double v) + void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, ref Double v) { unsafe { fixed (Double* v_ptr = &v) { - Delegates.glMultiTexCoord3dvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v_ptr); + Delegates.glMultiTexCoord3dvARB((OpenTK.Graphics.TextureUnit)target, (Double*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Double* v) + unsafe void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Double* v) { - Delegates.glMultiTexCoord3dvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v); + Delegates.glMultiTexCoord3dvARB((OpenTK.Graphics.TextureUnit)target, (Double*)v); } public static - void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t, Single r) + void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Single s, Single t, Single r) { - Delegates.glMultiTexCoord3fARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single)s, (Single)t, (Single)r); + Delegates.glMultiTexCoord3fARB((OpenTK.Graphics.TextureUnit)target, (Single)s, (Single)t, (Single)r); } public static - void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Single[] v) + void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Single[] v) { unsafe { fixed (Single* v_ptr = v) { - Delegates.glMultiTexCoord3fvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v_ptr); + Delegates.glMultiTexCoord3fvARB((OpenTK.Graphics.TextureUnit)target, (Single*)v_ptr); } } } public static - void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, ref Single v) + void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, ref Single v) { unsafe { fixed (Single* v_ptr = &v) { - Delegates.glMultiTexCoord3fvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v_ptr); + Delegates.glMultiTexCoord3fvARB((OpenTK.Graphics.TextureUnit)target, (Single*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Single* v) + unsafe void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Single* v) { - Delegates.glMultiTexCoord3fvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v); + Delegates.glMultiTexCoord3fvARB((OpenTK.Graphics.TextureUnit)target, (Single*)v); } public static - void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t, Int32 r) + void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Int32 s, Int32 t, Int32 r) { - Delegates.glMultiTexCoord3iARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32)s, (Int32)t, (Int32)r); + Delegates.glMultiTexCoord3iARB((OpenTK.Graphics.TextureUnit)target, (Int32)s, (Int32)t, (Int32)r); } public static - void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Int32[] v) + void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Int32[] v) { unsafe { fixed (Int32* v_ptr = v) { - Delegates.glMultiTexCoord3ivARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v_ptr); + Delegates.glMultiTexCoord3ivARB((OpenTK.Graphics.TextureUnit)target, (Int32*)v_ptr); } } } public static - void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, ref Int32 v) + void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, ref Int32 v) { unsafe { fixed (Int32* v_ptr = &v) { - Delegates.glMultiTexCoord3ivARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v_ptr); + Delegates.glMultiTexCoord3ivARB((OpenTK.Graphics.TextureUnit)target, (Int32*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Int32* v) + unsafe void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Int32* v) { - Delegates.glMultiTexCoord3ivARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v); + Delegates.glMultiTexCoord3ivARB((OpenTK.Graphics.TextureUnit)target, (Int32*)v); } public static - void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t, Int16 r) + void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Int16 s, Int16 t, Int16 r) { - Delegates.glMultiTexCoord3sARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16)s, (Int16)t, (Int16)r); + Delegates.glMultiTexCoord3sARB((OpenTK.Graphics.TextureUnit)target, (Int16)s, (Int16)t, (Int16)r); } public static - void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Int16[] v) + void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Int16[] v) { unsafe { fixed (Int16* v_ptr = v) { - Delegates.glMultiTexCoord3svARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v_ptr); + Delegates.glMultiTexCoord3svARB((OpenTK.Graphics.TextureUnit)target, (Int16*)v_ptr); } } } public static - void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, ref Int16 v) + void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, ref Int16 v) { unsafe { fixed (Int16* v_ptr = &v) { - Delegates.glMultiTexCoord3svARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v_ptr); + Delegates.glMultiTexCoord3svARB((OpenTK.Graphics.TextureUnit)target, (Int16*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Int16* v) + unsafe void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Int16* v) { - Delegates.glMultiTexCoord3svARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v); + Delegates.glMultiTexCoord3svARB((OpenTK.Graphics.TextureUnit)target, (Int16*)v); } public static - void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t, Double r, Double q) + void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Double s, Double t, Double r, Double q) { - Delegates.glMultiTexCoord4dARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double)s, (Double)t, (Double)r, (Double)q); + Delegates.glMultiTexCoord4dARB((OpenTK.Graphics.TextureUnit)target, (Double)s, (Double)t, (Double)r, (Double)q); } public static - void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Double[] v) + void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Double[] v) { unsafe { fixed (Double* v_ptr = v) { - Delegates.glMultiTexCoord4dvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v_ptr); + Delegates.glMultiTexCoord4dvARB((OpenTK.Graphics.TextureUnit)target, (Double*)v_ptr); } } } public static - void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, ref Double v) + void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, ref Double v) { unsafe { fixed (Double* v_ptr = &v) { - Delegates.glMultiTexCoord4dvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v_ptr); + Delegates.glMultiTexCoord4dvARB((OpenTK.Graphics.TextureUnit)target, (Double*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Double* v) + unsafe void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Double* v) { - Delegates.glMultiTexCoord4dvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v); + Delegates.glMultiTexCoord4dvARB((OpenTK.Graphics.TextureUnit)target, (Double*)v); } public static - void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t, Single r, Single q) + void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Single s, Single t, Single r, Single q) { - Delegates.glMultiTexCoord4fARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single)s, (Single)t, (Single)r, (Single)q); + Delegates.glMultiTexCoord4fARB((OpenTK.Graphics.TextureUnit)target, (Single)s, (Single)t, (Single)r, (Single)q); } public static - void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Single[] v) + void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Single[] v) { unsafe { fixed (Single* v_ptr = v) { - Delegates.glMultiTexCoord4fvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v_ptr); + Delegates.glMultiTexCoord4fvARB((OpenTK.Graphics.TextureUnit)target, (Single*)v_ptr); } } } public static - void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, ref Single v) + void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, ref Single v) { unsafe { fixed (Single* v_ptr = &v) { - Delegates.glMultiTexCoord4fvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v_ptr); + Delegates.glMultiTexCoord4fvARB((OpenTK.Graphics.TextureUnit)target, (Single*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Single* v) + unsafe void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Single* v) { - Delegates.glMultiTexCoord4fvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v); + Delegates.glMultiTexCoord4fvARB((OpenTK.Graphics.TextureUnit)target, (Single*)v); } public static - void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t, Int32 r, Int32 q) + void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Int32 s, Int32 t, Int32 r, Int32 q) { - Delegates.glMultiTexCoord4iARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32)s, (Int32)t, (Int32)r, (Int32)q); + Delegates.glMultiTexCoord4iARB((OpenTK.Graphics.TextureUnit)target, (Int32)s, (Int32)t, (Int32)r, (Int32)q); } public static - void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Int32[] v) + void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Int32[] v) { unsafe { fixed (Int32* v_ptr = v) { - Delegates.glMultiTexCoord4ivARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v_ptr); + Delegates.glMultiTexCoord4ivARB((OpenTK.Graphics.TextureUnit)target, (Int32*)v_ptr); } } } public static - void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, ref Int32 v) + void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, ref Int32 v) { unsafe { fixed (Int32* v_ptr = &v) { - Delegates.glMultiTexCoord4ivARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v_ptr); + Delegates.glMultiTexCoord4ivARB((OpenTK.Graphics.TextureUnit)target, (Int32*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Int32* v) + unsafe void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Int32* v) { - Delegates.glMultiTexCoord4ivARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v); + Delegates.glMultiTexCoord4ivARB((OpenTK.Graphics.TextureUnit)target, (Int32*)v); } public static - void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t, Int16 r, Int16 q) + void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Int16 s, Int16 t, Int16 r, Int16 q) { - Delegates.glMultiTexCoord4sARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16)s, (Int16)t, (Int16)r, (Int16)q); + Delegates.glMultiTexCoord4sARB((OpenTK.Graphics.TextureUnit)target, (Int16)s, (Int16)t, (Int16)r, (Int16)q); } public static - void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Int16[] v) + void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Int16[] v) { unsafe { fixed (Int16* v_ptr = v) { - Delegates.glMultiTexCoord4svARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v_ptr); + Delegates.glMultiTexCoord4svARB((OpenTK.Graphics.TextureUnit)target, (Int16*)v_ptr); } } } public static - void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, ref Int16 v) + void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, ref Int16 v) { unsafe { fixed (Int16* v_ptr = &v) { - Delegates.glMultiTexCoord4svARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v_ptr); + Delegates.glMultiTexCoord4svARB((OpenTK.Graphics.TextureUnit)target, (Int16*)v_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Int16* v) + unsafe void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Int16* v) { - Delegates.glMultiTexCoord4svARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v); + Delegates.glMultiTexCoord4svARB((OpenTK.Graphics.TextureUnit)target, (Int16*)v); } public static @@ -21841,23 +21841,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, IntPtr data) + void CompressedTexImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, IntPtr data) { unsafe { - Delegates.glCompressedTexImage3DARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data); + Delegates.glCompressedTexImage3DARB((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data); } } public static - void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [In, Out] object data) + void CompressedTexImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.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.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + Delegates.glCompressedTexImage3DARB((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -21867,23 +21867,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, IntPtr data) + void CompressedTexImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, IntPtr data) { unsafe { - Delegates.glCompressedTexImage2DARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data); + Delegates.glCompressedTexImage2DARB((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data); } } public static - void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [In, Out] object data) + void CompressedTexImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.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.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + Delegates.glCompressedTexImage2DARB((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -21893,23 +21893,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, IntPtr data) + void CompressedTexImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, IntPtr data) { unsafe { - Delegates.glCompressedTexImage1DARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data); + Delegates.glCompressedTexImage1DARB((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data); } } public static - void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [In, Out] object data) + void CompressedTexImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.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.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + Delegates.glCompressedTexImage1DARB((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -21919,23 +21919,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void CompressedTexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data) + void CompressedTexSubImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.PixelFormat format, Int32 imageSize, IntPtr data) { unsafe { - Delegates.glCompressedTexSubImage3DARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data); + Delegates.glCompressedTexSubImage3DARB((OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.PixelFormat)format, (Int32)imageSize, (IntPtr)data); } } public static - void CompressedTexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [In, Out] object data) + void CompressedTexSubImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.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.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + Delegates.glCompressedTexSubImage3DARB((OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -21945,23 +21945,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void CompressedTexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data) + void CompressedTexSubImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, Int32 imageSize, IntPtr data) { unsafe { - Delegates.glCompressedTexSubImage2DARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data); + Delegates.glCompressedTexSubImage2DARB((OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (Int32)imageSize, (IntPtr)data); } } public static - void CompressedTexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [In, Out] object data) + void CompressedTexSubImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.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.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + Delegates.glCompressedTexSubImage2DARB((OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -21971,23 +21971,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data) + void CompressedTexSubImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.PixelFormat format, Int32 imageSize, IntPtr data) { unsafe { - Delegates.glCompressedTexSubImage1DARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data); + Delegates.glCompressedTexSubImage1DARB((OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (Int32)imageSize, (IntPtr)data); } } public static - void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [In, Out] object data) + void CompressedTexSubImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.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.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + Delegates.glCompressedTexSubImage1DARB((OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -21997,23 +21997,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void GetCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, [Out] IntPtr img) + void GetCompressedTexImage(OpenTK.Graphics.TextureTarget target, Int32 level, [Out] IntPtr img) { unsafe { - Delegates.glGetCompressedTexImageARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (IntPtr)img); + Delegates.glGetCompressedTexImageARB((OpenTK.Graphics.TextureTarget)target, (Int32)level, (IntPtr)img); } } public static - void GetCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, [In, Out] object img) + void GetCompressedTexImage(OpenTK.Graphics.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.Graphics.OpenGL.TextureTarget)target, (Int32)level, (IntPtr)img_ptr.AddrOfPinnedObject()); + Delegates.glGetCompressedTexImageARB((OpenTK.Graphics.TextureTarget)target, (Int32)level, (IntPtr)img_ptr.AddrOfPinnedObject()); } finally { @@ -22023,40 +22023,40 @@ namespace OpenTK.Graphics.OpenGL } public static - void PointParameter(OpenTK.Graphics.OpenGL.All pname, Single param) + void PointParameter(OpenTK.Graphics.All pname, Single param) { - Delegates.glPointParameterfARB((OpenTK.Graphics.OpenGL.All)pname, (Single)param); + Delegates.glPointParameterfARB((OpenTK.Graphics.All)pname, (Single)param); } public static - void PointParameterv(OpenTK.Graphics.OpenGL.All pname, Single[] @params) + void PointParameterv(OpenTK.Graphics.All pname, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glPointParameterfvARB((OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glPointParameterfvARB((OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void PointParameterv(OpenTK.Graphics.OpenGL.All pname, ref Single @params) + void PointParameterv(OpenTK.Graphics.All pname, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glPointParameterfvARB((OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glPointParameterfvARB((OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void PointParameterv(OpenTK.Graphics.OpenGL.All pname, Single* @params) + unsafe void PointParameterv(OpenTK.Graphics.All pname, Single* @params) { - Delegates.glPointParameterfvARB((OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glPointParameterfvARB((OpenTK.Graphics.All)pname, (Single*)@params); } [System.CLSCompliant(false)] @@ -22314,23 +22314,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void WeightPointer(Int32 size, OpenTK.Graphics.OpenGL.All type, Int32 stride, IntPtr pointer) + void WeightPointer(Int32 size, OpenTK.Graphics.All type, Int32 stride, IntPtr pointer) { unsafe { - Delegates.glWeightPointerARB((Int32)size, (OpenTK.Graphics.OpenGL.All)type, (Int32)stride, (IntPtr)pointer); + Delegates.glWeightPointerARB((Int32)size, (OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer); } } public static - void WeightPointer(Int32 size, OpenTK.Graphics.OpenGL.All type, Int32 stride, [In, Out] object pointer) + void WeightPointer(Int32 size, OpenTK.Graphics.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.Graphics.OpenGL.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glWeightPointerARB((Int32)size, (OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -22511,23 +22511,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void MatrixIndexPointer(Int32 size, OpenTK.Graphics.OpenGL.All type, Int32 stride, IntPtr pointer) + void MatrixIndexPointer(Int32 size, OpenTK.Graphics.All type, Int32 stride, IntPtr pointer) { unsafe { - Delegates.glMatrixIndexPointerARB((Int32)size, (OpenTK.Graphics.OpenGL.All)type, (Int32)stride, (IntPtr)pointer); + Delegates.glMatrixIndexPointerARB((Int32)size, (OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer); } } public static - void MatrixIndexPointer(Int32 size, OpenTK.Graphics.OpenGL.All type, Int32 stride, [In, Out] object pointer) + void MatrixIndexPointer(Int32 size, OpenTK.Graphics.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.Graphics.OpenGL.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glMatrixIndexPointerARB((Int32)size, (OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -24289,33 +24289,33 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, IntPtr pointer) + void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, IntPtr pointer) { unsafe { - Delegates.glVertexAttribPointerARB((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); + Delegates.glVertexAttribPointerARB((UInt32)index, (Int32)size, (OpenTK.Graphics.VertexAttribPointerTypeArb)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); } } public static - void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, IntPtr pointer) + void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, IntPtr pointer) { unsafe { - Delegates.glVertexAttribPointerARB((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); + Delegates.glVertexAttribPointerARB((UInt32)index, (Int32)size, (OpenTK.Graphics.VertexAttribPointerTypeArb)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); } } [System.CLSCompliant(false)] public static - void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, [In, Out] object pointer) + void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.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.Graphics.OpenGL.VertexAttribPointerTypeArb)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glVertexAttribPointerARB((UInt32)index, (Int32)size, (OpenTK.Graphics.VertexAttribPointerTypeArb)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -24325,14 +24325,14 @@ namespace OpenTK.Graphics.OpenGL } public static - void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, [In, Out] object pointer) + void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.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.Graphics.OpenGL.VertexAttribPointerTypeArb)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glVertexAttribPointerARB((UInt32)index, (Int32)size, (OpenTK.Graphics.VertexAttribPointerTypeArb)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -24368,23 +24368,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void ProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.AssemblyProgramFormatArb format, Int32 len, IntPtr @string) + void ProgramString(OpenTK.Graphics.AssemblyProgramTargetArb target, OpenTK.Graphics.AssemblyProgramFormatArb format, Int32 len, IntPtr @string) { unsafe { - Delegates.glProgramStringARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.AssemblyProgramFormatArb)format, (Int32)len, (IntPtr)@string); + Delegates.glProgramStringARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (OpenTK.Graphics.AssemblyProgramFormatArb)format, (Int32)len, (IntPtr)@string); } } public static - void ProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.AssemblyProgramFormatArb format, Int32 len, [In, Out] object @string) + void ProgramString(OpenTK.Graphics.AssemblyProgramTargetArb target, OpenTK.Graphics.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.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.AssemblyProgramFormatArb)format, (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); + Delegates.glProgramStringARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (OpenTK.Graphics.AssemblyProgramFormatArb)format, (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); } finally { @@ -24395,15 +24395,15 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void BindProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 program) + void BindProgram(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 program) { - Delegates.glBindProgramARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)program); + Delegates.glBindProgramARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)program); } public static - void BindProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 program) + void BindProgram(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 program) { - Delegates.glBindProgramARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)program); + Delegates.glBindProgramARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)program); } [System.CLSCompliant(false)] @@ -24538,359 +24538,359 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Double x, Double y, Double z, Double w) + void ProgramEnvParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, Double x, Double y, Double z, Double w) { - Delegates.glProgramEnvParameter4dARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); + Delegates.glProgramEnvParameter4dARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); } public static - void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Double x, Double y, Double z, Double w) + void ProgramEnvParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, Double x, Double y, Double z, Double w) { - Delegates.glProgramEnvParameter4dARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); + Delegates.glProgramEnvParameter4dARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); } [System.CLSCompliant(false)] public static - void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Double[] @params) + void ProgramEnvParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, Double[] @params) { unsafe { fixed (Double* @params_ptr = @params) { - Delegates.glProgramEnvParameter4dvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + Delegates.glProgramEnvParameter4dvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); } } } public static - void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Double[] @params) + void ProgramEnvParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, Double[] @params) { unsafe { fixed (Double* @params_ptr = @params) { - Delegates.glProgramEnvParameter4dvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + Delegates.glProgramEnvParameter4dvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, ref Double @params) + void ProgramEnvParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, ref Double @params) { unsafe { fixed (Double* @params_ptr = &@params) { - Delegates.glProgramEnvParameter4dvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + Delegates.glProgramEnvParameter4dvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); } } } public static - void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, ref Double @params) + void ProgramEnvParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, ref Double @params) { unsafe { fixed (Double* @params_ptr = &@params) { - Delegates.glProgramEnvParameter4dvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + Delegates.glProgramEnvParameter4dvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Double* @params) + unsafe void ProgramEnvParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, Double* @params) { - Delegates.glProgramEnvParameter4dvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params); + Delegates.glProgramEnvParameter4dvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params); } [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Double* @params) + unsafe void ProgramEnvParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, Double* @params) { - Delegates.glProgramEnvParameter4dvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params); + Delegates.glProgramEnvParameter4dvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params); } [System.CLSCompliant(false)] public static - void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Single x, Single y, Single z, Single w) + void ProgramEnvParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, Single x, Single y, Single z, Single w) { - Delegates.glProgramEnvParameter4fARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); + Delegates.glProgramEnvParameter4fARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); } public static - void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Single x, Single y, Single z, Single w) + void ProgramEnvParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, Single x, Single y, Single z, Single w) { - Delegates.glProgramEnvParameter4fARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); + Delegates.glProgramEnvParameter4fARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); } [System.CLSCompliant(false)] public static - void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Single[] @params) + void ProgramEnvParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glProgramEnvParameter4fvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + Delegates.glProgramEnvParameter4fvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); } } } public static - void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Single[] @params) + void ProgramEnvParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glProgramEnvParameter4fvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + Delegates.glProgramEnvParameter4fvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, ref Single @params) + void ProgramEnvParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glProgramEnvParameter4fvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + Delegates.glProgramEnvParameter4fvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); } } } public static - void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, ref Single @params) + void ProgramEnvParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glProgramEnvParameter4fvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + Delegates.glProgramEnvParameter4fvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Single* @params) + unsafe void ProgramEnvParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, Single* @params) { - Delegates.glProgramEnvParameter4fvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params); + Delegates.glProgramEnvParameter4fvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params); } [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Single* @params) + unsafe void ProgramEnvParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, Single* @params) { - Delegates.glProgramEnvParameter4fvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params); + Delegates.glProgramEnvParameter4fvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params); } [System.CLSCompliant(false)] public static - void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Double x, Double y, Double z, Double w) + void ProgramLocalParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, Double x, Double y, Double z, Double w) { - Delegates.glProgramLocalParameter4dARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); + Delegates.glProgramLocalParameter4dARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); } public static - void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Double x, Double y, Double z, Double w) + void ProgramLocalParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, Double x, Double y, Double z, Double w) { - Delegates.glProgramLocalParameter4dARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); + Delegates.glProgramLocalParameter4dARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); } [System.CLSCompliant(false)] public static - void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Double[] @params) + void ProgramLocalParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, Double[] @params) { unsafe { fixed (Double* @params_ptr = @params) { - Delegates.glProgramLocalParameter4dvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + Delegates.glProgramLocalParameter4dvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); } } } public static - void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Double[] @params) + void ProgramLocalParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, Double[] @params) { unsafe { fixed (Double* @params_ptr = @params) { - Delegates.glProgramLocalParameter4dvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + Delegates.glProgramLocalParameter4dvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, ref Double @params) + void ProgramLocalParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, ref Double @params) { unsafe { fixed (Double* @params_ptr = &@params) { - Delegates.glProgramLocalParameter4dvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + Delegates.glProgramLocalParameter4dvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); } } } public static - void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, ref Double @params) + void ProgramLocalParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, ref Double @params) { unsafe { fixed (Double* @params_ptr = &@params) { - Delegates.glProgramLocalParameter4dvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + Delegates.glProgramLocalParameter4dvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Double* @params) + unsafe void ProgramLocalParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, Double* @params) { - Delegates.glProgramLocalParameter4dvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params); + Delegates.glProgramLocalParameter4dvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params); } [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Double* @params) + unsafe void ProgramLocalParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, Double* @params) { - Delegates.glProgramLocalParameter4dvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params); + Delegates.glProgramLocalParameter4dvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params); } [System.CLSCompliant(false)] public static - void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Single x, Single y, Single z, Single w) + void ProgramLocalParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, Single x, Single y, Single z, Single w) { - Delegates.glProgramLocalParameter4fARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); + Delegates.glProgramLocalParameter4fARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); } public static - void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Single x, Single y, Single z, Single w) + void ProgramLocalParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, Single x, Single y, Single z, Single w) { - Delegates.glProgramLocalParameter4fARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); + Delegates.glProgramLocalParameter4fARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); } [System.CLSCompliant(false)] public static - void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Single[] @params) + void ProgramLocalParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glProgramLocalParameter4fvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + Delegates.glProgramLocalParameter4fvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); } } } public static - void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Single[] @params) + void ProgramLocalParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glProgramLocalParameter4fvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + Delegates.glProgramLocalParameter4fvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, ref Single @params) + void ProgramLocalParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glProgramLocalParameter4fvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + Delegates.glProgramLocalParameter4fvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); } } } public static - void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, ref Single @params) + void ProgramLocalParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glProgramLocalParameter4fvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + Delegates.glProgramLocalParameter4fvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Single* @params) + unsafe void ProgramLocalParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, Single* @params) { - Delegates.glProgramLocalParameter4fvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params); + Delegates.glProgramLocalParameter4fvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params); } [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Single* @params) + unsafe void ProgramLocalParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, Single* @params) { - Delegates.glProgramLocalParameter4fvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params); + Delegates.glProgramLocalParameter4fvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params); } [System.CLSCompliant(false)] public static - void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [Out] Double[] @params) + void GetProgramEnvParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, [Out] Double[] @params) { unsafe { fixed (Double* @params_ptr = @params) { - Delegates.glGetProgramEnvParameterdvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + Delegates.glGetProgramEnvParameterdvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); } } } public static - void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [Out] Double[] @params) + void GetProgramEnvParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, [Out] Double[] @params) { unsafe { fixed (Double* @params_ptr = @params) { - Delegates.glGetProgramEnvParameterdvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + Delegates.glGetProgramEnvParameterdvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [Out] out Double @params) + void GetProgramEnvParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, [Out] out Double @params) { unsafe { fixed (Double* @params_ptr = &@params) { - Delegates.glGetProgramEnvParameterdvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + Delegates.glGetProgramEnvParameterdvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); @params = *@params_ptr; } } } public static - void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [Out] out Double @params) + void GetProgramEnvParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, [Out] out Double @params) { unsafe { fixed (Double* @params_ptr = &@params) { - Delegates.glGetProgramEnvParameterdvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + Delegates.glGetProgramEnvParameterdvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); @params = *@params_ptr; } } @@ -24898,65 +24898,65 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [Out] Double* @params) + unsafe void GetProgramEnvParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, [Out] Double* @params) { - Delegates.glGetProgramEnvParameterdvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params); + Delegates.glGetProgramEnvParameterdvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [Out] Double* @params) + unsafe void GetProgramEnvParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, [Out] Double* @params) { - Delegates.glGetProgramEnvParameterdvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params); + Delegates.glGetProgramEnvParameterdvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params); } [System.CLSCompliant(false)] public static - void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [Out] Single[] @params) + void GetProgramEnvParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetProgramEnvParameterfvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + Delegates.glGetProgramEnvParameterfvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); } } } public static - void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [Out] Single[] @params) + void GetProgramEnvParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetProgramEnvParameterfvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + Delegates.glGetProgramEnvParameterfvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [Out] out Single @params) + void GetProgramEnvParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetProgramEnvParameterfvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + Delegates.glGetProgramEnvParameterfvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); @params = *@params_ptr; } } } public static - void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [Out] out Single @params) + void GetProgramEnvParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetProgramEnvParameterfvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + Delegates.glGetProgramEnvParameterfvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -24964,65 +24964,65 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [Out] Single* @params) + unsafe void GetProgramEnvParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, [Out] Single* @params) { - Delegates.glGetProgramEnvParameterfvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params); + Delegates.glGetProgramEnvParameterfvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [Out] Single* @params) + unsafe void GetProgramEnvParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, [Out] Single* @params) { - Delegates.glGetProgramEnvParameterfvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params); + Delegates.glGetProgramEnvParameterfvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params); } [System.CLSCompliant(false)] public static - void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [Out] Double[] @params) + void GetProgramLocalParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, [Out] Double[] @params) { unsafe { fixed (Double* @params_ptr = @params) { - Delegates.glGetProgramLocalParameterdvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + Delegates.glGetProgramLocalParameterdvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); } } } public static - void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [Out] Double[] @params) + void GetProgramLocalParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, [Out] Double[] @params) { unsafe { fixed (Double* @params_ptr = @params) { - Delegates.glGetProgramLocalParameterdvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + Delegates.glGetProgramLocalParameterdvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [Out] out Double @params) + void GetProgramLocalParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, [Out] out Double @params) { unsafe { fixed (Double* @params_ptr = &@params) { - Delegates.glGetProgramLocalParameterdvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + Delegates.glGetProgramLocalParameterdvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); @params = *@params_ptr; } } } public static - void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [Out] out Double @params) + void GetProgramLocalParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, [Out] out Double @params) { unsafe { fixed (Double* @params_ptr = &@params) { - Delegates.glGetProgramLocalParameterdvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + Delegates.glGetProgramLocalParameterdvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); @params = *@params_ptr; } } @@ -25030,65 +25030,65 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [Out] Double* @params) + unsafe void GetProgramLocalParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, [Out] Double* @params) { - Delegates.glGetProgramLocalParameterdvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params); + Delegates.glGetProgramLocalParameterdvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [Out] Double* @params) + unsafe void GetProgramLocalParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, [Out] Double* @params) { - Delegates.glGetProgramLocalParameterdvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params); + Delegates.glGetProgramLocalParameterdvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params); } [System.CLSCompliant(false)] public static - void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [Out] Single[] @params) + void GetProgramLocalParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetProgramLocalParameterfvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + Delegates.glGetProgramLocalParameterfvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); } } } public static - void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [Out] Single[] @params) + void GetProgramLocalParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetProgramLocalParameterfvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + Delegates.glGetProgramLocalParameterfvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [Out] out Single @params) + void GetProgramLocalParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetProgramLocalParameterfvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + Delegates.glGetProgramLocalParameterfvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); @params = *@params_ptr; } } } public static - void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [Out] out Single @params) + void GetProgramLocalParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetProgramLocalParameterfvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + Delegates.glGetProgramLocalParameterfvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -25096,38 +25096,38 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [Out] Single* @params) + unsafe void GetProgramLocalParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, [Out] Single* @params) { - Delegates.glGetProgramLocalParameterfvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params); + Delegates.glGetProgramLocalParameterfvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [Out] Single* @params) + unsafe void GetProgramLocalParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, [Out] Single* @params) { - Delegates.glGetProgramLocalParameterfvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params); + Delegates.glGetProgramLocalParameterfvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params); } public static - void GetProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [Out] Int32[] @params) + void GetProgram(OpenTK.Graphics.AssemblyProgramTargetArb target, OpenTK.Graphics.AssemblyProgramParameterArb pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramivARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (Int32*)@params_ptr); + Delegates.glGetProgramivARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (OpenTK.Graphics.AssemblyProgramParameterArb)pname, (Int32*)@params_ptr); } } } public static - void GetProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [Out] out Int32 @params) + void GetProgram(OpenTK.Graphics.AssemblyProgramTargetArb target, OpenTK.Graphics.AssemblyProgramParameterArb pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramivARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (Int32*)@params_ptr); + Delegates.glGetProgramivARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (OpenTK.Graphics.AssemblyProgramParameterArb)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -25135,29 +25135,29 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [Out] Int32* @params) + unsafe void GetProgram(OpenTK.Graphics.AssemblyProgramTargetArb target, OpenTK.Graphics.AssemblyProgramParameterArb pname, [Out] Int32* @params) { - Delegates.glGetProgramivARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (Int32*)@params); + Delegates.glGetProgramivARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (OpenTK.Graphics.AssemblyProgramParameterArb)pname, (Int32*)@params); } public static - void GetProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.AssemblyProgramStringParameterArb pname, [Out] IntPtr @string) + void GetProgramString(OpenTK.Graphics.AssemblyProgramTargetArb target, OpenTK.Graphics.AssemblyProgramStringParameterArb pname, [Out] IntPtr @string) { unsafe { - Delegates.glGetProgramStringARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.AssemblyProgramStringParameterArb)pname, (IntPtr)@string); + Delegates.glGetProgramStringARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (OpenTK.Graphics.AssemblyProgramStringParameterArb)pname, (IntPtr)@string); } } public static - void GetProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.AssemblyProgramStringParameterArb pname, [In, Out] object @string) + void GetProgramString(OpenTK.Graphics.AssemblyProgramTargetArb target, OpenTK.Graphics.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.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.AssemblyProgramStringParameterArb)pname, (IntPtr)@string_ptr.AddrOfPinnedObject()); + Delegates.glGetProgramStringARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (OpenTK.Graphics.AssemblyProgramStringParameterArb)pname, (IntPtr)@string_ptr.AddrOfPinnedObject()); } finally { @@ -25168,51 +25168,51 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [Out] Double[] @params) + void GetVertexAttrib(UInt32 index, OpenTK.Graphics.VertexAttribParameterArb pname, [Out] Double[] @params) { unsafe { fixed (Double* @params_ptr = @params) { - Delegates.glGetVertexAttribdvARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (Double*)@params_ptr); + Delegates.glGetVertexAttribdvARB((UInt32)index, (OpenTK.Graphics.VertexAttribParameterArb)pname, (Double*)@params_ptr); } } } public static - void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [Out] Double[] @params) + void GetVertexAttrib(Int32 index, OpenTK.Graphics.VertexAttribParameterArb pname, [Out] Double[] @params) { unsafe { fixed (Double* @params_ptr = @params) { - Delegates.glGetVertexAttribdvARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (Double*)@params_ptr); + Delegates.glGetVertexAttribdvARB((UInt32)index, (OpenTK.Graphics.VertexAttribParameterArb)pname, (Double*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [Out] out Double @params) + void GetVertexAttrib(UInt32 index, OpenTK.Graphics.VertexAttribParameterArb pname, [Out] out Double @params) { unsafe { fixed (Double* @params_ptr = &@params) { - Delegates.glGetVertexAttribdvARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (Double*)@params_ptr); + Delegates.glGetVertexAttribdvARB((UInt32)index, (OpenTK.Graphics.VertexAttribParameterArb)pname, (Double*)@params_ptr); @params = *@params_ptr; } } } public static - void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [Out] out Double @params) + void GetVertexAttrib(Int32 index, OpenTK.Graphics.VertexAttribParameterArb pname, [Out] out Double @params) { unsafe { fixed (Double* @params_ptr = &@params) { - Delegates.glGetVertexAttribdvARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (Double*)@params_ptr); + Delegates.glGetVertexAttribdvARB((UInt32)index, (OpenTK.Graphics.VertexAttribParameterArb)pname, (Double*)@params_ptr); @params = *@params_ptr; } } @@ -25220,65 +25220,65 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [Out] Double* @params) + unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.VertexAttribParameterArb pname, [Out] Double* @params) { - Delegates.glGetVertexAttribdvARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (Double*)@params); + Delegates.glGetVertexAttribdvARB((UInt32)index, (OpenTK.Graphics.VertexAttribParameterArb)pname, (Double*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [Out] Double* @params) + unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.VertexAttribParameterArb pname, [Out] Double* @params) { - Delegates.glGetVertexAttribdvARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (Double*)@params); + Delegates.glGetVertexAttribdvARB((UInt32)index, (OpenTK.Graphics.VertexAttribParameterArb)pname, (Double*)@params); } [System.CLSCompliant(false)] public static - void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [Out] Single[] @params) + void GetVertexAttrib(UInt32 index, OpenTK.Graphics.VertexAttribParameterArb pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetVertexAttribfvARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (Single*)@params_ptr); + Delegates.glGetVertexAttribfvARB((UInt32)index, (OpenTK.Graphics.VertexAttribParameterArb)pname, (Single*)@params_ptr); } } } public static - void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [Out] Single[] @params) + void GetVertexAttrib(Int32 index, OpenTK.Graphics.VertexAttribParameterArb pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetVertexAttribfvARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (Single*)@params_ptr); + Delegates.glGetVertexAttribfvARB((UInt32)index, (OpenTK.Graphics.VertexAttribParameterArb)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [Out] out Single @params) + void GetVertexAttrib(UInt32 index, OpenTK.Graphics.VertexAttribParameterArb pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVertexAttribfvARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (Single*)@params_ptr); + Delegates.glGetVertexAttribfvARB((UInt32)index, (OpenTK.Graphics.VertexAttribParameterArb)pname, (Single*)@params_ptr); @params = *@params_ptr; } } } public static - void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [Out] out Single @params) + void GetVertexAttrib(Int32 index, OpenTK.Graphics.VertexAttribParameterArb pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVertexAttribfvARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (Single*)@params_ptr); + Delegates.glGetVertexAttribfvARB((UInt32)index, (OpenTK.Graphics.VertexAttribParameterArb)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -25286,65 +25286,65 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [Out] Single* @params) + unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.VertexAttribParameterArb pname, [Out] Single* @params) { - Delegates.glGetVertexAttribfvARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (Single*)@params); + Delegates.glGetVertexAttribfvARB((UInt32)index, (OpenTK.Graphics.VertexAttribParameterArb)pname, (Single*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [Out] Single* @params) + unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.VertexAttribParameterArb pname, [Out] Single* @params) { - Delegates.glGetVertexAttribfvARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (Single*)@params); + Delegates.glGetVertexAttribfvARB((UInt32)index, (OpenTK.Graphics.VertexAttribParameterArb)pname, (Single*)@params); } [System.CLSCompliant(false)] public static - void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [Out] Int32[] @params) + void GetVertexAttrib(UInt32 index, OpenTK.Graphics.VertexAttribParameterArb pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVertexAttribivARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (Int32*)@params_ptr); + Delegates.glGetVertexAttribivARB((UInt32)index, (OpenTK.Graphics.VertexAttribParameterArb)pname, (Int32*)@params_ptr); } } } public static - void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [Out] Int32[] @params) + void GetVertexAttrib(Int32 index, OpenTK.Graphics.VertexAttribParameterArb pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVertexAttribivARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (Int32*)@params_ptr); + Delegates.glGetVertexAttribivARB((UInt32)index, (OpenTK.Graphics.VertexAttribParameterArb)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [Out] out Int32 @params) + void GetVertexAttrib(UInt32 index, OpenTK.Graphics.VertexAttribParameterArb pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribivARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (Int32*)@params_ptr); + Delegates.glGetVertexAttribivARB((UInt32)index, (OpenTK.Graphics.VertexAttribParameterArb)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } } public static - void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [Out] out Int32 @params) + void GetVertexAttrib(Int32 index, OpenTK.Graphics.VertexAttribParameterArb pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribivARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (Int32*)@params_ptr); + Delegates.glGetVertexAttribivARB((UInt32)index, (OpenTK.Graphics.VertexAttribParameterArb)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -25352,47 +25352,47 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [Out] Int32* @params) + unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.VertexAttribParameterArb pname, [Out] Int32* @params) { - Delegates.glGetVertexAttribivARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (Int32*)@params); + Delegates.glGetVertexAttribivARB((UInt32)index, (OpenTK.Graphics.VertexAttribParameterArb)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [Out] Int32* @params) + unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.VertexAttribParameterArb pname, [Out] Int32* @params) { - Delegates.glGetVertexAttribivARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (Int32*)@params); + Delegates.glGetVertexAttribivARB((UInt32)index, (OpenTK.Graphics.VertexAttribParameterArb)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb pname, [Out] IntPtr pointer) + void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.VertexAttribPointerParameterArb pname, [Out] IntPtr pointer) { unsafe { - Delegates.glGetVertexAttribPointervARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb)pname, (IntPtr)pointer); + Delegates.glGetVertexAttribPointervARB((UInt32)index, (OpenTK.Graphics.VertexAttribPointerParameterArb)pname, (IntPtr)pointer); } } public static - void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb pname, [Out] IntPtr pointer) + void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.VertexAttribPointerParameterArb pname, [Out] IntPtr pointer) { unsafe { - Delegates.glGetVertexAttribPointervARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb)pname, (IntPtr)pointer); + Delegates.glGetVertexAttribPointervARB((UInt32)index, (OpenTK.Graphics.VertexAttribPointerParameterArb)pname, (IntPtr)pointer); } } [System.CLSCompliant(false)] public static - void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb pname, [In, Out] object pointer) + void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.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.Graphics.OpenGL.VertexAttribPointerParameterArb)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glGetVertexAttribPointervARB((UInt32)index, (OpenTK.Graphics.VertexAttribPointerParameterArb)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -25402,14 +25402,14 @@ namespace OpenTK.Graphics.OpenGL } public static - void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb pname, [In, Out] object pointer) + void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.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.Graphics.OpenGL.VertexAttribPointerParameterArb)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glGetVertexAttribPointervARB((UInt32)index, (OpenTK.Graphics.VertexAttribPointerParameterArb)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -25433,15 +25433,15 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void BindBuffer(OpenTK.Graphics.OpenGL.BufferTargetArb target, UInt32 buffer) + void BindBuffer(OpenTK.Graphics.BufferTargetArb target, UInt32 buffer) { - Delegates.glBindBufferARB((OpenTK.Graphics.OpenGL.BufferTargetArb)target, (UInt32)buffer); + Delegates.glBindBufferARB((OpenTK.Graphics.BufferTargetArb)target, (UInt32)buffer); } public static - void BindBuffer(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 buffer) + void BindBuffer(OpenTK.Graphics.BufferTargetArb target, Int32 buffer) { - Delegates.glBindBufferARB((OpenTK.Graphics.OpenGL.BufferTargetArb)target, (UInt32)buffer); + Delegates.glBindBufferARB((OpenTK.Graphics.BufferTargetArb)target, (UInt32)buffer); } [System.CLSCompliant(false)] @@ -25588,23 +25588,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void BufferData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr size, IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageArb usage) + void BufferData(OpenTK.Graphics.BufferTargetArb target, IntPtr size, IntPtr data, OpenTK.Graphics.BufferUsageArb usage) { unsafe { - Delegates.glBufferDataARB((OpenTK.Graphics.OpenGL.BufferTargetArb)target, (IntPtr)size, (IntPtr)data, (OpenTK.Graphics.OpenGL.BufferUsageArb)usage); + Delegates.glBufferDataARB((OpenTK.Graphics.BufferTargetArb)target, (IntPtr)size, (IntPtr)data, (OpenTK.Graphics.BufferUsageArb)usage); } } public static - void BufferData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr size, [In, Out] object data, OpenTK.Graphics.OpenGL.BufferUsageArb usage) + void BufferData(OpenTK.Graphics.BufferTargetArb target, IntPtr size, [In, Out] object data, OpenTK.Graphics.BufferUsageArb usage) { unsafe { System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glBufferDataARB((OpenTK.Graphics.OpenGL.BufferTargetArb)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.BufferUsageArb)usage); + Delegates.glBufferDataARB((OpenTK.Graphics.BufferTargetArb)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.BufferUsageArb)usage); } finally { @@ -25614,23 +25614,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void BufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, IntPtr size, IntPtr data) + void BufferSubData(OpenTK.Graphics.BufferTargetArb target, IntPtr offset, IntPtr size, IntPtr data) { unsafe { - Delegates.glBufferSubDataARB((OpenTK.Graphics.OpenGL.BufferTargetArb)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data); + Delegates.glBufferSubDataARB((OpenTK.Graphics.BufferTargetArb)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data); } } public static - void BufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, IntPtr size, [In, Out] object data) + void BufferSubData(OpenTK.Graphics.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.Graphics.OpenGL.BufferTargetArb)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + Delegates.glBufferSubDataARB((OpenTK.Graphics.BufferTargetArb)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -25640,23 +25640,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, IntPtr size, [Out] IntPtr data) + void GetBufferSubData(OpenTK.Graphics.BufferTargetArb target, IntPtr offset, IntPtr size, [Out] IntPtr data) { unsafe { - Delegates.glGetBufferSubDataARB((OpenTK.Graphics.OpenGL.BufferTargetArb)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data); + Delegates.glGetBufferSubDataARB((OpenTK.Graphics.BufferTargetArb)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data); } } public static - void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, IntPtr size, [In, Out] object data) + void GetBufferSubData(OpenTK.Graphics.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.Graphics.OpenGL.BufferTargetArb)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + Delegates.glGetBufferSubDataARB((OpenTK.Graphics.BufferTargetArb)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -25667,37 +25667,37 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe IntPtr MapBuffer(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.BufferAccessArb access) + unsafe IntPtr MapBuffer(OpenTK.Graphics.BufferTargetArb target, OpenTK.Graphics.BufferAccessArb access) { - return Delegates.glMapBufferARB((OpenTK.Graphics.OpenGL.BufferTargetArb)target, (OpenTK.Graphics.OpenGL.BufferAccessArb)access); + return Delegates.glMapBufferARB((OpenTK.Graphics.BufferTargetArb)target, (OpenTK.Graphics.BufferAccessArb)access); } public static - bool UnmapBuffer(OpenTK.Graphics.OpenGL.BufferTargetArb target) + bool UnmapBuffer(OpenTK.Graphics.BufferTargetArb target) { - return Delegates.glUnmapBufferARB((OpenTK.Graphics.OpenGL.BufferTargetArb)target); + return Delegates.glUnmapBufferARB((OpenTK.Graphics.BufferTargetArb)target); } public static - void GetBufferParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.BufferParameterNameArb pname, [Out] Int32[] @params) + void GetBufferParameter(OpenTK.Graphics.All target, OpenTK.Graphics.BufferParameterNameArb pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetBufferParameterivARB((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.BufferParameterNameArb)pname, (Int32*)@params_ptr); + Delegates.glGetBufferParameterivARB((OpenTK.Graphics.All)target, (OpenTK.Graphics.BufferParameterNameArb)pname, (Int32*)@params_ptr); } } } public static - void GetBufferParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.BufferParameterNameArb pname, [Out] out Int32 @params) + void GetBufferParameter(OpenTK.Graphics.All target, OpenTK.Graphics.BufferParameterNameArb pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetBufferParameterivARB((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.BufferParameterNameArb)pname, (Int32*)@params_ptr); + Delegates.glGetBufferParameterivARB((OpenTK.Graphics.All)target, (OpenTK.Graphics.BufferParameterNameArb)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -25705,29 +25705,29 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.BufferParameterNameArb pname, [Out] Int32* @params) + unsafe void GetBufferParameter(OpenTK.Graphics.All target, OpenTK.Graphics.BufferParameterNameArb pname, [Out] Int32* @params) { - Delegates.glGetBufferParameterivARB((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.BufferParameterNameArb)pname, (Int32*)@params); + Delegates.glGetBufferParameterivARB((OpenTK.Graphics.All)target, (OpenTK.Graphics.BufferParameterNameArb)pname, (Int32*)@params); } public static - void GetBufferPointer(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.BufferPointerNameArb pname, [Out] IntPtr @params) + void GetBufferPointer(OpenTK.Graphics.All target, OpenTK.Graphics.BufferPointerNameArb pname, [Out] IntPtr @params) { unsafe { - Delegates.glGetBufferPointervARB((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.BufferPointerNameArb)pname, (IntPtr)@params); + Delegates.glGetBufferPointervARB((OpenTK.Graphics.All)target, (OpenTK.Graphics.BufferPointerNameArb)pname, (IntPtr)@params); } } public static - void GetBufferPointer(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.BufferPointerNameArb pname, [In, Out] object @params) + void GetBufferPointer(OpenTK.Graphics.All target, OpenTK.Graphics.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.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.BufferPointerNameArb)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + Delegates.glGetBufferPointervARB((OpenTK.Graphics.All)target, (OpenTK.Graphics.BufferPointerNameArb)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -25881,43 +25881,43 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void BeginQuery(OpenTK.Graphics.OpenGL.All target, UInt32 id) + void BeginQuery(OpenTK.Graphics.All target, UInt32 id) { - Delegates.glBeginQueryARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)id); + Delegates.glBeginQueryARB((OpenTK.Graphics.All)target, (UInt32)id); } public static - void BeginQuery(OpenTK.Graphics.OpenGL.All target, Int32 id) + void BeginQuery(OpenTK.Graphics.All target, Int32 id) { - Delegates.glBeginQueryARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)id); + Delegates.glBeginQueryARB((OpenTK.Graphics.All)target, (UInt32)id); } public static - void EndQuery(OpenTK.Graphics.OpenGL.All target) + void EndQuery(OpenTK.Graphics.All target) { - Delegates.glEndQueryARB((OpenTK.Graphics.OpenGL.All)target); + Delegates.glEndQueryARB((OpenTK.Graphics.All)target); } public static - void GetQuery(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetQuery(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetQueryivARB((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetQueryivARB((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void GetQuery(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetQuery(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetQueryivARB((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetQueryivARB((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -25925,33 +25925,33 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetQuery(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetQuery(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetQueryivARB((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glGetQueryivARB((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetQueryObject(UInt32 id, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetQueryObjectivARB((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetQueryObjectivARB((UInt32)id, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetQueryObject(UInt32 id, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetQueryObjectivARB((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetQueryObjectivARB((UInt32)id, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -25959,58 +25959,58 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetQueryObjectivARB((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glGetQueryObjectivARB((UInt32)id, (OpenTK.Graphics.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] UInt32[] @params) + void GetQueryObject(UInt32 id, OpenTK.Graphics.All pname, [Out] UInt32[] @params) { unsafe { fixed (UInt32* @params_ptr = @params) { - Delegates.glGetQueryObjectuivARB((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (UInt32*)@params_ptr); + Delegates.glGetQueryObjectuivARB((UInt32)id, (OpenTK.Graphics.All)pname, (UInt32*)@params_ptr); } } } public static - void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetQueryObject(Int32 id, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetQueryObjectuivARB((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (UInt32*)@params_ptr); + Delegates.glGetQueryObjectuivARB((UInt32)id, (OpenTK.Graphics.All)pname, (UInt32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] out UInt32 @params) + void GetQueryObject(UInt32 id, OpenTK.Graphics.All pname, [Out] out UInt32 @params) { unsafe { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetQueryObjectuivARB((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (UInt32*)@params_ptr); + Delegates.glGetQueryObjectuivARB((UInt32)id, (OpenTK.Graphics.All)pname, (UInt32*)@params_ptr); @params = *@params_ptr; } } } public static - void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetQueryObject(Int32 id, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetQueryObjectuivARB((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (UInt32*)@params_ptr); + Delegates.glGetQueryObjectuivARB((UInt32)id, (OpenTK.Graphics.All)pname, (UInt32*)@params_ptr); @params = *@params_ptr; } } @@ -26018,16 +26018,16 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] UInt32* @params) + unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.All pname, [Out] UInt32* @params) { - Delegates.glGetQueryObjectuivARB((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (UInt32*)@params); + Delegates.glGetQueryObjectuivARB((UInt32)id, (OpenTK.Graphics.All)pname, (UInt32*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetQueryObjectuivARB((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (UInt32*)@params); + Delegates.glGetQueryObjectuivARB((UInt32)id, (OpenTK.Graphics.All)pname, (UInt32*)@params); } [System.CLSCompliant(false)] @@ -26044,9 +26044,9 @@ namespace OpenTK.Graphics.OpenGL } public static - Int32 GetHandle(OpenTK.Graphics.OpenGL.All pname) + Int32 GetHandle(OpenTK.Graphics.All pname) { - return Delegates.glGetHandleARB((OpenTK.Graphics.OpenGL.All)pname); + return Delegates.glGetHandleARB((OpenTK.Graphics.All)pname); } [System.CLSCompliant(false)] @@ -26063,9 +26063,9 @@ namespace OpenTK.Graphics.OpenGL } public static - Int32 CreateShaderObject(OpenTK.Graphics.OpenGL.All shaderType) + Int32 CreateShaderObject(OpenTK.Graphics.All shaderType) { - return Delegates.glCreateShaderObjectARB((OpenTK.Graphics.OpenGL.All)shaderType); + return Delegates.glCreateShaderObjectARB((OpenTK.Graphics.All)shaderType); } [System.CLSCompliant(false)] @@ -26594,51 +26594,51 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void GetObjectParameter(UInt32 obj, OpenTK.Graphics.OpenGL.All pname, [Out] Single[] @params) + void GetObjectParameter(UInt32 obj, OpenTK.Graphics.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void GetObjectParameter(Int32 obj, OpenTK.Graphics.OpenGL.All pname, [Out] Single[] @params) + void GetObjectParameter(Int32 obj, OpenTK.Graphics.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetObjectParameter(UInt32 obj, OpenTK.Graphics.OpenGL.All pname, [Out] out Single @params) + void GetObjectParameter(UInt32 obj, OpenTK.Graphics.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } } public static - void GetObjectParameter(Int32 obj, OpenTK.Graphics.OpenGL.All pname, [Out] out Single @params) + void GetObjectParameter(Int32 obj, OpenTK.Graphics.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -26646,65 +26646,65 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetObjectParameter(UInt32 obj, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params) + unsafe void GetObjectParameter(UInt32 obj, OpenTK.Graphics.All pname, [Out] Single* @params) { - Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.Graphics.All)pname, (Single*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetObjectParameter(Int32 obj, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params) + unsafe void GetObjectParameter(Int32 obj, OpenTK.Graphics.All pname, [Out] Single* @params) { - Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.Graphics.All)pname, (Single*)@params); } [System.CLSCompliant(false)] public static - void GetObjectParameter(UInt32 obj, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetObjectParameter(UInt32 obj, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void GetObjectParameter(Int32 obj, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetObjectParameter(Int32 obj, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetObjectParameter(UInt32 obj, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetObjectParameter(UInt32 obj, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } } public static - void GetObjectParameter(Int32 obj, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetObjectParameter(Int32 obj, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -26712,16 +26712,16 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetObjectParameter(UInt32 obj, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetObjectParameter(UInt32 obj, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.Graphics.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetObjectParameter(Int32 obj, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetObjectParameter(Int32 obj, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.Graphics.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] @@ -26877,44 +26877,44 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.Graphics.OpenGL.All[] type, [Out] System.Text.StringBuilder name) + void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.Graphics.All[] type, [Out] System.Text.StringBuilder name) { unsafe { fixed (Int32* length_ptr = length) fixed (Int32* size_ptr = size) - fixed (OpenTK.Graphics.OpenGL.All* type_ptr = type) + fixed (OpenTK.Graphics.All* type_ptr = type) { - Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL.All*)type_ptr, (System.Text.StringBuilder)name); + Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.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.Graphics.OpenGL.All[] type, [Out] System.Text.StringBuilder name) + void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.Graphics.All[] type, [Out] System.Text.StringBuilder name) { unsafe { fixed (Int32* length_ptr = length) fixed (Int32* size_ptr = size) - fixed (OpenTK.Graphics.OpenGL.All* type_ptr = type) + fixed (OpenTK.Graphics.All* type_ptr = type) { - Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL.All*)type_ptr, (System.Text.StringBuilder)name); + Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.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.Graphics.OpenGL.All type, [Out] System.Text.StringBuilder name) + void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.Graphics.All type, [Out] System.Text.StringBuilder name) { unsafe { fixed (Int32* length_ptr = &length) fixed (Int32* size_ptr = &size) - fixed (OpenTK.Graphics.OpenGL.All* type_ptr = &type) + fixed (OpenTK.Graphics.All* type_ptr = &type) { - Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL.All*)type_ptr, (System.Text.StringBuilder)name); + Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.All*)type_ptr, (System.Text.StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -26923,15 +26923,15 @@ namespace OpenTK.Graphics.OpenGL } public static - void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.Graphics.OpenGL.All type, [Out] System.Text.StringBuilder name) + void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.Graphics.All type, [Out] System.Text.StringBuilder name) { unsafe { fixed (Int32* length_ptr = &length) fixed (Int32* size_ptr = &size) - fixed (OpenTK.Graphics.OpenGL.All* type_ptr = &type) + fixed (OpenTK.Graphics.All* type_ptr = &type) { - Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL.All*)type_ptr, (System.Text.StringBuilder)name); + Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.All*)type_ptr, (System.Text.StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -26941,16 +26941,16 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.Graphics.OpenGL.All* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.Graphics.All* type, [Out] System.Text.StringBuilder name) { - Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length, (Int32*)size, (OpenTK.Graphics.OpenGL.All*)type, (System.Text.StringBuilder)name); + Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length, (Int32*)size, (OpenTK.Graphics.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.Graphics.OpenGL.All* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.Graphics.All* type, [Out] System.Text.StringBuilder name) { - Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length, (Int32*)size, (OpenTK.Graphics.OpenGL.All*)type, (System.Text.StringBuilder)name); + Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length, (Int32*)size, (OpenTK.Graphics.All*)type, (System.Text.StringBuilder)name); } [System.CLSCompliant(false)] @@ -27166,44 +27166,44 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.Graphics.OpenGL.All[] type, [Out] System.Text.StringBuilder name) + void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.Graphics.All[] type, [Out] System.Text.StringBuilder name) { unsafe { fixed (Int32* length_ptr = length) fixed (Int32* size_ptr = size) - fixed (OpenTK.Graphics.OpenGL.All* type_ptr = type) + fixed (OpenTK.Graphics.All* type_ptr = type) { - Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL.All*)type_ptr, (System.Text.StringBuilder)name); + Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.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.Graphics.OpenGL.All[] type, [Out] System.Text.StringBuilder name) + void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.Graphics.All[] type, [Out] System.Text.StringBuilder name) { unsafe { fixed (Int32* length_ptr = length) fixed (Int32* size_ptr = size) - fixed (OpenTK.Graphics.OpenGL.All* type_ptr = type) + fixed (OpenTK.Graphics.All* type_ptr = type) { - Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL.All*)type_ptr, (System.Text.StringBuilder)name); + Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.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.Graphics.OpenGL.All type, [Out] System.Text.StringBuilder name) + void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.Graphics.All type, [Out] System.Text.StringBuilder name) { unsafe { fixed (Int32* length_ptr = &length) fixed (Int32* size_ptr = &size) - fixed (OpenTK.Graphics.OpenGL.All* type_ptr = &type) + fixed (OpenTK.Graphics.All* type_ptr = &type) { - Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL.All*)type_ptr, (System.Text.StringBuilder)name); + Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.All*)type_ptr, (System.Text.StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -27212,15 +27212,15 @@ namespace OpenTK.Graphics.OpenGL } public static - void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.Graphics.OpenGL.All type, [Out] System.Text.StringBuilder name) + void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.Graphics.All type, [Out] System.Text.StringBuilder name) { unsafe { fixed (Int32* length_ptr = &length) fixed (Int32* size_ptr = &size) - fixed (OpenTK.Graphics.OpenGL.All* type_ptr = &type) + fixed (OpenTK.Graphics.All* type_ptr = &type) { - Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL.All*)type_ptr, (System.Text.StringBuilder)name); + Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.All*)type_ptr, (System.Text.StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -27230,16 +27230,16 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.Graphics.OpenGL.All* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.Graphics.All* type, [Out] System.Text.StringBuilder name) { - Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length, (Int32*)size, (OpenTK.Graphics.OpenGL.All*)type, (System.Text.StringBuilder)name); + Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length, (Int32*)size, (OpenTK.Graphics.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.Graphics.OpenGL.All* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.Graphics.All* type, [Out] System.Text.StringBuilder name) { - Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length, (Int32*)size, (OpenTK.Graphics.OpenGL.All*)type, (System.Text.StringBuilder)name); + Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length, (Int32*)size, (OpenTK.Graphics.All*)type, (System.Text.StringBuilder)name); } [System.CLSCompliant(false)] @@ -27256,40 +27256,40 @@ namespace OpenTK.Graphics.OpenGL } public static - void DrawBuffers(Int32 n, OpenTK.Graphics.OpenGL.All[] bufs) + void DrawBuffers(Int32 n, OpenTK.Graphics.All[] bufs) { unsafe { - fixed (OpenTK.Graphics.OpenGL.All* bufs_ptr = bufs) + fixed (OpenTK.Graphics.All* bufs_ptr = bufs) { - Delegates.glDrawBuffersARB((Int32)n, (OpenTK.Graphics.OpenGL.All*)bufs_ptr); + Delegates.glDrawBuffersARB((Int32)n, (OpenTK.Graphics.All*)bufs_ptr); } } } public static - void DrawBuffers(Int32 n, ref OpenTK.Graphics.OpenGL.All bufs) + void DrawBuffers(Int32 n, ref OpenTK.Graphics.All bufs) { unsafe { - fixed (OpenTK.Graphics.OpenGL.All* bufs_ptr = &bufs) + fixed (OpenTK.Graphics.All* bufs_ptr = &bufs) { - Delegates.glDrawBuffersARB((Int32)n, (OpenTK.Graphics.OpenGL.All*)bufs_ptr); + Delegates.glDrawBuffersARB((Int32)n, (OpenTK.Graphics.All*)bufs_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.OpenGL.All* bufs) + unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.All* bufs) { - Delegates.glDrawBuffersARB((Int32)n, (OpenTK.Graphics.OpenGL.All*)bufs); + Delegates.glDrawBuffersARB((Int32)n, (OpenTK.Graphics.All*)bufs); } public static - void ClampColor(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All clamp) + void ClampColor(OpenTK.Graphics.All target, OpenTK.Graphics.All clamp) { - Delegates.glClampColorARB((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)clamp); + Delegates.glClampColorARB((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)clamp); } } @@ -27303,23 +27303,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void TexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) + void TexImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels) { unsafe { - Delegates.glTexImage3DEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + Delegates.glTexImage3DEXT((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels); } } public static - void TexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [In, Out] object pixels) + void TexImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.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.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + Delegates.glTexImage3DEXT((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -27329,23 +27329,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void TexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) + void TexSubImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels) { unsafe { - Delegates.glTexSubImage3DEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + Delegates.glTexSubImage3DEXT((OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels); } } public static - void TexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [In, Out] object pixels) + void TexSubImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.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.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + Delegates.glTexSubImage3DEXT((OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -27355,23 +27355,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void TexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) + void TexSubImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels) { unsafe { - Delegates.glTexSubImage1DEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + Delegates.glTexSubImage1DEXT((OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels); } } public static - void TexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [In, Out] object pixels) + void TexSubImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.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.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + Delegates.glTexSubImage1DEXT((OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -27381,23 +27381,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void TexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) + void TexSubImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels) { unsafe { - Delegates.glTexSubImage2DEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + Delegates.glTexSubImage2DEXT((OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels); } } public static - void TexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [In, Out] object pixels) + void TexSubImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.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.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + Delegates.glTexSubImage2DEXT((OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -27407,53 +27407,53 @@ namespace OpenTK.Graphics.OpenGL } public static - void CopyTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border) + void CopyTexImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { - Delegates.glCopyTexImage1DEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)border); + Delegates.glCopyTexImage1DEXT((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)border); } public static - void CopyTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) + void CopyTexImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { - Delegates.glCopyTexImage2DEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border); + Delegates.glCopyTexImage2DEXT((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border); } public static - void CopyTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) + void CopyTexSubImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { - Delegates.glCopyTexSubImage1DEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)x, (Int32)y, (Int32)width); + Delegates.glCopyTexSubImage1DEXT((OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)x, (Int32)y, (Int32)width); } public static - void CopyTexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) + void CopyTexSubImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { - Delegates.glCopyTexSubImage2DEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + Delegates.glCopyTexSubImage2DEXT((OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); } public static - void CopyTexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) + void CopyTexSubImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { - Delegates.glCopyTexSubImage3DEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + Delegates.glCopyTexSubImage3DEXT((OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); } public static - void GetHistogram(OpenTK.Graphics.OpenGL.All target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [Out] IntPtr values) + void GetHistogram(OpenTK.Graphics.All target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr values) { unsafe { - Delegates.glGetHistogramEXT((OpenTK.Graphics.OpenGL.All)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values); + Delegates.glGetHistogramEXT((OpenTK.Graphics.All)target, (bool)reset, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)values); } } public static - void GetHistogram(OpenTK.Graphics.OpenGL.All target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [In, Out] object values) + void GetHistogram(OpenTK.Graphics.All target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.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.Graphics.OpenGL.All)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); + Delegates.glGetHistogramEXT((OpenTK.Graphics.All)target, (bool)reset, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); } finally { @@ -27463,25 +27463,25 @@ namespace OpenTK.Graphics.OpenGL } public static - void GetHistogramParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Single[] @params) + void GetHistogramParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetHistogramParameterfvEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetHistogramParameterfvEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void GetHistogramParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] out Single @params) + void GetHistogramParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetHistogramParameterfvEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetHistogramParameterfvEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -27489,31 +27489,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params) + unsafe void GetHistogramParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params) { - Delegates.glGetHistogramParameterfvEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glGetHistogramParameterfvEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params); } public static - void GetHistogramParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetHistogramParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetHistogramParameterivEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetHistogramParameterivEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void GetHistogramParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetHistogramParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetHistogramParameterivEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetHistogramParameterivEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -27521,29 +27521,29 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetHistogramParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetHistogramParameterivEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glGetHistogramParameterivEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params); } public static - void GetMinmax(OpenTK.Graphics.OpenGL.All target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [Out] IntPtr values) + void GetMinmax(OpenTK.Graphics.All target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr values) { unsafe { - Delegates.glGetMinmaxEXT((OpenTK.Graphics.OpenGL.All)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values); + Delegates.glGetMinmaxEXT((OpenTK.Graphics.All)target, (bool)reset, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)values); } } public static - void GetMinmax(OpenTK.Graphics.OpenGL.All target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [In, Out] object values) + void GetMinmax(OpenTK.Graphics.All target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.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.Graphics.OpenGL.All)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); + Delegates.glGetMinmaxEXT((OpenTK.Graphics.All)target, (bool)reset, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); } finally { @@ -27553,25 +27553,25 @@ namespace OpenTK.Graphics.OpenGL } public static - void GetMinmaxParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Single[] @params) + void GetMinmaxParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetMinmaxParameterfvEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetMinmaxParameterfvEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void GetMinmaxParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] out Single @params) + void GetMinmaxParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetMinmaxParameterfvEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetMinmaxParameterfvEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -27579,31 +27579,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params) + unsafe void GetMinmaxParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params) { - Delegates.glGetMinmaxParameterfvEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glGetMinmaxParameterfvEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params); } public static - void GetMinmaxParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetMinmaxParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetMinmaxParameterivEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetMinmaxParameterivEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void GetMinmaxParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetMinmaxParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetMinmaxParameterivEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetMinmaxParameterivEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -27611,53 +27611,53 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetMinmaxParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetMinmaxParameterivEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glGetMinmaxParameterivEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params); } public static - void Histogram(OpenTK.Graphics.OpenGL.All target, Int32 width, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink) + void Histogram(OpenTK.Graphics.All target, Int32 width, OpenTK.Graphics.PixelInternalFormat internalformat, bool sink) { - Delegates.glHistogramEXT((OpenTK.Graphics.OpenGL.All)target, (Int32)width, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (bool)sink); + Delegates.glHistogramEXT((OpenTK.Graphics.All)target, (Int32)width, (OpenTK.Graphics.PixelInternalFormat)internalformat, (bool)sink); } public static - void Minmax(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink) + void Minmax(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, bool sink) { - Delegates.glMinmaxEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (bool)sink); + Delegates.glMinmaxEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (bool)sink); } public static - void ResetHistogram(OpenTK.Graphics.OpenGL.All target) + void ResetHistogram(OpenTK.Graphics.All target) { - Delegates.glResetHistogramEXT((OpenTK.Graphics.OpenGL.All)target); + Delegates.glResetHistogramEXT((OpenTK.Graphics.All)target); } public static - void ResetMinmax(OpenTK.Graphics.OpenGL.All target) + void ResetMinmax(OpenTK.Graphics.All target) { - Delegates.glResetMinmaxEXT((OpenTK.Graphics.OpenGL.All)target); + Delegates.glResetMinmaxEXT((OpenTK.Graphics.All)target); } public static - void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr image) + void ConvolutionFilter1D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr image) { unsafe { - Delegates.glConvolutionFilter1DEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image); + Delegates.glConvolutionFilter1DEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)image); } } public static - void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [In, Out] object image) + void ConvolutionFilter1D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.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.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + Delegates.glConvolutionFilter1DEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -27667,23 +27667,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr image) + void ConvolutionFilter2D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr image) { unsafe { - Delegates.glConvolutionFilter2DEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image); + Delegates.glConvolutionFilter2DEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)image); } } public static - void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [In, Out] object image) + void ConvolutionFilter2D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.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.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + Delegates.glConvolutionFilter2DEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -27693,109 +27693,109 @@ namespace OpenTK.Graphics.OpenGL } public static - void ConvolutionParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Single @params) + void ConvolutionParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single @params) { - Delegates.glConvolutionParameterfEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single)@params); + Delegates.glConvolutionParameterfEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single)@params); } public static - void ConvolutionParameterv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Single[] @params) + void ConvolutionParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glConvolutionParameterfvEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glConvolutionParameterfvEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void ConvolutionParameterv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, ref Single @params) + void ConvolutionParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glConvolutionParameterfvEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glConvolutionParameterfvEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ConvolutionParameterv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Single* @params) + unsafe void ConvolutionParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single* @params) { - Delegates.glConvolutionParameterfvEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glConvolutionParameterfvEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params); } public static - void ConvolutionParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Int32 @params) + void ConvolutionParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32 @params) { - Delegates.glConvolutionParameteriEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32)@params); + Delegates.glConvolutionParameteriEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32)@params); } public static - void ConvolutionParameterv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Int32[] @params) + void ConvolutionParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glConvolutionParameterivEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glConvolutionParameterivEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void ConvolutionParameterv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, ref Int32 @params) + void ConvolutionParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glConvolutionParameterivEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glConvolutionParameterivEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ConvolutionParameterv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Int32* @params) + unsafe void ConvolutionParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32* @params) { - Delegates.glConvolutionParameterivEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glConvolutionParameterivEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params); } public static - void CopyConvolutionFilter1D(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) + void CopyConvolutionFilter1D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { - Delegates.glCopyConvolutionFilter1DEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width); + Delegates.glCopyConvolutionFilter1DEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width); } public static - void CopyConvolutionFilter2D(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height) + void CopyConvolutionFilter2D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height) { - Delegates.glCopyConvolutionFilter2DEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + Delegates.glCopyConvolutionFilter2DEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height); } public static - void GetConvolutionFilter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [Out] IntPtr image) + void GetConvolutionFilter(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr image) { unsafe { - Delegates.glGetConvolutionFilterEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image); + Delegates.glGetConvolutionFilterEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)image); } } public static - void GetConvolutionFilter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [In, Out] object image) + void GetConvolutionFilter(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.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.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + Delegates.glGetConvolutionFilterEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -27805,25 +27805,25 @@ namespace OpenTK.Graphics.OpenGL } public static - void GetConvolutionParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Single[] @params) + void GetConvolutionParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetConvolutionParameterfvEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetConvolutionParameterfvEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void GetConvolutionParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] out Single @params) + void GetConvolutionParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetConvolutionParameterfvEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetConvolutionParameterfvEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -27831,31 +27831,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params) + unsafe void GetConvolutionParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params) { - Delegates.glGetConvolutionParameterfvEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glGetConvolutionParameterfvEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params); } public static - void GetConvolutionParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetConvolutionParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetConvolutionParameterivEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetConvolutionParameterivEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void GetConvolutionParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetConvolutionParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetConvolutionParameterivEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetConvolutionParameterivEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -27863,22 +27863,22 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetConvolutionParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetConvolutionParameterivEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glGetConvolutionParameterivEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params); } public static - void GetSeparableFilter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [Out] IntPtr row, [Out] IntPtr column, [Out] IntPtr span) + void GetSeparableFilter(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr row, [Out] IntPtr column, [Out] IntPtr span) { unsafe { - Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row, (IntPtr)column, (IntPtr)span); + Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)row, (IntPtr)column, (IntPtr)span); } } public static - void GetSeparableFilter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [In, Out] object row, [In, Out] object column, [In, Out] object span) + void GetSeparableFilter(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object row, [In, Out] object column, [In, Out] object span) { unsafe { @@ -27887,7 +27887,7 @@ namespace OpenTK.Graphics.OpenGL System.Runtime.InteropServices.GCHandle span_ptr = System.Runtime.InteropServices.GCHandle.Alloc(span, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); + Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); } finally { @@ -27899,16 +27899,16 @@ namespace OpenTK.Graphics.OpenGL } public static - void SeparableFilter2D(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr row, IntPtr column) + void SeparableFilter2D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr row, IntPtr column) { unsafe { - Delegates.glSeparableFilter2DEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row, (IntPtr)column); + Delegates.glSeparableFilter2DEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)row, (IntPtr)column); } } public static - void SeparableFilter2D(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [In, Out] object row, [In, Out] object column) + void SeparableFilter2D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object row, [In, Out] object column) { unsafe { @@ -27916,7 +27916,7 @@ namespace OpenTK.Graphics.OpenGL System.Runtime.InteropServices.GCHandle column_ptr = System.Runtime.InteropServices.GCHandle.Alloc(column, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glSeparableFilter2DEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject()); + Delegates.glSeparableFilter2DEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject()); } finally { @@ -27928,15 +27928,15 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void BindTexture(OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 texture) + void BindTexture(OpenTK.Graphics.TextureTarget target, UInt32 texture) { - Delegates.glBindTextureEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (UInt32)texture); + Delegates.glBindTextureEXT((OpenTK.Graphics.TextureTarget)target, (UInt32)texture); } public static - void BindTexture(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 texture) + void BindTexture(OpenTK.Graphics.TextureTarget target, Int32 texture) { - Delegates.glBindTextureEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (UInt32)texture); + Delegates.glBindTextureEXT((OpenTK.Graphics.TextureTarget)target, (UInt32)texture); } [System.CLSCompliant(false)] @@ -28151,23 +28151,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, Int32 count, IntPtr pointer) + void ColorPointer(Int32 size, OpenTK.Graphics.ColorPointerType type, Int32 stride, Int32 count, IntPtr pointer) { unsafe { - Delegates.glColorPointerEXT((Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer); + Delegates.glColorPointerEXT((Int32)size, (OpenTK.Graphics.ColorPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer); } } public static - void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, Int32 count, [In, Out] object pointer) + void ColorPointer(Int32 size, OpenTK.Graphics.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.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glColorPointerEXT((Int32)size, (OpenTK.Graphics.ColorPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -28177,9 +28177,9 @@ namespace OpenTK.Graphics.OpenGL } public static - void DrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 first, Int32 count) + void DrawArrays(OpenTK.Graphics.BeginMode mode, Int32 first, Int32 count) { - Delegates.glDrawArraysEXT((OpenTK.Graphics.OpenGL.BeginMode)mode, (Int32)first, (Int32)count); + Delegates.glDrawArraysEXT((OpenTK.Graphics.BeginMode)mode, (Int32)first, (Int32)count); } public static @@ -28214,23 +28214,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void GetPointer(OpenTK.Graphics.OpenGL.GetPointervPName pname, [Out] IntPtr @params) + void GetPointer(OpenTK.Graphics.GetPointervPName pname, [Out] IntPtr @params) { unsafe { - Delegates.glGetPointervEXT((OpenTK.Graphics.OpenGL.GetPointervPName)pname, (IntPtr)@params); + Delegates.glGetPointervEXT((OpenTK.Graphics.GetPointervPName)pname, (IntPtr)@params); } } public static - void GetPointer(OpenTK.Graphics.OpenGL.GetPointervPName pname, [In, Out] object @params) + void GetPointer(OpenTK.Graphics.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.Graphics.OpenGL.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + Delegates.glGetPointervEXT((OpenTK.Graphics.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -28240,23 +28240,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void IndexPointer(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, Int32 count, IntPtr pointer) + void IndexPointer(OpenTK.Graphics.IndexPointerType type, Int32 stride, Int32 count, IntPtr pointer) { unsafe { - Delegates.glIndexPointerEXT((OpenTK.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer); + Delegates.glIndexPointerEXT((OpenTK.Graphics.IndexPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer); } } public static - void IndexPointer(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, Int32 count, [In, Out] object pointer) + void IndexPointer(OpenTK.Graphics.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.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glIndexPointerEXT((OpenTK.Graphics.IndexPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -28266,23 +28266,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, Int32 count, IntPtr pointer) + void NormalPointer(OpenTK.Graphics.NormalPointerType type, Int32 stride, Int32 count, IntPtr pointer) { unsafe { - Delegates.glNormalPointerEXT((OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer); + Delegates.glNormalPointerEXT((OpenTK.Graphics.NormalPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer); } } public static - void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, Int32 count, [In, Out] object pointer) + void NormalPointer(OpenTK.Graphics.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.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glNormalPointerEXT((OpenTK.Graphics.NormalPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -28292,23 +28292,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, Int32 count, IntPtr pointer) + void TexCoordPointer(Int32 size, OpenTK.Graphics.TexCoordPointerType type, Int32 stride, Int32 count, IntPtr pointer) { unsafe { - Delegates.glTexCoordPointerEXT((Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer); + Delegates.glTexCoordPointerEXT((Int32)size, (OpenTK.Graphics.TexCoordPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer); } } public static - void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, Int32 count, [In, Out] object pointer) + void TexCoordPointer(Int32 size, OpenTK.Graphics.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.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glTexCoordPointerEXT((Int32)size, (OpenTK.Graphics.TexCoordPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -28318,23 +28318,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, Int32 count, IntPtr pointer) + void VertexPointer(Int32 size, OpenTK.Graphics.VertexPointerType type, Int32 stride, Int32 count, IntPtr pointer) { unsafe { - Delegates.glVertexPointerEXT((Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer); + Delegates.glVertexPointerEXT((Int32)size, (OpenTK.Graphics.VertexPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer); } } public static - void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, Int32 count, [In, Out] object pointer) + void VertexPointer(Int32 size, OpenTK.Graphics.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.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glVertexPointerEXT((Int32)size, (OpenTK.Graphics.VertexPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -28344,66 +28344,66 @@ namespace OpenTK.Graphics.OpenGL } public static - void BlendEquation(OpenTK.Graphics.OpenGL.All mode) + void BlendEquation(OpenTK.Graphics.All mode) { - Delegates.glBlendEquationEXT((OpenTK.Graphics.OpenGL.All)mode); + Delegates.glBlendEquationEXT((OpenTK.Graphics.All)mode); } public static - void PointParameter(OpenTK.Graphics.OpenGL.All pname, Single param) + void PointParameter(OpenTK.Graphics.All pname, Single param) { - Delegates.glPointParameterfEXT((OpenTK.Graphics.OpenGL.All)pname, (Single)param); + Delegates.glPointParameterfEXT((OpenTK.Graphics.All)pname, (Single)param); } public static - void PointParameterv(OpenTK.Graphics.OpenGL.All pname, Single[] @params) + void PointParameterv(OpenTK.Graphics.All pname, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glPointParameterfvEXT((OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glPointParameterfvEXT((OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void PointParameterv(OpenTK.Graphics.OpenGL.All pname, ref Single @params) + void PointParameterv(OpenTK.Graphics.All pname, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glPointParameterfvEXT((OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glPointParameterfvEXT((OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void PointParameterv(OpenTK.Graphics.OpenGL.All pname, Single* @params) + unsafe void PointParameterv(OpenTK.Graphics.All pname, Single* @params) { - Delegates.glPointParameterfvEXT((OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glPointParameterfvEXT((OpenTK.Graphics.All)pname, (Single*)@params); } public static - void ColorSubTable(OpenTK.Graphics.OpenGL.All target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr data) + void ColorSubTable(OpenTK.Graphics.All target, Int32 start, Int32 count, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr data) { unsafe { - Delegates.glColorSubTableEXT((OpenTK.Graphics.OpenGL.All)target, (Int32)start, (Int32)count, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data); + Delegates.glColorSubTableEXT((OpenTK.Graphics.All)target, (Int32)start, (Int32)count, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)data); } } public static - void ColorSubTable(OpenTK.Graphics.OpenGL.All target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [In, Out] object data) + void ColorSubTable(OpenTK.Graphics.All target, Int32 start, Int32 count, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.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.Graphics.OpenGL.All)target, (Int32)start, (Int32)count, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + Delegates.glColorSubTableEXT((OpenTK.Graphics.All)target, (Int32)start, (Int32)count, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -28413,29 +28413,29 @@ namespace OpenTK.Graphics.OpenGL } public static - void CopyColorSubTable(OpenTK.Graphics.OpenGL.All target, Int32 start, Int32 x, Int32 y, Int32 width) + void CopyColorSubTable(OpenTK.Graphics.All target, Int32 start, Int32 x, Int32 y, Int32 width) { - Delegates.glCopyColorSubTableEXT((OpenTK.Graphics.OpenGL.All)target, (Int32)start, (Int32)x, (Int32)y, (Int32)width); + Delegates.glCopyColorSubTableEXT((OpenTK.Graphics.All)target, (Int32)start, (Int32)x, (Int32)y, (Int32)width); } public static - void ColorTable(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalFormat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr table) + void ColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalFormat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr table) { unsafe { - Delegates.glColorTableEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalFormat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table); + Delegates.glColorTableEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalFormat, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)table); } } public static - void ColorTable(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalFormat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [In, Out] object table) + void ColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalFormat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.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.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalFormat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); + Delegates.glColorTableEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalFormat, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); } finally { @@ -28445,23 +28445,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void GetColorTable(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [Out] IntPtr data) + void GetColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr data) { unsafe { - Delegates.glGetColorTableEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data); + Delegates.glGetColorTableEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)data); } } public static - void GetColorTable(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [In, Out] object data) + void GetColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.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.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + Delegates.glGetColorTableEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -28471,25 +28471,25 @@ namespace OpenTK.Graphics.OpenGL } public static - void GetColorTableParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetColorTableParameterivEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetColorTableParameterivEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void GetColorTableParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetColorTableParameterivEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetColorTableParameterivEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -28497,31 +28497,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetColorTableParameterivEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glGetColorTableParameterivEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params); } public static - void GetColorTableParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Single[] @params) + void GetColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetColorTableParameterfvEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetColorTableParameterfvEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void GetColorTableParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] out Single @params) + void GetColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetColorTableParameterfvEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetColorTableParameterfvEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -28529,21 +28529,21 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params) + unsafe void GetColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params) { - Delegates.glGetColorTableParameterfvEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glGetColorTableParameterfvEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params); } public static - void IndexMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.All mode) + void IndexMaterial(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.All mode) { - Delegates.glIndexMaterialEXT((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.All)mode); + Delegates.glIndexMaterialEXT((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.All)mode); } public static - void IndexFunc(OpenTK.Graphics.OpenGL.All func, Single @ref) + void IndexFunc(OpenTK.Graphics.All func, Single @ref) { - Delegates.glIndexFuncEXT((OpenTK.Graphics.OpenGL.All)func, (Single)@ref); + Delegates.glIndexFuncEXT((OpenTK.Graphics.All)func, (Single)@ref); } public static @@ -28559,25 +28559,25 @@ namespace OpenTK.Graphics.OpenGL } public static - void CullParameter(OpenTK.Graphics.OpenGL.All pname, [Out] Double[] @params) + void CullParameter(OpenTK.Graphics.All pname, [Out] Double[] @params) { unsafe { fixed (Double* @params_ptr = @params) { - Delegates.glCullParameterdvEXT((OpenTK.Graphics.OpenGL.All)pname, (Double*)@params_ptr); + Delegates.glCullParameterdvEXT((OpenTK.Graphics.All)pname, (Double*)@params_ptr); } } } public static - void CullParameter(OpenTK.Graphics.OpenGL.All pname, [Out] out Double @params) + void CullParameter(OpenTK.Graphics.All pname, [Out] out Double @params) { unsafe { fixed (Double* @params_ptr = &@params) { - Delegates.glCullParameterdvEXT((OpenTK.Graphics.OpenGL.All)pname, (Double*)@params_ptr); + Delegates.glCullParameterdvEXT((OpenTK.Graphics.All)pname, (Double*)@params_ptr); @params = *@params_ptr; } } @@ -28585,31 +28585,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void CullParameter(OpenTK.Graphics.OpenGL.All pname, [Out] Double* @params) + unsafe void CullParameter(OpenTK.Graphics.All pname, [Out] Double* @params) { - Delegates.glCullParameterdvEXT((OpenTK.Graphics.OpenGL.All)pname, (Double*)@params); + Delegates.glCullParameterdvEXT((OpenTK.Graphics.All)pname, (Double*)@params); } public static - void CullParameter(OpenTK.Graphics.OpenGL.All pname, [Out] Single[] @params) + void CullParameter(OpenTK.Graphics.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glCullParameterfvEXT((OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glCullParameterfvEXT((OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void CullParameter(OpenTK.Graphics.OpenGL.All pname, [Out] out Single @params) + void CullParameter(OpenTK.Graphics.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glCullParameterfvEXT((OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glCullParameterfvEXT((OpenTK.Graphics.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -28617,40 +28617,40 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void CullParameter(OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params) + unsafe void CullParameter(OpenTK.Graphics.All pname, [Out] Single* @params) { - Delegates.glCullParameterfvEXT((OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glCullParameterfvEXT((OpenTK.Graphics.All)pname, (Single*)@params); } [System.CLSCompliant(false)] public static - void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices) + void DrawRangeElements(OpenTK.Graphics.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.DrawElementsType type, IntPtr indices) { unsafe { - Delegates.glDrawRangeElementsEXT((OpenTK.Graphics.OpenGL.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices); + Delegates.glDrawRangeElementsEXT((OpenTK.Graphics.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.DrawElementsType)type, (IntPtr)indices); } } public static - void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices) + void DrawRangeElements(OpenTK.Graphics.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.DrawElementsType type, IntPtr indices) { unsafe { - Delegates.glDrawRangeElementsEXT((OpenTK.Graphics.OpenGL.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices); + Delegates.glDrawRangeElementsEXT((OpenTK.Graphics.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.DrawElementsType)type, (IntPtr)indices); } } [System.CLSCompliant(false)] public static - void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [In, Out] object indices) + void DrawRangeElements(OpenTK.Graphics.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.DrawElementsType 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.Graphics.OpenGL.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + Delegates.glDrawRangeElementsEXT((OpenTK.Graphics.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -28660,14 +28660,14 @@ namespace OpenTK.Graphics.OpenGL } public static - void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [In, Out] object indices) + void DrawRangeElements(OpenTK.Graphics.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.DrawElementsType 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.Graphics.OpenGL.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + Delegates.glDrawRangeElementsEXT((OpenTK.Graphics.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -28677,89 +28677,89 @@ namespace OpenTK.Graphics.OpenGL } public static - void ApplyTexture(OpenTK.Graphics.OpenGL.All mode) + void ApplyTexture(OpenTK.Graphics.All mode) { - Delegates.glApplyTextureEXT((OpenTK.Graphics.OpenGL.All)mode); + Delegates.glApplyTextureEXT((OpenTK.Graphics.All)mode); } public static - void TextureMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter mode) + void TextureMaterial(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter mode) { - Delegates.glTextureMaterialEXT((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)mode); + Delegates.glTextureMaterialEXT((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)mode); } public static - void PixelTransformParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Int32 param) + void PixelTransformParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32 param) { - Delegates.glPixelTransformParameteriEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32)param); + Delegates.glPixelTransformParameteriEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32)param); } public static - void PixelTransformParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Single param) + void PixelTransformParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single param) { - Delegates.glPixelTransformParameterfEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single)param); + Delegates.glPixelTransformParameterfEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single)param); } public static - void PixelTransformParameterv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Int32[] @params) + void PixelTransformParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glPixelTransformParameterivEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glPixelTransformParameterivEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void PixelTransformParameterv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, ref Int32 @params) + void PixelTransformParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glPixelTransformParameterivEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glPixelTransformParameterivEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void PixelTransformParameterv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Int32* @params) + unsafe void PixelTransformParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32* @params) { - Delegates.glPixelTransformParameterivEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glPixelTransformParameterivEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params); } public static - void PixelTransformParameterv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Single[] @params) + void PixelTransformParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glPixelTransformParameterfvEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glPixelTransformParameterfvEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void PixelTransformParameterv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, ref Single @params) + void PixelTransformParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glPixelTransformParameterfvEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glPixelTransformParameterfvEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void PixelTransformParameterv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Single* @params) + unsafe void PixelTransformParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single* @params) { - Delegates.glPixelTransformParameterfvEXT((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glPixelTransformParameterfvEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params); } [System.CLSCompliant(false)] @@ -29068,23 +29068,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void SecondaryColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, IntPtr pointer) + void SecondaryColorPointer(Int32 size, OpenTK.Graphics.ColorPointerType type, Int32 stride, IntPtr pointer) { unsafe { - Delegates.glSecondaryColorPointerEXT((Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer); + Delegates.glSecondaryColorPointerEXT((Int32)size, (OpenTK.Graphics.ColorPointerType)type, (Int32)stride, (IntPtr)pointer); } } public static - void SecondaryColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [In, Out] object pointer) + void SecondaryColorPointer(Int32 size, OpenTK.Graphics.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.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glSecondaryColorPointerEXT((Int32)size, (OpenTK.Graphics.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -29094,33 +29094,33 @@ namespace OpenTK.Graphics.OpenGL } public static - void TextureNormal(OpenTK.Graphics.OpenGL.All mode) + void TextureNormal(OpenTK.Graphics.All mode) { - Delegates.glTextureNormalEXT((OpenTK.Graphics.OpenGL.All)mode); + Delegates.glTextureNormalEXT((OpenTK.Graphics.All)mode); } public static - void MultiDrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, [Out] Int32[] first, [Out] Int32[] count, Int32 primcount) + void MultiDrawArrays(OpenTK.Graphics.BeginMode mode, [Out] Int32[] first, [Out] Int32[] count, Int32 primcount) { unsafe { fixed (Int32* first_ptr = first) fixed (Int32* count_ptr = count) { - Delegates.glMultiDrawArraysEXT((OpenTK.Graphics.OpenGL.BeginMode)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + Delegates.glMultiDrawArraysEXT((OpenTK.Graphics.BeginMode)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); } } } public static - void MultiDrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, [Out] out Int32 first, [Out] out Int32 count, Int32 primcount) + void MultiDrawArrays(OpenTK.Graphics.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.Graphics.OpenGL.BeginMode)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + Delegates.glMultiDrawArraysEXT((OpenTK.Graphics.BeginMode)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); first = *first_ptr; count = *count_ptr; } @@ -29129,25 +29129,25 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiDrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, [Out] Int32* first, [Out] Int32* count, Int32 primcount) + unsafe void MultiDrawArrays(OpenTK.Graphics.BeginMode mode, [Out] Int32* first, [Out] Int32* count, Int32 primcount) { - Delegates.glMultiDrawArraysEXT((OpenTK.Graphics.OpenGL.BeginMode)mode, (Int32*)first, (Int32*)count, (Int32)primcount); + Delegates.glMultiDrawArraysEXT((OpenTK.Graphics.BeginMode)mode, (Int32*)first, (Int32*)count, (Int32)primcount); } public static - void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount) + void MultiDrawElements(OpenTK.Graphics.BeginMode mode, Int32[] count, OpenTK.Graphics.DrawElementsType type, IntPtr indices, Int32 primcount) { unsafe { fixed (Int32* count_ptr = count) { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.OpenGL.BeginMode)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.BeginMode)mode, (Int32*)count_ptr, (OpenTK.Graphics.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); } } } public static - void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [In, Out] object indices, Int32 primcount) + void MultiDrawElements(OpenTK.Graphics.BeginMode mode, Int32[] count, OpenTK.Graphics.DrawElementsType type, [In, Out] object indices, Int32 primcount) { unsafe { @@ -29156,7 +29156,7 @@ namespace OpenTK.Graphics.OpenGL System.Runtime.InteropServices.GCHandle indices_ptr = System.Runtime.InteropServices.GCHandle.Alloc(indices, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.OpenGL.BeginMode)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.BeginMode)mode, (Int32*)count_ptr, (OpenTK.Graphics.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -29167,19 +29167,19 @@ namespace OpenTK.Graphics.OpenGL } public static - void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount) + void MultiDrawElements(OpenTK.Graphics.BeginMode mode, ref Int32 count, OpenTK.Graphics.DrawElementsType type, IntPtr indices, Int32 primcount) { unsafe { fixed (Int32* count_ptr = &count) { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.OpenGL.BeginMode)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.BeginMode)mode, (Int32*)count_ptr, (OpenTK.Graphics.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); } } } public static - void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [In, Out] object indices, Int32 primcount) + void MultiDrawElements(OpenTK.Graphics.BeginMode mode, ref Int32 count, OpenTK.Graphics.DrawElementsType type, [In, Out] object indices, Int32 primcount) { unsafe { @@ -29188,7 +29188,7 @@ namespace OpenTK.Graphics.OpenGL System.Runtime.InteropServices.GCHandle indices_ptr = System.Runtime.InteropServices.GCHandle.Alloc(indices, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.OpenGL.BeginMode)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.BeginMode)mode, (Int32*)count_ptr, (OpenTK.Graphics.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -29200,19 +29200,19 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount) + unsafe void MultiDrawElements(OpenTK.Graphics.BeginMode mode, Int32* count, OpenTK.Graphics.DrawElementsType type, IntPtr indices, Int32 primcount) { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.OpenGL.BeginMode)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.BeginMode)mode, (Int32*)count, (OpenTK.Graphics.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); } [System.CLSCompliant(false)] public static - unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [In, Out] object indices, Int32 primcount) + unsafe void MultiDrawElements(OpenTK.Graphics.BeginMode mode, Int32* count, OpenTK.Graphics.DrawElementsType 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.Graphics.OpenGL.BeginMode)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.BeginMode)mode, (Int32*)count, (OpenTK.Graphics.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -29295,23 +29295,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void FogCoordPointer(OpenTK.Graphics.OpenGL.All type, Int32 stride, IntPtr pointer) + void FogCoordPointer(OpenTK.Graphics.All type, Int32 stride, IntPtr pointer) { unsafe { - Delegates.glFogCoordPointerEXT((OpenTK.Graphics.OpenGL.All)type, (Int32)stride, (IntPtr)pointer); + Delegates.glFogCoordPointerEXT((OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer); } } public static - void FogCoordPointer(OpenTK.Graphics.OpenGL.All type, Int32 stride, [In, Out] object pointer) + void FogCoordPointer(OpenTK.Graphics.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.Graphics.OpenGL.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glFogCoordPointerEXT((OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -29771,23 +29771,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void TangentPointer(OpenTK.Graphics.OpenGL.All type, Int32 stride, IntPtr pointer) + void TangentPointer(OpenTK.Graphics.All type, Int32 stride, IntPtr pointer) { unsafe { - Delegates.glTangentPointerEXT((OpenTK.Graphics.OpenGL.All)type, (Int32)stride, (IntPtr)pointer); + Delegates.glTangentPointerEXT((OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer); } } public static - void TangentPointer(OpenTK.Graphics.OpenGL.All type, Int32 stride, [In, Out] object pointer) + void TangentPointer(OpenTK.Graphics.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.Graphics.OpenGL.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glTangentPointerEXT((OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -29797,23 +29797,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void BinormalPointer(OpenTK.Graphics.OpenGL.All type, Int32 stride, IntPtr pointer) + void BinormalPointer(OpenTK.Graphics.All type, Int32 stride, IntPtr pointer) { unsafe { - Delegates.glBinormalPointerEXT((OpenTK.Graphics.OpenGL.All)type, (Int32)stride, (IntPtr)pointer); + Delegates.glBinormalPointerEXT((OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer); } } public static - void BinormalPointer(OpenTK.Graphics.OpenGL.All type, Int32 stride, [In, Out] object pointer) + void BinormalPointer(OpenTK.Graphics.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.Graphics.OpenGL.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glBinormalPointerEXT((OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -29823,9 +29823,9 @@ namespace OpenTK.Graphics.OpenGL } public static - void BlendFuncSeparate(OpenTK.Graphics.OpenGL.All sfactorRGB, OpenTK.Graphics.OpenGL.All dfactorRGB, OpenTK.Graphics.OpenGL.All sfactorAlpha, OpenTK.Graphics.OpenGL.All dfactorAlpha) + void BlendFuncSeparate(OpenTK.Graphics.All sfactorRGB, OpenTK.Graphics.All dfactorRGB, OpenTK.Graphics.All sfactorAlpha, OpenTK.Graphics.All dfactorAlpha) { - Delegates.glBlendFuncSeparateEXT((OpenTK.Graphics.OpenGL.All)sfactorRGB, (OpenTK.Graphics.OpenGL.All)dfactorRGB, (OpenTK.Graphics.OpenGL.All)sfactorAlpha, (OpenTK.Graphics.OpenGL.All)dfactorAlpha); + Delegates.glBlendFuncSeparateEXT((OpenTK.Graphics.All)sfactorRGB, (OpenTK.Graphics.All)dfactorRGB, (OpenTK.Graphics.All)sfactorAlpha, (OpenTK.Graphics.All)dfactorAlpha); } public static @@ -29866,23 +29866,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void VertexWeightPointer(Int32 size, OpenTK.Graphics.OpenGL.All type, Int32 stride, IntPtr pointer) + void VertexWeightPointer(Int32 size, OpenTK.Graphics.All type, Int32 stride, IntPtr pointer) { unsafe { - Delegates.glVertexWeightPointerEXT((Int32)size, (OpenTK.Graphics.OpenGL.All)type, (Int32)stride, (IntPtr)pointer); + Delegates.glVertexWeightPointerEXT((Int32)size, (OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer); } } public static - void VertexWeightPointer(Int32 size, OpenTK.Graphics.OpenGL.All type, Int32 stride, [In, Out] object pointer) + void VertexWeightPointer(Int32 size, OpenTK.Graphics.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.Graphics.OpenGL.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glVertexWeightPointerEXT((Int32)size, (OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -29898,9 +29898,9 @@ namespace OpenTK.Graphics.OpenGL } public static - void SamplePattern(OpenTK.Graphics.OpenGL.All pattern) + void SamplePattern(OpenTK.Graphics.All pattern) { - Delegates.glSamplePatternEXT((OpenTK.Graphics.OpenGL.All)pattern); + Delegates.glSamplePatternEXT((OpenTK.Graphics.All)pattern); } public static @@ -29956,80 +29956,80 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void ShaderOp1(OpenTK.Graphics.OpenGL.All op, UInt32 res, UInt32 arg1) + void ShaderOp1(OpenTK.Graphics.All op, UInt32 res, UInt32 arg1) { - Delegates.glShaderOp1EXT((OpenTK.Graphics.OpenGL.All)op, (UInt32)res, (UInt32)arg1); + Delegates.glShaderOp1EXT((OpenTK.Graphics.All)op, (UInt32)res, (UInt32)arg1); } public static - void ShaderOp1(OpenTK.Graphics.OpenGL.All op, Int32 res, Int32 arg1) + void ShaderOp1(OpenTK.Graphics.All op, Int32 res, Int32 arg1) { - Delegates.glShaderOp1EXT((OpenTK.Graphics.OpenGL.All)op, (UInt32)res, (UInt32)arg1); + Delegates.glShaderOp1EXT((OpenTK.Graphics.All)op, (UInt32)res, (UInt32)arg1); } [System.CLSCompliant(false)] public static - void ShaderOp2(OpenTK.Graphics.OpenGL.All op, UInt32 res, UInt32 arg1, UInt32 arg2) + void ShaderOp2(OpenTK.Graphics.All op, UInt32 res, UInt32 arg1, UInt32 arg2) { - Delegates.glShaderOp2EXT((OpenTK.Graphics.OpenGL.All)op, (UInt32)res, (UInt32)arg1, (UInt32)arg2); + Delegates.glShaderOp2EXT((OpenTK.Graphics.All)op, (UInt32)res, (UInt32)arg1, (UInt32)arg2); } public static - void ShaderOp2(OpenTK.Graphics.OpenGL.All op, Int32 res, Int32 arg1, Int32 arg2) + void ShaderOp2(OpenTK.Graphics.All op, Int32 res, Int32 arg1, Int32 arg2) { - Delegates.glShaderOp2EXT((OpenTK.Graphics.OpenGL.All)op, (UInt32)res, (UInt32)arg1, (UInt32)arg2); + Delegates.glShaderOp2EXT((OpenTK.Graphics.All)op, (UInt32)res, (UInt32)arg1, (UInt32)arg2); } [System.CLSCompliant(false)] public static - void ShaderOp3(OpenTK.Graphics.OpenGL.All op, UInt32 res, UInt32 arg1, UInt32 arg2, UInt32 arg3) + void ShaderOp3(OpenTK.Graphics.All op, UInt32 res, UInt32 arg1, UInt32 arg2, UInt32 arg3) { - Delegates.glShaderOp3EXT((OpenTK.Graphics.OpenGL.All)op, (UInt32)res, (UInt32)arg1, (UInt32)arg2, (UInt32)arg3); + Delegates.glShaderOp3EXT((OpenTK.Graphics.All)op, (UInt32)res, (UInt32)arg1, (UInt32)arg2, (UInt32)arg3); } public static - void ShaderOp3(OpenTK.Graphics.OpenGL.All op, Int32 res, Int32 arg1, Int32 arg2, Int32 arg3) + void ShaderOp3(OpenTK.Graphics.All op, Int32 res, Int32 arg1, Int32 arg2, Int32 arg3) { - Delegates.glShaderOp3EXT((OpenTK.Graphics.OpenGL.All)op, (UInt32)res, (UInt32)arg1, (UInt32)arg2, (UInt32)arg3); + Delegates.glShaderOp3EXT((OpenTK.Graphics.All)op, (UInt32)res, (UInt32)arg1, (UInt32)arg2, (UInt32)arg3); } [System.CLSCompliant(false)] public static - void Swizzle(UInt32 res, UInt32 @in, OpenTK.Graphics.OpenGL.All outX, OpenTK.Graphics.OpenGL.All outY, OpenTK.Graphics.OpenGL.All outZ, OpenTK.Graphics.OpenGL.All outW) + void Swizzle(UInt32 res, UInt32 @in, OpenTK.Graphics.All outX, OpenTK.Graphics.All outY, OpenTK.Graphics.All outZ, OpenTK.Graphics.All outW) { - Delegates.glSwizzleEXT((UInt32)res, (UInt32)@in, (OpenTK.Graphics.OpenGL.All)outX, (OpenTK.Graphics.OpenGL.All)outY, (OpenTK.Graphics.OpenGL.All)outZ, (OpenTK.Graphics.OpenGL.All)outW); + Delegates.glSwizzleEXT((UInt32)res, (UInt32)@in, (OpenTK.Graphics.All)outX, (OpenTK.Graphics.All)outY, (OpenTK.Graphics.All)outZ, (OpenTK.Graphics.All)outW); } public static - void Swizzle(Int32 res, Int32 @in, OpenTK.Graphics.OpenGL.All outX, OpenTK.Graphics.OpenGL.All outY, OpenTK.Graphics.OpenGL.All outZ, OpenTK.Graphics.OpenGL.All outW) + void Swizzle(Int32 res, Int32 @in, OpenTK.Graphics.All outX, OpenTK.Graphics.All outY, OpenTK.Graphics.All outZ, OpenTK.Graphics.All outW) { - Delegates.glSwizzleEXT((UInt32)res, (UInt32)@in, (OpenTK.Graphics.OpenGL.All)outX, (OpenTK.Graphics.OpenGL.All)outY, (OpenTK.Graphics.OpenGL.All)outZ, (OpenTK.Graphics.OpenGL.All)outW); + Delegates.glSwizzleEXT((UInt32)res, (UInt32)@in, (OpenTK.Graphics.All)outX, (OpenTK.Graphics.All)outY, (OpenTK.Graphics.All)outZ, (OpenTK.Graphics.All)outW); } [System.CLSCompliant(false)] public static - void WriteMask(UInt32 res, UInt32 @in, OpenTK.Graphics.OpenGL.All outX, OpenTK.Graphics.OpenGL.All outY, OpenTK.Graphics.OpenGL.All outZ, OpenTK.Graphics.OpenGL.All outW) + void WriteMask(UInt32 res, UInt32 @in, OpenTK.Graphics.All outX, OpenTK.Graphics.All outY, OpenTK.Graphics.All outZ, OpenTK.Graphics.All outW) { - Delegates.glWriteMaskEXT((UInt32)res, (UInt32)@in, (OpenTK.Graphics.OpenGL.All)outX, (OpenTK.Graphics.OpenGL.All)outY, (OpenTK.Graphics.OpenGL.All)outZ, (OpenTK.Graphics.OpenGL.All)outW); + Delegates.glWriteMaskEXT((UInt32)res, (UInt32)@in, (OpenTK.Graphics.All)outX, (OpenTK.Graphics.All)outY, (OpenTK.Graphics.All)outZ, (OpenTK.Graphics.All)outW); } public static - void WriteMask(Int32 res, Int32 @in, OpenTK.Graphics.OpenGL.All outX, OpenTK.Graphics.OpenGL.All outY, OpenTK.Graphics.OpenGL.All outZ, OpenTK.Graphics.OpenGL.All outW) + void WriteMask(Int32 res, Int32 @in, OpenTK.Graphics.All outX, OpenTK.Graphics.All outY, OpenTK.Graphics.All outZ, OpenTK.Graphics.All outW) { - Delegates.glWriteMaskEXT((UInt32)res, (UInt32)@in, (OpenTK.Graphics.OpenGL.All)outX, (OpenTK.Graphics.OpenGL.All)outY, (OpenTK.Graphics.OpenGL.All)outZ, (OpenTK.Graphics.OpenGL.All)outW); + Delegates.glWriteMaskEXT((UInt32)res, (UInt32)@in, (OpenTK.Graphics.All)outX, (OpenTK.Graphics.All)outY, (OpenTK.Graphics.All)outZ, (OpenTK.Graphics.All)outW); } [System.CLSCompliant(false)] public static - Int32 GenSymbol(OpenTK.Graphics.OpenGL.All datatype, OpenTK.Graphics.OpenGL.All storagetype, OpenTK.Graphics.OpenGL.All range, UInt32 components) + Int32 GenSymbol(OpenTK.Graphics.All datatype, OpenTK.Graphics.All storagetype, OpenTK.Graphics.All range, UInt32 components) { - return Delegates.glGenSymbolsEXT((OpenTK.Graphics.OpenGL.All)datatype, (OpenTK.Graphics.OpenGL.All)storagetype, (OpenTK.Graphics.OpenGL.All)range, (UInt32)components); + return Delegates.glGenSymbolsEXT((OpenTK.Graphics.All)datatype, (OpenTK.Graphics.All)storagetype, (OpenTK.Graphics.All)range, (UInt32)components); } public static - Int32 GenSymbol(OpenTK.Graphics.OpenGL.All datatype, OpenTK.Graphics.OpenGL.All storagetype, OpenTK.Graphics.OpenGL.All range, Int32 components) + Int32 GenSymbol(OpenTK.Graphics.All datatype, OpenTK.Graphics.All storagetype, OpenTK.Graphics.All range, Int32 components) { - return Delegates.glGenSymbolsEXT((OpenTK.Graphics.OpenGL.All)datatype, (OpenTK.Graphics.OpenGL.All)storagetype, (OpenTK.Graphics.OpenGL.All)range, (UInt32)components); + return Delegates.glGenSymbolsEXT((OpenTK.Graphics.All)datatype, (OpenTK.Graphics.All)storagetype, (OpenTK.Graphics.All)range, (UInt32)components); } [System.CLSCompliant(false)] @@ -30453,33 +30453,33 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void VariantPointer(UInt32 id, OpenTK.Graphics.OpenGL.All type, UInt32 stride, IntPtr addr) + void VariantPointer(UInt32 id, OpenTK.Graphics.All type, UInt32 stride, IntPtr addr) { unsafe { - Delegates.glVariantPointerEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)type, (UInt32)stride, (IntPtr)addr); + Delegates.glVariantPointerEXT((UInt32)id, (OpenTK.Graphics.All)type, (UInt32)stride, (IntPtr)addr); } } public static - void VariantPointer(Int32 id, OpenTK.Graphics.OpenGL.All type, Int32 stride, IntPtr addr) + void VariantPointer(Int32 id, OpenTK.Graphics.All type, Int32 stride, IntPtr addr) { unsafe { - Delegates.glVariantPointerEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)type, (UInt32)stride, (IntPtr)addr); + Delegates.glVariantPointerEXT((UInt32)id, (OpenTK.Graphics.All)type, (UInt32)stride, (IntPtr)addr); } } [System.CLSCompliant(false)] public static - void VariantPointer(UInt32 id, OpenTK.Graphics.OpenGL.All type, UInt32 stride, [In, Out] object addr) + void VariantPointer(UInt32 id, OpenTK.Graphics.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.Graphics.OpenGL.All)type, (UInt32)stride, (IntPtr)addr_ptr.AddrOfPinnedObject()); + Delegates.glVariantPointerEXT((UInt32)id, (OpenTK.Graphics.All)type, (UInt32)stride, (IntPtr)addr_ptr.AddrOfPinnedObject()); } finally { @@ -30489,14 +30489,14 @@ namespace OpenTK.Graphics.OpenGL } public static - void VariantPointer(Int32 id, OpenTK.Graphics.OpenGL.All type, Int32 stride, [In, Out] object addr) + void VariantPointer(Int32 id, OpenTK.Graphics.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.Graphics.OpenGL.All)type, (UInt32)stride, (IntPtr)addr_ptr.AddrOfPinnedObject()); + Delegates.glVariantPointerEXT((UInt32)id, (OpenTK.Graphics.All)type, (UInt32)stride, (IntPtr)addr_ptr.AddrOfPinnedObject()); } finally { @@ -30532,95 +30532,95 @@ namespace OpenTK.Graphics.OpenGL } public static - Int32 BindLightParameter(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter value) + Int32 BindLightParameter(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter value) { - return Delegates.glBindLightParameterEXT((OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)value); + return Delegates.glBindLightParameterEXT((OpenTK.Graphics.LightName)light, (OpenTK.Graphics.LightParameter)value); } public static - Int32 BindMaterialParameter(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter value) + Int32 BindMaterialParameter(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter value) { - return Delegates.glBindMaterialParameterEXT((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)value); + return Delegates.glBindMaterialParameterEXT((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)value); } public static - Int32 BindTexGenParameter(OpenTK.Graphics.OpenGL.TextureUnit unit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter value) + Int32 BindTexGenParameter(OpenTK.Graphics.TextureUnit unit, OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter value) { - return Delegates.glBindTexGenParameterEXT((OpenTK.Graphics.OpenGL.TextureUnit)unit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)value); + return Delegates.glBindTexGenParameterEXT((OpenTK.Graphics.TextureUnit)unit, (OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)value); } public static - Int32 BindTextureUnitParameter(OpenTK.Graphics.OpenGL.TextureUnit unit, OpenTK.Graphics.OpenGL.All value) + Int32 BindTextureUnitParameter(OpenTK.Graphics.TextureUnit unit, OpenTK.Graphics.All value) { - return Delegates.glBindTextureUnitParameterEXT((OpenTK.Graphics.OpenGL.TextureUnit)unit, (OpenTK.Graphics.OpenGL.All)value); + return Delegates.glBindTextureUnitParameterEXT((OpenTK.Graphics.TextureUnit)unit, (OpenTK.Graphics.All)value); } public static - Int32 BindParameter(OpenTK.Graphics.OpenGL.All value) + Int32 BindParameter(OpenTK.Graphics.All value) { - return Delegates.glBindParameterEXT((OpenTK.Graphics.OpenGL.All)value); + return Delegates.glBindParameterEXT((OpenTK.Graphics.All)value); } [System.CLSCompliant(false)] public static - bool IsVariantEnabled(UInt32 id, OpenTK.Graphics.OpenGL.All cap) + bool IsVariantEnabled(UInt32 id, OpenTK.Graphics.All cap) { - return Delegates.glIsVariantEnabledEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)cap); + return Delegates.glIsVariantEnabledEXT((UInt32)id, (OpenTK.Graphics.All)cap); } public static - bool IsVariantEnabled(Int32 id, OpenTK.Graphics.OpenGL.All cap) + bool IsVariantEnabled(Int32 id, OpenTK.Graphics.All cap) { - return Delegates.glIsVariantEnabledEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)cap); + return Delegates.glIsVariantEnabledEXT((UInt32)id, (OpenTK.Graphics.All)cap); } [System.CLSCompliant(false)] public static - void GetVariantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.All value, [Out] bool[] data) + void GetVariantBoolean(UInt32 id, OpenTK.Graphics.All value, [Out] bool[] data) { unsafe { fixed (bool* data_ptr = data) { - Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (bool*)data_ptr); + Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.All)value, (bool*)data_ptr); } } } public static - void GetVariantBoolean(Int32 id, OpenTK.Graphics.OpenGL.All value, [Out] bool[] data) + void GetVariantBoolean(Int32 id, OpenTK.Graphics.All value, [Out] bool[] data) { unsafe { fixed (bool* data_ptr = data) { - Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (bool*)data_ptr); + Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.All)value, (bool*)data_ptr); } } } [System.CLSCompliant(false)] public static - void GetVariantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.All value, [Out] out bool data) + void GetVariantBoolean(UInt32 id, OpenTK.Graphics.All value, [Out] out bool data) { unsafe { fixed (bool* data_ptr = &data) { - Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (bool*)data_ptr); + Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.All)value, (bool*)data_ptr); data = *data_ptr; } } } public static - void GetVariantBoolean(Int32 id, OpenTK.Graphics.OpenGL.All value, [Out] out bool data) + void GetVariantBoolean(Int32 id, OpenTK.Graphics.All value, [Out] out bool data) { unsafe { fixed (bool* data_ptr = &data) { - Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (bool*)data_ptr); + Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.All)value, (bool*)data_ptr); data = *data_ptr; } } @@ -30628,65 +30628,65 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVariantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.All value, [Out] bool* data) + unsafe void GetVariantBoolean(UInt32 id, OpenTK.Graphics.All value, [Out] bool* data) { - Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (bool*)data); + Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.All)value, (bool*)data); } [System.CLSCompliant(false)] public static - unsafe void GetVariantBoolean(Int32 id, OpenTK.Graphics.OpenGL.All value, [Out] bool* data) + unsafe void GetVariantBoolean(Int32 id, OpenTK.Graphics.All value, [Out] bool* data) { - Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (bool*)data); + Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.All)value, (bool*)data); } [System.CLSCompliant(false)] public static - void GetVariantInteger(UInt32 id, OpenTK.Graphics.OpenGL.All value, [Out] Int32[] data) + void GetVariantInteger(UInt32 id, OpenTK.Graphics.All value, [Out] Int32[] data) { unsafe { fixed (Int32* data_ptr = data) { - Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (Int32*)data_ptr); + Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.Graphics.All)value, (Int32*)data_ptr); } } } public static - void GetVariantInteger(Int32 id, OpenTK.Graphics.OpenGL.All value, [Out] Int32[] data) + void GetVariantInteger(Int32 id, OpenTK.Graphics.All value, [Out] Int32[] data) { unsafe { fixed (Int32* data_ptr = data) { - Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (Int32*)data_ptr); + Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.Graphics.All)value, (Int32*)data_ptr); } } } [System.CLSCompliant(false)] public static - void GetVariantInteger(UInt32 id, OpenTK.Graphics.OpenGL.All value, [Out] out Int32 data) + void GetVariantInteger(UInt32 id, OpenTK.Graphics.All value, [Out] out Int32 data) { unsafe { fixed (Int32* data_ptr = &data) { - Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (Int32*)data_ptr); + Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.Graphics.All)value, (Int32*)data_ptr); data = *data_ptr; } } } public static - void GetVariantInteger(Int32 id, OpenTK.Graphics.OpenGL.All value, [Out] out Int32 data) + void GetVariantInteger(Int32 id, OpenTK.Graphics.All value, [Out] out Int32 data) { unsafe { fixed (Int32* data_ptr = &data) { - Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (Int32*)data_ptr); + Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.Graphics.All)value, (Int32*)data_ptr); data = *data_ptr; } } @@ -30694,65 +30694,65 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVariantInteger(UInt32 id, OpenTK.Graphics.OpenGL.All value, [Out] Int32* data) + unsafe void GetVariantInteger(UInt32 id, OpenTK.Graphics.All value, [Out] Int32* data) { - Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (Int32*)data); + Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.Graphics.All)value, (Int32*)data); } [System.CLSCompliant(false)] public static - unsafe void GetVariantInteger(Int32 id, OpenTK.Graphics.OpenGL.All value, [Out] Int32* data) + unsafe void GetVariantInteger(Int32 id, OpenTK.Graphics.All value, [Out] Int32* data) { - Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (Int32*)data); + Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.Graphics.All)value, (Int32*)data); } [System.CLSCompliant(false)] public static - void GetVariantFloat(UInt32 id, OpenTK.Graphics.OpenGL.All value, [Out] Single[] data) + void GetVariantFloat(UInt32 id, OpenTK.Graphics.All value, [Out] Single[] data) { unsafe { fixed (Single* data_ptr = data) { - Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (Single*)data_ptr); + Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.Graphics.All)value, (Single*)data_ptr); } } } public static - void GetVariantFloat(Int32 id, OpenTK.Graphics.OpenGL.All value, [Out] Single[] data) + void GetVariantFloat(Int32 id, OpenTK.Graphics.All value, [Out] Single[] data) { unsafe { fixed (Single* data_ptr = data) { - Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (Single*)data_ptr); + Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.Graphics.All)value, (Single*)data_ptr); } } } [System.CLSCompliant(false)] public static - void GetVariantFloat(UInt32 id, OpenTK.Graphics.OpenGL.All value, [Out] out Single data) + void GetVariantFloat(UInt32 id, OpenTK.Graphics.All value, [Out] out Single data) { unsafe { fixed (Single* data_ptr = &data) { - Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (Single*)data_ptr); + Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.Graphics.All)value, (Single*)data_ptr); data = *data_ptr; } } } public static - void GetVariantFloat(Int32 id, OpenTK.Graphics.OpenGL.All value, [Out] out Single data) + void GetVariantFloat(Int32 id, OpenTK.Graphics.All value, [Out] out Single data) { unsafe { fixed (Single* data_ptr = &data) { - Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (Single*)data_ptr); + Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.Graphics.All)value, (Single*)data_ptr); data = *data_ptr; } } @@ -30760,47 +30760,47 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVariantFloat(UInt32 id, OpenTK.Graphics.OpenGL.All value, [Out] Single* data) + unsafe void GetVariantFloat(UInt32 id, OpenTK.Graphics.All value, [Out] Single* data) { - Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (Single*)data); + Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.Graphics.All)value, (Single*)data); } [System.CLSCompliant(false)] public static - unsafe void GetVariantFloat(Int32 id, OpenTK.Graphics.OpenGL.All value, [Out] Single* data) + unsafe void GetVariantFloat(Int32 id, OpenTK.Graphics.All value, [Out] Single* data) { - Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (Single*)data); + Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.Graphics.All)value, (Single*)data); } [System.CLSCompliant(false)] public static - void GetVariantPointer(UInt32 id, OpenTK.Graphics.OpenGL.All value, [Out] IntPtr data) + void GetVariantPointer(UInt32 id, OpenTK.Graphics.All value, [Out] IntPtr data) { unsafe { - Delegates.glGetVariantPointervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (IntPtr)data); + Delegates.glGetVariantPointervEXT((UInt32)id, (OpenTK.Graphics.All)value, (IntPtr)data); } } public static - void GetVariantPointer(Int32 id, OpenTK.Graphics.OpenGL.All value, [Out] IntPtr data) + void GetVariantPointer(Int32 id, OpenTK.Graphics.All value, [Out] IntPtr data) { unsafe { - Delegates.glGetVariantPointervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (IntPtr)data); + Delegates.glGetVariantPointervEXT((UInt32)id, (OpenTK.Graphics.All)value, (IntPtr)data); } } [System.CLSCompliant(false)] public static - void GetVariantPointer(UInt32 id, OpenTK.Graphics.OpenGL.All value, [In, Out] object data) + void GetVariantPointer(UInt32 id, OpenTK.Graphics.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.Graphics.OpenGL.All)value, (IntPtr)data_ptr.AddrOfPinnedObject()); + Delegates.glGetVariantPointervEXT((UInt32)id, (OpenTK.Graphics.All)value, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -30810,14 +30810,14 @@ namespace OpenTK.Graphics.OpenGL } public static - void GetVariantPointer(Int32 id, OpenTK.Graphics.OpenGL.All value, [In, Out] object data) + void GetVariantPointer(Int32 id, OpenTK.Graphics.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.Graphics.OpenGL.All)value, (IntPtr)data_ptr.AddrOfPinnedObject()); + Delegates.glGetVariantPointervEXT((UInt32)id, (OpenTK.Graphics.All)value, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -30828,51 +30828,51 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void GetInvariantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.All value, [Out] bool[] data) + void GetInvariantBoolean(UInt32 id, OpenTK.Graphics.All value, [Out] bool[] data) { unsafe { fixed (bool* data_ptr = data) { - Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (bool*)data_ptr); + Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.All)value, (bool*)data_ptr); } } } public static - void GetInvariantBoolean(Int32 id, OpenTK.Graphics.OpenGL.All value, [Out] bool[] data) + void GetInvariantBoolean(Int32 id, OpenTK.Graphics.All value, [Out] bool[] data) { unsafe { fixed (bool* data_ptr = data) { - Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (bool*)data_ptr); + Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.All)value, (bool*)data_ptr); } } } [System.CLSCompliant(false)] public static - void GetInvariantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.All value, [Out] out bool data) + void GetInvariantBoolean(UInt32 id, OpenTK.Graphics.All value, [Out] out bool data) { unsafe { fixed (bool* data_ptr = &data) { - Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (bool*)data_ptr); + Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.All)value, (bool*)data_ptr); data = *data_ptr; } } } public static - void GetInvariantBoolean(Int32 id, OpenTK.Graphics.OpenGL.All value, [Out] out bool data) + void GetInvariantBoolean(Int32 id, OpenTK.Graphics.All value, [Out] out bool data) { unsafe { fixed (bool* data_ptr = &data) { - Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (bool*)data_ptr); + Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.All)value, (bool*)data_ptr); data = *data_ptr; } } @@ -30880,65 +30880,65 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetInvariantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.All value, [Out] bool* data) + unsafe void GetInvariantBoolean(UInt32 id, OpenTK.Graphics.All value, [Out] bool* data) { - Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (bool*)data); + Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.All)value, (bool*)data); } [System.CLSCompliant(false)] public static - unsafe void GetInvariantBoolean(Int32 id, OpenTK.Graphics.OpenGL.All value, [Out] bool* data) + unsafe void GetInvariantBoolean(Int32 id, OpenTK.Graphics.All value, [Out] bool* data) { - Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (bool*)data); + Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.All)value, (bool*)data); } [System.CLSCompliant(false)] public static - void GetInvariantInteger(UInt32 id, OpenTK.Graphics.OpenGL.All value, [Out] Int32[] data) + void GetInvariantInteger(UInt32 id, OpenTK.Graphics.All value, [Out] Int32[] data) { unsafe { fixed (Int32* data_ptr = data) { - Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (Int32*)data_ptr); + Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.Graphics.All)value, (Int32*)data_ptr); } } } public static - void GetInvariantInteger(Int32 id, OpenTK.Graphics.OpenGL.All value, [Out] Int32[] data) + void GetInvariantInteger(Int32 id, OpenTK.Graphics.All value, [Out] Int32[] data) { unsafe { fixed (Int32* data_ptr = data) { - Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (Int32*)data_ptr); + Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.Graphics.All)value, (Int32*)data_ptr); } } } [System.CLSCompliant(false)] public static - void GetInvariantInteger(UInt32 id, OpenTK.Graphics.OpenGL.All value, [Out] out Int32 data) + void GetInvariantInteger(UInt32 id, OpenTK.Graphics.All value, [Out] out Int32 data) { unsafe { fixed (Int32* data_ptr = &data) { - Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (Int32*)data_ptr); + Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.Graphics.All)value, (Int32*)data_ptr); data = *data_ptr; } } } public static - void GetInvariantInteger(Int32 id, OpenTK.Graphics.OpenGL.All value, [Out] out Int32 data) + void GetInvariantInteger(Int32 id, OpenTK.Graphics.All value, [Out] out Int32 data) { unsafe { fixed (Int32* data_ptr = &data) { - Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (Int32*)data_ptr); + Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.Graphics.All)value, (Int32*)data_ptr); data = *data_ptr; } } @@ -30946,65 +30946,65 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetInvariantInteger(UInt32 id, OpenTK.Graphics.OpenGL.All value, [Out] Int32* data) + unsafe void GetInvariantInteger(UInt32 id, OpenTK.Graphics.All value, [Out] Int32* data) { - Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (Int32*)data); + Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.Graphics.All)value, (Int32*)data); } [System.CLSCompliant(false)] public static - unsafe void GetInvariantInteger(Int32 id, OpenTK.Graphics.OpenGL.All value, [Out] Int32* data) + unsafe void GetInvariantInteger(Int32 id, OpenTK.Graphics.All value, [Out] Int32* data) { - Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (Int32*)data); + Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.Graphics.All)value, (Int32*)data); } [System.CLSCompliant(false)] public static - void GetInvariantFloat(UInt32 id, OpenTK.Graphics.OpenGL.All value, [Out] Single[] data) + void GetInvariantFloat(UInt32 id, OpenTK.Graphics.All value, [Out] Single[] data) { unsafe { fixed (Single* data_ptr = data) { - Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (Single*)data_ptr); + Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.Graphics.All)value, (Single*)data_ptr); } } } public static - void GetInvariantFloat(Int32 id, OpenTK.Graphics.OpenGL.All value, [Out] Single[] data) + void GetInvariantFloat(Int32 id, OpenTK.Graphics.All value, [Out] Single[] data) { unsafe { fixed (Single* data_ptr = data) { - Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (Single*)data_ptr); + Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.Graphics.All)value, (Single*)data_ptr); } } } [System.CLSCompliant(false)] public static - void GetInvariantFloat(UInt32 id, OpenTK.Graphics.OpenGL.All value, [Out] out Single data) + void GetInvariantFloat(UInt32 id, OpenTK.Graphics.All value, [Out] out Single data) { unsafe { fixed (Single* data_ptr = &data) { - Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (Single*)data_ptr); + Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.Graphics.All)value, (Single*)data_ptr); data = *data_ptr; } } } public static - void GetInvariantFloat(Int32 id, OpenTK.Graphics.OpenGL.All value, [Out] out Single data) + void GetInvariantFloat(Int32 id, OpenTK.Graphics.All value, [Out] out Single data) { unsafe { fixed (Single* data_ptr = &data) { - Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (Single*)data_ptr); + Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.Graphics.All)value, (Single*)data_ptr); data = *data_ptr; } } @@ -31012,65 +31012,65 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetInvariantFloat(UInt32 id, OpenTK.Graphics.OpenGL.All value, [Out] Single* data) + unsafe void GetInvariantFloat(UInt32 id, OpenTK.Graphics.All value, [Out] Single* data) { - Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (Single*)data); + Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.Graphics.All)value, (Single*)data); } [System.CLSCompliant(false)] public static - unsafe void GetInvariantFloat(Int32 id, OpenTK.Graphics.OpenGL.All value, [Out] Single* data) + unsafe void GetInvariantFloat(Int32 id, OpenTK.Graphics.All value, [Out] Single* data) { - Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (Single*)data); + Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.Graphics.All)value, (Single*)data); } [System.CLSCompliant(false)] public static - void GetLocalConstantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.All value, [Out] bool[] data) + void GetLocalConstantBoolean(UInt32 id, OpenTK.Graphics.All value, [Out] bool[] data) { unsafe { fixed (bool* data_ptr = data) { - Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (bool*)data_ptr); + Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.Graphics.All)value, (bool*)data_ptr); } } } public static - void GetLocalConstantBoolean(Int32 id, OpenTK.Graphics.OpenGL.All value, [Out] bool[] data) + void GetLocalConstantBoolean(Int32 id, OpenTK.Graphics.All value, [Out] bool[] data) { unsafe { fixed (bool* data_ptr = data) { - Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (bool*)data_ptr); + Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.Graphics.All)value, (bool*)data_ptr); } } } [System.CLSCompliant(false)] public static - void GetLocalConstantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.All value, [Out] out bool data) + void GetLocalConstantBoolean(UInt32 id, OpenTK.Graphics.All value, [Out] out bool data) { unsafe { fixed (bool* data_ptr = &data) { - Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (bool*)data_ptr); + Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.Graphics.All)value, (bool*)data_ptr); data = *data_ptr; } } } public static - void GetLocalConstantBoolean(Int32 id, OpenTK.Graphics.OpenGL.All value, [Out] out bool data) + void GetLocalConstantBoolean(Int32 id, OpenTK.Graphics.All value, [Out] out bool data) { unsafe { fixed (bool* data_ptr = &data) { - Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (bool*)data_ptr); + Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.Graphics.All)value, (bool*)data_ptr); data = *data_ptr; } } @@ -31078,65 +31078,65 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetLocalConstantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.All value, [Out] bool* data) + unsafe void GetLocalConstantBoolean(UInt32 id, OpenTK.Graphics.All value, [Out] bool* data) { - Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (bool*)data); + Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.Graphics.All)value, (bool*)data); } [System.CLSCompliant(false)] public static - unsafe void GetLocalConstantBoolean(Int32 id, OpenTK.Graphics.OpenGL.All value, [Out] bool* data) + unsafe void GetLocalConstantBoolean(Int32 id, OpenTK.Graphics.All value, [Out] bool* data) { - Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (bool*)data); + Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.Graphics.All)value, (bool*)data); } [System.CLSCompliant(false)] public static - void GetLocalConstantInteger(UInt32 id, OpenTK.Graphics.OpenGL.All value, [Out] Int32[] data) + void GetLocalConstantInteger(UInt32 id, OpenTK.Graphics.All value, [Out] Int32[] data) { unsafe { fixed (Int32* data_ptr = data) { - Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (Int32*)data_ptr); + Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.Graphics.All)value, (Int32*)data_ptr); } } } public static - void GetLocalConstantInteger(Int32 id, OpenTK.Graphics.OpenGL.All value, [Out] Int32[] data) + void GetLocalConstantInteger(Int32 id, OpenTK.Graphics.All value, [Out] Int32[] data) { unsafe { fixed (Int32* data_ptr = data) { - Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (Int32*)data_ptr); + Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.Graphics.All)value, (Int32*)data_ptr); } } } [System.CLSCompliant(false)] public static - void GetLocalConstantInteger(UInt32 id, OpenTK.Graphics.OpenGL.All value, [Out] out Int32 data) + void GetLocalConstantInteger(UInt32 id, OpenTK.Graphics.All value, [Out] out Int32 data) { unsafe { fixed (Int32* data_ptr = &data) { - Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (Int32*)data_ptr); + Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.Graphics.All)value, (Int32*)data_ptr); data = *data_ptr; } } } public static - void GetLocalConstantInteger(Int32 id, OpenTK.Graphics.OpenGL.All value, [Out] out Int32 data) + void GetLocalConstantInteger(Int32 id, OpenTK.Graphics.All value, [Out] out Int32 data) { unsafe { fixed (Int32* data_ptr = &data) { - Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (Int32*)data_ptr); + Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.Graphics.All)value, (Int32*)data_ptr); data = *data_ptr; } } @@ -31144,65 +31144,65 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetLocalConstantInteger(UInt32 id, OpenTK.Graphics.OpenGL.All value, [Out] Int32* data) + unsafe void GetLocalConstantInteger(UInt32 id, OpenTK.Graphics.All value, [Out] Int32* data) { - Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (Int32*)data); + Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.Graphics.All)value, (Int32*)data); } [System.CLSCompliant(false)] public static - unsafe void GetLocalConstantInteger(Int32 id, OpenTK.Graphics.OpenGL.All value, [Out] Int32* data) + unsafe void GetLocalConstantInteger(Int32 id, OpenTK.Graphics.All value, [Out] Int32* data) { - Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (Int32*)data); + Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.Graphics.All)value, (Int32*)data); } [System.CLSCompliant(false)] public static - void GetLocalConstantFloat(UInt32 id, OpenTK.Graphics.OpenGL.All value, [Out] Single[] data) + void GetLocalConstantFloat(UInt32 id, OpenTK.Graphics.All value, [Out] Single[] data) { unsafe { fixed (Single* data_ptr = data) { - Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (Single*)data_ptr); + Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.Graphics.All)value, (Single*)data_ptr); } } } public static - void GetLocalConstantFloat(Int32 id, OpenTK.Graphics.OpenGL.All value, [Out] Single[] data) + void GetLocalConstantFloat(Int32 id, OpenTK.Graphics.All value, [Out] Single[] data) { unsafe { fixed (Single* data_ptr = data) { - Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (Single*)data_ptr); + Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.Graphics.All)value, (Single*)data_ptr); } } } [System.CLSCompliant(false)] public static - void GetLocalConstantFloat(UInt32 id, OpenTK.Graphics.OpenGL.All value, [Out] out Single data) + void GetLocalConstantFloat(UInt32 id, OpenTK.Graphics.All value, [Out] out Single data) { unsafe { fixed (Single* data_ptr = &data) { - Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (Single*)data_ptr); + Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.Graphics.All)value, (Single*)data_ptr); data = *data_ptr; } } } public static - void GetLocalConstantFloat(Int32 id, OpenTK.Graphics.OpenGL.All value, [Out] out Single data) + void GetLocalConstantFloat(Int32 id, OpenTK.Graphics.All value, [Out] out Single data) { unsafe { fixed (Single* data_ptr = &data) { - Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (Single*)data_ptr); + Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.Graphics.All)value, (Single*)data_ptr); data = *data_ptr; } } @@ -31210,22 +31210,22 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetLocalConstantFloat(UInt32 id, OpenTK.Graphics.OpenGL.All value, [Out] Single* data) + unsafe void GetLocalConstantFloat(UInt32 id, OpenTK.Graphics.All value, [Out] Single* data) { - Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (Single*)data); + Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.Graphics.All)value, (Single*)data); } [System.CLSCompliant(false)] public static - unsafe void GetLocalConstantFloat(Int32 id, OpenTK.Graphics.OpenGL.All value, [Out] Single* data) + unsafe void GetLocalConstantFloat(Int32 id, OpenTK.Graphics.All value, [Out] Single* data) { - Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)value, (Single*)data); + Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.Graphics.All)value, (Single*)data); } public static - void ActiveStencilFace(OpenTK.Graphics.OpenGL.All face) + void ActiveStencilFace(OpenTK.Graphics.All face) { - Delegates.glActiveStencilFaceEXT((OpenTK.Graphics.OpenGL.All)face); + Delegates.glActiveStencilFaceEXT((OpenTK.Graphics.All)face); } public static @@ -31235,9 +31235,9 @@ namespace OpenTK.Graphics.OpenGL } public static - void BlendEquationSeparate(OpenTK.Graphics.OpenGL.All modeRGB, OpenTK.Graphics.OpenGL.All modeAlpha) + void BlendEquationSeparate(OpenTK.Graphics.All modeRGB, OpenTK.Graphics.All modeAlpha) { - Delegates.glBlendEquationSeparateEXT((OpenTK.Graphics.OpenGL.All)modeRGB, (OpenTK.Graphics.OpenGL.All)modeAlpha); + Delegates.glBlendEquationSeparateEXT((OpenTK.Graphics.All)modeRGB, (OpenTK.Graphics.All)modeAlpha); } [System.CLSCompliant(false)] @@ -31255,15 +31255,15 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void BindRenderbuffer(OpenTK.Graphics.OpenGL.RenderbufferTarget target, UInt32 renderbuffer) + void BindRenderbuffer(OpenTK.Graphics.RenderbufferTarget target, UInt32 renderbuffer) { - Delegates.glBindRenderbufferEXT((OpenTK.Graphics.OpenGL.RenderbufferTarget)target, (UInt32)renderbuffer); + Delegates.glBindRenderbufferEXT((OpenTK.Graphics.RenderbufferTarget)target, (UInt32)renderbuffer); } public static - void BindRenderbuffer(OpenTK.Graphics.OpenGL.RenderbufferTarget target, Int32 renderbuffer) + void BindRenderbuffer(OpenTK.Graphics.RenderbufferTarget target, Int32 renderbuffer) { - Delegates.glBindRenderbufferEXT((OpenTK.Graphics.OpenGL.RenderbufferTarget)target, (UInt32)renderbuffer); + Delegates.glBindRenderbufferEXT((OpenTK.Graphics.RenderbufferTarget)target, (UInt32)renderbuffer); } [System.CLSCompliant(false)] @@ -31397,31 +31397,31 @@ namespace OpenTK.Graphics.OpenGL } public static - void RenderbufferStorage(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) + void RenderbufferStorage(OpenTK.Graphics.RenderbufferTarget target, OpenTK.Graphics.RenderbufferStorage internalformat, Int32 width, Int32 height) { - Delegates.glRenderbufferStorageEXT((OpenTK.Graphics.OpenGL.RenderbufferTarget)target, (OpenTK.Graphics.OpenGL.RenderbufferStorage)internalformat, (Int32)width, (Int32)height); + Delegates.glRenderbufferStorageEXT((OpenTK.Graphics.RenderbufferTarget)target, (OpenTK.Graphics.RenderbufferStorage)internalformat, (Int32)width, (Int32)height); } public static - void GetRenderbufferParameter(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [Out] Int32[] @params) + void GetRenderbufferParameter(OpenTK.Graphics.RenderbufferTarget target, OpenTK.Graphics.RenderbufferParameterName pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetRenderbufferParameterivEXT((OpenTK.Graphics.OpenGL.RenderbufferTarget)target, (OpenTK.Graphics.OpenGL.RenderbufferParameterName)pname, (Int32*)@params_ptr); + Delegates.glGetRenderbufferParameterivEXT((OpenTK.Graphics.RenderbufferTarget)target, (OpenTK.Graphics.RenderbufferParameterName)pname, (Int32*)@params_ptr); } } } public static - void GetRenderbufferParameter(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [Out] out Int32 @params) + void GetRenderbufferParameter(OpenTK.Graphics.RenderbufferTarget target, OpenTK.Graphics.RenderbufferParameterName pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetRenderbufferParameterivEXT((OpenTK.Graphics.OpenGL.RenderbufferTarget)target, (OpenTK.Graphics.OpenGL.RenderbufferParameterName)pname, (Int32*)@params_ptr); + Delegates.glGetRenderbufferParameterivEXT((OpenTK.Graphics.RenderbufferTarget)target, (OpenTK.Graphics.RenderbufferParameterName)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -31429,9 +31429,9 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetRenderbufferParameter(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [Out] Int32* @params) + unsafe void GetRenderbufferParameter(OpenTK.Graphics.RenderbufferTarget target, OpenTK.Graphics.RenderbufferParameterName pname, [Out] Int32* @params) { - Delegates.glGetRenderbufferParameterivEXT((OpenTK.Graphics.OpenGL.RenderbufferTarget)target, (OpenTK.Graphics.OpenGL.RenderbufferParameterName)pname, (Int32*)@params); + Delegates.glGetRenderbufferParameterivEXT((OpenTK.Graphics.RenderbufferTarget)target, (OpenTK.Graphics.RenderbufferParameterName)pname, (Int32*)@params); } [System.CLSCompliant(false)] @@ -31449,15 +31449,15 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void BindFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, UInt32 framebuffer) + void BindFramebuffer(OpenTK.Graphics.FramebufferTarget target, UInt32 framebuffer) { - Delegates.glBindFramebufferEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (UInt32)framebuffer); + Delegates.glBindFramebufferEXT((OpenTK.Graphics.FramebufferTarget)target, (UInt32)framebuffer); } public static - void BindFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 framebuffer) + void BindFramebuffer(OpenTK.Graphics.FramebufferTarget target, Int32 framebuffer) { - Delegates.glBindFramebufferEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (UInt32)framebuffer); + Delegates.glBindFramebufferEXT((OpenTK.Graphics.FramebufferTarget)target, (UInt32)framebuffer); } [System.CLSCompliant(false)] @@ -31591,83 +31591,83 @@ namespace OpenTK.Graphics.OpenGL } public static - OpenTK.Graphics.OpenGL.FramebufferErrorCode CheckFramebufferStatus(OpenTK.Graphics.OpenGL.FramebufferTarget target) + OpenTK.Graphics.FramebufferErrorCode CheckFramebufferStatus(OpenTK.Graphics.FramebufferTarget target) { - return Delegates.glCheckFramebufferStatusEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target); + return Delegates.glCheckFramebufferStatusEXT((OpenTK.Graphics.FramebufferTarget)target); } [System.CLSCompliant(false)] public static - void FramebufferTexture1D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level) + void FramebufferTexture1D(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.TextureTarget textarget, UInt32 texture, Int32 level) { - Delegates.glFramebufferTexture1DEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level); + Delegates.glFramebufferTexture1DEXT((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.TextureTarget)textarget, (UInt32)texture, (Int32)level); } public static - void FramebufferTexture1D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, Int32 texture, Int32 level) + void FramebufferTexture1D(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.TextureTarget textarget, Int32 texture, Int32 level) { - Delegates.glFramebufferTexture1DEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level); + Delegates.glFramebufferTexture1DEXT((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.TextureTarget)textarget, (UInt32)texture, (Int32)level); } [System.CLSCompliant(false)] public static - void FramebufferTexture2D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level) + void FramebufferTexture2D(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.TextureTarget textarget, UInt32 texture, Int32 level) { - Delegates.glFramebufferTexture2DEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level); + Delegates.glFramebufferTexture2DEXT((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.TextureTarget)textarget, (UInt32)texture, (Int32)level); } public static - void FramebufferTexture2D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, Int32 texture, Int32 level) + void FramebufferTexture2D(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.TextureTarget textarget, Int32 texture, Int32 level) { - Delegates.glFramebufferTexture2DEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level); + Delegates.glFramebufferTexture2DEXT((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.TextureTarget)textarget, (UInt32)texture, (Int32)level); } [System.CLSCompliant(false)] public static - void FramebufferTexture3D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level, Int32 zoffset) + void FramebufferTexture3D(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.TextureTarget textarget, UInt32 texture, Int32 level, Int32 zoffset) { - Delegates.glFramebufferTexture3DEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level, (Int32)zoffset); + Delegates.glFramebufferTexture3DEXT((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.TextureTarget)textarget, (UInt32)texture, (Int32)level, (Int32)zoffset); } public static - void FramebufferTexture3D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, Int32 texture, Int32 level, Int32 zoffset) + void FramebufferTexture3D(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.TextureTarget textarget, Int32 texture, Int32 level, Int32 zoffset) { - Delegates.glFramebufferTexture3DEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level, (Int32)zoffset); + Delegates.glFramebufferTexture3DEXT((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.TextureTarget)textarget, (UInt32)texture, (Int32)level, (Int32)zoffset); } [System.CLSCompliant(false)] public static - void FramebufferRenderbuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) + void FramebufferRenderbuffer(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { - Delegates.glFramebufferRenderbufferEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); + Delegates.glFramebufferRenderbufferEXT((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); } public static - void FramebufferRenderbuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) + void FramebufferRenderbuffer(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { - Delegates.glFramebufferRenderbufferEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); + Delegates.glFramebufferRenderbufferEXT((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); } public static - void GetFramebufferAttachmentParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [Out] Int32[] @params) + void GetFramebufferAttachmentParameter(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.FramebufferParameterName pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetFramebufferAttachmentParameterivEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.FramebufferParameterName)pname, (Int32*)@params_ptr); + Delegates.glGetFramebufferAttachmentParameterivEXT((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.FramebufferParameterName)pname, (Int32*)@params_ptr); } } } public static - void GetFramebufferAttachmentParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [Out] out Int32 @params) + void GetFramebufferAttachmentParameter(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.FramebufferParameterName pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetFramebufferAttachmentParameterivEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.FramebufferParameterName)pname, (Int32*)@params_ptr); + Delegates.glGetFramebufferAttachmentParameterivEXT((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.FramebufferParameterName)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -31675,15 +31675,15 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [Out] Int32* @params) + unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.FramebufferParameterName pname, [Out] Int32* @params) { - Delegates.glGetFramebufferAttachmentParameterivEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.FramebufferParameterName)pname, (Int32*)@params); + Delegates.glGetFramebufferAttachmentParameterivEXT((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.FramebufferParameterName)pname, (Int32*)@params); } public static - void GenerateMipmap(OpenTK.Graphics.OpenGL.GenerateMipmapTarget target) + void GenerateMipmap(OpenTK.Graphics.GenerateMipmapTarget target) { - Delegates.glGenerateMipmapEXT((OpenTK.Graphics.OpenGL.GenerateMipmapTarget)target); + Delegates.glGenerateMipmapEXT((OpenTK.Graphics.GenerateMipmapTarget)target); } [System.CLSCompliant(false)] @@ -31700,64 +31700,64 @@ namespace OpenTK.Graphics.OpenGL } public static - void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.OpenGL.ClearBufferMask mask, OpenTK.Graphics.OpenGL.All filter) + void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ClearBufferMask mask, OpenTK.Graphics.All filter) { - Delegates.glBlitFramebufferEXT((Int32)srcX0, (Int32)srcY0, (Int32)srcX1, (Int32)srcY1, (Int32)dstX0, (Int32)dstY0, (Int32)dstX1, (Int32)dstY1, (OpenTK.Graphics.OpenGL.ClearBufferMask)mask, (OpenTK.Graphics.OpenGL.All)filter); + Delegates.glBlitFramebufferEXT((Int32)srcX0, (Int32)srcY0, (Int32)srcX1, (Int32)srcY1, (Int32)dstX0, (Int32)dstY0, (Int32)dstX1, (Int32)dstY1, (OpenTK.Graphics.ClearBufferMask)mask, (OpenTK.Graphics.All)filter); } public static - void RenderbufferStorageMultisample(OpenTK.Graphics.OpenGL.All target, Int32 samples, OpenTK.Graphics.OpenGL.All internalformat, Int32 width, Int32 height) + void RenderbufferStorageMultisample(OpenTK.Graphics.All target, Int32 samples, OpenTK.Graphics.All internalformat, Int32 width, Int32 height) { - Delegates.glRenderbufferStorageMultisampleEXT((OpenTK.Graphics.OpenGL.All)target, (Int32)samples, (OpenTK.Graphics.OpenGL.All)internalformat, (Int32)width, (Int32)height); + Delegates.glRenderbufferStorageMultisampleEXT((OpenTK.Graphics.All)target, (Int32)samples, (OpenTK.Graphics.All)internalformat, (Int32)width, (Int32)height); } [System.CLSCompliant(false)] public static - void GetQueryObjecti64(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] Int64[] @params) + void GetQueryObjecti64(UInt32 id, OpenTK.Graphics.All pname, [Out] Int64[] @params) { unsafe { fixed (Int64* @params_ptr = @params) { - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (Int64*)@params_ptr); + Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.All)pname, (Int64*)@params_ptr); } } } public static - void GetQueryObjecti64(Int32 id, OpenTK.Graphics.OpenGL.All pname, [Out] Int64[] @params) + void GetQueryObjecti64(Int32 id, OpenTK.Graphics.All pname, [Out] Int64[] @params) { unsafe { fixed (Int64* @params_ptr = @params) { - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (Int64*)@params_ptr); + Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.All)pname, (Int64*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetQueryObjecti64(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] out Int64 @params) + void GetQueryObjecti64(UInt32 id, OpenTK.Graphics.All pname, [Out] out Int64 @params) { unsafe { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (Int64*)@params_ptr); + Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.All)pname, (Int64*)@params_ptr); @params = *@params_ptr; } } } public static - void GetQueryObjecti64(Int32 id, OpenTK.Graphics.OpenGL.All pname, [Out] out Int64 @params) + void GetQueryObjecti64(Int32 id, OpenTK.Graphics.All pname, [Out] out Int64 @params) { unsafe { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (Int64*)@params_ptr); + Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.All)pname, (Int64*)@params_ptr); @params = *@params_ptr; } } @@ -31765,65 +31765,65 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetQueryObjecti64(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] Int64* @params) + unsafe void GetQueryObjecti64(UInt32 id, OpenTK.Graphics.All pname, [Out] Int64* @params) { - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (Int64*)@params); + Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.All)pname, (Int64*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetQueryObjecti64(Int32 id, OpenTK.Graphics.OpenGL.All pname, [Out] Int64* @params) + unsafe void GetQueryObjecti64(Int32 id, OpenTK.Graphics.All pname, [Out] Int64* @params) { - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (Int64*)@params); + Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.All)pname, (Int64*)@params); } [System.CLSCompliant(false)] public static - void GetQueryObjectui64(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] UInt64[] @params) + void GetQueryObjectui64(UInt32 id, OpenTK.Graphics.All pname, [Out] UInt64[] @params) { unsafe { fixed (UInt64* @params_ptr = @params) { - Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (UInt64*)@params_ptr); + Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.All)pname, (UInt64*)@params_ptr); } } } public static - void GetQueryObjectui64(Int32 id, OpenTK.Graphics.OpenGL.All pname, [Out] Int64[] @params) + void GetQueryObjectui64(Int32 id, OpenTK.Graphics.All pname, [Out] Int64[] @params) { unsafe { fixed (Int64* @params_ptr = @params) { - Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (UInt64*)@params_ptr); + Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.All)pname, (UInt64*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetQueryObjectui64(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] out UInt64 @params) + void GetQueryObjectui64(UInt32 id, OpenTK.Graphics.All pname, [Out] out UInt64 @params) { unsafe { fixed (UInt64* @params_ptr = &@params) { - Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (UInt64*)@params_ptr); + Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.All)pname, (UInt64*)@params_ptr); @params = *@params_ptr; } } } public static - void GetQueryObjectui64(Int32 id, OpenTK.Graphics.OpenGL.All pname, [Out] out Int64 @params) + void GetQueryObjectui64(Int32 id, OpenTK.Graphics.All pname, [Out] out Int64 @params) { unsafe { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (UInt64*)@params_ptr); + Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.All)pname, (UInt64*)@params_ptr); @params = *@params_ptr; } } @@ -31831,196 +31831,196 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetQueryObjectui64(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] UInt64* @params) + unsafe void GetQueryObjectui64(UInt32 id, OpenTK.Graphics.All pname, [Out] UInt64* @params) { - Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (UInt64*)@params); + Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.All)pname, (UInt64*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetQueryObjectui64(Int32 id, OpenTK.Graphics.OpenGL.All pname, [Out] Int64* @params) + unsafe void GetQueryObjectui64(Int32 id, OpenTK.Graphics.All pname, [Out] Int64* @params) { - Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (UInt64*)@params); + Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.All)pname, (UInt64*)@params); } [System.CLSCompliant(false)] public static - void ProgramEnvParameters4(OpenTK.Graphics.OpenGL.All target, UInt32 index, Int32 count, Single[] @params) + void ProgramEnvParameters4(OpenTK.Graphics.All target, UInt32 index, Int32 count, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glProgramEnvParameters4fvEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); + Delegates.glProgramEnvParameters4fvEXT((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); } } } public static - void ProgramEnvParameters4(OpenTK.Graphics.OpenGL.All target, Int32 index, Int32 count, Single[] @params) + void ProgramEnvParameters4(OpenTK.Graphics.All target, Int32 index, Int32 count, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glProgramEnvParameters4fvEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); + Delegates.glProgramEnvParameters4fvEXT((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void ProgramEnvParameters4(OpenTK.Graphics.OpenGL.All target, UInt32 index, Int32 count, ref Single @params) + void ProgramEnvParameters4(OpenTK.Graphics.All target, UInt32 index, Int32 count, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glProgramEnvParameters4fvEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); + Delegates.glProgramEnvParameters4fvEXT((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); } } } public static - void ProgramEnvParameters4(OpenTK.Graphics.OpenGL.All target, Int32 index, Int32 count, ref Single @params) + void ProgramEnvParameters4(OpenTK.Graphics.All target, Int32 index, Int32 count, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glProgramEnvParameters4fvEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); + Delegates.glProgramEnvParameters4fvEXT((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParameters4(OpenTK.Graphics.OpenGL.All target, UInt32 index, Int32 count, Single* @params) + unsafe void ProgramEnvParameters4(OpenTK.Graphics.All target, UInt32 index, Int32 count, Single* @params) { - Delegates.glProgramEnvParameters4fvEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32)count, (Single*)@params); + Delegates.glProgramEnvParameters4fvEXT((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (Single*)@params); } [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParameters4(OpenTK.Graphics.OpenGL.All target, Int32 index, Int32 count, Single* @params) + unsafe void ProgramEnvParameters4(OpenTK.Graphics.All target, Int32 index, Int32 count, Single* @params) { - Delegates.glProgramEnvParameters4fvEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32)count, (Single*)@params); + Delegates.glProgramEnvParameters4fvEXT((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (Single*)@params); } [System.CLSCompliant(false)] public static - void ProgramLocalParameters4(OpenTK.Graphics.OpenGL.All target, UInt32 index, Int32 count, Single[] @params) + void ProgramLocalParameters4(OpenTK.Graphics.All target, UInt32 index, Int32 count, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glProgramLocalParameters4fvEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); + Delegates.glProgramLocalParameters4fvEXT((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); } } } public static - void ProgramLocalParameters4(OpenTK.Graphics.OpenGL.All target, Int32 index, Int32 count, Single[] @params) + void ProgramLocalParameters4(OpenTK.Graphics.All target, Int32 index, Int32 count, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glProgramLocalParameters4fvEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); + Delegates.glProgramLocalParameters4fvEXT((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void ProgramLocalParameters4(OpenTK.Graphics.OpenGL.All target, UInt32 index, Int32 count, ref Single @params) + void ProgramLocalParameters4(OpenTK.Graphics.All target, UInt32 index, Int32 count, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glProgramLocalParameters4fvEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); + Delegates.glProgramLocalParameters4fvEXT((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); } } } public static - void ProgramLocalParameters4(OpenTK.Graphics.OpenGL.All target, Int32 index, Int32 count, ref Single @params) + void ProgramLocalParameters4(OpenTK.Graphics.All target, Int32 index, Int32 count, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glProgramLocalParameters4fvEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); + Delegates.glProgramLocalParameters4fvEXT((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParameters4(OpenTK.Graphics.OpenGL.All target, UInt32 index, Int32 count, Single* @params) + unsafe void ProgramLocalParameters4(OpenTK.Graphics.All target, UInt32 index, Int32 count, Single* @params) { - Delegates.glProgramLocalParameters4fvEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32)count, (Single*)@params); + Delegates.glProgramLocalParameters4fvEXT((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (Single*)@params); } [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParameters4(OpenTK.Graphics.OpenGL.All target, Int32 index, Int32 count, Single* @params) + unsafe void ProgramLocalParameters4(OpenTK.Graphics.All target, Int32 index, Int32 count, Single* @params) { - Delegates.glProgramLocalParameters4fvEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32)count, (Single*)@params); + Delegates.glProgramLocalParameters4fvEXT((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (Single*)@params); } [System.CLSCompliant(false)] public static - void FramebufferTexture(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level) + void FramebufferTexture(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, UInt32 texture, Int32 level) { - Delegates.glFramebufferTextureEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level); + Delegates.glFramebufferTextureEXT((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level); } public static - void FramebufferTexture(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level) + void FramebufferTexture(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, Int32 texture, Int32 level) { - Delegates.glFramebufferTextureEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level); + Delegates.glFramebufferTextureEXT((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level); } [System.CLSCompliant(false)] public static - void FramebufferTextureLayer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) + void FramebufferTextureLayer(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { - Delegates.glFramebufferTextureLayerEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (Int32)layer); + Delegates.glFramebufferTextureLayerEXT((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (Int32)layer); } public static - void FramebufferTextureLayer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) + void FramebufferTextureLayer(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { - Delegates.glFramebufferTextureLayerEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (Int32)layer); + Delegates.glFramebufferTextureLayerEXT((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (Int32)layer); } [System.CLSCompliant(false)] public static - void FramebufferTextureFace(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.TextureTarget face) + void FramebufferTextureFace(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, UInt32 texture, Int32 level, OpenTK.Graphics.TextureTarget face) { - Delegates.glFramebufferTextureFaceEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL.TextureTarget)face); + Delegates.glFramebufferTextureFaceEXT((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (OpenTK.Graphics.TextureTarget)face); } public static - void FramebufferTextureFace(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.TextureTarget face) + void FramebufferTextureFace(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, Int32 texture, Int32 level, OpenTK.Graphics.TextureTarget face) { - Delegates.glFramebufferTextureFaceEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL.TextureTarget)face); + Delegates.glFramebufferTextureFaceEXT((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (OpenTK.Graphics.TextureTarget)face); } [System.CLSCompliant(false)] public static - void ProgramParameter(UInt32 program, OpenTK.Graphics.OpenGL.All pname, Int32 value) + void ProgramParameter(UInt32 program, OpenTK.Graphics.All pname, Int32 value) { - Delegates.glProgramParameteriEXT((UInt32)program, (OpenTK.Graphics.OpenGL.All)pname, (Int32)value); + Delegates.glProgramParameteriEXT((UInt32)program, (OpenTK.Graphics.All)pname, (Int32)value); } public static - void ProgramParameter(Int32 program, OpenTK.Graphics.OpenGL.All pname, Int32 value) + void ProgramParameter(Int32 program, OpenTK.Graphics.All pname, Int32 value) { - Delegates.glProgramParameteriEXT((UInt32)program, (OpenTK.Graphics.OpenGL.All)pname, (Int32)value); + Delegates.glProgramParameteriEXT((UInt32)program, (OpenTK.Graphics.All)pname, (Int32)value); } [System.CLSCompliant(false)] @@ -32687,33 +32687,33 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.All type, Int32 stride, IntPtr pointer) + void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.All type, Int32 stride, IntPtr pointer) { unsafe { - Delegates.glVertexAttribIPointerEXT((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.All)type, (Int32)stride, (IntPtr)pointer); + Delegates.glVertexAttribIPointerEXT((UInt32)index, (Int32)size, (OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer); } } public static - void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.All type, Int32 stride, IntPtr pointer) + void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.All type, Int32 stride, IntPtr pointer) { unsafe { - Delegates.glVertexAttribIPointerEXT((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.All)type, (Int32)stride, (IntPtr)pointer); + Delegates.glVertexAttribIPointerEXT((UInt32)index, (Int32)size, (OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer); } } [System.CLSCompliant(false)] public static - void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.All type, Int32 stride, [In, Out] object pointer) + void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.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.Graphics.OpenGL.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glVertexAttribIPointerEXT((UInt32)index, (Int32)size, (OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -32723,14 +32723,14 @@ namespace OpenTK.Graphics.OpenGL } public static - void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.All type, Int32 stride, [In, Out] object pointer) + void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.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.Graphics.OpenGL.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glVertexAttribIPointerEXT((UInt32)index, (Int32)size, (OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -32741,26 +32741,26 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetVertexAttribI(UInt32 index, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVertexAttribIivEXT((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetVertexAttribIivEXT((UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetVertexAttribI(UInt32 index, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribIivEXT((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetVertexAttribIivEXT((UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -32768,58 +32768,58 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetVertexAttribIivEXT((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glGetVertexAttribIivEXT((UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] UInt32[] @params) + void GetVertexAttribI(UInt32 index, OpenTK.Graphics.All pname, [Out] UInt32[] @params) { unsafe { fixed (UInt32* @params_ptr = @params) { - Delegates.glGetVertexAttribIuivEXT((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (UInt32*)@params_ptr); + Delegates.glGetVertexAttribIuivEXT((UInt32)index, (OpenTK.Graphics.All)pname, (UInt32*)@params_ptr); } } } public static - void GetVertexAttribI(Int32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetVertexAttribI(Int32 index, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVertexAttribIuivEXT((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (UInt32*)@params_ptr); + Delegates.glGetVertexAttribIuivEXT((UInt32)index, (OpenTK.Graphics.All)pname, (UInt32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] out UInt32 @params) + void GetVertexAttribI(UInt32 index, OpenTK.Graphics.All pname, [Out] out UInt32 @params) { unsafe { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetVertexAttribIuivEXT((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (UInt32*)@params_ptr); + Delegates.glGetVertexAttribIuivEXT((UInt32)index, (OpenTK.Graphics.All)pname, (UInt32*)@params_ptr); @params = *@params_ptr; } } } public static - void GetVertexAttribI(Int32 index, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetVertexAttribI(Int32 index, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribIuivEXT((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (UInt32*)@params_ptr); + Delegates.glGetVertexAttribIuivEXT((UInt32)index, (OpenTK.Graphics.All)pname, (UInt32*)@params_ptr); @params = *@params_ptr; } } @@ -32827,16 +32827,16 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] UInt32* @params) + unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.All pname, [Out] UInt32* @params) { - Delegates.glGetVertexAttribIuivEXT((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (UInt32*)@params); + Delegates.glGetVertexAttribIuivEXT((UInt32)index, (OpenTK.Graphics.All)pname, (UInt32*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribI(Int32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetVertexAttribI(Int32 index, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetVertexAttribIuivEXT((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (UInt32*)@params); + Delegates.glGetVertexAttribIuivEXT((UInt32)index, (OpenTK.Graphics.All)pname, (UInt32*)@params); } [System.CLSCompliant(false)] @@ -33240,29 +33240,29 @@ namespace OpenTK.Graphics.OpenGL } public static - void DrawArraysInstance(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 count, Int32 primcount) + void DrawArraysInstance(OpenTK.Graphics.BeginMode mode, Int32 start, Int32 count, Int32 primcount) { - Delegates.glDrawArraysInstancedEXT((OpenTK.Graphics.OpenGL.BeginMode)mode, (Int32)start, (Int32)count, (Int32)primcount); + Delegates.glDrawArraysInstancedEXT((OpenTK.Graphics.BeginMode)mode, (Int32)start, (Int32)count, (Int32)primcount); } public static - void DrawElementsInstance(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount) + void DrawElementsInstance(OpenTK.Graphics.BeginMode mode, Int32 count, OpenTK.Graphics.DrawElementsType type, IntPtr indices, Int32 primcount) { unsafe { - Delegates.glDrawElementsInstancedEXT((OpenTK.Graphics.OpenGL.BeginMode)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + Delegates.glDrawElementsInstancedEXT((OpenTK.Graphics.BeginMode)mode, (Int32)count, (OpenTK.Graphics.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); } } public static - void DrawElementsInstance(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [In, Out] object indices, Int32 primcount) + void DrawElementsInstance(OpenTK.Graphics.BeginMode mode, Int32 count, OpenTK.Graphics.DrawElementsType 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.Graphics.OpenGL.BeginMode)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + Delegates.glDrawElementsInstancedEXT((OpenTK.Graphics.BeginMode)mode, (Int32)count, (OpenTK.Graphics.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -33273,15 +33273,15 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void TexBuffer(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.All internalformat, UInt32 buffer) + void TexBuffer(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.All internalformat, UInt32 buffer) { - Delegates.glTexBufferEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.All)internalformat, (UInt32)buffer); + Delegates.glTexBufferEXT((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.All)internalformat, (UInt32)buffer); } public static - void TexBuffer(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.All internalformat, Int32 buffer) + void TexBuffer(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.All internalformat, Int32 buffer) { - Delegates.glTexBufferEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.All)internalformat, (UInt32)buffer); + Delegates.glTexBufferEXT((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.All)internalformat, (UInt32)buffer); } [System.CLSCompliant(false)] @@ -33299,51 +33299,51 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void GetBooleanIndexed(OpenTK.Graphics.OpenGL.All target, UInt32 index, [Out] bool[] data) + void GetBooleanIndexed(OpenTK.Graphics.All target, UInt32 index, [Out] bool[] data) { unsafe { fixed (bool* data_ptr = data) { - Delegates.glGetBooleanIndexedvEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (bool*)data_ptr); + Delegates.glGetBooleanIndexedvEXT((OpenTK.Graphics.All)target, (UInt32)index, (bool*)data_ptr); } } } public static - void GetBooleanIndexed(OpenTK.Graphics.OpenGL.All target, Int32 index, [Out] bool[] data) + void GetBooleanIndexed(OpenTK.Graphics.All target, Int32 index, [Out] bool[] data) { unsafe { fixed (bool* data_ptr = data) { - Delegates.glGetBooleanIndexedvEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (bool*)data_ptr); + Delegates.glGetBooleanIndexedvEXT((OpenTK.Graphics.All)target, (UInt32)index, (bool*)data_ptr); } } } [System.CLSCompliant(false)] public static - void GetBooleanIndexed(OpenTK.Graphics.OpenGL.All target, UInt32 index, [Out] out bool data) + void GetBooleanIndexed(OpenTK.Graphics.All target, UInt32 index, [Out] out bool data) { unsafe { fixed (bool* data_ptr = &data) { - Delegates.glGetBooleanIndexedvEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (bool*)data_ptr); + Delegates.glGetBooleanIndexedvEXT((OpenTK.Graphics.All)target, (UInt32)index, (bool*)data_ptr); data = *data_ptr; } } } public static - void GetBooleanIndexed(OpenTK.Graphics.OpenGL.All target, Int32 index, [Out] out bool data) + void GetBooleanIndexed(OpenTK.Graphics.All target, Int32 index, [Out] out bool data) { unsafe { fixed (bool* data_ptr = &data) { - Delegates.glGetBooleanIndexedvEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (bool*)data_ptr); + Delegates.glGetBooleanIndexedvEXT((OpenTK.Graphics.All)target, (UInt32)index, (bool*)data_ptr); data = *data_ptr; } } @@ -33351,65 +33351,65 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetBooleanIndexed(OpenTK.Graphics.OpenGL.All target, UInt32 index, [Out] bool* data) + unsafe void GetBooleanIndexed(OpenTK.Graphics.All target, UInt32 index, [Out] bool* data) { - Delegates.glGetBooleanIndexedvEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (bool*)data); + Delegates.glGetBooleanIndexedvEXT((OpenTK.Graphics.All)target, (UInt32)index, (bool*)data); } [System.CLSCompliant(false)] public static - unsafe void GetBooleanIndexed(OpenTK.Graphics.OpenGL.All target, Int32 index, [Out] bool* data) + unsafe void GetBooleanIndexed(OpenTK.Graphics.All target, Int32 index, [Out] bool* data) { - Delegates.glGetBooleanIndexedvEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (bool*)data); + Delegates.glGetBooleanIndexedvEXT((OpenTK.Graphics.All)target, (UInt32)index, (bool*)data); } [System.CLSCompliant(false)] public static - void GetIntegerIndexed(OpenTK.Graphics.OpenGL.All target, UInt32 index, [Out] Int32[] data) + void GetIntegerIndexed(OpenTK.Graphics.All target, UInt32 index, [Out] Int32[] data) { unsafe { fixed (Int32* data_ptr = data) { - Delegates.glGetIntegerIndexedvEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32*)data_ptr); + Delegates.glGetIntegerIndexedvEXT((OpenTK.Graphics.All)target, (UInt32)index, (Int32*)data_ptr); } } } public static - void GetIntegerIndexed(OpenTK.Graphics.OpenGL.All target, Int32 index, [Out] Int32[] data) + void GetIntegerIndexed(OpenTK.Graphics.All target, Int32 index, [Out] Int32[] data) { unsafe { fixed (Int32* data_ptr = data) { - Delegates.glGetIntegerIndexedvEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32*)data_ptr); + Delegates.glGetIntegerIndexedvEXT((OpenTK.Graphics.All)target, (UInt32)index, (Int32*)data_ptr); } } } [System.CLSCompliant(false)] public static - void GetIntegerIndexed(OpenTK.Graphics.OpenGL.All target, UInt32 index, [Out] out Int32 data) + void GetIntegerIndexed(OpenTK.Graphics.All target, UInt32 index, [Out] out Int32 data) { unsafe { fixed (Int32* data_ptr = &data) { - Delegates.glGetIntegerIndexedvEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32*)data_ptr); + Delegates.glGetIntegerIndexedvEXT((OpenTK.Graphics.All)target, (UInt32)index, (Int32*)data_ptr); data = *data_ptr; } } } public static - void GetIntegerIndexed(OpenTK.Graphics.OpenGL.All target, Int32 index, [Out] out Int32 data) + void GetIntegerIndexed(OpenTK.Graphics.All target, Int32 index, [Out] out Int32 data) { unsafe { fixed (Int32* data_ptr = &data) { - Delegates.glGetIntegerIndexedvEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32*)data_ptr); + Delegates.glGetIntegerIndexedvEXT((OpenTK.Graphics.All)target, (UInt32)index, (Int32*)data_ptr); data = *data_ptr; } } @@ -33417,55 +33417,55 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetIntegerIndexed(OpenTK.Graphics.OpenGL.All target, UInt32 index, [Out] Int32* data) + unsafe void GetIntegerIndexed(OpenTK.Graphics.All target, UInt32 index, [Out] Int32* data) { - Delegates.glGetIntegerIndexedvEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32*)data); + Delegates.glGetIntegerIndexedvEXT((OpenTK.Graphics.All)target, (UInt32)index, (Int32*)data); } [System.CLSCompliant(false)] public static - unsafe void GetIntegerIndexed(OpenTK.Graphics.OpenGL.All target, Int32 index, [Out] Int32* data) + unsafe void GetIntegerIndexed(OpenTK.Graphics.All target, Int32 index, [Out] Int32* data) { - Delegates.glGetIntegerIndexedvEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Int32*)data); + Delegates.glGetIntegerIndexedvEXT((OpenTK.Graphics.All)target, (UInt32)index, (Int32*)data); } [System.CLSCompliant(false)] public static - void EnableIndexe(OpenTK.Graphics.OpenGL.All target, UInt32 index) + void EnableIndexe(OpenTK.Graphics.All target, UInt32 index) { - Delegates.glEnableIndexedEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index); + Delegates.glEnableIndexedEXT((OpenTK.Graphics.All)target, (UInt32)index); } public static - void EnableIndexe(OpenTK.Graphics.OpenGL.All target, Int32 index) + void EnableIndexe(OpenTK.Graphics.All target, Int32 index) { - Delegates.glEnableIndexedEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index); + Delegates.glEnableIndexedEXT((OpenTK.Graphics.All)target, (UInt32)index); } [System.CLSCompliant(false)] public static - void DisableIndexe(OpenTK.Graphics.OpenGL.All target, UInt32 index) + void DisableIndexe(OpenTK.Graphics.All target, UInt32 index) { - Delegates.glDisableIndexedEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index); + Delegates.glDisableIndexedEXT((OpenTK.Graphics.All)target, (UInt32)index); } public static - void DisableIndexe(OpenTK.Graphics.OpenGL.All target, Int32 index) + void DisableIndexe(OpenTK.Graphics.All target, Int32 index) { - Delegates.glDisableIndexedEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index); + Delegates.glDisableIndexedEXT((OpenTK.Graphics.All)target, (UInt32)index); } [System.CLSCompliant(false)] public static - bool IsEnabledIndexe(OpenTK.Graphics.OpenGL.All target, UInt32 index) + bool IsEnabledIndexe(OpenTK.Graphics.All target, UInt32 index) { - return Delegates.glIsEnabledIndexedEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index); + return Delegates.glIsEnabledIndexedEXT((OpenTK.Graphics.All)target, (UInt32)index); } public static - bool IsEnabledIndexe(OpenTK.Graphics.OpenGL.All target, Int32 index) + bool IsEnabledIndexe(OpenTK.Graphics.All target, Int32 index) { - return Delegates.glIsEnabledIndexedEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index); + return Delegates.glIsEnabledIndexedEXT((OpenTK.Graphics.All)target, (UInt32)index); } [System.CLSCompliant(false)] @@ -33496,115 +33496,115 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void TexParameterIv(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, UInt32[] @params) + void TexParameterIv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, UInt32[] @params) { unsafe { fixed (UInt32* @params_ptr = @params) { - Delegates.glTexParameterIuivEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (UInt32*)@params_ptr); + Delegates.glTexParameterIuivEXT((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (UInt32*)@params_ptr); } } } public static - void TexParameterIv(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32[] @params) + void TexParameterIv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glTexParameterIuivEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (UInt32*)@params_ptr); + Delegates.glTexParameterIuivEXT((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (UInt32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void TexParameterIv(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, ref UInt32 @params) + void TexParameterIv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, ref UInt32 @params) { unsafe { fixed (UInt32* @params_ptr = &@params) { - Delegates.glTexParameterIuivEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (UInt32*)@params_ptr); + Delegates.glTexParameterIuivEXT((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (UInt32*)@params_ptr); } } } public static - void TexParameterIv(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, ref Int32 @params) + void TexParameterIv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glTexParameterIuivEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (UInt32*)@params_ptr); + Delegates.glTexParameterIuivEXT((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (UInt32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void TexParameterIv(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, UInt32* @params) + unsafe void TexParameterIv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, UInt32* @params) { - Delegates.glTexParameterIuivEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (UInt32*)@params); + Delegates.glTexParameterIuivEXT((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (UInt32*)@params); } [System.CLSCompliant(false)] public static - unsafe void TexParameterIv(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32* @params) + unsafe void TexParameterIv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32* @params) { - Delegates.glTexParameterIuivEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (UInt32*)@params); + Delegates.glTexParameterIuivEXT((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (UInt32*)@params); } [System.CLSCompliant(false)] public static - void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [Out] UInt32[] @params) + void GetTexParameterI(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] UInt32[] @params) { unsafe { fixed (UInt32* @params_ptr = @params) { - Delegates.glGetTexParameterIuivEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (UInt32*)@params_ptr); + Delegates.glGetTexParameterIuivEXT((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (UInt32*)@params_ptr); } } } public static - void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [Out] Int32[] @params) + void GetTexParameterI(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetTexParameterIuivEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (UInt32*)@params_ptr); + Delegates.glGetTexParameterIuivEXT((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (UInt32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [Out] out UInt32 @params) + void GetTexParameterI(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] out UInt32 @params) { unsafe { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetTexParameterIuivEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (UInt32*)@params_ptr); + Delegates.glGetTexParameterIuivEXT((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (UInt32*)@params_ptr); @params = *@params_ptr; } } } public static - void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [Out] out Int32 @params) + void GetTexParameterI(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetTexParameterIuivEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (UInt32*)@params_ptr); + Delegates.glGetTexParameterIuivEXT((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (UInt32*)@params_ptr); @params = *@params_ptr; } } @@ -33612,16 +33612,16 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [Out] UInt32* @params) + unsafe void GetTexParameterI(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] UInt32* @params) { - Delegates.glGetTexParameterIuivEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (UInt32*)@params); + Delegates.glGetTexParameterIuivEXT((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (UInt32*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [Out] Int32* @params) + unsafe void GetTexParameterI(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32* @params) { - Delegates.glGetTexParameterIuivEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (UInt32*)@params); + Delegates.glGetTexParameterIuivEXT((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (UInt32*)@params); } [System.CLSCompliant(false)] @@ -33642,25 +33642,25 @@ namespace OpenTK.Graphics.OpenGL public static partial class Sgis { public static - void GetTexFilterFunc(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.All filter, [Out] Single[] weights) + void GetTexFilterFunc(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.All filter, [Out] Single[] weights) { unsafe { fixed (Single* weights_ptr = weights) { - Delegates.glGetTexFilterFuncSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.All)filter, (Single*)weights_ptr); + Delegates.glGetTexFilterFuncSGIS((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.All)filter, (Single*)weights_ptr); } } } public static - void GetTexFilterFunc(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.All filter, [Out] out Single weights) + void GetTexFilterFunc(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.All filter, [Out] out Single weights) { unsafe { fixed (Single* weights_ptr = &weights) { - Delegates.glGetTexFilterFuncSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.All)filter, (Single*)weights_ptr); + Delegates.glGetTexFilterFuncSGIS((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.All)filter, (Single*)weights_ptr); weights = *weights_ptr; } } @@ -33668,136 +33668,136 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetTexFilterFunc(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.All filter, [Out] Single* weights) + unsafe void GetTexFilterFunc(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.All filter, [Out] Single* weights) { - Delegates.glGetTexFilterFuncSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.All)filter, (Single*)weights); + Delegates.glGetTexFilterFuncSGIS((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.All)filter, (Single*)weights); } public static - void TexFilterFunc(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.All filter, Int32 n, Single[] weights) + void TexFilterFunc(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.All filter, Int32 n, Single[] weights) { unsafe { fixed (Single* weights_ptr = weights) { - Delegates.glTexFilterFuncSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.All)filter, (Int32)n, (Single*)weights_ptr); + Delegates.glTexFilterFuncSGIS((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.All)filter, (Int32)n, (Single*)weights_ptr); } } } public static - void TexFilterFunc(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.All filter, Int32 n, ref Single weights) + void TexFilterFunc(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.All filter, Int32 n, ref Single weights) { unsafe { fixed (Single* weights_ptr = &weights) { - Delegates.glTexFilterFuncSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.All)filter, (Int32)n, (Single*)weights_ptr); + Delegates.glTexFilterFuncSGIS((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.All)filter, (Int32)n, (Single*)weights_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void TexFilterFunc(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.All filter, Int32 n, Single* weights) + unsafe void TexFilterFunc(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.All filter, Int32 n, Single* weights) { - Delegates.glTexFilterFuncSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.All)filter, (Int32)n, (Single*)weights); + Delegates.glTexFilterFuncSGIS((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.All)filter, (Int32)n, (Single*)weights); } public static - void PixelTexGenParameter(OpenTK.Graphics.OpenGL.All pname, Int32 param) + void PixelTexGenParameter(OpenTK.Graphics.All pname, Int32 param) { - Delegates.glPixelTexGenParameteriSGIS((OpenTK.Graphics.OpenGL.All)pname, (Int32)param); + Delegates.glPixelTexGenParameteriSGIS((OpenTK.Graphics.All)pname, (Int32)param); } public static - void PixelTexGenParameterv(OpenTK.Graphics.OpenGL.All pname, Int32[] @params) + void PixelTexGenParameterv(OpenTK.Graphics.All pname, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glPixelTexGenParameterivSGIS((OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glPixelTexGenParameterivSGIS((OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void PixelTexGenParameterv(OpenTK.Graphics.OpenGL.All pname, ref Int32 @params) + void PixelTexGenParameterv(OpenTK.Graphics.All pname, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glPixelTexGenParameterivSGIS((OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glPixelTexGenParameterivSGIS((OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void PixelTexGenParameterv(OpenTK.Graphics.OpenGL.All pname, Int32* @params) + unsafe void PixelTexGenParameterv(OpenTK.Graphics.All pname, Int32* @params) { - Delegates.glPixelTexGenParameterivSGIS((OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glPixelTexGenParameterivSGIS((OpenTK.Graphics.All)pname, (Int32*)@params); } public static - void PixelTexGenParameter(OpenTK.Graphics.OpenGL.All pname, Single param) + void PixelTexGenParameter(OpenTK.Graphics.All pname, Single param) { - Delegates.glPixelTexGenParameterfSGIS((OpenTK.Graphics.OpenGL.All)pname, (Single)param); + Delegates.glPixelTexGenParameterfSGIS((OpenTK.Graphics.All)pname, (Single)param); } public static - void PixelTexGenParameterv(OpenTK.Graphics.OpenGL.All pname, Single[] @params) + void PixelTexGenParameterv(OpenTK.Graphics.All pname, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glPixelTexGenParameterfvSGIS((OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glPixelTexGenParameterfvSGIS((OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void PixelTexGenParameterv(OpenTK.Graphics.OpenGL.All pname, ref Single @params) + void PixelTexGenParameterv(OpenTK.Graphics.All pname, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glPixelTexGenParameterfvSGIS((OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glPixelTexGenParameterfvSGIS((OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void PixelTexGenParameterv(OpenTK.Graphics.OpenGL.All pname, Single* @params) + unsafe void PixelTexGenParameterv(OpenTK.Graphics.All pname, Single* @params) { - Delegates.glPixelTexGenParameterfvSGIS((OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glPixelTexGenParameterfvSGIS((OpenTK.Graphics.All)pname, (Single*)@params); } public static - void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetPixelTexGenParameter(OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetPixelTexGenParameterivSGIS((OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetPixelTexGenParameterivSGIS((OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetPixelTexGenParameter(OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetPixelTexGenParameterivSGIS((OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetPixelTexGenParameterivSGIS((OpenTK.Graphics.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -33805,31 +33805,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetPixelTexGenParameter(OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetPixelTexGenParameterivSGIS((OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glGetPixelTexGenParameterivSGIS((OpenTK.Graphics.All)pname, (Int32*)@params); } public static - void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.All pname, [Out] Single[] @params) + void GetPixelTexGenParameter(OpenTK.Graphics.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetPixelTexGenParameterfvSGIS((OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetPixelTexGenParameterfvSGIS((OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.All pname, [Out] out Single @params) + void GetPixelTexGenParameter(OpenTK.Graphics.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetPixelTexGenParameterfvSGIS((OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetPixelTexGenParameterfvSGIS((OpenTK.Graphics.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -33837,29 +33837,29 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params) + unsafe void GetPixelTexGenParameter(OpenTK.Graphics.All pname, [Out] Single* @params) { - Delegates.glGetPixelTexGenParameterfvSGIS((OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glGetPixelTexGenParameterfvSGIS((OpenTK.Graphics.All)pname, (Single*)@params); } public static - void TexImage4D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 size4d, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) + void TexImage4D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 size4d, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels) { unsafe { - Delegates.glTexImage4DSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)size4d, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + Delegates.glTexImage4DSGIS((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)size4d, (Int32)border, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels); } } public static - void TexImage4D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 size4d, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [In, Out] object pixels) + void TexImage4D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 size4d, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.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.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)size4d, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + Delegates.glTexImage4DSGIS((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)size4d, (Int32)border, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -33869,23 +33869,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void TexSubImage4D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 woffset, Int32 width, Int32 height, Int32 depth, Int32 size4d, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) + void TexSubImage4D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 woffset, Int32 width, Int32 height, Int32 depth, Int32 size4d, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels) { unsafe { - Delegates.glTexSubImage4DSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)woffset, (Int32)width, (Int32)height, (Int32)depth, (Int32)size4d, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + Delegates.glTexSubImage4DSGIS((OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)woffset, (Int32)width, (Int32)height, (Int32)depth, (Int32)size4d, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels); } } public static - void TexSubImage4D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 woffset, Int32 width, Int32 height, Int32 depth, Int32 size4d, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [In, Out] object pixels) + void TexSubImage4D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 woffset, Int32 width, Int32 height, Int32 depth, Int32 size4d, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.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.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)woffset, (Int32)width, (Int32)height, (Int32)depth, (Int32)size4d, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + Delegates.glTexSubImage4DSGIS((OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)woffset, (Int32)width, (Int32)height, (Int32)depth, (Int32)size4d, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -33895,56 +33895,56 @@ namespace OpenTK.Graphics.OpenGL } public static - void DetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, Single[] points) + void DetailTexFunc(OpenTK.Graphics.TextureTarget target, Int32 n, Single[] points) { unsafe { fixed (Single* points_ptr = points) { - Delegates.glDetailTexFuncSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)n, (Single*)points_ptr); + Delegates.glDetailTexFuncSGIS((OpenTK.Graphics.TextureTarget)target, (Int32)n, (Single*)points_ptr); } } } public static - void DetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, ref Single points) + void DetailTexFunc(OpenTK.Graphics.TextureTarget target, Int32 n, ref Single points) { unsafe { fixed (Single* points_ptr = &points) { - Delegates.glDetailTexFuncSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)n, (Single*)points_ptr); + Delegates.glDetailTexFuncSGIS((OpenTK.Graphics.TextureTarget)target, (Int32)n, (Single*)points_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void DetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, Single* points) + unsafe void DetailTexFunc(OpenTK.Graphics.TextureTarget target, Int32 n, Single* points) { - Delegates.glDetailTexFuncSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)n, (Single*)points); + Delegates.glDetailTexFuncSGIS((OpenTK.Graphics.TextureTarget)target, (Int32)n, (Single*)points); } public static - void GetDetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, [Out] Single[] points) + void GetDetailTexFunc(OpenTK.Graphics.TextureTarget target, [Out] Single[] points) { unsafe { fixed (Single* points_ptr = points) { - Delegates.glGetDetailTexFuncSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (Single*)points_ptr); + Delegates.glGetDetailTexFuncSGIS((OpenTK.Graphics.TextureTarget)target, (Single*)points_ptr); } } } public static - void GetDetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, [Out] out Single points) + void GetDetailTexFunc(OpenTK.Graphics.TextureTarget target, [Out] out Single points) { unsafe { fixed (Single* points_ptr = &points) { - Delegates.glGetDetailTexFuncSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (Single*)points_ptr); + Delegates.glGetDetailTexFuncSGIS((OpenTK.Graphics.TextureTarget)target, (Single*)points_ptr); points = *points_ptr; } } @@ -33952,62 +33952,62 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetDetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, [Out] Single* points) + unsafe void GetDetailTexFunc(OpenTK.Graphics.TextureTarget target, [Out] Single* points) { - Delegates.glGetDetailTexFuncSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (Single*)points); + Delegates.glGetDetailTexFuncSGIS((OpenTK.Graphics.TextureTarget)target, (Single*)points); } public static - void SharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, Single[] points) + void SharpenTexFunc(OpenTK.Graphics.TextureTarget target, Int32 n, Single[] points) { unsafe { fixed (Single* points_ptr = points) { - Delegates.glSharpenTexFuncSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)n, (Single*)points_ptr); + Delegates.glSharpenTexFuncSGIS((OpenTK.Graphics.TextureTarget)target, (Int32)n, (Single*)points_ptr); } } } public static - void SharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, ref Single points) + void SharpenTexFunc(OpenTK.Graphics.TextureTarget target, Int32 n, ref Single points) { unsafe { fixed (Single* points_ptr = &points) { - Delegates.glSharpenTexFuncSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)n, (Single*)points_ptr); + Delegates.glSharpenTexFuncSGIS((OpenTK.Graphics.TextureTarget)target, (Int32)n, (Single*)points_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void SharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, Single* points) + unsafe void SharpenTexFunc(OpenTK.Graphics.TextureTarget target, Int32 n, Single* points) { - Delegates.glSharpenTexFuncSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)n, (Single*)points); + Delegates.glSharpenTexFuncSGIS((OpenTK.Graphics.TextureTarget)target, (Int32)n, (Single*)points); } public static - void GetSharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, [Out] Single[] points) + void GetSharpenTexFunc(OpenTK.Graphics.TextureTarget target, [Out] Single[] points) { unsafe { fixed (Single* points_ptr = points) { - Delegates.glGetSharpenTexFuncSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (Single*)points_ptr); + Delegates.glGetSharpenTexFuncSGIS((OpenTK.Graphics.TextureTarget)target, (Single*)points_ptr); } } } public static - void GetSharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, [Out] out Single points) + void GetSharpenTexFunc(OpenTK.Graphics.TextureTarget target, [Out] out Single points) { unsafe { fixed (Single* points_ptr = &points) { - Delegates.glGetSharpenTexFuncSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (Single*)points_ptr); + Delegates.glGetSharpenTexFuncSGIS((OpenTK.Graphics.TextureTarget)target, (Single*)points_ptr); points = *points_ptr; } } @@ -34015,9 +34015,9 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetSharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, [Out] Single* points) + unsafe void GetSharpenTexFunc(OpenTK.Graphics.TextureTarget target, [Out] Single* points) { - Delegates.glGetSharpenTexFuncSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (Single*)points); + Delegates.glGetSharpenTexFuncSGIS((OpenTK.Graphics.TextureTarget)target, (Single*)points); } public static @@ -34027,46 +34027,46 @@ namespace OpenTK.Graphics.OpenGL } public static - void SamplePattern(OpenTK.Graphics.OpenGL.All pattern) + void SamplePattern(OpenTK.Graphics.All pattern) { - Delegates.glSamplePatternSGIS((OpenTK.Graphics.OpenGL.All)pattern); + Delegates.glSamplePatternSGIS((OpenTK.Graphics.All)pattern); } public static - void PointParameter(OpenTK.Graphics.OpenGL.All pname, Single param) + void PointParameter(OpenTK.Graphics.All pname, Single param) { - Delegates.glPointParameterfSGIS((OpenTK.Graphics.OpenGL.All)pname, (Single)param); + Delegates.glPointParameterfSGIS((OpenTK.Graphics.All)pname, (Single)param); } public static - void PointParameterv(OpenTK.Graphics.OpenGL.All pname, Single[] @params) + void PointParameterv(OpenTK.Graphics.All pname, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glPointParameterfvSGIS((OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glPointParameterfvSGIS((OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void PointParameterv(OpenTK.Graphics.OpenGL.All pname, ref Single @params) + void PointParameterv(OpenTK.Graphics.All pname, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glPointParameterfvSGIS((OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glPointParameterfvSGIS((OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void PointParameterv(OpenTK.Graphics.OpenGL.All pname, Single* @params) + unsafe void PointParameterv(OpenTK.Graphics.All pname, Single* @params) { - Delegates.glPointParameterfvSGIS((OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glPointParameterfvSGIS((OpenTK.Graphics.All)pname, (Single*)@params); } public static @@ -34143,23 +34143,23 @@ namespace OpenTK.Graphics.OpenGL public static partial class Sgi { public static - void ColorTable(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr table) + void ColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr table) { unsafe { - Delegates.glColorTableSGI((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table); + Delegates.glColorTableSGI((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)table); } } public static - void ColorTable(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [In, Out] object table) + void ColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.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.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); + Delegates.glColorTableSGI((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); } finally { @@ -34169,91 +34169,91 @@ namespace OpenTK.Graphics.OpenGL } public static - void ColorTableParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Single[] @params) + void ColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glColorTableParameterfvSGI((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glColorTableParameterfvSGI((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void ColorTableParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, ref Single @params) + void ColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glColorTableParameterfvSGI((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glColorTableParameterfvSGI((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Single* @params) + unsafe void ColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single* @params) { - Delegates.glColorTableParameterfvSGI((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glColorTableParameterfvSGI((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params); } public static - void ColorTableParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Int32[] @params) + void ColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glColorTableParameterivSGI((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glColorTableParameterivSGI((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void ColorTableParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, ref Int32 @params) + void ColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glColorTableParameterivSGI((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glColorTableParameterivSGI((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Int32* @params) + unsafe void ColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32* @params) { - Delegates.glColorTableParameterivSGI((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glColorTableParameterivSGI((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params); } public static - void CopyColorTable(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) + void CopyColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { - Delegates.glCopyColorTableSGI((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width); + Delegates.glCopyColorTableSGI((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width); } public static - void GetColorTable(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [Out] IntPtr table) + void GetColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr table) { unsafe { - Delegates.glGetColorTableSGI((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table); + Delegates.glGetColorTableSGI((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)table); } } public static - void GetColorTable(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [In, Out] object table) + void GetColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.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.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); + Delegates.glGetColorTableSGI((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); } finally { @@ -34263,25 +34263,25 @@ namespace OpenTK.Graphics.OpenGL } public static - void GetColorTableParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Single[] @params) + void GetColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetColorTableParameterfvSGI((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetColorTableParameterfvSGI((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void GetColorTableParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] out Single @params) + void GetColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetColorTableParameterfvSGI((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetColorTableParameterfvSGI((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -34289,31 +34289,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params) + unsafe void GetColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params) { - Delegates.glGetColorTableParameterfvSGI((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glGetColorTableParameterfvSGI((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params); } public static - void GetColorTableParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetColorTableParameterivSGI((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetColorTableParameterivSGI((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void GetColorTableParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetColorTableParameterivSGI((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetColorTableParameterivSGI((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -34321,9 +34321,9 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetColorTableParameterivSGI((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glGetColorTableParameterivSGI((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params); } } @@ -34331,83 +34331,83 @@ namespace OpenTK.Graphics.OpenGL public static partial class Sgix { public static - void PixelTexGen(OpenTK.Graphics.OpenGL.All mode) + void PixelTexGen(OpenTK.Graphics.All mode) { - Delegates.glPixelTexGenSGIX((OpenTK.Graphics.OpenGL.All)mode); + Delegates.glPixelTexGenSGIX((OpenTK.Graphics.All)mode); } public static - void SpriteParameter(OpenTK.Graphics.OpenGL.All pname, Single param) + void SpriteParameter(OpenTK.Graphics.All pname, Single param) { - Delegates.glSpriteParameterfSGIX((OpenTK.Graphics.OpenGL.All)pname, (Single)param); + Delegates.glSpriteParameterfSGIX((OpenTK.Graphics.All)pname, (Single)param); } public static - void SpriteParameterv(OpenTK.Graphics.OpenGL.All pname, Single[] @params) + void SpriteParameterv(OpenTK.Graphics.All pname, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glSpriteParameterfvSGIX((OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glSpriteParameterfvSGIX((OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void SpriteParameterv(OpenTK.Graphics.OpenGL.All pname, ref Single @params) + void SpriteParameterv(OpenTK.Graphics.All pname, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glSpriteParameterfvSGIX((OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glSpriteParameterfvSGIX((OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void SpriteParameterv(OpenTK.Graphics.OpenGL.All pname, Single* @params) + unsafe void SpriteParameterv(OpenTK.Graphics.All pname, Single* @params) { - Delegates.glSpriteParameterfvSGIX((OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glSpriteParameterfvSGIX((OpenTK.Graphics.All)pname, (Single*)@params); } public static - void SpriteParameter(OpenTK.Graphics.OpenGL.All pname, Int32 param) + void SpriteParameter(OpenTK.Graphics.All pname, Int32 param) { - Delegates.glSpriteParameteriSGIX((OpenTK.Graphics.OpenGL.All)pname, (Int32)param); + Delegates.glSpriteParameteriSGIX((OpenTK.Graphics.All)pname, (Int32)param); } public static - void SpriteParameterv(OpenTK.Graphics.OpenGL.All pname, Int32[] @params) + void SpriteParameterv(OpenTK.Graphics.All pname, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glSpriteParameterivSGIX((OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glSpriteParameterivSGIX((OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void SpriteParameterv(OpenTK.Graphics.OpenGL.All pname, ref Int32 @params) + void SpriteParameterv(OpenTK.Graphics.All pname, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glSpriteParameterivSGIX((OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glSpriteParameterivSGIX((OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void SpriteParameterv(OpenTK.Graphics.OpenGL.All pname, Int32* @params) + unsafe void SpriteParameterv(OpenTK.Graphics.All pname, Int32* @params) { - Delegates.glSpriteParameterivSGIX((OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glSpriteParameterivSGIX((OpenTK.Graphics.All)pname, (Int32*)@params); } public static @@ -34512,65 +34512,65 @@ namespace OpenTK.Graphics.OpenGL } public static - void DeformationMap3(OpenTK.Graphics.OpenGL.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) + void DeformationMap3(OpenTK.Graphics.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.Graphics.OpenGL.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); + Delegates.glDeformationMap3dSGIX((OpenTK.Graphics.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.Graphics.OpenGL.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) + void DeformationMap3(OpenTK.Graphics.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.Graphics.OpenGL.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); + Delegates.glDeformationMap3dSGIX((OpenTK.Graphics.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.Graphics.OpenGL.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 void DeformationMap3(OpenTK.Graphics.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.Graphics.OpenGL.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.Graphics.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.Graphics.OpenGL.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) + void DeformationMap3(OpenTK.Graphics.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.Graphics.OpenGL.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); + Delegates.glDeformationMap3fSGIX((OpenTK.Graphics.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.Graphics.OpenGL.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) + void DeformationMap3(OpenTK.Graphics.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.Graphics.OpenGL.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); + Delegates.glDeformationMap3fSGIX((OpenTK.Graphics.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.Graphics.OpenGL.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 void DeformationMap3(OpenTK.Graphics.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.Graphics.OpenGL.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.Graphics.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)] @@ -34638,51 +34638,51 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void GetListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [Out] Single[] @params) + void GetListParameter(UInt32 list, OpenTK.Graphics.ListParameterName pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetListParameterfvSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Single*)@params_ptr); + Delegates.glGetListParameterfvSGIX((UInt32)list, (OpenTK.Graphics.ListParameterName)pname, (Single*)@params_ptr); } } } public static - void GetListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [Out] Single[] @params) + void GetListParameter(Int32 list, OpenTK.Graphics.ListParameterName pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetListParameterfvSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Single*)@params_ptr); + Delegates.glGetListParameterfvSGIX((UInt32)list, (OpenTK.Graphics.ListParameterName)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [Out] out Single @params) + void GetListParameter(UInt32 list, OpenTK.Graphics.ListParameterName pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetListParameterfvSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Single*)@params_ptr); + Delegates.glGetListParameterfvSGIX((UInt32)list, (OpenTK.Graphics.ListParameterName)pname, (Single*)@params_ptr); @params = *@params_ptr; } } } public static - void GetListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [Out] out Single @params) + void GetListParameter(Int32 list, OpenTK.Graphics.ListParameterName pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetListParameterfvSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Single*)@params_ptr); + Delegates.glGetListParameterfvSGIX((UInt32)list, (OpenTK.Graphics.ListParameterName)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -34690,65 +34690,65 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [Out] Single* @params) + unsafe void GetListParameter(UInt32 list, OpenTK.Graphics.ListParameterName pname, [Out] Single* @params) { - Delegates.glGetListParameterfvSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Single*)@params); + Delegates.glGetListParameterfvSGIX((UInt32)list, (OpenTK.Graphics.ListParameterName)pname, (Single*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [Out] Single* @params) + unsafe void GetListParameter(Int32 list, OpenTK.Graphics.ListParameterName pname, [Out] Single* @params) { - Delegates.glGetListParameterfvSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Single*)@params); + Delegates.glGetListParameterfvSGIX((UInt32)list, (OpenTK.Graphics.ListParameterName)pname, (Single*)@params); } [System.CLSCompliant(false)] public static - void GetListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [Out] Int32[] @params) + void GetListParameter(UInt32 list, OpenTK.Graphics.ListParameterName pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetListParameterivSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Int32*)@params_ptr); + Delegates.glGetListParameterivSGIX((UInt32)list, (OpenTK.Graphics.ListParameterName)pname, (Int32*)@params_ptr); } } } public static - void GetListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [Out] Int32[] @params) + void GetListParameter(Int32 list, OpenTK.Graphics.ListParameterName pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetListParameterivSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Int32*)@params_ptr); + Delegates.glGetListParameterivSGIX((UInt32)list, (OpenTK.Graphics.ListParameterName)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [Out] out Int32 @params) + void GetListParameter(UInt32 list, OpenTK.Graphics.ListParameterName pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetListParameterivSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Int32*)@params_ptr); + Delegates.glGetListParameterivSGIX((UInt32)list, (OpenTK.Graphics.ListParameterName)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } } public static - void GetListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [Out] out Int32 @params) + void GetListParameter(Int32 list, OpenTK.Graphics.ListParameterName pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetListParameterivSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Int32*)@params_ptr); + Delegates.glGetListParameterivSGIX((UInt32)list, (OpenTK.Graphics.ListParameterName)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -34756,420 +34756,420 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [Out] Int32* @params) + unsafe void GetListParameter(UInt32 list, OpenTK.Graphics.ListParameterName pname, [Out] Int32* @params) { - Delegates.glGetListParameterivSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Int32*)@params); + Delegates.glGetListParameterivSGIX((UInt32)list, (OpenTK.Graphics.ListParameterName)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [Out] Int32* @params) + unsafe void GetListParameter(Int32 list, OpenTK.Graphics.ListParameterName pname, [Out] Int32* @params) { - Delegates.glGetListParameterivSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Int32*)@params); + Delegates.glGetListParameterivSGIX((UInt32)list, (OpenTK.Graphics.ListParameterName)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - void ListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Single param) + void ListParameter(UInt32 list, OpenTK.Graphics.ListParameterName pname, Single param) { - Delegates.glListParameterfSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Single)param); + Delegates.glListParameterfSGIX((UInt32)list, (OpenTK.Graphics.ListParameterName)pname, (Single)param); } public static - void ListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Single param) + void ListParameter(Int32 list, OpenTK.Graphics.ListParameterName pname, Single param) { - Delegates.glListParameterfSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Single)param); + Delegates.glListParameterfSGIX((UInt32)list, (OpenTK.Graphics.ListParameterName)pname, (Single)param); } [System.CLSCompliant(false)] public static - void ListParameterv(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Single[] @params) + void ListParameterv(UInt32 list, OpenTK.Graphics.ListParameterName pname, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glListParameterfvSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Single*)@params_ptr); + Delegates.glListParameterfvSGIX((UInt32)list, (OpenTK.Graphics.ListParameterName)pname, (Single*)@params_ptr); } } } public static - void ListParameterv(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Single[] @params) + void ListParameterv(Int32 list, OpenTK.Graphics.ListParameterName pname, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glListParameterfvSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Single*)@params_ptr); + Delegates.glListParameterfvSGIX((UInt32)list, (OpenTK.Graphics.ListParameterName)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void ListParameterv(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, ref Single @params) + void ListParameterv(UInt32 list, OpenTK.Graphics.ListParameterName pname, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glListParameterfvSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Single*)@params_ptr); + Delegates.glListParameterfvSGIX((UInt32)list, (OpenTK.Graphics.ListParameterName)pname, (Single*)@params_ptr); } } } public static - void ListParameterv(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, ref Single @params) + void ListParameterv(Int32 list, OpenTK.Graphics.ListParameterName pname, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glListParameterfvSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Single*)@params_ptr); + Delegates.glListParameterfvSGIX((UInt32)list, (OpenTK.Graphics.ListParameterName)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ListParameterv(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Single* @params) + unsafe void ListParameterv(UInt32 list, OpenTK.Graphics.ListParameterName pname, Single* @params) { - Delegates.glListParameterfvSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Single*)@params); + Delegates.glListParameterfvSGIX((UInt32)list, (OpenTK.Graphics.ListParameterName)pname, (Single*)@params); } [System.CLSCompliant(false)] public static - unsafe void ListParameterv(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Single* @params) + unsafe void ListParameterv(Int32 list, OpenTK.Graphics.ListParameterName pname, Single* @params) { - Delegates.glListParameterfvSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Single*)@params); + Delegates.glListParameterfvSGIX((UInt32)list, (OpenTK.Graphics.ListParameterName)pname, (Single*)@params); } [System.CLSCompliant(false)] public static - void ListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Int32 param) + void ListParameter(UInt32 list, OpenTK.Graphics.ListParameterName pname, Int32 param) { - Delegates.glListParameteriSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Int32)param); + Delegates.glListParameteriSGIX((UInt32)list, (OpenTK.Graphics.ListParameterName)pname, (Int32)param); } public static - void ListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Int32 param) + void ListParameter(Int32 list, OpenTK.Graphics.ListParameterName pname, Int32 param) { - Delegates.glListParameteriSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Int32)param); + Delegates.glListParameteriSGIX((UInt32)list, (OpenTK.Graphics.ListParameterName)pname, (Int32)param); } [System.CLSCompliant(false)] public static - void ListParameterv(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Int32[] @params) + void ListParameterv(UInt32 list, OpenTK.Graphics.ListParameterName pname, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glListParameterivSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Int32*)@params_ptr); + Delegates.glListParameterivSGIX((UInt32)list, (OpenTK.Graphics.ListParameterName)pname, (Int32*)@params_ptr); } } } public static - void ListParameterv(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Int32[] @params) + void ListParameterv(Int32 list, OpenTK.Graphics.ListParameterName pname, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glListParameterivSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Int32*)@params_ptr); + Delegates.glListParameterivSGIX((UInt32)list, (OpenTK.Graphics.ListParameterName)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void ListParameterv(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, ref Int32 @params) + void ListParameterv(UInt32 list, OpenTK.Graphics.ListParameterName pname, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glListParameterivSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Int32*)@params_ptr); + Delegates.glListParameterivSGIX((UInt32)list, (OpenTK.Graphics.ListParameterName)pname, (Int32*)@params_ptr); } } } public static - void ListParameterv(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, ref Int32 @params) + void ListParameterv(Int32 list, OpenTK.Graphics.ListParameterName pname, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glListParameterivSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Int32*)@params_ptr); + Delegates.glListParameterivSGIX((UInt32)list, (OpenTK.Graphics.ListParameterName)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ListParameterv(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Int32* @params) + unsafe void ListParameterv(UInt32 list, OpenTK.Graphics.ListParameterName pname, Int32* @params) { - Delegates.glListParameterivSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Int32*)@params); + Delegates.glListParameterivSGIX((UInt32)list, (OpenTK.Graphics.ListParameterName)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - unsafe void ListParameterv(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Int32* @params) + unsafe void ListParameterv(Int32 list, OpenTK.Graphics.ListParameterName pname, Int32* @params) { - Delegates.glListParameterivSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Int32*)@params); + Delegates.glListParameterivSGIX((UInt32)list, (OpenTK.Graphics.ListParameterName)pname, (Int32*)@params); } public static - void FragmentColorMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter mode) + void FragmentColorMaterial(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter mode) { - Delegates.glFragmentColorMaterialSGIX((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)mode); + Delegates.glFragmentColorMaterialSGIX((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)mode); } public static - void FragmentLight(OpenTK.Graphics.OpenGL.All light, OpenTK.Graphics.OpenGL.All pname, Single param) + void FragmentLight(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, Single param) { - Delegates.glFragmentLightfSGIX((OpenTK.Graphics.OpenGL.All)light, (OpenTK.Graphics.OpenGL.All)pname, (Single)param); + Delegates.glFragmentLightfSGIX((OpenTK.Graphics.All)light, (OpenTK.Graphics.All)pname, (Single)param); } public static - void FragmentLightv(OpenTK.Graphics.OpenGL.All light, OpenTK.Graphics.OpenGL.All pname, Single[] @params) + void FragmentLightv(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glFragmentLightfvSGIX((OpenTK.Graphics.OpenGL.All)light, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glFragmentLightfvSGIX((OpenTK.Graphics.All)light, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void FragmentLightv(OpenTK.Graphics.OpenGL.All light, OpenTK.Graphics.OpenGL.All pname, ref Single @params) + void FragmentLightv(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glFragmentLightfvSGIX((OpenTK.Graphics.OpenGL.All)light, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glFragmentLightfvSGIX((OpenTK.Graphics.All)light, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void FragmentLightv(OpenTK.Graphics.OpenGL.All light, OpenTK.Graphics.OpenGL.All pname, Single* @params) + unsafe void FragmentLightv(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, Single* @params) { - Delegates.glFragmentLightfvSGIX((OpenTK.Graphics.OpenGL.All)light, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glFragmentLightfvSGIX((OpenTK.Graphics.All)light, (OpenTK.Graphics.All)pname, (Single*)@params); } public static - void FragmentLight(OpenTK.Graphics.OpenGL.All light, OpenTK.Graphics.OpenGL.All pname, Int32 param) + void FragmentLight(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, Int32 param) { - Delegates.glFragmentLightiSGIX((OpenTK.Graphics.OpenGL.All)light, (OpenTK.Graphics.OpenGL.All)pname, (Int32)param); + Delegates.glFragmentLightiSGIX((OpenTK.Graphics.All)light, (OpenTK.Graphics.All)pname, (Int32)param); } public static - void FragmentLightv(OpenTK.Graphics.OpenGL.All light, OpenTK.Graphics.OpenGL.All pname, Int32[] @params) + void FragmentLightv(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glFragmentLightivSGIX((OpenTK.Graphics.OpenGL.All)light, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glFragmentLightivSGIX((OpenTK.Graphics.All)light, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void FragmentLightv(OpenTK.Graphics.OpenGL.All light, OpenTK.Graphics.OpenGL.All pname, ref Int32 @params) + void FragmentLightv(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glFragmentLightivSGIX((OpenTK.Graphics.OpenGL.All)light, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glFragmentLightivSGIX((OpenTK.Graphics.All)light, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void FragmentLightv(OpenTK.Graphics.OpenGL.All light, OpenTK.Graphics.OpenGL.All pname, Int32* @params) + unsafe void FragmentLightv(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, Int32* @params) { - Delegates.glFragmentLightivSGIX((OpenTK.Graphics.OpenGL.All)light, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glFragmentLightivSGIX((OpenTK.Graphics.All)light, (OpenTK.Graphics.All)pname, (Int32*)@params); } public static - void FragmentLightModel(OpenTK.Graphics.OpenGL.All pname, Single param) + void FragmentLightModel(OpenTK.Graphics.All pname, Single param) { - Delegates.glFragmentLightModelfSGIX((OpenTK.Graphics.OpenGL.All)pname, (Single)param); + Delegates.glFragmentLightModelfSGIX((OpenTK.Graphics.All)pname, (Single)param); } public static - void FragmentLightModelv(OpenTK.Graphics.OpenGL.All pname, Single[] @params) + void FragmentLightModelv(OpenTK.Graphics.All pname, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glFragmentLightModelfvSGIX((OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glFragmentLightModelfvSGIX((OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void FragmentLightModelv(OpenTK.Graphics.OpenGL.All pname, ref Single @params) + void FragmentLightModelv(OpenTK.Graphics.All pname, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glFragmentLightModelfvSGIX((OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glFragmentLightModelfvSGIX((OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void FragmentLightModelv(OpenTK.Graphics.OpenGL.All pname, Single* @params) + unsafe void FragmentLightModelv(OpenTK.Graphics.All pname, Single* @params) { - Delegates.glFragmentLightModelfvSGIX((OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glFragmentLightModelfvSGIX((OpenTK.Graphics.All)pname, (Single*)@params); } public static - void FragmentLightModel(OpenTK.Graphics.OpenGL.All pname, Int32 param) + void FragmentLightModel(OpenTK.Graphics.All pname, Int32 param) { - Delegates.glFragmentLightModeliSGIX((OpenTK.Graphics.OpenGL.All)pname, (Int32)param); + Delegates.glFragmentLightModeliSGIX((OpenTK.Graphics.All)pname, (Int32)param); } public static - void FragmentLightModelv(OpenTK.Graphics.OpenGL.All pname, Int32[] @params) + void FragmentLightModelv(OpenTK.Graphics.All pname, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glFragmentLightModelivSGIX((OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glFragmentLightModelivSGIX((OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void FragmentLightModelv(OpenTK.Graphics.OpenGL.All pname, ref Int32 @params) + void FragmentLightModelv(OpenTK.Graphics.All pname, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glFragmentLightModelivSGIX((OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glFragmentLightModelivSGIX((OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void FragmentLightModelv(OpenTK.Graphics.OpenGL.All pname, Int32* @params) + unsafe void FragmentLightModelv(OpenTK.Graphics.All pname, Int32* @params) { - Delegates.glFragmentLightModelivSGIX((OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glFragmentLightModelivSGIX((OpenTK.Graphics.All)pname, (Int32*)@params); } public static - void FragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Single param) + void FragmentMaterial(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, Single param) { - Delegates.glFragmentMaterialfSGIX((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Single)param); + Delegates.glFragmentMaterialfSGIX((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Single)param); } public static - void FragmentMaterialv(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Single[] @params) + void FragmentMaterialv(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glFragmentMaterialfvSGIX((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Single*)@params_ptr); + Delegates.glFragmentMaterialfvSGIX((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Single*)@params_ptr); } } } public static - void FragmentMaterialv(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, ref Single @params) + void FragmentMaterialv(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glFragmentMaterialfvSGIX((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Single*)@params_ptr); + Delegates.glFragmentMaterialfvSGIX((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void FragmentMaterialv(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Single* @params) + unsafe void FragmentMaterialv(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, Single* @params) { - Delegates.glFragmentMaterialfvSGIX((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Single*)@params); + Delegates.glFragmentMaterialfvSGIX((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Single*)@params); } public static - void FragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Int32 param) + void FragmentMaterial(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, Int32 param) { - Delegates.glFragmentMaterialiSGIX((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Int32)param); + Delegates.glFragmentMaterialiSGIX((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Int32)param); } public static - void FragmentMaterialv(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Int32[] @params) + void FragmentMaterialv(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glFragmentMaterialivSGIX((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Int32*)@params_ptr); + Delegates.glFragmentMaterialivSGIX((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Int32*)@params_ptr); } } } public static - void FragmentMaterialv(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, ref Int32 @params) + void FragmentMaterialv(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glFragmentMaterialivSGIX((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Int32*)@params_ptr); + Delegates.glFragmentMaterialivSGIX((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void FragmentMaterialv(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Int32* @params) + unsafe void FragmentMaterialv(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, Int32* @params) { - Delegates.glFragmentMaterialivSGIX((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Int32*)@params); + Delegates.glFragmentMaterialivSGIX((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Int32*)@params); } public static - void GetFragmentLight(OpenTK.Graphics.OpenGL.All light, OpenTK.Graphics.OpenGL.All pname, [Out] Single[] @params) + void GetFragmentLight(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetFragmentLightfvSGIX((OpenTK.Graphics.OpenGL.All)light, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetFragmentLightfvSGIX((OpenTK.Graphics.All)light, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void GetFragmentLight(OpenTK.Graphics.OpenGL.All light, OpenTK.Graphics.OpenGL.All pname, [Out] out Single @params) + void GetFragmentLight(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetFragmentLightfvSGIX((OpenTK.Graphics.OpenGL.All)light, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetFragmentLightfvSGIX((OpenTK.Graphics.All)light, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -35177,31 +35177,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetFragmentLight(OpenTK.Graphics.OpenGL.All light, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params) + unsafe void GetFragmentLight(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, [Out] Single* @params) { - Delegates.glGetFragmentLightfvSGIX((OpenTK.Graphics.OpenGL.All)light, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glGetFragmentLightfvSGIX((OpenTK.Graphics.All)light, (OpenTK.Graphics.All)pname, (Single*)@params); } public static - void GetFragmentLight(OpenTK.Graphics.OpenGL.All light, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetFragmentLight(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetFragmentLightivSGIX((OpenTK.Graphics.OpenGL.All)light, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetFragmentLightivSGIX((OpenTK.Graphics.All)light, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void GetFragmentLight(OpenTK.Graphics.OpenGL.All light, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetFragmentLight(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetFragmentLightivSGIX((OpenTK.Graphics.OpenGL.All)light, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetFragmentLightivSGIX((OpenTK.Graphics.All)light, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -35209,31 +35209,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetFragmentLight(OpenTK.Graphics.OpenGL.All light, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetFragmentLight(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetFragmentLightivSGIX((OpenTK.Graphics.OpenGL.All)light, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glGetFragmentLightivSGIX((OpenTK.Graphics.All)light, (OpenTK.Graphics.All)pname, (Int32*)@params); } public static - void GetFragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [Out] Single[] @params) + void GetFragmentMaterial(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetFragmentMaterialfvSGIX((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Single*)@params_ptr); + Delegates.glGetFragmentMaterialfvSGIX((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Single*)@params_ptr); } } } public static - void GetFragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [Out] out Single @params) + void GetFragmentMaterial(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetFragmentMaterialfvSGIX((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Single*)@params_ptr); + Delegates.glGetFragmentMaterialfvSGIX((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -35241,31 +35241,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetFragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [Out] Single* @params) + unsafe void GetFragmentMaterial(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, [Out] Single* @params) { - Delegates.glGetFragmentMaterialfvSGIX((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Single*)@params); + Delegates.glGetFragmentMaterialfvSGIX((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Single*)@params); } public static - void GetFragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [Out] Int32[] @params) + void GetFragmentMaterial(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetFragmentMaterialivSGIX((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Int32*)@params_ptr); + Delegates.glGetFragmentMaterialivSGIX((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Int32*)@params_ptr); } } } public static - void GetFragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [Out] out Int32 @params) + void GetFragmentMaterial(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetFragmentMaterialivSGIX((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Int32*)@params_ptr); + Delegates.glGetFragmentMaterialivSGIX((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -35273,15 +35273,15 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetFragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [Out] Int32* @params) + unsafe void GetFragmentMaterial(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, [Out] Int32* @params) { - Delegates.glGetFragmentMaterialivSGIX((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Int32*)@params); + Delegates.glGetFragmentMaterialivSGIX((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Int32*)@params); } public static - void LightEnv(OpenTK.Graphics.OpenGL.All pname, Int32 param) + void LightEnv(OpenTK.Graphics.All pname, Int32 param) { - Delegates.glLightEnviSGIX((OpenTK.Graphics.OpenGL.All)pname, (Int32)param); + Delegates.glLightEnviSGIX((OpenTK.Graphics.All)pname, (Int32)param); } [System.CLSCompliant(false)] @@ -35466,23 +35466,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void IglooInterface(OpenTK.Graphics.OpenGL.All pname, IntPtr @params) + void IglooInterface(OpenTK.Graphics.All pname, IntPtr @params) { unsafe { - Delegates.glIglooInterfaceSGIX((OpenTK.Graphics.OpenGL.All)pname, (IntPtr)@params); + Delegates.glIglooInterfaceSGIX((OpenTK.Graphics.All)pname, (IntPtr)@params); } } public static - void IglooInterface(OpenTK.Graphics.OpenGL.All pname, [In, Out] object @params) + void IglooInterface(OpenTK.Graphics.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.Graphics.OpenGL.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + Delegates.glIglooInterfaceSGIX((OpenTK.Graphics.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -35496,99 +35496,99 @@ namespace OpenTK.Graphics.OpenGL public static partial class HP { public static - void ImageTransformParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Int32 param) + void ImageTransformParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32 param) { - Delegates.glImageTransformParameteriHP((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32)param); + Delegates.glImageTransformParameteriHP((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32)param); } public static - void ImageTransformParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Single param) + void ImageTransformParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single param) { - Delegates.glImageTransformParameterfHP((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single)param); + Delegates.glImageTransformParameterfHP((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single)param); } public static - void ImageTransformParameterv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Int32[] @params) + void ImageTransformParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glImageTransformParameterivHP((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glImageTransformParameterivHP((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void ImageTransformParameterv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, ref Int32 @params) + void ImageTransformParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, ref Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glImageTransformParameterivHP((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glImageTransformParameterivHP((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ImageTransformParameterv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Int32* @params) + unsafe void ImageTransformParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32* @params) { - Delegates.glImageTransformParameterivHP((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glImageTransformParameterivHP((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params); } public static - void ImageTransformParameterv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Single[] @params) + void ImageTransformParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glImageTransformParameterfvHP((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glImageTransformParameterfvHP((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void ImageTransformParameterv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, ref Single @params) + void ImageTransformParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, ref Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glImageTransformParameterfvHP((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glImageTransformParameterfvHP((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void ImageTransformParameterv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Single* @params) + unsafe void ImageTransformParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single* @params) { - Delegates.glImageTransformParameterfvHP((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glImageTransformParameterfvHP((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params); } public static - void GetImageTransformParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetImageTransformParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetImageTransformParameterivHP((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetImageTransformParameterivHP((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void GetImageTransformParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetImageTransformParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetImageTransformParameterivHP((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetImageTransformParameterivHP((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -35596,31 +35596,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetImageTransformParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetImageTransformParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetImageTransformParameterivHP((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glGetImageTransformParameterivHP((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params); } public static - void GetImageTransformParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Single[] @params) + void GetImageTransformParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetImageTransformParameterfvHP((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetImageTransformParameterfvHP((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void GetImageTransformParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] out Single @params) + void GetImageTransformParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetImageTransformParameterfvHP((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetImageTransformParameterfvHP((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -35628,9 +35628,9 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetImageTransformParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params) + unsafe void GetImageTransformParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params) { - Delegates.glGetImageTransformParameterfvHP((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glGetImageTransformParameterfvHP((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params); } } @@ -35638,9 +35638,9 @@ namespace OpenTK.Graphics.OpenGL public static partial class Pgi { public static - void Hint(OpenTK.Graphics.OpenGL.All target, Int32 mode) + void Hint(OpenTK.Graphics.All target, Int32 mode) { - Delegates.glHintPGI((OpenTK.Graphics.OpenGL.All)target, (Int32)mode); + Delegates.glHintPGI((OpenTK.Graphics.All)target, (Int32)mode); } } @@ -35648,23 +35648,23 @@ namespace OpenTK.Graphics.OpenGL public static partial class Intel { public static - void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, IntPtr pointer) + void VertexPointer(Int32 size, OpenTK.Graphics.VertexPointerType type, IntPtr pointer) { unsafe { - Delegates.glVertexPointervINTEL((Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (IntPtr)pointer); + Delegates.glVertexPointervINTEL((Int32)size, (OpenTK.Graphics.VertexPointerType)type, (IntPtr)pointer); } } public static - void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [In, Out] object pointer) + void VertexPointer(Int32 size, OpenTK.Graphics.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.Graphics.OpenGL.VertexPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glVertexPointervINTEL((Int32)size, (OpenTK.Graphics.VertexPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -35674,23 +35674,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, IntPtr pointer) + void NormalPointer(OpenTK.Graphics.NormalPointerType type, IntPtr pointer) { unsafe { - Delegates.glNormalPointervINTEL((OpenTK.Graphics.OpenGL.NormalPointerType)type, (IntPtr)pointer); + Delegates.glNormalPointervINTEL((OpenTK.Graphics.NormalPointerType)type, (IntPtr)pointer); } } public static - void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, [In, Out] object pointer) + void NormalPointer(OpenTK.Graphics.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.Graphics.OpenGL.NormalPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glNormalPointervINTEL((OpenTK.Graphics.NormalPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -35700,23 +35700,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, IntPtr pointer) + void ColorPointer(Int32 size, OpenTK.Graphics.VertexPointerType type, IntPtr pointer) { unsafe { - Delegates.glColorPointervINTEL((Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (IntPtr)pointer); + Delegates.glColorPointervINTEL((Int32)size, (OpenTK.Graphics.VertexPointerType)type, (IntPtr)pointer); } } public static - void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [In, Out] object pointer) + void ColorPointer(Int32 size, OpenTK.Graphics.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.Graphics.OpenGL.VertexPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glColorPointervINTEL((Int32)size, (OpenTK.Graphics.VertexPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -35726,23 +35726,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, IntPtr pointer) + void TexCoordPointer(Int32 size, OpenTK.Graphics.VertexPointerType type, IntPtr pointer) { unsafe { - Delegates.glTexCoordPointervINTEL((Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (IntPtr)pointer); + Delegates.glTexCoordPointervINTEL((Int32)size, (OpenTK.Graphics.VertexPointerType)type, (IntPtr)pointer); } } public static - void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [In, Out] object pointer) + void TexCoordPointer(Int32 size, OpenTK.Graphics.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.Graphics.OpenGL.VertexPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glTexCoordPointervINTEL((Int32)size, (OpenTK.Graphics.VertexPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -36014,23 +36014,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void ReplacementCodePointer(OpenTK.Graphics.OpenGL.All type, Int32 stride, IntPtr pointer) + void ReplacementCodePointer(OpenTK.Graphics.All type, Int32 stride, IntPtr pointer) { unsafe { - Delegates.glReplacementCodePointerSUN((OpenTK.Graphics.OpenGL.All)type, (Int32)stride, (IntPtr)pointer); + Delegates.glReplacementCodePointerSUN((OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer); } } public static - void ReplacementCodePointer(OpenTK.Graphics.OpenGL.All type, Int32 stride, [In, Out] object pointer) + void ReplacementCodePointer(OpenTK.Graphics.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.Graphics.OpenGL.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glReplacementCodePointerSUN((OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -37216,9 +37216,9 @@ namespace OpenTK.Graphics.OpenGL } public static - void DrawMeshArrays(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 first, Int32 count, Int32 width) + void DrawMeshArrays(OpenTK.Graphics.BeginMode mode, Int32 first, Int32 count, Int32 width) { - Delegates.glDrawMeshArraysSUN((OpenTK.Graphics.OpenGL.BeginMode)mode, (Int32)first, (Int32)count, (Int32)width); + Delegates.glDrawMeshArraysSUN((OpenTK.Graphics.BeginMode)mode, (Int32)first, (Int32)count, (Int32)width); } } @@ -37226,9 +37226,9 @@ namespace OpenTK.Graphics.OpenGL public static partial class Ingr { public static - void BlendFuncSeparate(OpenTK.Graphics.OpenGL.All sfactorRGB, OpenTK.Graphics.OpenGL.All dfactorRGB, OpenTK.Graphics.OpenGL.All sfactorAlpha, OpenTK.Graphics.OpenGL.All dfactorAlpha) + void BlendFuncSeparate(OpenTK.Graphics.All sfactorRGB, OpenTK.Graphics.All dfactorRGB, OpenTK.Graphics.All sfactorAlpha, OpenTK.Graphics.All dfactorAlpha) { - Delegates.glBlendFuncSeparateINGR((OpenTK.Graphics.OpenGL.All)sfactorRGB, (OpenTK.Graphics.OpenGL.All)dfactorRGB, (OpenTK.Graphics.OpenGL.All)sfactorAlpha, (OpenTK.Graphics.OpenGL.All)dfactorAlpha); + Delegates.glBlendFuncSeparateINGR((OpenTK.Graphics.All)sfactorRGB, (OpenTK.Graphics.All)dfactorRGB, (OpenTK.Graphics.All)sfactorAlpha, (OpenTK.Graphics.All)dfactorAlpha); } } @@ -37690,65 +37690,65 @@ namespace OpenTK.Graphics.OpenGL public static partial class Ibm { public static - void MultiModeDrawArrays(OpenTK.Graphics.OpenGL.BeginMode[] mode, Int32[] first, Int32[] count, Int32 primcount, Int32 modestride) + void MultiModeDrawArrays(OpenTK.Graphics.BeginMode[] mode, Int32[] first, Int32[] count, Int32 primcount, Int32 modestride) { unsafe { - fixed (OpenTK.Graphics.OpenGL.BeginMode* mode_ptr = mode) + fixed (OpenTK.Graphics.BeginMode* mode_ptr = mode) fixed (Int32* first_ptr = first) fixed (Int32* count_ptr = count) { - Delegates.glMultiModeDrawArraysIBM((OpenTK.Graphics.OpenGL.BeginMode*)mode_ptr, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount, (Int32)modestride); + Delegates.glMultiModeDrawArraysIBM((OpenTK.Graphics.BeginMode*)mode_ptr, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount, (Int32)modestride); } } } public static - void MultiModeDrawArrays(ref OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 first, ref Int32 count, Int32 primcount, Int32 modestride) + void MultiModeDrawArrays(ref OpenTK.Graphics.BeginMode mode, ref Int32 first, ref Int32 count, Int32 primcount, Int32 modestride) { unsafe { - fixed (OpenTK.Graphics.OpenGL.BeginMode* mode_ptr = &mode) + fixed (OpenTK.Graphics.BeginMode* mode_ptr = &mode) fixed (Int32* first_ptr = &first) fixed (Int32* count_ptr = &count) { - Delegates.glMultiModeDrawArraysIBM((OpenTK.Graphics.OpenGL.BeginMode*)mode_ptr, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount, (Int32)modestride); + Delegates.glMultiModeDrawArraysIBM((OpenTK.Graphics.BeginMode*)mode_ptr, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount, (Int32)modestride); } } } [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawArrays(OpenTK.Graphics.OpenGL.BeginMode* mode, Int32* first, Int32* count, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawArrays(OpenTK.Graphics.BeginMode* mode, Int32* first, Int32* count, Int32 primcount, Int32 modestride) { - Delegates.glMultiModeDrawArraysIBM((OpenTK.Graphics.OpenGL.BeginMode*)mode, (Int32*)first, (Int32*)count, (Int32)primcount, (Int32)modestride); + Delegates.glMultiModeDrawArraysIBM((OpenTK.Graphics.BeginMode*)mode, (Int32*)first, (Int32*)count, (Int32)primcount, (Int32)modestride); } public static - void MultiModeDrawElements(OpenTK.Graphics.OpenGL.BeginMode[] mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount, Int32 modestride) + void MultiModeDrawElements(OpenTK.Graphics.BeginMode[] mode, Int32[] count, OpenTK.Graphics.DrawElementsType type, IntPtr indices, Int32 primcount, Int32 modestride) { unsafe { - fixed (OpenTK.Graphics.OpenGL.BeginMode* mode_ptr = mode) + fixed (OpenTK.Graphics.BeginMode* mode_ptr = mode) fixed (Int32* count_ptr = count) { - Delegates.glMultiModeDrawElementsIBM((OpenTK.Graphics.OpenGL.BeginMode*)mode_ptr, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)primcount, (Int32)modestride); + Delegates.glMultiModeDrawElementsIBM((OpenTK.Graphics.BeginMode*)mode_ptr, (Int32*)count_ptr, (OpenTK.Graphics.DrawElementsType)type, (IntPtr)indices, (Int32)primcount, (Int32)modestride); } } } public static - void MultiModeDrawElements(OpenTK.Graphics.OpenGL.BeginMode[] mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [In, Out] object indices, Int32 primcount, Int32 modestride) + void MultiModeDrawElements(OpenTK.Graphics.BeginMode[] mode, Int32[] count, OpenTK.Graphics.DrawElementsType type, [In, Out] object indices, Int32 primcount, Int32 modestride) { unsafe { - fixed (OpenTK.Graphics.OpenGL.BeginMode* mode_ptr = mode) + fixed (OpenTK.Graphics.BeginMode* mode_ptr = mode) fixed (Int32* count_ptr = count) { System.Runtime.InteropServices.GCHandle indices_ptr = System.Runtime.InteropServices.GCHandle.Alloc(indices, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glMultiModeDrawElementsIBM((OpenTK.Graphics.OpenGL.BeginMode*)mode_ptr, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)modestride); + Delegates.glMultiModeDrawElementsIBM((OpenTK.Graphics.BeginMode*)mode_ptr, (Int32*)count_ptr, (OpenTK.Graphics.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)modestride); } finally { @@ -37759,30 +37759,30 @@ namespace OpenTK.Graphics.OpenGL } public static - void MultiModeDrawElements(ref OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount, Int32 modestride) + void MultiModeDrawElements(ref OpenTK.Graphics.BeginMode mode, ref Int32 count, OpenTK.Graphics.DrawElementsType type, IntPtr indices, Int32 primcount, Int32 modestride) { unsafe { - fixed (OpenTK.Graphics.OpenGL.BeginMode* mode_ptr = &mode) + fixed (OpenTK.Graphics.BeginMode* mode_ptr = &mode) fixed (Int32* count_ptr = &count) { - Delegates.glMultiModeDrawElementsIBM((OpenTK.Graphics.OpenGL.BeginMode*)mode_ptr, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)primcount, (Int32)modestride); + Delegates.glMultiModeDrawElementsIBM((OpenTK.Graphics.BeginMode*)mode_ptr, (Int32*)count_ptr, (OpenTK.Graphics.DrawElementsType)type, (IntPtr)indices, (Int32)primcount, (Int32)modestride); } } } public static - void MultiModeDrawElements(ref OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [In, Out] object indices, Int32 primcount, Int32 modestride) + void MultiModeDrawElements(ref OpenTK.Graphics.BeginMode mode, ref Int32 count, OpenTK.Graphics.DrawElementsType type, [In, Out] object indices, Int32 primcount, Int32 modestride) { unsafe { - fixed (OpenTK.Graphics.OpenGL.BeginMode* mode_ptr = &mode) + fixed (OpenTK.Graphics.BeginMode* mode_ptr = &mode) fixed (Int32* count_ptr = &count) { System.Runtime.InteropServices.GCHandle indices_ptr = System.Runtime.InteropServices.GCHandle.Alloc(indices, System.Runtime.InteropServices.GCHandleType.Pinned); try { - Delegates.glMultiModeDrawElementsIBM((OpenTK.Graphics.OpenGL.BeginMode*)mode_ptr, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)modestride); + Delegates.glMultiModeDrawElementsIBM((OpenTK.Graphics.BeginMode*)mode_ptr, (Int32*)count_ptr, (OpenTK.Graphics.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)modestride); } finally { @@ -37794,19 +37794,19 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawElements(OpenTK.Graphics.OpenGL.BeginMode* mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawElements(OpenTK.Graphics.BeginMode* mode, Int32* count, OpenTK.Graphics.DrawElementsType type, IntPtr indices, Int32 primcount, Int32 modestride) { - Delegates.glMultiModeDrawElementsIBM((OpenTK.Graphics.OpenGL.BeginMode*)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)primcount, (Int32)modestride); + Delegates.glMultiModeDrawElementsIBM((OpenTK.Graphics.BeginMode*)mode, (Int32*)count, (OpenTK.Graphics.DrawElementsType)type, (IntPtr)indices, (Int32)primcount, (Int32)modestride); } [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawElements(OpenTK.Graphics.OpenGL.BeginMode* mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [In, Out] object indices, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawElements(OpenTK.Graphics.BeginMode* mode, Int32* count, OpenTK.Graphics.DrawElementsType 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.Graphics.OpenGL.BeginMode*)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)modestride); + Delegates.glMultiModeDrawElementsIBM((OpenTK.Graphics.BeginMode*)mode, (Int32*)count, (OpenTK.Graphics.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)modestride); } finally { @@ -37815,23 +37815,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void ColorPointerList(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, IntPtr pointer, Int32 ptrstride) + void ColorPointerList(Int32 size, OpenTK.Graphics.ColorPointerType type, Int32 stride, IntPtr pointer, Int32 ptrstride) { unsafe { - Delegates.glColorPointerListIBM((Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer, (Int32)ptrstride); + Delegates.glColorPointerListIBM((Int32)size, (OpenTK.Graphics.ColorPointerType)type, (Int32)stride, (IntPtr)pointer, (Int32)ptrstride); } } public static - void ColorPointerList(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [In, Out] object pointer, Int32 ptrstride) + void ColorPointerList(Int32 size, OpenTK.Graphics.ColorPointerType 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.glColorPointerListIBM((Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + Delegates.glColorPointerListIBM((Int32)size, (OpenTK.Graphics.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); } finally { @@ -37841,23 +37841,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void SecondaryColorPointerList(Int32 size, OpenTK.Graphics.OpenGL.All type, Int32 stride, IntPtr pointer, Int32 ptrstride) + void SecondaryColorPointerList(Int32 size, OpenTK.Graphics.All type, Int32 stride, IntPtr pointer, Int32 ptrstride) { unsafe { - Delegates.glSecondaryColorPointerListIBM((Int32)size, (OpenTK.Graphics.OpenGL.All)type, (Int32)stride, (IntPtr)pointer, (Int32)ptrstride); + Delegates.glSecondaryColorPointerListIBM((Int32)size, (OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer, (Int32)ptrstride); } } public static - void SecondaryColorPointerList(Int32 size, OpenTK.Graphics.OpenGL.All type, Int32 stride, [In, Out] object pointer, Int32 ptrstride) + void SecondaryColorPointerList(Int32 size, OpenTK.Graphics.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.Graphics.OpenGL.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + Delegates.glSecondaryColorPointerListIBM((Int32)size, (OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); } finally { @@ -37898,23 +37898,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void FogCoordPointerList(OpenTK.Graphics.OpenGL.All type, Int32 stride, IntPtr pointer, Int32 ptrstride) + void FogCoordPointerList(OpenTK.Graphics.All type, Int32 stride, IntPtr pointer, Int32 ptrstride) { unsafe { - Delegates.glFogCoordPointerListIBM((OpenTK.Graphics.OpenGL.All)type, (Int32)stride, (IntPtr)pointer, (Int32)ptrstride); + Delegates.glFogCoordPointerListIBM((OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer, (Int32)ptrstride); } } public static - void FogCoordPointerList(OpenTK.Graphics.OpenGL.All type, Int32 stride, [In, Out] object pointer, Int32 ptrstride) + void FogCoordPointerList(OpenTK.Graphics.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.Graphics.OpenGL.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + Delegates.glFogCoordPointerListIBM((OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); } finally { @@ -37924,23 +37924,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void IndexPointerList(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, IntPtr pointer, Int32 ptrstride) + void IndexPointerList(OpenTK.Graphics.IndexPointerType type, Int32 stride, IntPtr pointer, Int32 ptrstride) { unsafe { - Delegates.glIndexPointerListIBM((OpenTK.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (IntPtr)pointer, (Int32)ptrstride); + Delegates.glIndexPointerListIBM((OpenTK.Graphics.IndexPointerType)type, (Int32)stride, (IntPtr)pointer, (Int32)ptrstride); } } public static - void IndexPointerList(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, [In, Out] object pointer, Int32 ptrstride) + void IndexPointerList(OpenTK.Graphics.IndexPointerType 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.glIndexPointerListIBM((OpenTK.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + Delegates.glIndexPointerListIBM((OpenTK.Graphics.IndexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); } finally { @@ -37950,23 +37950,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void NormalPointerList(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, IntPtr pointer, Int32 ptrstride) + void NormalPointerList(OpenTK.Graphics.NormalPointerType type, Int32 stride, IntPtr pointer, Int32 ptrstride) { unsafe { - Delegates.glNormalPointerListIBM((OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer, (Int32)ptrstride); + Delegates.glNormalPointerListIBM((OpenTK.Graphics.NormalPointerType)type, (Int32)stride, (IntPtr)pointer, (Int32)ptrstride); } } public static - void NormalPointerList(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [In, Out] object pointer, Int32 ptrstride) + void NormalPointerList(OpenTK.Graphics.NormalPointerType 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.glNormalPointerListIBM((OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + Delegates.glNormalPointerListIBM((OpenTK.Graphics.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); } finally { @@ -37976,23 +37976,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void TexCoordPointerList(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, IntPtr pointer, Int32 ptrstride) + void TexCoordPointerList(Int32 size, OpenTK.Graphics.TexCoordPointerType type, Int32 stride, IntPtr pointer, Int32 ptrstride) { unsafe { - Delegates.glTexCoordPointerListIBM((Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer, (Int32)ptrstride); + Delegates.glTexCoordPointerListIBM((Int32)size, (OpenTK.Graphics.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer, (Int32)ptrstride); } } public static - void TexCoordPointerList(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [In, Out] object pointer, Int32 ptrstride) + void TexCoordPointerList(Int32 size, OpenTK.Graphics.TexCoordPointerType 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.glTexCoordPointerListIBM((Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + Delegates.glTexCoordPointerListIBM((Int32)size, (OpenTK.Graphics.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); } finally { @@ -38002,23 +38002,23 @@ namespace OpenTK.Graphics.OpenGL } public static - void VertexPointerList(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, IntPtr pointer, Int32 ptrstride) + void VertexPointerList(Int32 size, OpenTK.Graphics.VertexPointerType type, Int32 stride, IntPtr pointer, Int32 ptrstride) { unsafe { - Delegates.glVertexPointerListIBM((Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (IntPtr)pointer, (Int32)ptrstride); + Delegates.glVertexPointerListIBM((Int32)size, (OpenTK.Graphics.VertexPointerType)type, (Int32)stride, (IntPtr)pointer, (Int32)ptrstride); } } public static - void VertexPointerList(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, [In, Out] object pointer, Int32 ptrstride) + void VertexPointerList(Int32 size, OpenTK.Graphics.VertexPointerType 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.glVertexPointerListIBM((Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + Delegates.glVertexPointerListIBM((Int32)size, (OpenTK.Graphics.VertexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); } finally { @@ -38049,87 +38049,87 @@ namespace OpenTK.Graphics.OpenGL public static partial class Ati { public static - void TexBumpParameter(OpenTK.Graphics.OpenGL.All pname, Int32[] param) + void TexBumpParameter(OpenTK.Graphics.All pname, Int32[] param) { unsafe { fixed (Int32* param_ptr = param) { - Delegates.glTexBumpParameterivATI((OpenTK.Graphics.OpenGL.All)pname, (Int32*)param_ptr); + Delegates.glTexBumpParameterivATI((OpenTK.Graphics.All)pname, (Int32*)param_ptr); } } } public static - void TexBumpParameter(OpenTK.Graphics.OpenGL.All pname, ref Int32 param) + void TexBumpParameter(OpenTK.Graphics.All pname, ref Int32 param) { unsafe { fixed (Int32* param_ptr = ¶m) { - Delegates.glTexBumpParameterivATI((OpenTK.Graphics.OpenGL.All)pname, (Int32*)param_ptr); + Delegates.glTexBumpParameterivATI((OpenTK.Graphics.All)pname, (Int32*)param_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void TexBumpParameter(OpenTK.Graphics.OpenGL.All pname, Int32* param) + unsafe void TexBumpParameter(OpenTK.Graphics.All pname, Int32* param) { - Delegates.glTexBumpParameterivATI((OpenTK.Graphics.OpenGL.All)pname, (Int32*)param); + Delegates.glTexBumpParameterivATI((OpenTK.Graphics.All)pname, (Int32*)param); } public static - void TexBumpParameter(OpenTK.Graphics.OpenGL.All pname, Single[] param) + void TexBumpParameter(OpenTK.Graphics.All pname, Single[] param) { unsafe { fixed (Single* param_ptr = param) { - Delegates.glTexBumpParameterfvATI((OpenTK.Graphics.OpenGL.All)pname, (Single*)param_ptr); + Delegates.glTexBumpParameterfvATI((OpenTK.Graphics.All)pname, (Single*)param_ptr); } } } public static - void TexBumpParameter(OpenTK.Graphics.OpenGL.All pname, ref Single param) + void TexBumpParameter(OpenTK.Graphics.All pname, ref Single param) { unsafe { fixed (Single* param_ptr = ¶m) { - Delegates.glTexBumpParameterfvATI((OpenTK.Graphics.OpenGL.All)pname, (Single*)param_ptr); + Delegates.glTexBumpParameterfvATI((OpenTK.Graphics.All)pname, (Single*)param_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void TexBumpParameter(OpenTK.Graphics.OpenGL.All pname, Single* param) + unsafe void TexBumpParameter(OpenTK.Graphics.All pname, Single* param) { - Delegates.glTexBumpParameterfvATI((OpenTK.Graphics.OpenGL.All)pname, (Single*)param); + Delegates.glTexBumpParameterfvATI((OpenTK.Graphics.All)pname, (Single*)param); } public static - void GetTexBumpParameter(OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] param) + void GetTexBumpParameter(OpenTK.Graphics.All pname, [Out] Int32[] param) { unsafe { fixed (Int32* param_ptr = param) { - Delegates.glGetTexBumpParameterivATI((OpenTK.Graphics.OpenGL.All)pname, (Int32*)param_ptr); + Delegates.glGetTexBumpParameterivATI((OpenTK.Graphics.All)pname, (Int32*)param_ptr); } } } public static - void GetTexBumpParameter(OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 param) + void GetTexBumpParameter(OpenTK.Graphics.All pname, [Out] out Int32 param) { unsafe { fixed (Int32* param_ptr = ¶m) { - Delegates.glGetTexBumpParameterivATI((OpenTK.Graphics.OpenGL.All)pname, (Int32*)param_ptr); + Delegates.glGetTexBumpParameterivATI((OpenTK.Graphics.All)pname, (Int32*)param_ptr); param = *param_ptr; } } @@ -38137,31 +38137,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetTexBumpParameter(OpenTK.Graphics.OpenGL.All pname, [Out] Int32* param) + unsafe void GetTexBumpParameter(OpenTK.Graphics.All pname, [Out] Int32* param) { - Delegates.glGetTexBumpParameterivATI((OpenTK.Graphics.OpenGL.All)pname, (Int32*)param); + Delegates.glGetTexBumpParameterivATI((OpenTK.Graphics.All)pname, (Int32*)param); } public static - void GetTexBumpParameter(OpenTK.Graphics.OpenGL.All pname, [Out] Single[] param) + void GetTexBumpParameter(OpenTK.Graphics.All pname, [Out] Single[] param) { unsafe { fixed (Single* param_ptr = param) { - Delegates.glGetTexBumpParameterfvATI((OpenTK.Graphics.OpenGL.All)pname, (Single*)param_ptr); + Delegates.glGetTexBumpParameterfvATI((OpenTK.Graphics.All)pname, (Single*)param_ptr); } } } public static - void GetTexBumpParameter(OpenTK.Graphics.OpenGL.All pname, [Out] out Single param) + void GetTexBumpParameter(OpenTK.Graphics.All pname, [Out] out Single param) { unsafe { fixed (Single* param_ptr = ¶m) { - Delegates.glGetTexBumpParameterfvATI((OpenTK.Graphics.OpenGL.All)pname, (Single*)param_ptr); + Delegates.glGetTexBumpParameterfvATI((OpenTK.Graphics.All)pname, (Single*)param_ptr); param = *param_ptr; } } @@ -38169,9 +38169,9 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetTexBumpParameter(OpenTK.Graphics.OpenGL.All pname, [Out] Single* param) + unsafe void GetTexBumpParameter(OpenTK.Graphics.All pname, [Out] Single* param) { - Delegates.glGetTexBumpParameterfvATI((OpenTK.Graphics.OpenGL.All)pname, (Single*)param); + Delegates.glGetTexBumpParameterfvATI((OpenTK.Graphics.All)pname, (Single*)param); } [System.CLSCompliant(false)] @@ -38227,106 +38227,106 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void PassTexCoor(UInt32 dst, UInt32 coord, OpenTK.Graphics.OpenGL.All swizzle) + void PassTexCoor(UInt32 dst, UInt32 coord, OpenTK.Graphics.All swizzle) { - Delegates.glPassTexCoordATI((UInt32)dst, (UInt32)coord, (OpenTK.Graphics.OpenGL.All)swizzle); + Delegates.glPassTexCoordATI((UInt32)dst, (UInt32)coord, (OpenTK.Graphics.All)swizzle); } public static - void PassTexCoor(Int32 dst, Int32 coord, OpenTK.Graphics.OpenGL.All swizzle) + void PassTexCoor(Int32 dst, Int32 coord, OpenTK.Graphics.All swizzle) { - Delegates.glPassTexCoordATI((UInt32)dst, (UInt32)coord, (OpenTK.Graphics.OpenGL.All)swizzle); + Delegates.glPassTexCoordATI((UInt32)dst, (UInt32)coord, (OpenTK.Graphics.All)swizzle); } [System.CLSCompliant(false)] public static - void SampleMap(UInt32 dst, UInt32 interp, OpenTK.Graphics.OpenGL.All swizzle) + void SampleMap(UInt32 dst, UInt32 interp, OpenTK.Graphics.All swizzle) { - Delegates.glSampleMapATI((UInt32)dst, (UInt32)interp, (OpenTK.Graphics.OpenGL.All)swizzle); + Delegates.glSampleMapATI((UInt32)dst, (UInt32)interp, (OpenTK.Graphics.All)swizzle); } public static - void SampleMap(Int32 dst, Int32 interp, OpenTK.Graphics.OpenGL.All swizzle) + void SampleMap(Int32 dst, Int32 interp, OpenTK.Graphics.All swizzle) { - Delegates.glSampleMapATI((UInt32)dst, (UInt32)interp, (OpenTK.Graphics.OpenGL.All)swizzle); + Delegates.glSampleMapATI((UInt32)dst, (UInt32)interp, (OpenTK.Graphics.All)swizzle); } [System.CLSCompliant(false)] public static - void ColorFragmentOp1(OpenTK.Graphics.OpenGL.All op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod) + void ColorFragmentOp1(OpenTK.Graphics.All op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod) { - Delegates.glColorFragmentOp1ATI((OpenTK.Graphics.OpenGL.All)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod); + Delegates.glColorFragmentOp1ATI((OpenTK.Graphics.All)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod); } public static - void ColorFragmentOp1(OpenTK.Graphics.OpenGL.All op, Int32 dst, Int32 dstMask, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod) + void ColorFragmentOp1(OpenTK.Graphics.All op, Int32 dst, Int32 dstMask, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod) { - Delegates.glColorFragmentOp1ATI((OpenTK.Graphics.OpenGL.All)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod); + Delegates.glColorFragmentOp1ATI((OpenTK.Graphics.All)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod); } [System.CLSCompliant(false)] public static - void ColorFragmentOp2(OpenTK.Graphics.OpenGL.All op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod) + void ColorFragmentOp2(OpenTK.Graphics.All op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod) { - Delegates.glColorFragmentOp2ATI((OpenTK.Graphics.OpenGL.All)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod); + Delegates.glColorFragmentOp2ATI((OpenTK.Graphics.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.Graphics.OpenGL.All op, Int32 dst, Int32 dstMask, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod) + void ColorFragmentOp2(OpenTK.Graphics.All op, Int32 dst, Int32 dstMask, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod) { - Delegates.glColorFragmentOp2ATI((OpenTK.Graphics.OpenGL.All)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod); + Delegates.glColorFragmentOp2ATI((OpenTK.Graphics.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.Graphics.OpenGL.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) + void ColorFragmentOp3(OpenTK.Graphics.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.Graphics.OpenGL.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.Graphics.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.Graphics.OpenGL.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) + void ColorFragmentOp3(OpenTK.Graphics.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.Graphics.OpenGL.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.Graphics.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.Graphics.OpenGL.All op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod) + void AlphaFragmentOp1(OpenTK.Graphics.All op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod) { - Delegates.glAlphaFragmentOp1ATI((OpenTK.Graphics.OpenGL.All)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod); + Delegates.glAlphaFragmentOp1ATI((OpenTK.Graphics.All)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod); } public static - void AlphaFragmentOp1(OpenTK.Graphics.OpenGL.All op, Int32 dst, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod) + void AlphaFragmentOp1(OpenTK.Graphics.All op, Int32 dst, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod) { - Delegates.glAlphaFragmentOp1ATI((OpenTK.Graphics.OpenGL.All)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod); + Delegates.glAlphaFragmentOp1ATI((OpenTK.Graphics.All)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod); } [System.CLSCompliant(false)] public static - void AlphaFragmentOp2(OpenTK.Graphics.OpenGL.All op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod) + void AlphaFragmentOp2(OpenTK.Graphics.All op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod) { - Delegates.glAlphaFragmentOp2ATI((OpenTK.Graphics.OpenGL.All)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod); + Delegates.glAlphaFragmentOp2ATI((OpenTK.Graphics.All)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod); } public static - void AlphaFragmentOp2(OpenTK.Graphics.OpenGL.All op, Int32 dst, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod) + void AlphaFragmentOp2(OpenTK.Graphics.All op, Int32 dst, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod) { - Delegates.glAlphaFragmentOp2ATI((OpenTK.Graphics.OpenGL.All)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod); + Delegates.glAlphaFragmentOp2ATI((OpenTK.Graphics.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.Graphics.OpenGL.All 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.Graphics.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.Graphics.OpenGL.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.Graphics.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.Graphics.OpenGL.All 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.Graphics.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.Graphics.OpenGL.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.Graphics.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)] @@ -38394,35 +38394,35 @@ namespace OpenTK.Graphics.OpenGL } public static - void PNTriangles(OpenTK.Graphics.OpenGL.All pname, Int32 param) + void PNTriangles(OpenTK.Graphics.All pname, Int32 param) { - Delegates.glPNTrianglesiATI((OpenTK.Graphics.OpenGL.All)pname, (Int32)param); + Delegates.glPNTrianglesiATI((OpenTK.Graphics.All)pname, (Int32)param); } public static - void PNTriangles(OpenTK.Graphics.OpenGL.All pname, Single param) + void PNTriangles(OpenTK.Graphics.All pname, Single param) { - Delegates.glPNTrianglesfATI((OpenTK.Graphics.OpenGL.All)pname, (Single)param); + Delegates.glPNTrianglesfATI((OpenTK.Graphics.All)pname, (Single)param); } public static - Int32 NewObjectBuffer(Int32 size, IntPtr pointer, OpenTK.Graphics.OpenGL.All usage) + Int32 NewObjectBuffer(Int32 size, IntPtr pointer, OpenTK.Graphics.All usage) { unsafe { - return Delegates.glNewObjectBufferATI((Int32)size, (IntPtr)pointer, (OpenTK.Graphics.OpenGL.All)usage); + return Delegates.glNewObjectBufferATI((Int32)size, (IntPtr)pointer, (OpenTK.Graphics.All)usage); } } public static - Int32 NewObjectBuffer(Int32 size, [In, Out] object pointer, OpenTK.Graphics.OpenGL.All usage) + Int32 NewObjectBuffer(Int32 size, [In, Out] object pointer, OpenTK.Graphics.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.Graphics.OpenGL.All)usage); + return Delegates.glNewObjectBufferATI((Int32)size, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.All)usage); } finally { @@ -38446,33 +38446,33 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void UpdateObjectBuffer(UInt32 buffer, UInt32 offset, Int32 size, IntPtr pointer, OpenTK.Graphics.OpenGL.All preserve) + void UpdateObjectBuffer(UInt32 buffer, UInt32 offset, Int32 size, IntPtr pointer, OpenTK.Graphics.All preserve) { unsafe { - Delegates.glUpdateObjectBufferATI((UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer, (OpenTK.Graphics.OpenGL.All)preserve); + Delegates.glUpdateObjectBufferATI((UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer, (OpenTK.Graphics.All)preserve); } } public static - void UpdateObjectBuffer(Int32 buffer, Int32 offset, Int32 size, IntPtr pointer, OpenTK.Graphics.OpenGL.All preserve) + void UpdateObjectBuffer(Int32 buffer, Int32 offset, Int32 size, IntPtr pointer, OpenTK.Graphics.All preserve) { unsafe { - Delegates.glUpdateObjectBufferATI((UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer, (OpenTK.Graphics.OpenGL.All)preserve); + Delegates.glUpdateObjectBufferATI((UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer, (OpenTK.Graphics.All)preserve); } } [System.CLSCompliant(false)] public static - void UpdateObjectBuffer(UInt32 buffer, UInt32 offset, Int32 size, [In, Out] object pointer, OpenTK.Graphics.OpenGL.All preserve) + void UpdateObjectBuffer(UInt32 buffer, UInt32 offset, Int32 size, [In, Out] object pointer, OpenTK.Graphics.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.Graphics.OpenGL.All)preserve); + Delegates.glUpdateObjectBufferATI((UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.All)preserve); } finally { @@ -38482,14 +38482,14 @@ namespace OpenTK.Graphics.OpenGL } public static - void UpdateObjectBuffer(Int32 buffer, Int32 offset, Int32 size, [In, Out] object pointer, OpenTK.Graphics.OpenGL.All preserve) + void UpdateObjectBuffer(Int32 buffer, Int32 offset, Int32 size, [In, Out] object pointer, OpenTK.Graphics.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.Graphics.OpenGL.All)preserve); + Delegates.glUpdateObjectBufferATI((UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.All)preserve); } finally { @@ -38500,51 +38500,51 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL.All pname, [Out] Single[] @params) + void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.OpenGL.All pname, [Out] Single[] @params) + void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL.All pname, [Out] out Single @params) + void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } } public static - void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.OpenGL.All pname, [Out] out Single @params) + void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -38552,65 +38552,65 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params) + unsafe void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.All pname, [Out] Single* @params) { - Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.Graphics.All)pname, (Single*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params) + unsafe void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.All pname, [Out] Single* @params) { - Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.Graphics.All)pname, (Single*)@params); } [System.CLSCompliant(false)] public static - void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } } public static - void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -38618,16 +38618,16 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.Graphics.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.Graphics.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] @@ -38645,37 +38645,37 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - void ArrayObject(OpenTK.Graphics.OpenGL.EnableCap array, Int32 size, OpenTK.Graphics.OpenGL.All type, Int32 stride, UInt32 buffer, UInt32 offset) + void ArrayObject(OpenTK.Graphics.EnableCap array, Int32 size, OpenTK.Graphics.All type, Int32 stride, UInt32 buffer, UInt32 offset) { - Delegates.glArrayObjectATI((OpenTK.Graphics.OpenGL.EnableCap)array, (Int32)size, (OpenTK.Graphics.OpenGL.All)type, (Int32)stride, (UInt32)buffer, (UInt32)offset); + Delegates.glArrayObjectATI((OpenTK.Graphics.EnableCap)array, (Int32)size, (OpenTK.Graphics.All)type, (Int32)stride, (UInt32)buffer, (UInt32)offset); } public static - void ArrayObject(OpenTK.Graphics.OpenGL.EnableCap array, Int32 size, OpenTK.Graphics.OpenGL.All type, Int32 stride, Int32 buffer, Int32 offset) + void ArrayObject(OpenTK.Graphics.EnableCap array, Int32 size, OpenTK.Graphics.All type, Int32 stride, Int32 buffer, Int32 offset) { - Delegates.glArrayObjectATI((OpenTK.Graphics.OpenGL.EnableCap)array, (Int32)size, (OpenTK.Graphics.OpenGL.All)type, (Int32)stride, (UInt32)buffer, (UInt32)offset); + Delegates.glArrayObjectATI((OpenTK.Graphics.EnableCap)array, (Int32)size, (OpenTK.Graphics.All)type, (Int32)stride, (UInt32)buffer, (UInt32)offset); } public static - void GetArrayObject(OpenTK.Graphics.OpenGL.EnableCap array, OpenTK.Graphics.OpenGL.All pname, [Out] Single[] @params) + void GetArrayObject(OpenTK.Graphics.EnableCap array, OpenTK.Graphics.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetArrayObjectfvATI((OpenTK.Graphics.OpenGL.EnableCap)array, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetArrayObjectfvATI((OpenTK.Graphics.EnableCap)array, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void GetArrayObject(OpenTK.Graphics.OpenGL.EnableCap array, OpenTK.Graphics.OpenGL.All pname, [Out] out Single @params) + void GetArrayObject(OpenTK.Graphics.EnableCap array, OpenTK.Graphics.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetArrayObjectfvATI((OpenTK.Graphics.OpenGL.EnableCap)array, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetArrayObjectfvATI((OpenTK.Graphics.EnableCap)array, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -38683,31 +38683,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetArrayObject(OpenTK.Graphics.OpenGL.EnableCap array, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params) + unsafe void GetArrayObject(OpenTK.Graphics.EnableCap array, OpenTK.Graphics.All pname, [Out] Single* @params) { - Delegates.glGetArrayObjectfvATI((OpenTK.Graphics.OpenGL.EnableCap)array, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glGetArrayObjectfvATI((OpenTK.Graphics.EnableCap)array, (OpenTK.Graphics.All)pname, (Single*)@params); } public static - void GetArrayObject(OpenTK.Graphics.OpenGL.EnableCap array, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetArrayObject(OpenTK.Graphics.EnableCap array, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetArrayObjectivATI((OpenTK.Graphics.OpenGL.EnableCap)array, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetArrayObjectivATI((OpenTK.Graphics.EnableCap)array, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void GetArrayObject(OpenTK.Graphics.OpenGL.EnableCap array, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetArrayObject(OpenTK.Graphics.EnableCap array, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetArrayObjectivATI((OpenTK.Graphics.OpenGL.EnableCap)array, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetArrayObjectivATI((OpenTK.Graphics.EnableCap)array, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -38715,71 +38715,71 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetArrayObject(OpenTK.Graphics.OpenGL.EnableCap array, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetArrayObject(OpenTK.Graphics.EnableCap array, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetArrayObjectivATI((OpenTK.Graphics.OpenGL.EnableCap)array, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glGetArrayObjectivATI((OpenTK.Graphics.EnableCap)array, (OpenTK.Graphics.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - void VariantArrayObject(UInt32 id, OpenTK.Graphics.OpenGL.All type, Int32 stride, UInt32 buffer, UInt32 offset) + void VariantArrayObject(UInt32 id, OpenTK.Graphics.All type, Int32 stride, UInt32 buffer, UInt32 offset) { - Delegates.glVariantArrayObjectATI((UInt32)id, (OpenTK.Graphics.OpenGL.All)type, (Int32)stride, (UInt32)buffer, (UInt32)offset); + Delegates.glVariantArrayObjectATI((UInt32)id, (OpenTK.Graphics.All)type, (Int32)stride, (UInt32)buffer, (UInt32)offset); } public static - void VariantArrayObject(Int32 id, OpenTK.Graphics.OpenGL.All type, Int32 stride, Int32 buffer, Int32 offset) + void VariantArrayObject(Int32 id, OpenTK.Graphics.All type, Int32 stride, Int32 buffer, Int32 offset) { - Delegates.glVariantArrayObjectATI((UInt32)id, (OpenTK.Graphics.OpenGL.All)type, (Int32)stride, (UInt32)buffer, (UInt32)offset); + Delegates.glVariantArrayObjectATI((UInt32)id, (OpenTK.Graphics.All)type, (Int32)stride, (UInt32)buffer, (UInt32)offset); } [System.CLSCompliant(false)] public static - void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] Single[] @params) + void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void GetVariantArrayObject(Int32 id, OpenTK.Graphics.OpenGL.All pname, [Out] Single[] @params) + void GetVariantArrayObject(Int32 id, OpenTK.Graphics.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] out Single @params) + void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } } public static - void GetVariantArrayObject(Int32 id, OpenTK.Graphics.OpenGL.All pname, [Out] out Single @params) + void GetVariantArrayObject(Int32 id, OpenTK.Graphics.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -38787,65 +38787,65 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params) + unsafe void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.All pname, [Out] Single* @params) { - Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.Graphics.All)pname, (Single*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetVariantArrayObject(Int32 id, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params) + unsafe void GetVariantArrayObject(Int32 id, OpenTK.Graphics.All pname, [Out] Single* @params) { - Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.Graphics.All)pname, (Single*)@params); } [System.CLSCompliant(false)] public static - void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void GetVariantArrayObject(Int32 id, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetVariantArrayObject(Int32 id, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } } public static - void GetVariantArrayObject(Int32 id, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetVariantArrayObject(Int32 id, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -38853,871 +38853,871 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.Graphics.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetVariantArrayObject(Int32 id, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetVariantArrayObject(Int32 id, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.Graphics.All)pname, (Int32*)@params); } public static - void VertexStream1(OpenTK.Graphics.OpenGL.All stream, Int16 x) + void VertexStream1(OpenTK.Graphics.All stream, Int16 x) { - Delegates.glVertexStream1sATI((OpenTK.Graphics.OpenGL.All)stream, (Int16)x); + Delegates.glVertexStream1sATI((OpenTK.Graphics.All)stream, (Int16)x); } public static - void VertexStream1v(OpenTK.Graphics.OpenGL.All stream, Int16[] coords) + void VertexStream1v(OpenTK.Graphics.All stream, Int16[] coords) { unsafe { fixed (Int16* coords_ptr = coords) { - Delegates.glVertexStream1svATI((OpenTK.Graphics.OpenGL.All)stream, (Int16*)coords_ptr); + Delegates.glVertexStream1svATI((OpenTK.Graphics.All)stream, (Int16*)coords_ptr); } } } public static - void VertexStream1v(OpenTK.Graphics.OpenGL.All stream, ref Int16 coords) + void VertexStream1v(OpenTK.Graphics.All stream, ref Int16 coords) { unsafe { fixed (Int16* coords_ptr = &coords) { - Delegates.glVertexStream1svATI((OpenTK.Graphics.OpenGL.All)stream, (Int16*)coords_ptr); + Delegates.glVertexStream1svATI((OpenTK.Graphics.All)stream, (Int16*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void VertexStream1v(OpenTK.Graphics.OpenGL.All stream, Int16* coords) + unsafe void VertexStream1v(OpenTK.Graphics.All stream, Int16* coords) { - Delegates.glVertexStream1svATI((OpenTK.Graphics.OpenGL.All)stream, (Int16*)coords); + Delegates.glVertexStream1svATI((OpenTK.Graphics.All)stream, (Int16*)coords); } public static - void VertexStream1(OpenTK.Graphics.OpenGL.All stream, Int32 x) + void VertexStream1(OpenTK.Graphics.All stream, Int32 x) { - Delegates.glVertexStream1iATI((OpenTK.Graphics.OpenGL.All)stream, (Int32)x); + Delegates.glVertexStream1iATI((OpenTK.Graphics.All)stream, (Int32)x); } public static - void VertexStream1v(OpenTK.Graphics.OpenGL.All stream, Int32[] coords) + void VertexStream1v(OpenTK.Graphics.All stream, Int32[] coords) { unsafe { fixed (Int32* coords_ptr = coords) { - Delegates.glVertexStream1ivATI((OpenTK.Graphics.OpenGL.All)stream, (Int32*)coords_ptr); + Delegates.glVertexStream1ivATI((OpenTK.Graphics.All)stream, (Int32*)coords_ptr); } } } public static - void VertexStream1v(OpenTK.Graphics.OpenGL.All stream, ref Int32 coords) + void VertexStream1v(OpenTK.Graphics.All stream, ref Int32 coords) { unsafe { fixed (Int32* coords_ptr = &coords) { - Delegates.glVertexStream1ivATI((OpenTK.Graphics.OpenGL.All)stream, (Int32*)coords_ptr); + Delegates.glVertexStream1ivATI((OpenTK.Graphics.All)stream, (Int32*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void VertexStream1v(OpenTK.Graphics.OpenGL.All stream, Int32* coords) + unsafe void VertexStream1v(OpenTK.Graphics.All stream, Int32* coords) { - Delegates.glVertexStream1ivATI((OpenTK.Graphics.OpenGL.All)stream, (Int32*)coords); + Delegates.glVertexStream1ivATI((OpenTK.Graphics.All)stream, (Int32*)coords); } public static - void VertexStream1(OpenTK.Graphics.OpenGL.All stream, Single x) + void VertexStream1(OpenTK.Graphics.All stream, Single x) { - Delegates.glVertexStream1fATI((OpenTK.Graphics.OpenGL.All)stream, (Single)x); + Delegates.glVertexStream1fATI((OpenTK.Graphics.All)stream, (Single)x); } public static - void VertexStream1v(OpenTK.Graphics.OpenGL.All stream, Single[] coords) + void VertexStream1v(OpenTK.Graphics.All stream, Single[] coords) { unsafe { fixed (Single* coords_ptr = coords) { - Delegates.glVertexStream1fvATI((OpenTK.Graphics.OpenGL.All)stream, (Single*)coords_ptr); + Delegates.glVertexStream1fvATI((OpenTK.Graphics.All)stream, (Single*)coords_ptr); } } } public static - void VertexStream1v(OpenTK.Graphics.OpenGL.All stream, ref Single coords) + void VertexStream1v(OpenTK.Graphics.All stream, ref Single coords) { unsafe { fixed (Single* coords_ptr = &coords) { - Delegates.glVertexStream1fvATI((OpenTK.Graphics.OpenGL.All)stream, (Single*)coords_ptr); + Delegates.glVertexStream1fvATI((OpenTK.Graphics.All)stream, (Single*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void VertexStream1v(OpenTK.Graphics.OpenGL.All stream, Single* coords) + unsafe void VertexStream1v(OpenTK.Graphics.All stream, Single* coords) { - Delegates.glVertexStream1fvATI((OpenTK.Graphics.OpenGL.All)stream, (Single*)coords); + Delegates.glVertexStream1fvATI((OpenTK.Graphics.All)stream, (Single*)coords); } public static - void VertexStream1(OpenTK.Graphics.OpenGL.All stream, Double x) + void VertexStream1(OpenTK.Graphics.All stream, Double x) { - Delegates.glVertexStream1dATI((OpenTK.Graphics.OpenGL.All)stream, (Double)x); + Delegates.glVertexStream1dATI((OpenTK.Graphics.All)stream, (Double)x); } public static - void VertexStream1v(OpenTK.Graphics.OpenGL.All stream, Double[] coords) + void VertexStream1v(OpenTK.Graphics.All stream, Double[] coords) { unsafe { fixed (Double* coords_ptr = coords) { - Delegates.glVertexStream1dvATI((OpenTK.Graphics.OpenGL.All)stream, (Double*)coords_ptr); + Delegates.glVertexStream1dvATI((OpenTK.Graphics.All)stream, (Double*)coords_ptr); } } } public static - void VertexStream1v(OpenTK.Graphics.OpenGL.All stream, ref Double coords) + void VertexStream1v(OpenTK.Graphics.All stream, ref Double coords) { unsafe { fixed (Double* coords_ptr = &coords) { - Delegates.glVertexStream1dvATI((OpenTK.Graphics.OpenGL.All)stream, (Double*)coords_ptr); + Delegates.glVertexStream1dvATI((OpenTK.Graphics.All)stream, (Double*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void VertexStream1v(OpenTK.Graphics.OpenGL.All stream, Double* coords) + unsafe void VertexStream1v(OpenTK.Graphics.All stream, Double* coords) { - Delegates.glVertexStream1dvATI((OpenTK.Graphics.OpenGL.All)stream, (Double*)coords); + Delegates.glVertexStream1dvATI((OpenTK.Graphics.All)stream, (Double*)coords); } public static - void VertexStream2(OpenTK.Graphics.OpenGL.All stream, Int16 x, Int16 y) + void VertexStream2(OpenTK.Graphics.All stream, Int16 x, Int16 y) { - Delegates.glVertexStream2sATI((OpenTK.Graphics.OpenGL.All)stream, (Int16)x, (Int16)y); + Delegates.glVertexStream2sATI((OpenTK.Graphics.All)stream, (Int16)x, (Int16)y); } public static - void VertexStream2(OpenTK.Graphics.OpenGL.All stream, Int16[] coords) + void VertexStream2(OpenTK.Graphics.All stream, Int16[] coords) { unsafe { fixed (Int16* coords_ptr = coords) { - Delegates.glVertexStream2svATI((OpenTK.Graphics.OpenGL.All)stream, (Int16*)coords_ptr); + Delegates.glVertexStream2svATI((OpenTK.Graphics.All)stream, (Int16*)coords_ptr); } } } public static - void VertexStream2(OpenTK.Graphics.OpenGL.All stream, ref Int16 coords) + void VertexStream2(OpenTK.Graphics.All stream, ref Int16 coords) { unsafe { fixed (Int16* coords_ptr = &coords) { - Delegates.glVertexStream2svATI((OpenTK.Graphics.OpenGL.All)stream, (Int16*)coords_ptr); + Delegates.glVertexStream2svATI((OpenTK.Graphics.All)stream, (Int16*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void VertexStream2(OpenTK.Graphics.OpenGL.All stream, Int16* coords) + unsafe void VertexStream2(OpenTK.Graphics.All stream, Int16* coords) { - Delegates.glVertexStream2svATI((OpenTK.Graphics.OpenGL.All)stream, (Int16*)coords); + Delegates.glVertexStream2svATI((OpenTK.Graphics.All)stream, (Int16*)coords); } public static - void VertexStream2(OpenTK.Graphics.OpenGL.All stream, Int32 x, Int32 y) + void VertexStream2(OpenTK.Graphics.All stream, Int32 x, Int32 y) { - Delegates.glVertexStream2iATI((OpenTK.Graphics.OpenGL.All)stream, (Int32)x, (Int32)y); + Delegates.glVertexStream2iATI((OpenTK.Graphics.All)stream, (Int32)x, (Int32)y); } public static - void VertexStream2(OpenTK.Graphics.OpenGL.All stream, Int32[] coords) + void VertexStream2(OpenTK.Graphics.All stream, Int32[] coords) { unsafe { fixed (Int32* coords_ptr = coords) { - Delegates.glVertexStream2ivATI((OpenTK.Graphics.OpenGL.All)stream, (Int32*)coords_ptr); + Delegates.glVertexStream2ivATI((OpenTK.Graphics.All)stream, (Int32*)coords_ptr); } } } public static - void VertexStream2(OpenTK.Graphics.OpenGL.All stream, ref Int32 coords) + void VertexStream2(OpenTK.Graphics.All stream, ref Int32 coords) { unsafe { fixed (Int32* coords_ptr = &coords) { - Delegates.glVertexStream2ivATI((OpenTK.Graphics.OpenGL.All)stream, (Int32*)coords_ptr); + Delegates.glVertexStream2ivATI((OpenTK.Graphics.All)stream, (Int32*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void VertexStream2(OpenTK.Graphics.OpenGL.All stream, Int32* coords) + unsafe void VertexStream2(OpenTK.Graphics.All stream, Int32* coords) { - Delegates.glVertexStream2ivATI((OpenTK.Graphics.OpenGL.All)stream, (Int32*)coords); + Delegates.glVertexStream2ivATI((OpenTK.Graphics.All)stream, (Int32*)coords); } public static - void VertexStream2(OpenTK.Graphics.OpenGL.All stream, Single x, Single y) + void VertexStream2(OpenTK.Graphics.All stream, Single x, Single y) { - Delegates.glVertexStream2fATI((OpenTK.Graphics.OpenGL.All)stream, (Single)x, (Single)y); + Delegates.glVertexStream2fATI((OpenTK.Graphics.All)stream, (Single)x, (Single)y); } public static - void VertexStream2(OpenTK.Graphics.OpenGL.All stream, Single[] coords) + void VertexStream2(OpenTK.Graphics.All stream, Single[] coords) { unsafe { fixed (Single* coords_ptr = coords) { - Delegates.glVertexStream2fvATI((OpenTK.Graphics.OpenGL.All)stream, (Single*)coords_ptr); + Delegates.glVertexStream2fvATI((OpenTK.Graphics.All)stream, (Single*)coords_ptr); } } } public static - void VertexStream2(OpenTK.Graphics.OpenGL.All stream, ref Single coords) + void VertexStream2(OpenTK.Graphics.All stream, ref Single coords) { unsafe { fixed (Single* coords_ptr = &coords) { - Delegates.glVertexStream2fvATI((OpenTK.Graphics.OpenGL.All)stream, (Single*)coords_ptr); + Delegates.glVertexStream2fvATI((OpenTK.Graphics.All)stream, (Single*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void VertexStream2(OpenTK.Graphics.OpenGL.All stream, Single* coords) + unsafe void VertexStream2(OpenTK.Graphics.All stream, Single* coords) { - Delegates.glVertexStream2fvATI((OpenTK.Graphics.OpenGL.All)stream, (Single*)coords); + Delegates.glVertexStream2fvATI((OpenTK.Graphics.All)stream, (Single*)coords); } public static - void VertexStream2(OpenTK.Graphics.OpenGL.All stream, Double x, Double y) + void VertexStream2(OpenTK.Graphics.All stream, Double x, Double y) { - Delegates.glVertexStream2dATI((OpenTK.Graphics.OpenGL.All)stream, (Double)x, (Double)y); + Delegates.glVertexStream2dATI((OpenTK.Graphics.All)stream, (Double)x, (Double)y); } public static - void VertexStream2(OpenTK.Graphics.OpenGL.All stream, Double[] coords) + void VertexStream2(OpenTK.Graphics.All stream, Double[] coords) { unsafe { fixed (Double* coords_ptr = coords) { - Delegates.glVertexStream2dvATI((OpenTK.Graphics.OpenGL.All)stream, (Double*)coords_ptr); + Delegates.glVertexStream2dvATI((OpenTK.Graphics.All)stream, (Double*)coords_ptr); } } } public static - void VertexStream2(OpenTK.Graphics.OpenGL.All stream, ref Double coords) + void VertexStream2(OpenTK.Graphics.All stream, ref Double coords) { unsafe { fixed (Double* coords_ptr = &coords) { - Delegates.glVertexStream2dvATI((OpenTK.Graphics.OpenGL.All)stream, (Double*)coords_ptr); + Delegates.glVertexStream2dvATI((OpenTK.Graphics.All)stream, (Double*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void VertexStream2(OpenTK.Graphics.OpenGL.All stream, Double* coords) + unsafe void VertexStream2(OpenTK.Graphics.All stream, Double* coords) { - Delegates.glVertexStream2dvATI((OpenTK.Graphics.OpenGL.All)stream, (Double*)coords); + Delegates.glVertexStream2dvATI((OpenTK.Graphics.All)stream, (Double*)coords); } public static - void VertexStream3(OpenTK.Graphics.OpenGL.All stream, Int16 x, Int16 y, Int16 z) + void VertexStream3(OpenTK.Graphics.All stream, Int16 x, Int16 y, Int16 z) { - Delegates.glVertexStream3sATI((OpenTK.Graphics.OpenGL.All)stream, (Int16)x, (Int16)y, (Int16)z); + Delegates.glVertexStream3sATI((OpenTK.Graphics.All)stream, (Int16)x, (Int16)y, (Int16)z); } public static - void VertexStream3(OpenTK.Graphics.OpenGL.All stream, Int16[] coords) + void VertexStream3(OpenTK.Graphics.All stream, Int16[] coords) { unsafe { fixed (Int16* coords_ptr = coords) { - Delegates.glVertexStream3svATI((OpenTK.Graphics.OpenGL.All)stream, (Int16*)coords_ptr); + Delegates.glVertexStream3svATI((OpenTK.Graphics.All)stream, (Int16*)coords_ptr); } } } public static - void VertexStream3(OpenTK.Graphics.OpenGL.All stream, ref Int16 coords) + void VertexStream3(OpenTK.Graphics.All stream, ref Int16 coords) { unsafe { fixed (Int16* coords_ptr = &coords) { - Delegates.glVertexStream3svATI((OpenTK.Graphics.OpenGL.All)stream, (Int16*)coords_ptr); + Delegates.glVertexStream3svATI((OpenTK.Graphics.All)stream, (Int16*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void VertexStream3(OpenTK.Graphics.OpenGL.All stream, Int16* coords) + unsafe void VertexStream3(OpenTK.Graphics.All stream, Int16* coords) { - Delegates.glVertexStream3svATI((OpenTK.Graphics.OpenGL.All)stream, (Int16*)coords); + Delegates.glVertexStream3svATI((OpenTK.Graphics.All)stream, (Int16*)coords); } public static - void VertexStream3(OpenTK.Graphics.OpenGL.All stream, Int32 x, Int32 y, Int32 z) + void VertexStream3(OpenTK.Graphics.All stream, Int32 x, Int32 y, Int32 z) { - Delegates.glVertexStream3iATI((OpenTK.Graphics.OpenGL.All)stream, (Int32)x, (Int32)y, (Int32)z); + Delegates.glVertexStream3iATI((OpenTK.Graphics.All)stream, (Int32)x, (Int32)y, (Int32)z); } public static - void VertexStream3(OpenTK.Graphics.OpenGL.All stream, Int32[] coords) + void VertexStream3(OpenTK.Graphics.All stream, Int32[] coords) { unsafe { fixed (Int32* coords_ptr = coords) { - Delegates.glVertexStream3ivATI((OpenTK.Graphics.OpenGL.All)stream, (Int32*)coords_ptr); + Delegates.glVertexStream3ivATI((OpenTK.Graphics.All)stream, (Int32*)coords_ptr); } } } public static - void VertexStream3(OpenTK.Graphics.OpenGL.All stream, ref Int32 coords) + void VertexStream3(OpenTK.Graphics.All stream, ref Int32 coords) { unsafe { fixed (Int32* coords_ptr = &coords) { - Delegates.glVertexStream3ivATI((OpenTK.Graphics.OpenGL.All)stream, (Int32*)coords_ptr); + Delegates.glVertexStream3ivATI((OpenTK.Graphics.All)stream, (Int32*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void VertexStream3(OpenTK.Graphics.OpenGL.All stream, Int32* coords) + unsafe void VertexStream3(OpenTK.Graphics.All stream, Int32* coords) { - Delegates.glVertexStream3ivATI((OpenTK.Graphics.OpenGL.All)stream, (Int32*)coords); + Delegates.glVertexStream3ivATI((OpenTK.Graphics.All)stream, (Int32*)coords); } public static - void VertexStream3(OpenTK.Graphics.OpenGL.All stream, Single x, Single y, Single z) + void VertexStream3(OpenTK.Graphics.All stream, Single x, Single y, Single z) { - Delegates.glVertexStream3fATI((OpenTK.Graphics.OpenGL.All)stream, (Single)x, (Single)y, (Single)z); + Delegates.glVertexStream3fATI((OpenTK.Graphics.All)stream, (Single)x, (Single)y, (Single)z); } public static - void VertexStream3(OpenTK.Graphics.OpenGL.All stream, Single[] coords) + void VertexStream3(OpenTK.Graphics.All stream, Single[] coords) { unsafe { fixed (Single* coords_ptr = coords) { - Delegates.glVertexStream3fvATI((OpenTK.Graphics.OpenGL.All)stream, (Single*)coords_ptr); + Delegates.glVertexStream3fvATI((OpenTK.Graphics.All)stream, (Single*)coords_ptr); } } } public static - void VertexStream3(OpenTK.Graphics.OpenGL.All stream, ref Single coords) + void VertexStream3(OpenTK.Graphics.All stream, ref Single coords) { unsafe { fixed (Single* coords_ptr = &coords) { - Delegates.glVertexStream3fvATI((OpenTK.Graphics.OpenGL.All)stream, (Single*)coords_ptr); + Delegates.glVertexStream3fvATI((OpenTK.Graphics.All)stream, (Single*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void VertexStream3(OpenTK.Graphics.OpenGL.All stream, Single* coords) + unsafe void VertexStream3(OpenTK.Graphics.All stream, Single* coords) { - Delegates.glVertexStream3fvATI((OpenTK.Graphics.OpenGL.All)stream, (Single*)coords); + Delegates.glVertexStream3fvATI((OpenTK.Graphics.All)stream, (Single*)coords); } public static - void VertexStream3(OpenTK.Graphics.OpenGL.All stream, Double x, Double y, Double z) + void VertexStream3(OpenTK.Graphics.All stream, Double x, Double y, Double z) { - Delegates.glVertexStream3dATI((OpenTK.Graphics.OpenGL.All)stream, (Double)x, (Double)y, (Double)z); + Delegates.glVertexStream3dATI((OpenTK.Graphics.All)stream, (Double)x, (Double)y, (Double)z); } public static - void VertexStream3(OpenTK.Graphics.OpenGL.All stream, Double[] coords) + void VertexStream3(OpenTK.Graphics.All stream, Double[] coords) { unsafe { fixed (Double* coords_ptr = coords) { - Delegates.glVertexStream3dvATI((OpenTK.Graphics.OpenGL.All)stream, (Double*)coords_ptr); + Delegates.glVertexStream3dvATI((OpenTK.Graphics.All)stream, (Double*)coords_ptr); } } } public static - void VertexStream3(OpenTK.Graphics.OpenGL.All stream, ref Double coords) + void VertexStream3(OpenTK.Graphics.All stream, ref Double coords) { unsafe { fixed (Double* coords_ptr = &coords) { - Delegates.glVertexStream3dvATI((OpenTK.Graphics.OpenGL.All)stream, (Double*)coords_ptr); + Delegates.glVertexStream3dvATI((OpenTK.Graphics.All)stream, (Double*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void VertexStream3(OpenTK.Graphics.OpenGL.All stream, Double* coords) + unsafe void VertexStream3(OpenTK.Graphics.All stream, Double* coords) { - Delegates.glVertexStream3dvATI((OpenTK.Graphics.OpenGL.All)stream, (Double*)coords); + Delegates.glVertexStream3dvATI((OpenTK.Graphics.All)stream, (Double*)coords); } public static - void VertexStream4(OpenTK.Graphics.OpenGL.All stream, Int16 x, Int16 y, Int16 z, Int16 w) + void VertexStream4(OpenTK.Graphics.All stream, Int16 x, Int16 y, Int16 z, Int16 w) { - Delegates.glVertexStream4sATI((OpenTK.Graphics.OpenGL.All)stream, (Int16)x, (Int16)y, (Int16)z, (Int16)w); + Delegates.glVertexStream4sATI((OpenTK.Graphics.All)stream, (Int16)x, (Int16)y, (Int16)z, (Int16)w); } public static - void VertexStream4(OpenTK.Graphics.OpenGL.All stream, Int16[] coords) + void VertexStream4(OpenTK.Graphics.All stream, Int16[] coords) { unsafe { fixed (Int16* coords_ptr = coords) { - Delegates.glVertexStream4svATI((OpenTK.Graphics.OpenGL.All)stream, (Int16*)coords_ptr); + Delegates.glVertexStream4svATI((OpenTK.Graphics.All)stream, (Int16*)coords_ptr); } } } public static - void VertexStream4(OpenTK.Graphics.OpenGL.All stream, ref Int16 coords) + void VertexStream4(OpenTK.Graphics.All stream, ref Int16 coords) { unsafe { fixed (Int16* coords_ptr = &coords) { - Delegates.glVertexStream4svATI((OpenTK.Graphics.OpenGL.All)stream, (Int16*)coords_ptr); + Delegates.glVertexStream4svATI((OpenTK.Graphics.All)stream, (Int16*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void VertexStream4(OpenTK.Graphics.OpenGL.All stream, Int16* coords) + unsafe void VertexStream4(OpenTK.Graphics.All stream, Int16* coords) { - Delegates.glVertexStream4svATI((OpenTK.Graphics.OpenGL.All)stream, (Int16*)coords); + Delegates.glVertexStream4svATI((OpenTK.Graphics.All)stream, (Int16*)coords); } public static - void VertexStream4(OpenTK.Graphics.OpenGL.All stream, Int32 x, Int32 y, Int32 z, Int32 w) + void VertexStream4(OpenTK.Graphics.All stream, Int32 x, Int32 y, Int32 z, Int32 w) { - Delegates.glVertexStream4iATI((OpenTK.Graphics.OpenGL.All)stream, (Int32)x, (Int32)y, (Int32)z, (Int32)w); + Delegates.glVertexStream4iATI((OpenTK.Graphics.All)stream, (Int32)x, (Int32)y, (Int32)z, (Int32)w); } public static - void VertexStream4(OpenTK.Graphics.OpenGL.All stream, Int32[] coords) + void VertexStream4(OpenTK.Graphics.All stream, Int32[] coords) { unsafe { fixed (Int32* coords_ptr = coords) { - Delegates.glVertexStream4ivATI((OpenTK.Graphics.OpenGL.All)stream, (Int32*)coords_ptr); + Delegates.glVertexStream4ivATI((OpenTK.Graphics.All)stream, (Int32*)coords_ptr); } } } public static - void VertexStream4(OpenTK.Graphics.OpenGL.All stream, ref Int32 coords) + void VertexStream4(OpenTK.Graphics.All stream, ref Int32 coords) { unsafe { fixed (Int32* coords_ptr = &coords) { - Delegates.glVertexStream4ivATI((OpenTK.Graphics.OpenGL.All)stream, (Int32*)coords_ptr); + Delegates.glVertexStream4ivATI((OpenTK.Graphics.All)stream, (Int32*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void VertexStream4(OpenTK.Graphics.OpenGL.All stream, Int32* coords) + unsafe void VertexStream4(OpenTK.Graphics.All stream, Int32* coords) { - Delegates.glVertexStream4ivATI((OpenTK.Graphics.OpenGL.All)stream, (Int32*)coords); + Delegates.glVertexStream4ivATI((OpenTK.Graphics.All)stream, (Int32*)coords); } public static - void VertexStream4(OpenTK.Graphics.OpenGL.All stream, Single x, Single y, Single z, Single w) + void VertexStream4(OpenTK.Graphics.All stream, Single x, Single y, Single z, Single w) { - Delegates.glVertexStream4fATI((OpenTK.Graphics.OpenGL.All)stream, (Single)x, (Single)y, (Single)z, (Single)w); + Delegates.glVertexStream4fATI((OpenTK.Graphics.All)stream, (Single)x, (Single)y, (Single)z, (Single)w); } public static - void VertexStream4(OpenTK.Graphics.OpenGL.All stream, Single[] coords) + void VertexStream4(OpenTK.Graphics.All stream, Single[] coords) { unsafe { fixed (Single* coords_ptr = coords) { - Delegates.glVertexStream4fvATI((OpenTK.Graphics.OpenGL.All)stream, (Single*)coords_ptr); + Delegates.glVertexStream4fvATI((OpenTK.Graphics.All)stream, (Single*)coords_ptr); } } } public static - void VertexStream4(OpenTK.Graphics.OpenGL.All stream, ref Single coords) + void VertexStream4(OpenTK.Graphics.All stream, ref Single coords) { unsafe { fixed (Single* coords_ptr = &coords) { - Delegates.glVertexStream4fvATI((OpenTK.Graphics.OpenGL.All)stream, (Single*)coords_ptr); + Delegates.glVertexStream4fvATI((OpenTK.Graphics.All)stream, (Single*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void VertexStream4(OpenTK.Graphics.OpenGL.All stream, Single* coords) + unsafe void VertexStream4(OpenTK.Graphics.All stream, Single* coords) { - Delegates.glVertexStream4fvATI((OpenTK.Graphics.OpenGL.All)stream, (Single*)coords); + Delegates.glVertexStream4fvATI((OpenTK.Graphics.All)stream, (Single*)coords); } public static - void VertexStream4(OpenTK.Graphics.OpenGL.All stream, Double x, Double y, Double z, Double w) + void VertexStream4(OpenTK.Graphics.All stream, Double x, Double y, Double z, Double w) { - Delegates.glVertexStream4dATI((OpenTK.Graphics.OpenGL.All)stream, (Double)x, (Double)y, (Double)z, (Double)w); + Delegates.glVertexStream4dATI((OpenTK.Graphics.All)stream, (Double)x, (Double)y, (Double)z, (Double)w); } public static - void VertexStream4(OpenTK.Graphics.OpenGL.All stream, Double[] coords) + void VertexStream4(OpenTK.Graphics.All stream, Double[] coords) { unsafe { fixed (Double* coords_ptr = coords) { - Delegates.glVertexStream4dvATI((OpenTK.Graphics.OpenGL.All)stream, (Double*)coords_ptr); + Delegates.glVertexStream4dvATI((OpenTK.Graphics.All)stream, (Double*)coords_ptr); } } } public static - void VertexStream4(OpenTK.Graphics.OpenGL.All stream, ref Double coords) + void VertexStream4(OpenTK.Graphics.All stream, ref Double coords) { unsafe { fixed (Double* coords_ptr = &coords) { - Delegates.glVertexStream4dvATI((OpenTK.Graphics.OpenGL.All)stream, (Double*)coords_ptr); + Delegates.glVertexStream4dvATI((OpenTK.Graphics.All)stream, (Double*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void VertexStream4(OpenTK.Graphics.OpenGL.All stream, Double* coords) + unsafe void VertexStream4(OpenTK.Graphics.All stream, Double* coords) { - Delegates.glVertexStream4dvATI((OpenTK.Graphics.OpenGL.All)stream, (Double*)coords); + Delegates.glVertexStream4dvATI((OpenTK.Graphics.All)stream, (Double*)coords); } [System.CLSCompliant(false)] public static - void NormalStream3(OpenTK.Graphics.OpenGL.All stream, SByte nx, SByte ny, SByte nz) + void NormalStream3(OpenTK.Graphics.All stream, SByte nx, SByte ny, SByte nz) { - Delegates.glNormalStream3bATI((OpenTK.Graphics.OpenGL.All)stream, (SByte)nx, (SByte)ny, (SByte)nz); + Delegates.glNormalStream3bATI((OpenTK.Graphics.All)stream, (SByte)nx, (SByte)ny, (SByte)nz); } public static - void NormalStream3(OpenTK.Graphics.OpenGL.All stream, Byte nx, Byte ny, Byte nz) + void NormalStream3(OpenTK.Graphics.All stream, Byte nx, Byte ny, Byte nz) { - Delegates.glNormalStream3bATI((OpenTK.Graphics.OpenGL.All)stream, (SByte)nx, (SByte)ny, (SByte)nz); + Delegates.glNormalStream3bATI((OpenTK.Graphics.All)stream, (SByte)nx, (SByte)ny, (SByte)nz); } [System.CLSCompliant(false)] public static - void NormalStream3(OpenTK.Graphics.OpenGL.All stream, SByte[] coords) + void NormalStream3(OpenTK.Graphics.All stream, SByte[] coords) { unsafe { fixed (SByte* coords_ptr = coords) { - Delegates.glNormalStream3bvATI((OpenTK.Graphics.OpenGL.All)stream, (SByte*)coords_ptr); + Delegates.glNormalStream3bvATI((OpenTK.Graphics.All)stream, (SByte*)coords_ptr); } } } public static - void NormalStream3(OpenTK.Graphics.OpenGL.All stream, Byte[] coords) + void NormalStream3(OpenTK.Graphics.All stream, Byte[] coords) { unsafe { fixed (Byte* coords_ptr = coords) { - Delegates.glNormalStream3bvATI((OpenTK.Graphics.OpenGL.All)stream, (SByte*)coords_ptr); + Delegates.glNormalStream3bvATI((OpenTK.Graphics.All)stream, (SByte*)coords_ptr); } } } [System.CLSCompliant(false)] public static - void NormalStream3(OpenTK.Graphics.OpenGL.All stream, ref SByte coords) + void NormalStream3(OpenTK.Graphics.All stream, ref SByte coords) { unsafe { fixed (SByte* coords_ptr = &coords) { - Delegates.glNormalStream3bvATI((OpenTK.Graphics.OpenGL.All)stream, (SByte*)coords_ptr); + Delegates.glNormalStream3bvATI((OpenTK.Graphics.All)stream, (SByte*)coords_ptr); } } } public static - void NormalStream3(OpenTK.Graphics.OpenGL.All stream, ref Byte coords) + void NormalStream3(OpenTK.Graphics.All stream, ref Byte coords) { unsafe { fixed (Byte* coords_ptr = &coords) { - Delegates.glNormalStream3bvATI((OpenTK.Graphics.OpenGL.All)stream, (SByte*)coords_ptr); + Delegates.glNormalStream3bvATI((OpenTK.Graphics.All)stream, (SByte*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void NormalStream3(OpenTK.Graphics.OpenGL.All stream, SByte* coords) + unsafe void NormalStream3(OpenTK.Graphics.All stream, SByte* coords) { - Delegates.glNormalStream3bvATI((OpenTK.Graphics.OpenGL.All)stream, (SByte*)coords); + Delegates.glNormalStream3bvATI((OpenTK.Graphics.All)stream, (SByte*)coords); } [System.CLSCompliant(false)] public static - unsafe void NormalStream3(OpenTK.Graphics.OpenGL.All stream, Byte* coords) + unsafe void NormalStream3(OpenTK.Graphics.All stream, Byte* coords) { - Delegates.glNormalStream3bvATI((OpenTK.Graphics.OpenGL.All)stream, (SByte*)coords); + Delegates.glNormalStream3bvATI((OpenTK.Graphics.All)stream, (SByte*)coords); } public static - void NormalStream3(OpenTK.Graphics.OpenGL.All stream, Int16 nx, Int16 ny, Int16 nz) + void NormalStream3(OpenTK.Graphics.All stream, Int16 nx, Int16 ny, Int16 nz) { - Delegates.glNormalStream3sATI((OpenTK.Graphics.OpenGL.All)stream, (Int16)nx, (Int16)ny, (Int16)nz); + Delegates.glNormalStream3sATI((OpenTK.Graphics.All)stream, (Int16)nx, (Int16)ny, (Int16)nz); } public static - void NormalStream3(OpenTK.Graphics.OpenGL.All stream, Int16[] coords) + void NormalStream3(OpenTK.Graphics.All stream, Int16[] coords) { unsafe { fixed (Int16* coords_ptr = coords) { - Delegates.glNormalStream3svATI((OpenTK.Graphics.OpenGL.All)stream, (Int16*)coords_ptr); + Delegates.glNormalStream3svATI((OpenTK.Graphics.All)stream, (Int16*)coords_ptr); } } } public static - void NormalStream3(OpenTK.Graphics.OpenGL.All stream, ref Int16 coords) + void NormalStream3(OpenTK.Graphics.All stream, ref Int16 coords) { unsafe { fixed (Int16* coords_ptr = &coords) { - Delegates.glNormalStream3svATI((OpenTK.Graphics.OpenGL.All)stream, (Int16*)coords_ptr); + Delegates.glNormalStream3svATI((OpenTK.Graphics.All)stream, (Int16*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void NormalStream3(OpenTK.Graphics.OpenGL.All stream, Int16* coords) + unsafe void NormalStream3(OpenTK.Graphics.All stream, Int16* coords) { - Delegates.glNormalStream3svATI((OpenTK.Graphics.OpenGL.All)stream, (Int16*)coords); + Delegates.glNormalStream3svATI((OpenTK.Graphics.All)stream, (Int16*)coords); } public static - void NormalStream3(OpenTK.Graphics.OpenGL.All stream, Int32 nx, Int32 ny, Int32 nz) + void NormalStream3(OpenTK.Graphics.All stream, Int32 nx, Int32 ny, Int32 nz) { - Delegates.glNormalStream3iATI((OpenTK.Graphics.OpenGL.All)stream, (Int32)nx, (Int32)ny, (Int32)nz); + Delegates.glNormalStream3iATI((OpenTK.Graphics.All)stream, (Int32)nx, (Int32)ny, (Int32)nz); } public static - void NormalStream3(OpenTK.Graphics.OpenGL.All stream, Int32[] coords) + void NormalStream3(OpenTK.Graphics.All stream, Int32[] coords) { unsafe { fixed (Int32* coords_ptr = coords) { - Delegates.glNormalStream3ivATI((OpenTK.Graphics.OpenGL.All)stream, (Int32*)coords_ptr); + Delegates.glNormalStream3ivATI((OpenTK.Graphics.All)stream, (Int32*)coords_ptr); } } } public static - void NormalStream3(OpenTK.Graphics.OpenGL.All stream, ref Int32 coords) + void NormalStream3(OpenTK.Graphics.All stream, ref Int32 coords) { unsafe { fixed (Int32* coords_ptr = &coords) { - Delegates.glNormalStream3ivATI((OpenTK.Graphics.OpenGL.All)stream, (Int32*)coords_ptr); + Delegates.glNormalStream3ivATI((OpenTK.Graphics.All)stream, (Int32*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void NormalStream3(OpenTK.Graphics.OpenGL.All stream, Int32* coords) + unsafe void NormalStream3(OpenTK.Graphics.All stream, Int32* coords) { - Delegates.glNormalStream3ivATI((OpenTK.Graphics.OpenGL.All)stream, (Int32*)coords); + Delegates.glNormalStream3ivATI((OpenTK.Graphics.All)stream, (Int32*)coords); } public static - void NormalStream3(OpenTK.Graphics.OpenGL.All stream, Single nx, Single ny, Single nz) + void NormalStream3(OpenTK.Graphics.All stream, Single nx, Single ny, Single nz) { - Delegates.glNormalStream3fATI((OpenTK.Graphics.OpenGL.All)stream, (Single)nx, (Single)ny, (Single)nz); + Delegates.glNormalStream3fATI((OpenTK.Graphics.All)stream, (Single)nx, (Single)ny, (Single)nz); } public static - void NormalStream3(OpenTK.Graphics.OpenGL.All stream, Single[] coords) + void NormalStream3(OpenTK.Graphics.All stream, Single[] coords) { unsafe { fixed (Single* coords_ptr = coords) { - Delegates.glNormalStream3fvATI((OpenTK.Graphics.OpenGL.All)stream, (Single*)coords_ptr); + Delegates.glNormalStream3fvATI((OpenTK.Graphics.All)stream, (Single*)coords_ptr); } } } public static - void NormalStream3(OpenTK.Graphics.OpenGL.All stream, ref Single coords) + void NormalStream3(OpenTK.Graphics.All stream, ref Single coords) { unsafe { fixed (Single* coords_ptr = &coords) { - Delegates.glNormalStream3fvATI((OpenTK.Graphics.OpenGL.All)stream, (Single*)coords_ptr); + Delegates.glNormalStream3fvATI((OpenTK.Graphics.All)stream, (Single*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void NormalStream3(OpenTK.Graphics.OpenGL.All stream, Single* coords) + unsafe void NormalStream3(OpenTK.Graphics.All stream, Single* coords) { - Delegates.glNormalStream3fvATI((OpenTK.Graphics.OpenGL.All)stream, (Single*)coords); + Delegates.glNormalStream3fvATI((OpenTK.Graphics.All)stream, (Single*)coords); } public static - void NormalStream3(OpenTK.Graphics.OpenGL.All stream, Double nx, Double ny, Double nz) + void NormalStream3(OpenTK.Graphics.All stream, Double nx, Double ny, Double nz) { - Delegates.glNormalStream3dATI((OpenTK.Graphics.OpenGL.All)stream, (Double)nx, (Double)ny, (Double)nz); + Delegates.glNormalStream3dATI((OpenTK.Graphics.All)stream, (Double)nx, (Double)ny, (Double)nz); } public static - void NormalStream3(OpenTK.Graphics.OpenGL.All stream, Double[] coords) + void NormalStream3(OpenTK.Graphics.All stream, Double[] coords) { unsafe { fixed (Double* coords_ptr = coords) { - Delegates.glNormalStream3dvATI((OpenTK.Graphics.OpenGL.All)stream, (Double*)coords_ptr); + Delegates.glNormalStream3dvATI((OpenTK.Graphics.All)stream, (Double*)coords_ptr); } } } public static - void NormalStream3(OpenTK.Graphics.OpenGL.All stream, ref Double coords) + void NormalStream3(OpenTK.Graphics.All stream, ref Double coords) { unsafe { fixed (Double* coords_ptr = &coords) { - Delegates.glNormalStream3dvATI((OpenTK.Graphics.OpenGL.All)stream, (Double*)coords_ptr); + Delegates.glNormalStream3dvATI((OpenTK.Graphics.All)stream, (Double*)coords_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void NormalStream3(OpenTK.Graphics.OpenGL.All stream, Double* coords) + unsafe void NormalStream3(OpenTK.Graphics.All stream, Double* coords) { - Delegates.glNormalStream3dvATI((OpenTK.Graphics.OpenGL.All)stream, (Double*)coords); + Delegates.glNormalStream3dvATI((OpenTK.Graphics.All)stream, (Double*)coords); } public static - void ClientActiveVertexStream(OpenTK.Graphics.OpenGL.All stream) + void ClientActiveVertexStream(OpenTK.Graphics.All stream) { - Delegates.glClientActiveVertexStreamATI((OpenTK.Graphics.OpenGL.All)stream); + Delegates.glClientActiveVertexStreamATI((OpenTK.Graphics.All)stream); } public static - void VertexBlendEnv(OpenTK.Graphics.OpenGL.All pname, Int32 param) + void VertexBlendEnv(OpenTK.Graphics.All pname, Int32 param) { - Delegates.glVertexBlendEnviATI((OpenTK.Graphics.OpenGL.All)pname, (Int32)param); + Delegates.glVertexBlendEnviATI((OpenTK.Graphics.All)pname, (Int32)param); } public static - void VertexBlendEnv(OpenTK.Graphics.OpenGL.All pname, Single param) + void VertexBlendEnv(OpenTK.Graphics.All pname, Single param) { - Delegates.glVertexBlendEnvfATI((OpenTK.Graphics.OpenGL.All)pname, (Single)param); + Delegates.glVertexBlendEnvfATI((OpenTK.Graphics.All)pname, (Single)param); } public static - void ElementPointer(OpenTK.Graphics.OpenGL.All type, IntPtr pointer) + void ElementPointer(OpenTK.Graphics.All type, IntPtr pointer) { unsafe { - Delegates.glElementPointerATI((OpenTK.Graphics.OpenGL.All)type, (IntPtr)pointer); + Delegates.glElementPointerATI((OpenTK.Graphics.All)type, (IntPtr)pointer); } } public static - void ElementPointer(OpenTK.Graphics.OpenGL.All type, [In, Out] object pointer) + void ElementPointer(OpenTK.Graphics.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.Graphics.OpenGL.All)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glElementPointerATI((OpenTK.Graphics.All)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -39727,53 +39727,53 @@ namespace OpenTK.Graphics.OpenGL } public static - void DrawElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count) + void DrawElementArray(OpenTK.Graphics.BeginMode mode, Int32 count) { - Delegates.glDrawElementArrayATI((OpenTK.Graphics.OpenGL.BeginMode)mode, (Int32)count); + Delegates.glDrawElementArrayATI((OpenTK.Graphics.BeginMode)mode, (Int32)count); } [System.CLSCompliant(false)] public static - void DrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count) + void DrawRangeElementArray(OpenTK.Graphics.BeginMode mode, UInt32 start, UInt32 end, Int32 count) { - Delegates.glDrawRangeElementArrayATI((OpenTK.Graphics.OpenGL.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count); + Delegates.glDrawRangeElementArrayATI((OpenTK.Graphics.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count); } public static - void DrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count) + void DrawRangeElementArray(OpenTK.Graphics.BeginMode mode, Int32 start, Int32 end, Int32 count) { - Delegates.glDrawRangeElementArrayATI((OpenTK.Graphics.OpenGL.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count); + Delegates.glDrawRangeElementArrayATI((OpenTK.Graphics.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count); } public static - void DrawBuffers(Int32 n, OpenTK.Graphics.OpenGL.All[] bufs) + void DrawBuffers(Int32 n, OpenTK.Graphics.All[] bufs) { unsafe { - fixed (OpenTK.Graphics.OpenGL.All* bufs_ptr = bufs) + fixed (OpenTK.Graphics.All* bufs_ptr = bufs) { - Delegates.glDrawBuffersATI((Int32)n, (OpenTK.Graphics.OpenGL.All*)bufs_ptr); + Delegates.glDrawBuffersATI((Int32)n, (OpenTK.Graphics.All*)bufs_ptr); } } } public static - void DrawBuffers(Int32 n, ref OpenTK.Graphics.OpenGL.All bufs) + void DrawBuffers(Int32 n, ref OpenTK.Graphics.All bufs) { unsafe { - fixed (OpenTK.Graphics.OpenGL.All* bufs_ptr = &bufs) + fixed (OpenTK.Graphics.All* bufs_ptr = &bufs) { - Delegates.glDrawBuffersATI((Int32)n, (OpenTK.Graphics.OpenGL.All*)bufs_ptr); + Delegates.glDrawBuffersATI((Int32)n, (OpenTK.Graphics.All*)bufs_ptr); } } } [System.CLSCompliant(false)] public static - unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.OpenGL.All* bufs) + unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.All* bufs) { - Delegates.glDrawBuffersATI((Int32)n, (OpenTK.Graphics.OpenGL.All*)bufs); + Delegates.glDrawBuffersATI((Int32)n, (OpenTK.Graphics.All*)bufs); } [System.CLSCompliant(false)] @@ -39804,84 +39804,84 @@ namespace OpenTK.Graphics.OpenGL } public static - void StencilOpSeparate(OpenTK.Graphics.OpenGL.All face, OpenTK.Graphics.OpenGL.StencilOp sfail, OpenTK.Graphics.OpenGL.StencilOp dpfail, OpenTK.Graphics.OpenGL.StencilOp dppass) + void StencilOpSeparate(OpenTK.Graphics.All face, OpenTK.Graphics.StencilOp sfail, OpenTK.Graphics.StencilOp dpfail, OpenTK.Graphics.StencilOp dppass) { - Delegates.glStencilOpSeparateATI((OpenTK.Graphics.OpenGL.All)face, (OpenTK.Graphics.OpenGL.StencilOp)sfail, (OpenTK.Graphics.OpenGL.StencilOp)dpfail, (OpenTK.Graphics.OpenGL.StencilOp)dppass); + Delegates.glStencilOpSeparateATI((OpenTK.Graphics.All)face, (OpenTK.Graphics.StencilOp)sfail, (OpenTK.Graphics.StencilOp)dpfail, (OpenTK.Graphics.StencilOp)dppass); } [System.CLSCompliant(false)] public static - void StencilFuncSeparate(OpenTK.Graphics.OpenGL.StencilFunction frontfunc, OpenTK.Graphics.OpenGL.StencilFunction backfunc, Int32 @ref, UInt32 mask) + void StencilFuncSeparate(OpenTK.Graphics.StencilFunction frontfunc, OpenTK.Graphics.StencilFunction backfunc, Int32 @ref, UInt32 mask) { - Delegates.glStencilFuncSeparateATI((OpenTK.Graphics.OpenGL.StencilFunction)frontfunc, (OpenTK.Graphics.OpenGL.StencilFunction)backfunc, (Int32)@ref, (UInt32)mask); + Delegates.glStencilFuncSeparateATI((OpenTK.Graphics.StencilFunction)frontfunc, (OpenTK.Graphics.StencilFunction)backfunc, (Int32)@ref, (UInt32)mask); } public static - void StencilFuncSeparate(OpenTK.Graphics.OpenGL.StencilFunction frontfunc, OpenTK.Graphics.OpenGL.StencilFunction backfunc, Int32 @ref, Int32 mask) + void StencilFuncSeparate(OpenTK.Graphics.StencilFunction frontfunc, OpenTK.Graphics.StencilFunction backfunc, Int32 @ref, Int32 mask) { - Delegates.glStencilFuncSeparateATI((OpenTK.Graphics.OpenGL.StencilFunction)frontfunc, (OpenTK.Graphics.OpenGL.StencilFunction)backfunc, (Int32)@ref, (UInt32)mask); + Delegates.glStencilFuncSeparateATI((OpenTK.Graphics.StencilFunction)frontfunc, (OpenTK.Graphics.StencilFunction)backfunc, (Int32)@ref, (UInt32)mask); } [System.CLSCompliant(false)] public static - void VertexAttribArrayObject(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.All type, bool normalized, Int32 stride, UInt32 buffer, UInt32 offset) + void VertexAttribArrayObject(UInt32 index, Int32 size, OpenTK.Graphics.All type, bool normalized, Int32 stride, UInt32 buffer, UInt32 offset) { - Delegates.glVertexAttribArrayObjectATI((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.All)type, (bool)normalized, (Int32)stride, (UInt32)buffer, (UInt32)offset); + Delegates.glVertexAttribArrayObjectATI((UInt32)index, (Int32)size, (OpenTK.Graphics.All)type, (bool)normalized, (Int32)stride, (UInt32)buffer, (UInt32)offset); } public static - void VertexAttribArrayObject(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.All type, bool normalized, Int32 stride, Int32 buffer, Int32 offset) + void VertexAttribArrayObject(Int32 index, Int32 size, OpenTK.Graphics.All type, bool normalized, Int32 stride, Int32 buffer, Int32 offset) { - Delegates.glVertexAttribArrayObjectATI((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.All)type, (bool)normalized, (Int32)stride, (UInt32)buffer, (UInt32)offset); + Delegates.glVertexAttribArrayObjectATI((UInt32)index, (Int32)size, (OpenTK.Graphics.All)type, (bool)normalized, (Int32)stride, (UInt32)buffer, (UInt32)offset); } [System.CLSCompliant(false)] public static - void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Single[] @params) + void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } public static - void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Single[] @params) + void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.All pname, [Out] Single[] @params) { unsafe { fixed (Single* @params_ptr = @params) { - Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] out Single @params) + void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } } public static - void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.OpenGL.All pname, [Out] out Single @params) + void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.All pname, [Out] out Single @params) { unsafe { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params_ptr); + Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params_ptr); @params = *@params_ptr; } } @@ -39889,65 +39889,65 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params) + unsafe void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.All pname, [Out] Single* @params) { - Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params) + unsafe void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.All pname, [Out] Single* @params) { - Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Single*)@params); + Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params); } [System.CLSCompliant(false)] public static - void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } public static - void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Int32[] @params) + void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.All pname, [Out] Int32[] @params) { unsafe { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); } } } [System.CLSCompliant(false)] public static - void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } } public static - void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.OpenGL.All pname, [Out] out Int32 @params) + void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.All pname, [Out] out Int32 @params) { unsafe { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr); @params = *@params_ptr; } } @@ -39955,16 +39955,16 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params); } [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params) + unsafe void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.All pname, [Out] Int32* @params) { - Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params); } } @@ -39972,23 +39972,23 @@ namespace OpenTK.Graphics.OpenGL public static partial class Apple { public static - void ElementPointer(OpenTK.Graphics.OpenGL.All type, IntPtr pointer) + void ElementPointer(OpenTK.Graphics.All type, IntPtr pointer) { unsafe { - Delegates.glElementPointerAPPLE((OpenTK.Graphics.OpenGL.All)type, (IntPtr)pointer); + Delegates.glElementPointerAPPLE((OpenTK.Graphics.All)type, (IntPtr)pointer); } } public static - void ElementPointer(OpenTK.Graphics.OpenGL.All type, [In, Out] object pointer) + void ElementPointer(OpenTK.Graphics.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.Graphics.OpenGL.All)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Delegates.glElementPointerAPPLE((OpenTK.Graphics.All)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -39998,123 +39998,123 @@ namespace OpenTK.Graphics.OpenGL } public static - void DrawElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 first, Int32 count) + void DrawElementArray(OpenTK.Graphics.BeginMode mode, Int32 first, Int32 count) { - Delegates.glDrawElementArrayAPPLE((OpenTK.Graphics.OpenGL.BeginMode)mode, (Int32)first, (Int32)count); + Delegates.glDrawElementArrayAPPLE((OpenTK.Graphics.BeginMode)mode, (Int32)first, (Int32)count); } [System.CLSCompliant(false)] public static - void DrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 first, Int32 count) + void DrawRangeElementArray(OpenTK.Graphics.BeginMode mode, UInt32 start, UInt32 end, Int32 first, Int32 count) { - Delegates.glDrawRangeElementArrayAPPLE((OpenTK.Graphics.OpenGL.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)first, (Int32)count); + Delegates.glDrawRangeElementArrayAPPLE((OpenTK.Graphics.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)first, (Int32)count); } public static - void DrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 first, Int32 count) + void DrawRangeElementArray(OpenTK.Graphics.BeginMode mode, Int32 start, Int32 end, Int32 first, Int32 count) { - Delegates.glDrawRangeElementArrayAPPLE((OpenTK.Graphics.OpenGL.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)first, (Int32)count); + Delegates.glDrawRangeElementArrayAPPLE((OpenTK.Graphics.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)first, (Int32)count); } public static - void MultiDrawElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32[] first, Int32[] count, Int32 primcount) + void MultiDrawElementArray(OpenTK.Graphics.BeginMode mode, Int32[] first, Int32[] count, Int32 primcount) { unsafe { fixed (Int32* first_ptr = first) fixed (Int32* count_ptr = count) { - Delegates.glMultiDrawElementArrayAPPLE((OpenTK.Graphics.OpenGL.BeginMode)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + Delegates.glMultiDrawElementArrayAPPLE((OpenTK.Graphics.BeginMode)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); } } } public static - void MultiDrawElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 first, ref Int32 count, Int32 primcount) + void MultiDrawElementArray(OpenTK.Graphics.BeginMode mode, ref Int32 first, ref Int32 count, Int32 primcount) { unsafe { fixed (Int32* first_ptr = &first) fixed (Int32* count_ptr = &count) { - Delegates.glMultiDrawElementArrayAPPLE((OpenTK.Graphics.OpenGL.BeginMode)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + Delegates.glMultiDrawElementArrayAPPLE((OpenTK.Graphics.BeginMode)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); } } } [System.CLSCompliant(false)] public static - unsafe void MultiDrawElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32* first, Int32* count, Int32 primcount) + unsafe void MultiDrawElementArray(OpenTK.Graphics.BeginMode mode, Int32* first, Int32* count, Int32 primcount) { - Delegates.glMultiDrawElementArrayAPPLE((OpenTK.Graphics.OpenGL.BeginMode)mode, (Int32*)first, (Int32*)count, (Int32)primcount); + Delegates.glMultiDrawElementArrayAPPLE((OpenTK.Graphics.BeginMode)mode, (Int32*)first, (Int32*)count, (Int32)primcount); } [System.CLSCompliant(false)] public static - void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32[] first, Int32[] count, Int32 primcount) + void MultiDrawRangeElementArray(OpenTK.Graphics.BeginMode mode, UInt32 start, UInt32 end, Int32[] first, Int32[] count, Int32 primcount) { unsafe { fixed (Int32* first_ptr = first) fixed (Int32* count_ptr = count) { - Delegates.glMultiDrawRangeElementArrayAPPLE((OpenTK.Graphics.OpenGL.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + Delegates.glMultiDrawRangeElementArrayAPPLE((OpenTK.Graphics.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); } } } public static - void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32[] first, Int32[] count, Int32 primcount) + void MultiDrawRangeElementArray(OpenTK.Graphics.BeginMode mode, Int32 start, Int32 end, Int32[] first, Int32[] count, Int32 primcount) { unsafe { fixed (Int32* first_ptr = first) fixed (Int32* count_ptr = count) { - Delegates.glMultiDrawRangeElementArrayAPPLE((OpenTK.Graphics.OpenGL.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + Delegates.glMultiDrawRangeElementArrayAPPLE((OpenTK.Graphics.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); } } } [System.CLSCompliant(false)] public static - void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, ref Int32 first, ref Int32 count, Int32 primcount) + void MultiDrawRangeElementArray(OpenTK.Graphics.BeginMode mode, UInt32 start, UInt32 end, ref Int32 first, ref Int32 count, Int32 primcount) { unsafe { fixed (Int32* first_ptr = &first) fixed (Int32* count_ptr = &count) { - Delegates.glMultiDrawRangeElementArrayAPPLE((OpenTK.Graphics.OpenGL.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + Delegates.glMultiDrawRangeElementArrayAPPLE((OpenTK.Graphics.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); } } } public static - void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, ref Int32 first, ref Int32 count, Int32 primcount) + void MultiDrawRangeElementArray(OpenTK.Graphics.BeginMode mode, Int32 start, Int32 end, ref Int32 first, ref Int32 count, Int32 primcount) { unsafe { fixed (Int32* first_ptr = &first) fixed (Int32* count_ptr = &count) { - Delegates.glMultiDrawRangeElementArrayAPPLE((OpenTK.Graphics.OpenGL.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + Delegates.glMultiDrawRangeElementArrayAPPLE((OpenTK.Graphics.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); } } } [System.CLSCompliant(false)] public static - unsafe void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32* first, Int32* count, Int32 primcount) + unsafe void MultiDrawRangeElementArray(OpenTK.Graphics.BeginMode mode, UInt32 start, UInt32 end, Int32* first, Int32* count, Int32 primcount) { - Delegates.glMultiDrawRangeElementArrayAPPLE((OpenTK.Graphics.OpenGL.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32*)first, (Int32*)count, (Int32)primcount); + Delegates.glMultiDrawRangeElementArrayAPPLE((OpenTK.Graphics.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32*)first, (Int32*)count, (Int32)primcount); } [System.CLSCompliant(false)] public static - unsafe void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32* first, Int32* count, Int32 primcount) + unsafe void MultiDrawRangeElementArray(OpenTK.Graphics.BeginMode mode, Int32 start, Int32 end, Int32* first, Int32* count, Int32 primcount) { - Delegates.glMultiDrawRangeElementArrayAPPLE((OpenTK.Graphics.OpenGL.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32*)first, (Int32*)count, (Int32)primcount); + Delegates.glMultiDrawRangeElementArrayAPPLE((OpenTK.Graphics.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32*)first, (Int32*)count, (Int32)primcount); } [System.CLSCompliant(false)] @@ -40301,21 +40301,21 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - bool TestObject(OpenTK.Graphics.OpenGL.All @object, UInt32 name) + bool TestObject(OpenTK.Graphics.All @object, UInt32 name) { - return Delegates.glTestObjectAPPLE((OpenTK.Graphics.OpenGL.All)@object, (UInt32)name); + return Delegates.glTestObjectAPPLE((OpenTK.Graphics.All)@object, (UInt32)name); } public static - bool TestObject(OpenTK.Graphics.OpenGL.All @object, Int32 name) + bool TestObject(OpenTK.Graphics.All @object, Int32 name) { - return Delegates.glTestObjectAPPLE((OpenTK.Graphics.OpenGL.All)@object, (UInt32)name); + return Delegates.glTestObjectAPPLE((OpenTK.Graphics.All)@object, (UInt32)name); } public static - void FinishObject(OpenTK.Graphics.OpenGL.All @object, Int32 name) + void FinishObject(OpenTK.Graphics.All @object, Int32 name) { - Delegates.glFinishObjectAPPLE((OpenTK.Graphics.OpenGL.All)@object, (Int32)name); + Delegates.glFinishObjectAPPLE((OpenTK.Graphics.All)@object, (Int32)name); } [System.CLSCompliant(false)] @@ -40527,21 +40527,21 @@ namespace OpenTK.Graphics.OpenGL } public static - void VertexArrayParameter(OpenTK.Graphics.OpenGL.All pname, Int32 param) + void VertexArrayParameter(OpenTK.Graphics.All pname, Int32 param) { - Delegates.glVertexArrayParameteriAPPLE((OpenTK.Graphics.OpenGL.All)pname, (Int32)param); + Delegates.glVertexArrayParameteriAPPLE((OpenTK.Graphics.All)pname, (Int32)param); } public static - void BufferParameter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Int32 param) + void BufferParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32 param) { - Delegates.glBufferParameteriAPPLE((OpenTK.Graphics.OpenGL.All)target, (OpenTK.Graphics.OpenGL.All)pname, (Int32)param); + Delegates.glBufferParameteriAPPLE((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32)param); } public static - void FlushMappedBufferRange(OpenTK.Graphics.OpenGL.All target, IntPtr offset, IntPtr size) + void FlushMappedBufferRange(OpenTK.Graphics.All target, IntPtr offset, IntPtr size) { - Delegates.glFlushMappedBufferRangeAPPLE((OpenTK.Graphics.OpenGL.All)target, (IntPtr)offset, (IntPtr)size); + Delegates.glFlushMappedBufferRangeAPPLE((OpenTK.Graphics.All)target, (IntPtr)offset, (IntPtr)size); } } diff --git a/Source/OpenTK/Graphics/OpenGL/GL/GLCore.cs b/Source/OpenTK/Graphics/GL/GLCore.cs similarity index 86% rename from Source/OpenTK/Graphics/OpenGL/GL/GLCore.cs rename to Source/OpenTK/Graphics/GL/GLCore.cs index 960cd836..00d571de 100644 --- a/Source/OpenTK/Graphics/OpenGL/GL/GLCore.cs +++ b/Source/OpenTK/Graphics/GL/GLCore.cs @@ -1,4 +1,4 @@ -namespace OpenTK.Graphics.OpenGL +namespace OpenTK.Graphics { using System; using System.Runtime.InteropServices; @@ -13,7 +13,7 @@ namespace OpenTK.Graphics.OpenGL [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNewList", ExactSpelling = true)] - internal extern static void NewList(UInt32 list, OpenTK.Graphics.OpenGL.ListMode mode); + internal extern static void NewList(UInt32 list, OpenTK.Graphics.ListMode mode); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEndList", ExactSpelling = true)] internal extern static void EndList(); @@ -22,7 +22,7 @@ namespace OpenTK.Graphics.OpenGL internal extern static void CallList(UInt32 list); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCallLists", ExactSpelling = true)] - internal extern static void CallLists(Int32 n, OpenTK.Graphics.OpenGL.ListNameType type, IntPtr lists); + internal extern static void CallLists(Int32 n, OpenTK.Graphics.ListNameType type, IntPtr lists); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteLists", ExactSpelling = true)] internal extern static void DeleteLists(UInt32 list, Int32 range); @@ -34,7 +34,7 @@ namespace OpenTK.Graphics.OpenGL internal extern static void ListBase(UInt32 @base); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBegin", ExactSpelling = true)] - internal extern static void Begin(OpenTK.Graphics.OpenGL.BeginMode mode); + internal extern static void Begin(OpenTK.Graphics.BeginMode mode); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBitmap", ExactSpelling = true)] internal extern static unsafe void Bitmap(Int32 width, Int32 height, Single xorig, Single yorig, Single xmove, Single ymove, Byte* bitmap); @@ -463,55 +463,55 @@ namespace OpenTK.Graphics.OpenGL internal extern static unsafe void Vertex4sv(Int16* v); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClipPlane", ExactSpelling = true)] - internal extern static unsafe void ClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, Double* equation); + internal extern static unsafe void ClipPlane(OpenTK.Graphics.ClipPlaneName plane, Double* equation); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorMaterial", ExactSpelling = true)] - internal extern static void ColorMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.ColorMaterialParameter mode); + internal extern static void ColorMaterial(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.ColorMaterialParameter mode); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCullFace", ExactSpelling = true)] - internal extern static void CullFace(OpenTK.Graphics.OpenGL.CullFaceMode mode); + internal extern static void CullFace(OpenTK.Graphics.CullFaceMode mode); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFogf", ExactSpelling = true)] - internal extern static void Fogf(OpenTK.Graphics.OpenGL.FogParameter pname, Single param); + internal extern static void Fogf(OpenTK.Graphics.FogParameter pname, Single param); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFogfv", ExactSpelling = true)] - internal extern static unsafe void Fogfv(OpenTK.Graphics.OpenGL.FogParameter pname, Single* @params); + internal extern static unsafe void Fogfv(OpenTK.Graphics.FogParameter pname, Single* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFogi", ExactSpelling = true)] - internal extern static void Fogi(OpenTK.Graphics.OpenGL.FogParameter pname, Int32 param); + internal extern static void Fogi(OpenTK.Graphics.FogParameter pname, Int32 param); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFogiv", ExactSpelling = true)] - internal extern static unsafe void Fogiv(OpenTK.Graphics.OpenGL.FogParameter pname, Int32* @params); + internal extern static unsafe void Fogiv(OpenTK.Graphics.FogParameter pname, Int32* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFrontFace", ExactSpelling = true)] - internal extern static void FrontFace(OpenTK.Graphics.OpenGL.FrontFaceDirection mode); + internal extern static void FrontFace(OpenTK.Graphics.FrontFaceDirection mode); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glHint", ExactSpelling = true)] - internal extern static void Hint(OpenTK.Graphics.OpenGL.HintTarget target, OpenTK.Graphics.OpenGL.HintMode mode); + internal extern static void Hint(OpenTK.Graphics.HintTarget target, OpenTK.Graphics.HintMode mode); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLightf", ExactSpelling = true)] - internal extern static void Lightf(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, Single param); + internal extern static void Lightf(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, Single param); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLightfv", ExactSpelling = true)] - internal extern static unsafe void Lightfv(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, Single* @params); + internal extern static unsafe void Lightfv(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, Single* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLighti", ExactSpelling = true)] - internal extern static void Lighti(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, Int32 param); + internal extern static void Lighti(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, Int32 param); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLightiv", ExactSpelling = true)] - internal extern static unsafe void Lightiv(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, Int32* @params); + internal extern static unsafe void Lightiv(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, Int32* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLightModelf", ExactSpelling = true)] - internal extern static void LightModelf(OpenTK.Graphics.OpenGL.LightModelParameter pname, Single param); + internal extern static void LightModelf(OpenTK.Graphics.LightModelParameter pname, Single param); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLightModelfv", ExactSpelling = true)] - internal extern static unsafe void LightModelfv(OpenTK.Graphics.OpenGL.LightModelParameter pname, Single* @params); + internal extern static unsafe void LightModelfv(OpenTK.Graphics.LightModelParameter pname, Single* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLightModeli", ExactSpelling = true)] - internal extern static void LightModeli(OpenTK.Graphics.OpenGL.LightModelParameter pname, Int32 param); + internal extern static void LightModeli(OpenTK.Graphics.LightModelParameter pname, Int32 param); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLightModeliv", ExactSpelling = true)] - internal extern static unsafe void LightModeliv(OpenTK.Graphics.OpenGL.LightModelParameter pname, Int32* @params); + internal extern static unsafe void LightModeliv(OpenTK.Graphics.LightModelParameter pname, Int32* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLineStipple", ExactSpelling = true)] internal extern static void LineStipple(Int32 factor, UInt16 pattern); @@ -520,22 +520,22 @@ namespace OpenTK.Graphics.OpenGL internal extern static void LineWidth(Single width); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMaterialf", ExactSpelling = true)] - internal extern static void Materialf(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Single param); + internal extern static void Materialf(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, Single param); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMaterialfv", ExactSpelling = true)] - internal extern static unsafe void Materialfv(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Single* @params); + internal extern static unsafe void Materialfv(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, Single* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMateriali", ExactSpelling = true)] - internal extern static void Materiali(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Int32 param); + internal extern static void Materiali(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, Int32 param); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMaterialiv", ExactSpelling = true)] - internal extern static unsafe void Materialiv(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Int32* @params); + internal extern static unsafe void Materialiv(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, Int32* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPointSize", ExactSpelling = true)] internal extern static void PointSize(Single size); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPolygonMode", ExactSpelling = true)] - internal extern static void PolygonMode(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.PolygonMode mode); + internal extern static void PolygonMode(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.PolygonMode mode); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPolygonStipple", ExactSpelling = true)] internal extern static unsafe void PolygonStipple(Byte* mask); @@ -544,64 +544,64 @@ namespace OpenTK.Graphics.OpenGL internal extern static void Scissor(Int32 x, Int32 y, Int32 width, Int32 height); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glShadeModel", ExactSpelling = true)] - internal extern static void ShadeModel(OpenTK.Graphics.OpenGL.ShadingModel mode); + internal extern static void ShadeModel(OpenTK.Graphics.ShadingModel mode); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexParameterf", ExactSpelling = true)] - internal extern static void TexParameterf(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single param); + internal extern static void TexParameterf(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Single param); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexParameterfv", ExactSpelling = true)] - internal extern static unsafe void TexParameterfv(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single* @params); + internal extern static unsafe void TexParameterfv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Single* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexParameteri", ExactSpelling = true)] - internal extern static void TexParameteri(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32 param); + internal extern static void TexParameteri(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32 param); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexParameteriv", ExactSpelling = true)] - internal extern static unsafe void TexParameteriv(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32* @params); + internal extern static unsafe void TexParameteriv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexImage1D", ExactSpelling = true)] - internal extern static void TexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels); + internal extern static void TexImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexImage2D", ExactSpelling = true)] - internal extern static void TexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels); + internal extern static void TexImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexEnvf", ExactSpelling = true)] - internal extern static void TexEnvf(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Single param); + internal extern static void TexEnvf(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, Single param); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexEnvfv", ExactSpelling = true)] - internal extern static unsafe void TexEnvfv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Single* @params); + internal extern static unsafe void TexEnvfv(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, Single* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexEnvi", ExactSpelling = true)] - internal extern static void TexEnvi(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Int32 param); + internal extern static void TexEnvi(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, Int32 param); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexEnviv", ExactSpelling = true)] - internal extern static unsafe void TexEnviv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Int32* @params); + internal extern static unsafe void TexEnviv(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, Int32* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexGend", ExactSpelling = true)] - internal extern static void TexGend(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Double param); + internal extern static void TexGend(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Double param); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexGendv", ExactSpelling = true)] - internal extern static unsafe void TexGendv(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Double* @params); + internal extern static unsafe void TexGendv(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Double* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexGenf", ExactSpelling = true)] - internal extern static void TexGenf(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Single param); + internal extern static void TexGenf(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Single param); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexGenfv", ExactSpelling = true)] - internal extern static unsafe void TexGenfv(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Single* @params); + internal extern static unsafe void TexGenfv(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Single* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexGeni", ExactSpelling = true)] - internal extern static void TexGeni(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Int32 param); + internal extern static void TexGeni(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Int32 param); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexGeniv", ExactSpelling = true)] - internal extern static unsafe void TexGeniv(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Int32* @params); + internal extern static unsafe void TexGeniv(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Int32* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFeedbackBuffer", ExactSpelling = true)] - internal extern static unsafe void FeedbackBuffer(Int32 size, OpenTK.Graphics.OpenGL.FeedbackType type, [Out] Single* buffer); + internal extern static unsafe void FeedbackBuffer(Int32 size, OpenTK.Graphics.FeedbackType type, [Out] Single* buffer); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSelectBuffer", ExactSpelling = true)] internal extern static unsafe void SelectBuffer(Int32 size, [Out] UInt32* buffer); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRenderMode", ExactSpelling = true)] - internal extern static Int32 RenderMode(OpenTK.Graphics.OpenGL.RenderingMode mode); + internal extern static Int32 RenderMode(OpenTK.Graphics.RenderingMode mode); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glInitNames", ExactSpelling = true)] internal extern static void InitNames(); @@ -619,10 +619,10 @@ namespace OpenTK.Graphics.OpenGL internal extern static void PushName(UInt32 name); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawBuffer", ExactSpelling = true)] - internal extern static void DrawBuffer(OpenTK.Graphics.OpenGL.DrawBufferMode mode); + internal extern static void DrawBuffer(OpenTK.Graphics.DrawBufferMode mode); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClear", ExactSpelling = true)] - internal extern static void Clear(OpenTK.Graphics.OpenGL.ClearBufferMask mask); + internal extern static void Clear(OpenTK.Graphics.ClearBufferMask mask); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClearAccum", ExactSpelling = true)] internal extern static void ClearAccum(Single red, Single green, Single blue, Single alpha); @@ -652,13 +652,13 @@ namespace OpenTK.Graphics.OpenGL internal extern static void IndexMask(UInt32 mask); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glAccum", ExactSpelling = true)] - internal extern static void Accum(OpenTK.Graphics.OpenGL.AccumOp op, Single value); + internal extern static void Accum(OpenTK.Graphics.AccumOp op, Single value); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDisable", ExactSpelling = true)] - internal extern static void Disable(OpenTK.Graphics.OpenGL.EnableCap cap); + internal extern static void Disable(OpenTK.Graphics.EnableCap cap); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEnable", ExactSpelling = true)] - internal extern static void Enable(OpenTK.Graphics.OpenGL.EnableCap cap); + internal extern static void Enable(OpenTK.Graphics.EnableCap cap); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFinish", ExactSpelling = true)] internal extern static void Finish(); @@ -670,19 +670,19 @@ namespace OpenTK.Graphics.OpenGL internal extern static void PopAttrib(); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPushAttrib", ExactSpelling = true)] - internal extern static void PushAttrib(OpenTK.Graphics.OpenGL.AttribMask mask); + internal extern static void PushAttrib(OpenTK.Graphics.AttribMask mask); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMap1d", ExactSpelling = true)] - internal extern static unsafe void Map1d(OpenTK.Graphics.OpenGL.MapTarget target, Double u1, Double u2, Int32 stride, Int32 order, Double* points); + internal extern static unsafe void Map1d(OpenTK.Graphics.MapTarget target, Double u1, Double u2, Int32 stride, Int32 order, Double* points); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMap1f", ExactSpelling = true)] - internal extern static unsafe void Map1f(OpenTK.Graphics.OpenGL.MapTarget target, Single u1, Single u2, Int32 stride, Int32 order, Single* points); + internal extern static unsafe void Map1f(OpenTK.Graphics.MapTarget target, Single u1, Single u2, Int32 stride, Int32 order, Single* points); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMap2d", ExactSpelling = true)] - internal extern static unsafe void Map2d(OpenTK.Graphics.OpenGL.MapTarget target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double* points); + internal extern static unsafe void Map2d(OpenTK.Graphics.MapTarget target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double* points); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMap2f", ExactSpelling = true)] - internal extern static unsafe void Map2f(OpenTK.Graphics.OpenGL.MapTarget target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single* points); + internal extern static unsafe void Map2f(OpenTK.Graphics.MapTarget target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single* points); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMapGrid1d", ExactSpelling = true)] internal extern static void MapGrid1d(Int32 un, Double u1, Double u2); @@ -721,154 +721,154 @@ namespace OpenTK.Graphics.OpenGL internal extern static unsafe void EvalCoord2fv(Single* u); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEvalMesh1", ExactSpelling = true)] - internal extern static void EvalMesh1(OpenTK.Graphics.OpenGL.MeshMode1 mode, Int32 i1, Int32 i2); + internal extern static void EvalMesh1(OpenTK.Graphics.MeshMode1 mode, Int32 i1, Int32 i2); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEvalPoint1", ExactSpelling = true)] internal extern static void EvalPoint1(Int32 i); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEvalMesh2", ExactSpelling = true)] - internal extern static void EvalMesh2(OpenTK.Graphics.OpenGL.MeshMode2 mode, Int32 i1, Int32 i2, Int32 j1, Int32 j2); + internal extern static void EvalMesh2(OpenTK.Graphics.MeshMode2 mode, Int32 i1, Int32 i2, Int32 j1, Int32 j2); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEvalPoint2", ExactSpelling = true)] internal extern static void EvalPoint2(Int32 i, Int32 j); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glAlphaFunc", ExactSpelling = true)] - internal extern static void AlphaFunc(OpenTK.Graphics.OpenGL.AlphaFunction func, Single @ref); + internal extern static void AlphaFunc(OpenTK.Graphics.AlphaFunction func, Single @ref); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBlendFunc", ExactSpelling = true)] - internal extern static void BlendFunc(OpenTK.Graphics.OpenGL.BlendingFactorSrc sfactor, OpenTK.Graphics.OpenGL.BlendingFactorDest dfactor); + internal extern static void BlendFunc(OpenTK.Graphics.BlendingFactorSrc sfactor, OpenTK.Graphics.BlendingFactorDest dfactor); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLogicOp", ExactSpelling = true)] - internal extern static void LogicOp(OpenTK.Graphics.OpenGL.LogicOp opcode); + internal extern static void LogicOp(OpenTK.Graphics.LogicOp opcode); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glStencilFunc", ExactSpelling = true)] - internal extern static void StencilFunc(OpenTK.Graphics.OpenGL.StencilFunction func, Int32 @ref, UInt32 mask); + internal extern static void StencilFunc(OpenTK.Graphics.StencilFunction func, Int32 @ref, UInt32 mask); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glStencilOp", ExactSpelling = true)] - internal extern static void StencilOp(OpenTK.Graphics.OpenGL.StencilOp fail, OpenTK.Graphics.OpenGL.StencilOp zfail, OpenTK.Graphics.OpenGL.StencilOp zpass); + internal extern static void StencilOp(OpenTK.Graphics.StencilOp fail, OpenTK.Graphics.StencilOp zfail, OpenTK.Graphics.StencilOp zpass); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDepthFunc", ExactSpelling = true)] - internal extern static void DepthFunc(OpenTK.Graphics.OpenGL.DepthFunction func); + internal extern static void DepthFunc(OpenTK.Graphics.DepthFunction func); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPixelZoom", ExactSpelling = true)] internal extern static void PixelZoom(Single xfactor, Single yfactor); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPixelTransferf", ExactSpelling = true)] - internal extern static void PixelTransferf(OpenTK.Graphics.OpenGL.PixelTransferParameter pname, Single param); + internal extern static void PixelTransferf(OpenTK.Graphics.PixelTransferParameter pname, Single param); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPixelTransferi", ExactSpelling = true)] - internal extern static void PixelTransferi(OpenTK.Graphics.OpenGL.PixelTransferParameter pname, Int32 param); + internal extern static void PixelTransferi(OpenTK.Graphics.PixelTransferParameter pname, Int32 param); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPixelStoref", ExactSpelling = true)] - internal extern static void PixelStoref(OpenTK.Graphics.OpenGL.PixelStoreParameter pname, Single param); + internal extern static void PixelStoref(OpenTK.Graphics.PixelStoreParameter pname, Single param); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPixelStorei", ExactSpelling = true)] - internal extern static void PixelStorei(OpenTK.Graphics.OpenGL.PixelStoreParameter pname, Int32 param); + internal extern static void PixelStorei(OpenTK.Graphics.PixelStoreParameter pname, Int32 param); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPixelMapfv", ExactSpelling = true)] - internal extern static unsafe void PixelMapfv(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, Single* values); + internal extern static unsafe void PixelMapfv(OpenTK.Graphics.PixelMap map, Int32 mapsize, Single* values); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPixelMapuiv", ExactSpelling = true)] - internal extern static unsafe void PixelMapuiv(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, UInt32* values); + internal extern static unsafe void PixelMapuiv(OpenTK.Graphics.PixelMap map, Int32 mapsize, UInt32* values); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPixelMapusv", ExactSpelling = true)] - internal extern static unsafe void PixelMapusv(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, UInt16* values); + internal extern static unsafe void PixelMapusv(OpenTK.Graphics.PixelMap map, Int32 mapsize, UInt16* values); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glReadBuffer", ExactSpelling = true)] - internal extern static void ReadBuffer(OpenTK.Graphics.OpenGL.ReadBufferMode mode); + internal extern static void ReadBuffer(OpenTK.Graphics.ReadBufferMode mode); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyPixels", ExactSpelling = true)] - internal extern static void CopyPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelCopyType type); + internal extern static void CopyPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.PixelCopyType type); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glReadPixels", ExactSpelling = true)] - internal extern static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [Out] IntPtr pixels); + internal extern static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr pixels); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawPixels", ExactSpelling = true)] - internal extern static void DrawPixels(Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels); + internal extern static void DrawPixels(Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetClipPlane", ExactSpelling = true)] - internal extern static unsafe void GetClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [Out] Double* equation); + internal extern static unsafe void GetClipPlane(OpenTK.Graphics.ClipPlaneName plane, [Out] Double* equation); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetDoublev", ExactSpelling = true)] - internal extern static unsafe void GetDoublev(OpenTK.Graphics.OpenGL.GetPName pname, [Out] Double* @params); + internal extern static unsafe void GetDoublev(OpenTK.Graphics.GetPName pname, [Out] Double* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetError", ExactSpelling = true)] - internal extern static OpenTK.Graphics.OpenGL.ErrorCode GetError(); + internal extern static OpenTK.Graphics.ErrorCode GetError(); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetFloatv", ExactSpelling = true)] - internal extern static unsafe void GetFloatv(OpenTK.Graphics.OpenGL.GetPName pname, [Out] Single* @params); + internal extern static unsafe void GetFloatv(OpenTK.Graphics.GetPName pname, [Out] Single* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetIntegerv", ExactSpelling = true)] - internal extern static unsafe void GetIntegerv(OpenTK.Graphics.OpenGL.GetPName pname, [Out] Int32* @params); + internal extern static unsafe void GetIntegerv(OpenTK.Graphics.GetPName pname, [Out] Int32* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetLightfv", ExactSpelling = true)] - internal extern static unsafe void GetLightfv(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [Out] Single* @params); + internal extern static unsafe void GetLightfv(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, [Out] Single* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetLightiv", ExactSpelling = true)] - internal extern static unsafe void GetLightiv(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [Out] Int32* @params); + internal extern static unsafe void GetLightiv(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, [Out] Int32* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMapdv", ExactSpelling = true)] - internal extern static unsafe void GetMapdv(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [Out] Double* v); + internal extern static unsafe void GetMapdv(OpenTK.Graphics.MapTarget target, OpenTK.Graphics.GetMapQuery query, [Out] Double* v); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMapfv", ExactSpelling = true)] - internal extern static unsafe void GetMapfv(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [Out] Single* v); + internal extern static unsafe void GetMapfv(OpenTK.Graphics.MapTarget target, OpenTK.Graphics.GetMapQuery query, [Out] Single* v); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMapiv", ExactSpelling = true)] - internal extern static unsafe void GetMapiv(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [Out] Int32* v); + internal extern static unsafe void GetMapiv(OpenTK.Graphics.MapTarget target, OpenTK.Graphics.GetMapQuery query, [Out] Int32* v); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMaterialfv", ExactSpelling = true)] - internal extern static unsafe void GetMaterialfv(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [Out] Single* @params); + internal extern static unsafe void GetMaterialfv(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, [Out] Single* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMaterialiv", ExactSpelling = true)] - internal extern static unsafe void GetMaterialiv(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [Out] Int32* @params); + internal extern static unsafe void GetMaterialiv(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, [Out] Int32* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetPixelMapfv", ExactSpelling = true)] - internal extern static unsafe void GetPixelMapfv(OpenTK.Graphics.OpenGL.PixelMap map, [Out] Single* values); + internal extern static unsafe void GetPixelMapfv(OpenTK.Graphics.PixelMap map, [Out] Single* values); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetPixelMapuiv", ExactSpelling = true)] - internal extern static unsafe void GetPixelMapuiv(OpenTK.Graphics.OpenGL.PixelMap map, [Out] UInt32* values); + internal extern static unsafe void GetPixelMapuiv(OpenTK.Graphics.PixelMap map, [Out] UInt32* values); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetPixelMapusv", ExactSpelling = true)] - internal extern static unsafe void GetPixelMapusv(OpenTK.Graphics.OpenGL.PixelMap map, [Out] UInt16* values); + internal extern static unsafe void GetPixelMapusv(OpenTK.Graphics.PixelMap map, [Out] UInt16* values); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetPolygonStipple", ExactSpelling = true)] internal extern static unsafe void GetPolygonStipple([Out] Byte* mask); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetString", ExactSpelling = true)] - internal extern static IntPtr GetString(OpenTK.Graphics.OpenGL.StringName name); + internal extern static IntPtr GetString(OpenTK.Graphics.StringName name); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexEnvfv", ExactSpelling = true)] - internal extern static unsafe void GetTexEnvfv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [Out] Single* @params); + internal extern static unsafe void GetTexEnvfv(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, [Out] Single* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexEnviv", ExactSpelling = true)] - internal extern static unsafe void GetTexEnviv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [Out] Int32* @params); + internal extern static unsafe void GetTexEnviv(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, [Out] Int32* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexGendv", ExactSpelling = true)] - internal extern static unsafe void GetTexGendv(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [Out] Double* @params); + internal extern static unsafe void GetTexGendv(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, [Out] Double* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexGenfv", ExactSpelling = true)] - internal extern static unsafe void GetTexGenfv(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [Out] Single* @params); + internal extern static unsafe void GetTexGenfv(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, [Out] Single* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexGeniv", ExactSpelling = true)] - internal extern static unsafe void GetTexGeniv(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [Out] Int32* @params); + internal extern static unsafe void GetTexGeniv(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, [Out] Int32* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexImage", ExactSpelling = true)] - internal extern static void GetTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [Out] IntPtr pixels); + internal extern static void GetTexImage(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr pixels); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexParameterfv", ExactSpelling = true)] - internal extern static unsafe void GetTexParameterfv(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [Out] Single* @params); + internal extern static unsafe void GetTexParameterfv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Single* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexParameteriv", ExactSpelling = true)] - internal extern static unsafe void GetTexParameteriv(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [Out] Int32* @params); + internal extern static unsafe void GetTexParameteriv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexLevelParameterfv", ExactSpelling = true)] - internal extern static unsafe void GetTexLevelParameterfv(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [Out] Single* @params); + internal extern static unsafe void GetTexLevelParameterfv(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.GetTextureParameter pname, [Out] Single* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexLevelParameteriv", ExactSpelling = true)] - internal extern static unsafe void GetTexLevelParameteriv(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [Out] Int32* @params); + internal extern static unsafe void GetTexLevelParameteriv(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsEnabled", ExactSpelling = true)] - internal extern static bool IsEnabled(OpenTK.Graphics.OpenGL.EnableCap cap); + internal extern static bool IsEnabled(OpenTK.Graphics.EnableCap cap); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsList", ExactSpelling = true)] internal extern static bool IsList(UInt32 list); @@ -889,7 +889,7 @@ namespace OpenTK.Graphics.OpenGL internal extern static unsafe void LoadMatrixd(Double* m); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMatrixMode", ExactSpelling = true)] - internal extern static void MatrixMode(OpenTK.Graphics.OpenGL.MatrixMode mode); + internal extern static void MatrixMode(OpenTK.Graphics.MatrixMode mode); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultMatrixf", ExactSpelling = true)] internal extern static unsafe void MultMatrixf(Single* m); @@ -931,67 +931,67 @@ namespace OpenTK.Graphics.OpenGL internal extern static void ArrayElement(Int32 i); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorPointer", ExactSpelling = true)] - internal extern static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, IntPtr pointer); + internal extern static void ColorPointer(Int32 size, OpenTK.Graphics.ColorPointerType type, Int32 stride, IntPtr pointer); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDisableClientState", ExactSpelling = true)] - internal extern static void DisableClientState(OpenTK.Graphics.OpenGL.EnableCap array); + internal extern static void DisableClientState(OpenTK.Graphics.EnableCap array); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawArrays", ExactSpelling = true)] - internal extern static void DrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 first, Int32 count); + internal extern static void DrawArrays(OpenTK.Graphics.BeginMode mode, Int32 first, Int32 count); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawElements", ExactSpelling = true)] - internal extern static void DrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices); + internal extern static void DrawElements(OpenTK.Graphics.BeginMode mode, Int32 count, OpenTK.Graphics.DrawElementsType type, IntPtr indices); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEdgeFlagPointer", ExactSpelling = true)] internal extern static void EdgeFlagPointer(Int32 stride, IntPtr pointer); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEnableClientState", ExactSpelling = true)] - internal extern static void EnableClientState(OpenTK.Graphics.OpenGL.EnableCap array); + internal extern static void EnableClientState(OpenTK.Graphics.EnableCap array); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetPointerv", ExactSpelling = true)] - internal extern static void GetPointerv(OpenTK.Graphics.OpenGL.GetPointervPName pname, [Out] IntPtr @params); + internal extern static void GetPointerv(OpenTK.Graphics.GetPointervPName pname, [Out] IntPtr @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIndexPointer", ExactSpelling = true)] - internal extern static void IndexPointer(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, IntPtr pointer); + internal extern static void IndexPointer(OpenTK.Graphics.IndexPointerType type, Int32 stride, IntPtr pointer); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glInterleavedArrays", ExactSpelling = true)] - internal extern static void InterleavedArrays(OpenTK.Graphics.OpenGL.InterleavedArrayFormat format, Int32 stride, IntPtr pointer); + internal extern static void InterleavedArrays(OpenTK.Graphics.InterleavedArrayFormat format, Int32 stride, IntPtr pointer); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNormalPointer", ExactSpelling = true)] - internal extern static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, IntPtr pointer); + internal extern static void NormalPointer(OpenTK.Graphics.NormalPointerType type, Int32 stride, IntPtr pointer); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoordPointer", ExactSpelling = true)] - internal extern static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, IntPtr pointer); + internal extern static void TexCoordPointer(Int32 size, OpenTK.Graphics.TexCoordPointerType type, Int32 stride, IntPtr pointer); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexPointer", ExactSpelling = true)] - internal extern static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, IntPtr pointer); + internal extern static void VertexPointer(Int32 size, OpenTK.Graphics.VertexPointerType type, Int32 stride, IntPtr pointer); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPolygonOffset", ExactSpelling = true)] internal extern static void PolygonOffset(Single factor, Single units); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyTexImage1D", ExactSpelling = true)] - internal extern static void CopyTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border); + internal extern static void CopyTexImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyTexImage2D", ExactSpelling = true)] - internal extern static void CopyTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border); + internal extern static void CopyTexImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyTexSubImage1D", ExactSpelling = true)] - internal extern static void CopyTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width); + internal extern static void CopyTexSubImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyTexSubImage2D", ExactSpelling = true)] - internal extern static void CopyTexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height); + internal extern static void CopyTexSubImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexSubImage1D", ExactSpelling = true)] - internal extern static void TexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels); + internal extern static void TexSubImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexSubImage2D", ExactSpelling = true)] - internal extern static void TexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels); + internal extern static void TexSubImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glAreTexturesResident", ExactSpelling = true)] internal extern static unsafe bool AreTexturesResident(Int32 n, UInt32* textures, [Out] bool* residences); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindTexture", ExactSpelling = true)] - internal extern static void BindTexture(OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 texture); + internal extern static void BindTexture(OpenTK.Graphics.TextureTarget target, UInt32 texture); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteTextures", ExactSpelling = true)] internal extern static unsafe void DeleteTextures(Int32 n, UInt32* textures); @@ -1015,223 +1015,223 @@ namespace OpenTK.Graphics.OpenGL internal extern static void PopClientAttrib(); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPushClientAttrib", ExactSpelling = true)] - internal extern static void PushClientAttrib(OpenTK.Graphics.OpenGL.ClientAttribMask mask); + internal extern static void PushClientAttrib(OpenTK.Graphics.ClientAttribMask mask); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBlendColor", ExactSpelling = true)] 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.Graphics.OpenGL.BlendEquationMode mode); + internal extern static void BlendEquation(OpenTK.Graphics.BlendEquationMode mode); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawRangeElements", ExactSpelling = true)] - internal extern static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices); + internal extern static void DrawRangeElements(OpenTK.Graphics.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.DrawElementsType type, IntPtr indices); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorTable", ExactSpelling = true)] - internal extern static void ColorTable(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr table); + internal extern static void ColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr table); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorTableParameterfv", ExactSpelling = true)] - internal extern static unsafe void ColorTableParameterfv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Single* @params); + internal extern static unsafe void ColorTableParameterfv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorTableParameteriv", ExactSpelling = true)] - internal extern static unsafe void ColorTableParameteriv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Int32* @params); + internal extern static unsafe void ColorTableParameteriv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyColorTable", ExactSpelling = true)] - internal extern static void CopyColorTable(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width); + internal extern static void CopyColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.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.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [Out] IntPtr table); + internal extern static void GetColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.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.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params); + internal extern static unsafe void GetColorTableParameterfv(OpenTK.Graphics.All target, OpenTK.Graphics.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.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params); + internal extern static unsafe void GetColorTableParameteriv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorSubTable", ExactSpelling = true)] - internal extern static void ColorSubTable(OpenTK.Graphics.OpenGL.All target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr data); + internal extern static void ColorSubTable(OpenTK.Graphics.All target, Int32 start, Int32 count, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr data); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyColorSubTable", ExactSpelling = true)] - internal extern static void CopyColorSubTable(OpenTK.Graphics.OpenGL.All target, Int32 start, Int32 x, Int32 y, Int32 width); + internal extern static void CopyColorSubTable(OpenTK.Graphics.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.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr image); + internal extern static void ConvolutionFilter1D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr image); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionFilter2D", ExactSpelling = true)] - internal extern static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr image); + internal extern static void ConvolutionFilter2D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr image); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionParameterf", ExactSpelling = true)] - internal extern static void ConvolutionParameterf(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Single @params); + internal extern static void ConvolutionParameterf(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionParameterfv", ExactSpelling = true)] - internal extern static unsafe void ConvolutionParameterfv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Single* @params); + internal extern static unsafe void ConvolutionParameterfv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionParameteri", ExactSpelling = true)] - internal extern static void ConvolutionParameteri(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Int32 @params); + internal extern static void ConvolutionParameteri(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32 @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionParameteriv", ExactSpelling = true)] - internal extern static unsafe void ConvolutionParameteriv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Int32* @params); + internal extern static unsafe void ConvolutionParameteriv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyConvolutionFilter1D", ExactSpelling = true)] - internal extern static void CopyConvolutionFilter1D(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width); + internal extern static void CopyConvolutionFilter1D(OpenTK.Graphics.All target, OpenTK.Graphics.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.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height); + internal extern static void CopyConvolutionFilter2D(OpenTK.Graphics.All target, OpenTK.Graphics.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.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [Out] IntPtr image); + internal extern static void GetConvolutionFilter(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.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.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params); + internal extern static unsafe void GetConvolutionParameterfv(OpenTK.Graphics.All target, OpenTK.Graphics.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.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params); + internal extern static unsafe void GetConvolutionParameteriv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetSeparableFilter", ExactSpelling = true)] - internal extern static void GetSeparableFilter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [Out] IntPtr row, [Out] IntPtr column, [Out] IntPtr span); + internal extern static void GetSeparableFilter(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.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.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr row, IntPtr column); + internal extern static void SeparableFilter2D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.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.Graphics.OpenGL.All target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [Out] IntPtr values); + internal extern static void GetHistogram(OpenTK.Graphics.All target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.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.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params); + internal extern static unsafe void GetHistogramParameterfv(OpenTK.Graphics.All target, OpenTK.Graphics.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.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params); + internal extern static unsafe void GetHistogramParameteriv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMinmax", ExactSpelling = true)] - internal extern static void GetMinmax(OpenTK.Graphics.OpenGL.All target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [Out] IntPtr values); + internal extern static void GetMinmax(OpenTK.Graphics.All target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.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.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params); + internal extern static unsafe void GetMinmaxParameterfv(OpenTK.Graphics.All target, OpenTK.Graphics.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.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params); + internal extern static unsafe void GetMinmaxParameteriv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glHistogram", ExactSpelling = true)] - internal extern static void Histogram(OpenTK.Graphics.OpenGL.All target, Int32 width, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink); + internal extern static void Histogram(OpenTK.Graphics.All target, Int32 width, OpenTK.Graphics.PixelInternalFormat internalformat, bool sink); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMinmax", ExactSpelling = true)] - internal extern static void Minmax(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink); + internal extern static void Minmax(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, bool sink); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glResetHistogram", ExactSpelling = true)] - internal extern static void ResetHistogram(OpenTK.Graphics.OpenGL.All target); + internal extern static void ResetHistogram(OpenTK.Graphics.All target); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glResetMinmax", ExactSpelling = true)] - internal extern static void ResetMinmax(OpenTK.Graphics.OpenGL.All target); + internal extern static void ResetMinmax(OpenTK.Graphics.All target); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexImage3D", ExactSpelling = true)] - internal extern static void TexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels); + internal extern static void TexImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexSubImage3D", ExactSpelling = true)] - internal extern static void TexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels); + internal extern static void TexSubImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyTexSubImage3D", ExactSpelling = true)] - internal extern static void CopyTexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height); + internal extern static void CopyTexSubImage3D(OpenTK.Graphics.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.Graphics.OpenGL.TextureUnit texture); + internal extern static void ActiveTexture(OpenTK.Graphics.TextureUnit texture); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClientActiveTexture", ExactSpelling = true)] - internal extern static void ClientActiveTexture(OpenTK.Graphics.OpenGL.TextureUnit texture); + internal extern static void ClientActiveTexture(OpenTK.Graphics.TextureUnit texture); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord1d", ExactSpelling = true)] - internal extern static void MultiTexCoord1d(OpenTK.Graphics.OpenGL.TextureUnit target, Double s); + internal extern static void MultiTexCoord1d(OpenTK.Graphics.TextureUnit target, Double s); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord1dv", ExactSpelling = true)] - internal extern static unsafe void MultiTexCoord1dv(OpenTK.Graphics.OpenGL.TextureUnit target, Double* v); + internal extern static unsafe void MultiTexCoord1dv(OpenTK.Graphics.TextureUnit target, Double* v); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord1f", ExactSpelling = true)] - internal extern static void MultiTexCoord1f(OpenTK.Graphics.OpenGL.TextureUnit target, Single s); + internal extern static void MultiTexCoord1f(OpenTK.Graphics.TextureUnit target, Single s); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord1fv", ExactSpelling = true)] - internal extern static unsafe void MultiTexCoord1fv(OpenTK.Graphics.OpenGL.TextureUnit target, Single* v); + internal extern static unsafe void MultiTexCoord1fv(OpenTK.Graphics.TextureUnit target, Single* v); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord1i", ExactSpelling = true)] - internal extern static void MultiTexCoord1i(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s); + internal extern static void MultiTexCoord1i(OpenTK.Graphics.TextureUnit target, Int32 s); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord1iv", ExactSpelling = true)] - internal extern static unsafe void MultiTexCoord1iv(OpenTK.Graphics.OpenGL.TextureUnit target, Int32* v); + internal extern static unsafe void MultiTexCoord1iv(OpenTK.Graphics.TextureUnit target, Int32* v); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord1s", ExactSpelling = true)] - internal extern static void MultiTexCoord1s(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s); + internal extern static void MultiTexCoord1s(OpenTK.Graphics.TextureUnit target, Int16 s); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord1sv", ExactSpelling = true)] - internal extern static unsafe void MultiTexCoord1sv(OpenTK.Graphics.OpenGL.TextureUnit target, Int16* v); + internal extern static unsafe void MultiTexCoord1sv(OpenTK.Graphics.TextureUnit target, Int16* v); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord2d", ExactSpelling = true)] - internal extern static void MultiTexCoord2d(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t); + internal extern static void MultiTexCoord2d(OpenTK.Graphics.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.Graphics.OpenGL.TextureUnit target, Double* v); + internal extern static unsafe void MultiTexCoord2dv(OpenTK.Graphics.TextureUnit target, Double* v); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord2f", ExactSpelling = true)] - internal extern static void MultiTexCoord2f(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t); + internal extern static void MultiTexCoord2f(OpenTK.Graphics.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.Graphics.OpenGL.TextureUnit target, Single* v); + internal extern static unsafe void MultiTexCoord2fv(OpenTK.Graphics.TextureUnit target, Single* v); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord2i", ExactSpelling = true)] - internal extern static void MultiTexCoord2i(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t); + internal extern static void MultiTexCoord2i(OpenTK.Graphics.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.Graphics.OpenGL.TextureUnit target, Int32* v); + internal extern static unsafe void MultiTexCoord2iv(OpenTK.Graphics.TextureUnit target, Int32* v); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord2s", ExactSpelling = true)] - internal extern static void MultiTexCoord2s(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t); + internal extern static void MultiTexCoord2s(OpenTK.Graphics.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.Graphics.OpenGL.TextureUnit target, Int16* v); + internal extern static unsafe void MultiTexCoord2sv(OpenTK.Graphics.TextureUnit target, Int16* v); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord3d", ExactSpelling = true)] - internal extern static void MultiTexCoord3d(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t, Double r); + internal extern static void MultiTexCoord3d(OpenTK.Graphics.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.Graphics.OpenGL.TextureUnit target, Double* v); + internal extern static unsafe void MultiTexCoord3dv(OpenTK.Graphics.TextureUnit target, Double* v); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord3f", ExactSpelling = true)] - internal extern static void MultiTexCoord3f(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t, Single r); + internal extern static void MultiTexCoord3f(OpenTK.Graphics.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.Graphics.OpenGL.TextureUnit target, Single* v); + internal extern static unsafe void MultiTexCoord3fv(OpenTK.Graphics.TextureUnit target, Single* v); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord3i", ExactSpelling = true)] - internal extern static void MultiTexCoord3i(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t, Int32 r); + internal extern static void MultiTexCoord3i(OpenTK.Graphics.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.Graphics.OpenGL.TextureUnit target, Int32* v); + internal extern static unsafe void MultiTexCoord3iv(OpenTK.Graphics.TextureUnit target, Int32* v); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord3s", ExactSpelling = true)] - internal extern static void MultiTexCoord3s(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t, Int16 r); + internal extern static void MultiTexCoord3s(OpenTK.Graphics.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.Graphics.OpenGL.TextureUnit target, Int16* v); + internal extern static unsafe void MultiTexCoord3sv(OpenTK.Graphics.TextureUnit target, Int16* v); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord4d", ExactSpelling = true)] - internal extern static void MultiTexCoord4d(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t, Double r, Double q); + internal extern static void MultiTexCoord4d(OpenTK.Graphics.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.Graphics.OpenGL.TextureUnit target, Double* v); + internal extern static unsafe void MultiTexCoord4dv(OpenTK.Graphics.TextureUnit target, Double* v); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord4f", ExactSpelling = true)] - internal extern static void MultiTexCoord4f(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t, Single r, Single q); + internal extern static void MultiTexCoord4f(OpenTK.Graphics.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.Graphics.OpenGL.TextureUnit target, Single* v); + internal extern static unsafe void MultiTexCoord4fv(OpenTK.Graphics.TextureUnit target, Single* v); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord4i", ExactSpelling = true)] - internal extern static void MultiTexCoord4i(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t, Int32 r, Int32 q); + internal extern static void MultiTexCoord4i(OpenTK.Graphics.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.Graphics.OpenGL.TextureUnit target, Int32* v); + internal extern static unsafe void MultiTexCoord4iv(OpenTK.Graphics.TextureUnit target, Int32* v); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord4s", ExactSpelling = true)] - internal extern static void MultiTexCoord4s(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t, Int16 r, Int16 q); + internal extern static void MultiTexCoord4s(OpenTK.Graphics.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.Graphics.OpenGL.TextureUnit target, Int16* v); + internal extern static unsafe void MultiTexCoord4sv(OpenTK.Graphics.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); @@ -1249,28 +1249,28 @@ namespace OpenTK.Graphics.OpenGL internal extern static void SampleCoverage(Single value, bool invert); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCompressedTexImage3D", ExactSpelling = true)] - internal extern static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, IntPtr data); + internal extern static void CompressedTexImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, IntPtr data); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCompressedTexImage2D", ExactSpelling = true)] - internal extern static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, IntPtr data); + internal extern static void CompressedTexImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, IntPtr data); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCompressedTexImage1D", ExactSpelling = true)] - internal extern static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, IntPtr data); + internal extern static void CompressedTexImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, IntPtr data); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCompressedTexSubImage3D", ExactSpelling = true)] - internal extern static void CompressedTexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data); + internal extern static void CompressedTexSubImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.PixelFormat format, Int32 imageSize, IntPtr data); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCompressedTexSubImage2D", ExactSpelling = true)] - internal extern static void CompressedTexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data); + internal extern static void CompressedTexSubImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, Int32 imageSize, IntPtr data); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCompressedTexSubImage1D", ExactSpelling = true)] - internal extern static void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data); + internal extern static void CompressedTexSubImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.PixelFormat format, Int32 imageSize, IntPtr data); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetCompressedTexImage", ExactSpelling = true)] - internal extern static void GetCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, [Out] IntPtr img); + internal extern static void GetCompressedTexImage(OpenTK.Graphics.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.Graphics.OpenGL.BlendingFactorSrc sfactorRGB, OpenTK.Graphics.OpenGL.BlendingFactorDest dfactorRGB, OpenTK.Graphics.OpenGL.BlendingFactorSrc sfactorAlpha, OpenTK.Graphics.OpenGL.BlendingFactorDest dfactorAlpha); + internal extern static void BlendFuncSeparate(OpenTK.Graphics.BlendingFactorSrc sfactorRGB, OpenTK.Graphics.BlendingFactorDest dfactorRGB, OpenTK.Graphics.BlendingFactorSrc sfactorAlpha, OpenTK.Graphics.BlendingFactorDest dfactorAlpha); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFogCoordf", ExactSpelling = true)] internal extern static void FogCoordf(Single coord); @@ -1285,25 +1285,25 @@ namespace OpenTK.Graphics.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.Graphics.OpenGL.FogPointerType type, Int32 stride, IntPtr pointer); + internal extern static void FogCoordPointer(OpenTK.Graphics.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.Graphics.OpenGL.BeginMode mode, [Out] Int32* first, [Out] Int32* count, Int32 primcount); + internal extern static unsafe void MultiDrawArrays(OpenTK.Graphics.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.Graphics.OpenGL.BeginMode mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount); + internal extern static unsafe void MultiDrawElements(OpenTK.Graphics.BeginMode mode, Int32* count, OpenTK.Graphics.DrawElementsType type, IntPtr indices, Int32 primcount); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPointParameterf", ExactSpelling = true)] - internal extern static void PointParameterf(OpenTK.Graphics.OpenGL.PointParameterName pname, Single param); + internal extern static void PointParameterf(OpenTK.Graphics.PointParameterName pname, Single param); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPointParameterfv", ExactSpelling = true)] - internal extern static unsafe void PointParameterfv(OpenTK.Graphics.OpenGL.PointParameterName pname, Single* @params); + internal extern static unsafe void PointParameterfv(OpenTK.Graphics.PointParameterName pname, Single* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPointParameteri", ExactSpelling = true)] - internal extern static void PointParameteri(OpenTK.Graphics.OpenGL.PointParameterName pname, Int32 param); + internal extern static void PointParameteri(OpenTK.Graphics.PointParameterName pname, Int32 param); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPointParameteriv", ExactSpelling = true)] - internal extern static unsafe void PointParameteriv(OpenTK.Graphics.OpenGL.PointParameterName pname, Int32* @params); + internal extern static unsafe void PointParameteriv(OpenTK.Graphics.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); @@ -1354,7 +1354,7 @@ namespace OpenTK.Graphics.OpenGL internal extern static unsafe void SecondaryColor3usv(UInt16* v); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSecondaryColorPointer", ExactSpelling = true)] - internal extern static void SecondaryColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, IntPtr pointer); + internal extern static void SecondaryColorPointer(Int32 size, OpenTK.Graphics.ColorPointerType type, Int32 stride, IntPtr pointer); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glWindowPos2d", ExactSpelling = true)] internal extern static void WindowPos2d(Double x, Double y); @@ -1414,22 +1414,22 @@ namespace OpenTK.Graphics.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.Graphics.OpenGL.QueryTarget target, UInt32 id); + internal extern static void BeginQuery(OpenTK.Graphics.QueryTarget target, UInt32 id); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEndQuery", ExactSpelling = true)] - internal extern static void EndQuery(OpenTK.Graphics.OpenGL.QueryTarget target); + internal extern static void EndQuery(OpenTK.Graphics.QueryTarget target); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetQueryiv", ExactSpelling = true)] - internal extern static unsafe void GetQueryiv(OpenTK.Graphics.OpenGL.QueryTarget target, OpenTK.Graphics.OpenGL.GetQueryParam pname, [Out] Int32* @params); + internal extern static unsafe void GetQueryiv(OpenTK.Graphics.QueryTarget target, OpenTK.Graphics.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.Graphics.OpenGL.GetQueryObjectParam pname, [Out] Int32* @params); + internal extern static unsafe void GetQueryObjectiv(UInt32 id, OpenTK.Graphics.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.Graphics.OpenGL.GetQueryObjectParam pname, [Out] UInt32* @params); + internal extern static unsafe void GetQueryObjectuiv(UInt32 id, OpenTK.Graphics.GetQueryObjectParam pname, [Out] UInt32* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindBuffer", ExactSpelling = true)] - internal extern static void BindBuffer(OpenTK.Graphics.OpenGL.BufferTarget target, UInt32 buffer); + internal extern static void BindBuffer(OpenTK.Graphics.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); @@ -1441,40 +1441,40 @@ namespace OpenTK.Graphics.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.Graphics.OpenGL.BufferTarget target, IntPtr size, IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage); + internal extern static void BufferData(OpenTK.Graphics.BufferTarget target, IntPtr size, IntPtr data, OpenTK.Graphics.BufferUsageHint usage); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBufferSubData", ExactSpelling = true)] - internal extern static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, IntPtr data); + internal extern static void BufferSubData(OpenTK.Graphics.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.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [Out] IntPtr data); + internal extern static void GetBufferSubData(OpenTK.Graphics.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.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferAccess access); + internal extern static unsafe IntPtr MapBuffer(OpenTK.Graphics.BufferTarget target, OpenTK.Graphics.BufferAccess access); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUnmapBuffer", ExactSpelling = true)] - internal extern static bool UnmapBuffer(OpenTK.Graphics.OpenGL.BufferTarget target); + internal extern static bool UnmapBuffer(OpenTK.Graphics.BufferTarget target); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetBufferParameteriv", ExactSpelling = true)] - internal extern static unsafe void GetBufferParameteriv(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [Out] Int32* @params); + internal extern static unsafe void GetBufferParameteriv(OpenTK.Graphics.BufferTarget target, OpenTK.Graphics.BufferParameterName pname, [Out] Int32* @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetBufferPointerv", ExactSpelling = true)] - internal extern static void GetBufferPointerv(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferPointer pname, [Out] IntPtr @params); + internal extern static void GetBufferPointerv(OpenTK.Graphics.BufferTarget target, OpenTK.Graphics.BufferPointer pname, [Out] IntPtr @params); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBlendEquationSeparate", ExactSpelling = true)] - internal extern static void BlendEquationSeparate(OpenTK.Graphics.OpenGL.All modeRGB, OpenTK.Graphics.OpenGL.All modeAlpha); + internal extern static void BlendEquationSeparate(OpenTK.Graphics.All modeRGB, OpenTK.Graphics.All modeAlpha); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawBuffers", ExactSpelling = true)] - internal extern static unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.OpenGL.DrawBuffersEnum* bufs); + internal extern static unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.DrawBuffersEnum* bufs); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glStencilOpSeparate", ExactSpelling = true)] - internal extern static void StencilOpSeparate(OpenTK.Graphics.OpenGL.All face, OpenTK.Graphics.OpenGL.StencilOp sfail, OpenTK.Graphics.OpenGL.StencilOp dpfail, OpenTK.Graphics.OpenGL.StencilOp dppass); + internal extern static void StencilOpSeparate(OpenTK.Graphics.All face, OpenTK.Graphics.StencilOp sfail, OpenTK.Graphics.StencilOp dpfail, OpenTK.Graphics.StencilOp dppass); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glStencilFuncSeparate", ExactSpelling = true)] - internal extern static void StencilFuncSeparate(OpenTK.Graphics.OpenGL.StencilFunction frontfunc, OpenTK.Graphics.OpenGL.StencilFunction backfunc, Int32 @ref, UInt32 mask); + internal extern static void StencilFuncSeparate(OpenTK.Graphics.StencilFunction frontfunc, OpenTK.Graphics.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.Graphics.OpenGL.All face, UInt32 mask); + internal extern static void StencilMaskSeparate(OpenTK.Graphics.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); @@ -1489,7 +1489,7 @@ namespace OpenTK.Graphics.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.Graphics.OpenGL.ShaderType type); + internal extern static Int32 CreateShader(OpenTK.Graphics.ShaderType type); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteProgram", ExactSpelling = true)] internal extern static void DeleteProgram(UInt32 program); @@ -1507,10 +1507,10 @@ namespace OpenTK.Graphics.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.Graphics.OpenGL.ActiveAttribType* 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.Graphics.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.Graphics.OpenGL.ActiveUniformType* 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.Graphics.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); @@ -1519,13 +1519,13 @@ namespace OpenTK.Graphics.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.Graphics.OpenGL.ProgramParameter pname, [Out] Int32* @params); + internal extern static unsafe void GetProgramiv(UInt32 program, OpenTK.Graphics.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.Graphics.OpenGL.ShaderParameter pname, [Out] Int32* @params); + internal extern static unsafe void GetShaderiv(UInt32 shader, OpenTK.Graphics.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); @@ -1543,16 +1543,16 @@ namespace OpenTK.Graphics.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.Graphics.OpenGL.VertexAttribParameter pname, [Out] Double* @params); + internal extern static unsafe void GetVertexAttribdv(UInt32 index, OpenTK.Graphics.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.Graphics.OpenGL.VertexAttribParameter pname, [Out] Single* @params); + internal extern static unsafe void GetVertexAttribfv(UInt32 index, OpenTK.Graphics.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.Graphics.OpenGL.VertexAttribParameter pname, [Out] Int32* @params); + internal extern static unsafe void GetVertexAttribiv(UInt32 index, OpenTK.Graphics.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.Graphics.OpenGL.VertexAttribPointerParameter pname, [Out] IntPtr pointer); + internal extern static void GetVertexAttribPointerv(UInt32 index, OpenTK.Graphics.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); @@ -1738,7 +1738,7 @@ namespace OpenTK.Graphics.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.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, IntPtr pointer); + internal extern static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.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); @@ -1768,7 +1768,7 @@ namespace OpenTK.Graphics.OpenGL internal extern static void ArrayElementEXT(Int32 i); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTextureLightEXT", ExactSpelling = true)] - internal extern static void TextureLightEXT(OpenTK.Graphics.OpenGL.All pname); + internal extern static void TextureLightEXT(OpenTK.Graphics.All pname); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glInsertComponentEXT", ExactSpelling = true)] internal extern static void InsertComponentEXT(UInt32 res, UInt32 src, UInt32 num); @@ -1777,10 +1777,10 @@ namespace OpenTK.Graphics.OpenGL internal extern static void ExtractComponentEXT(UInt32 res, UInt32 src, UInt32 num); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSetInvariantEXT", ExactSpelling = true)] - internal extern static void SetInvariantEXT(UInt32 id, OpenTK.Graphics.OpenGL.All type, IntPtr addr); + internal extern static void SetInvariantEXT(UInt32 id, OpenTK.Graphics.All type, IntPtr addr); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSetLocalConstantEXT", ExactSpelling = true)] - internal extern static void SetLocalConstantEXT(UInt32 id, OpenTK.Graphics.OpenGL.All type, IntPtr addr); + internal extern static void SetLocalConstantEXT(UInt32 id, OpenTK.Graphics.All type, IntPtr addr); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetUniformOffsetEXT", ExactSpelling = true)] internal extern static IntPtr GetUniformOffsetEXT(UInt32 program, Int32 location); diff --git a/Source/OpenTK/Graphics/OpenGL/GL/GLDelegates.cs b/Source/OpenTK/Graphics/GL/GLDelegates.cs similarity index 82% rename from Source/OpenTK/Graphics/OpenGL/GL/GLDelegates.cs rename to Source/OpenTK/Graphics/GL/GLDelegates.cs index 02f55830..de5558d5 100644 --- a/Source/OpenTK/Graphics/OpenGL/GL/GLDelegates.cs +++ b/Source/OpenTK/Graphics/GL/GLDelegates.cs @@ -1,4 +1,4 @@ -namespace OpenTK.Graphics.OpenGL +namespace OpenTK.Graphics { using System; using System.Runtime.InteropServices; @@ -11,7 +11,7 @@ namespace OpenTK.Graphics.OpenGL internal static partial class Delegates { [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void NewList(UInt32 list, OpenTK.Graphics.OpenGL.ListMode mode); + internal delegate void NewList(UInt32 list, OpenTK.Graphics.ListMode mode); internal static NewList glNewList; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void EndList(); @@ -20,7 +20,7 @@ namespace OpenTK.Graphics.OpenGL internal delegate void CallList(UInt32 list); internal static CallList glCallList; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CallLists(Int32 n, OpenTK.Graphics.OpenGL.ListNameType type, IntPtr lists); + internal delegate void CallLists(Int32 n, OpenTK.Graphics.ListNameType type, IntPtr lists); internal static CallLists glCallLists; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void DeleteLists(UInt32 list, Int32 range); @@ -32,7 +32,7 @@ namespace OpenTK.Graphics.OpenGL internal delegate void ListBase(UInt32 @base); internal static ListBase glListBase; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void Begin(OpenTK.Graphics.OpenGL.BeginMode mode); + internal delegate void Begin(OpenTK.Graphics.BeginMode mode); internal static Begin glBegin; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void Bitmap(Int32 width, Int32 height, Single xorig, Single yorig, Single xmove, Single ymove, Byte* bitmap); @@ -461,55 +461,55 @@ namespace OpenTK.Graphics.OpenGL internal unsafe delegate void Vertex4sv(Int16* v); internal unsafe static Vertex4sv glVertex4sv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, Double* equation); + internal unsafe delegate void ClipPlane(OpenTK.Graphics.ClipPlaneName plane, Double* equation); internal unsafe static ClipPlane glClipPlane; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ColorMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.ColorMaterialParameter mode); + internal delegate void ColorMaterial(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.ColorMaterialParameter mode); internal static ColorMaterial glColorMaterial; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CullFace(OpenTK.Graphics.OpenGL.CullFaceMode mode); + internal delegate void CullFace(OpenTK.Graphics.CullFaceMode mode); internal static CullFace glCullFace; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void Fogf(OpenTK.Graphics.OpenGL.FogParameter pname, Single param); + internal delegate void Fogf(OpenTK.Graphics.FogParameter pname, Single param); internal static Fogf glFogf; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void Fogfv(OpenTK.Graphics.OpenGL.FogParameter pname, Single* @params); + internal unsafe delegate void Fogfv(OpenTK.Graphics.FogParameter pname, Single* @params); internal unsafe static Fogfv glFogfv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void Fogi(OpenTK.Graphics.OpenGL.FogParameter pname, Int32 param); + internal delegate void Fogi(OpenTK.Graphics.FogParameter pname, Int32 param); internal static Fogi glFogi; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void Fogiv(OpenTK.Graphics.OpenGL.FogParameter pname, Int32* @params); + internal unsafe delegate void Fogiv(OpenTK.Graphics.FogParameter pname, Int32* @params); internal unsafe static Fogiv glFogiv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FrontFace(OpenTK.Graphics.OpenGL.FrontFaceDirection mode); + internal delegate void FrontFace(OpenTK.Graphics.FrontFaceDirection mode); internal static FrontFace glFrontFace; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void Hint(OpenTK.Graphics.OpenGL.HintTarget target, OpenTK.Graphics.OpenGL.HintMode mode); + internal delegate void Hint(OpenTK.Graphics.HintTarget target, OpenTK.Graphics.HintMode mode); internal static Hint glHint; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void Lightf(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, Single param); + internal delegate void Lightf(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, Single param); internal static Lightf glLightf; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void Lightfv(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, Single* @params); + internal unsafe delegate void Lightfv(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, Single* @params); internal unsafe static Lightfv glLightfv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void Lighti(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, Int32 param); + internal delegate void Lighti(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, Int32 param); internal static Lighti glLighti; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void Lightiv(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, Int32* @params); + internal unsafe delegate void Lightiv(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, Int32* @params); internal unsafe static Lightiv glLightiv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void LightModelf(OpenTK.Graphics.OpenGL.LightModelParameter pname, Single param); + internal delegate void LightModelf(OpenTK.Graphics.LightModelParameter pname, Single param); internal static LightModelf glLightModelf; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void LightModelfv(OpenTK.Graphics.OpenGL.LightModelParameter pname, Single* @params); + internal unsafe delegate void LightModelfv(OpenTK.Graphics.LightModelParameter pname, Single* @params); internal unsafe static LightModelfv glLightModelfv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void LightModeli(OpenTK.Graphics.OpenGL.LightModelParameter pname, Int32 param); + internal delegate void LightModeli(OpenTK.Graphics.LightModelParameter pname, Int32 param); internal static LightModeli glLightModeli; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void LightModeliv(OpenTK.Graphics.OpenGL.LightModelParameter pname, Int32* @params); + internal unsafe delegate void LightModeliv(OpenTK.Graphics.LightModelParameter pname, Int32* @params); internal unsafe static LightModeliv glLightModeliv; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void LineStipple(Int32 factor, UInt16 pattern); @@ -518,22 +518,22 @@ namespace OpenTK.Graphics.OpenGL internal delegate void LineWidth(Single width); internal static LineWidth glLineWidth; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void Materialf(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Single param); + internal delegate void Materialf(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, Single param); internal static Materialf glMaterialf; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void Materialfv(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Single* @params); + internal unsafe delegate void Materialfv(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, Single* @params); internal unsafe static Materialfv glMaterialfv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void Materiali(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Int32 param); + internal delegate void Materiali(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, Int32 param); internal static Materiali glMateriali; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void Materialiv(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Int32* @params); + internal unsafe delegate void Materialiv(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, Int32* @params); internal unsafe static Materialiv glMaterialiv; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void PointSize(Single size); internal static PointSize glPointSize; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void PolygonMode(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.PolygonMode mode); + internal delegate void PolygonMode(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.PolygonMode mode); internal static PolygonMode glPolygonMode; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void PolygonStipple(Byte* mask); @@ -542,64 +542,64 @@ namespace OpenTK.Graphics.OpenGL internal delegate void Scissor(Int32 x, Int32 y, Int32 width, Int32 height); internal static Scissor glScissor; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ShadeModel(OpenTK.Graphics.OpenGL.ShadingModel mode); + internal delegate void ShadeModel(OpenTK.Graphics.ShadingModel mode); internal static ShadeModel glShadeModel; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void TexParameterf(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single param); + internal delegate void TexParameterf(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Single param); internal static TexParameterf glTexParameterf; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void TexParameterfv(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single* @params); + internal unsafe delegate void TexParameterfv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Single* @params); internal unsafe static TexParameterfv glTexParameterfv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void TexParameteri(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32 param); + internal delegate void TexParameteri(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32 param); internal static TexParameteri glTexParameteri; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void TexParameteriv(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32* @params); + internal unsafe delegate void TexParameteriv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32* @params); internal unsafe static TexParameteriv glTexParameteriv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void TexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels); + internal delegate void TexImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels); internal static TexImage1D glTexImage1D; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void TexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels); + internal delegate void TexImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels); internal static TexImage2D glTexImage2D; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void TexEnvf(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Single param); + internal delegate void TexEnvf(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, Single param); internal static TexEnvf glTexEnvf; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void TexEnvfv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Single* @params); + internal unsafe delegate void TexEnvfv(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, Single* @params); internal unsafe static TexEnvfv glTexEnvfv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void TexEnvi(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Int32 param); + internal delegate void TexEnvi(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, Int32 param); internal static TexEnvi glTexEnvi; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void TexEnviv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Int32* @params); + internal unsafe delegate void TexEnviv(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, Int32* @params); internal unsafe static TexEnviv glTexEnviv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void TexGend(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Double param); + internal delegate void TexGend(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Double param); internal static TexGend glTexGend; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void TexGendv(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Double* @params); + internal unsafe delegate void TexGendv(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Double* @params); internal unsafe static TexGendv glTexGendv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void TexGenf(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Single param); + internal delegate void TexGenf(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Single param); internal static TexGenf glTexGenf; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void TexGenfv(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Single* @params); + internal unsafe delegate void TexGenfv(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Single* @params); internal unsafe static TexGenfv glTexGenfv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void TexGeni(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Int32 param); + internal delegate void TexGeni(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Int32 param); internal static TexGeni glTexGeni; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void TexGeniv(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Int32* @params); + internal unsafe delegate void TexGeniv(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Int32* @params); internal unsafe static TexGeniv glTexGeniv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void FeedbackBuffer(Int32 size, OpenTK.Graphics.OpenGL.FeedbackType type, [Out] Single* buffer); + internal unsafe delegate void FeedbackBuffer(Int32 size, OpenTK.Graphics.FeedbackType type, [Out] Single* buffer); internal unsafe static FeedbackBuffer glFeedbackBuffer; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void SelectBuffer(Int32 size, [Out] UInt32* buffer); internal unsafe static SelectBuffer glSelectBuffer; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate Int32 RenderMode(OpenTK.Graphics.OpenGL.RenderingMode mode); + internal delegate Int32 RenderMode(OpenTK.Graphics.RenderingMode mode); internal static RenderMode glRenderMode; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void InitNames(); @@ -617,10 +617,10 @@ namespace OpenTK.Graphics.OpenGL internal delegate void PushName(UInt32 name); internal static PushName glPushName; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void DrawBuffer(OpenTK.Graphics.OpenGL.DrawBufferMode mode); + internal delegate void DrawBuffer(OpenTK.Graphics.DrawBufferMode mode); internal static DrawBuffer glDrawBuffer; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void Clear(OpenTK.Graphics.OpenGL.ClearBufferMask mask); + internal delegate void Clear(OpenTK.Graphics.ClearBufferMask mask); internal static Clear glClear; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void ClearAccum(Single red, Single green, Single blue, Single alpha); @@ -650,13 +650,13 @@ namespace OpenTK.Graphics.OpenGL internal delegate void IndexMask(UInt32 mask); internal static IndexMask glIndexMask; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void Accum(OpenTK.Graphics.OpenGL.AccumOp op, Single value); + internal delegate void Accum(OpenTK.Graphics.AccumOp op, Single value); internal static Accum glAccum; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void Disable(OpenTK.Graphics.OpenGL.EnableCap cap); + internal delegate void Disable(OpenTK.Graphics.EnableCap cap); internal static Disable glDisable; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void Enable(OpenTK.Graphics.OpenGL.EnableCap cap); + internal delegate void Enable(OpenTK.Graphics.EnableCap cap); internal static Enable glEnable; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void Finish(); @@ -668,19 +668,19 @@ namespace OpenTK.Graphics.OpenGL internal delegate void PopAttrib(); internal static PopAttrib glPopAttrib; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void PushAttrib(OpenTK.Graphics.OpenGL.AttribMask mask); + internal delegate void PushAttrib(OpenTK.Graphics.AttribMask mask); internal static PushAttrib glPushAttrib; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void Map1d(OpenTK.Graphics.OpenGL.MapTarget target, Double u1, Double u2, Int32 stride, Int32 order, Double* points); + internal unsafe delegate void Map1d(OpenTK.Graphics.MapTarget target, Double u1, Double u2, Int32 stride, Int32 order, Double* points); internal unsafe static Map1d glMap1d; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void Map1f(OpenTK.Graphics.OpenGL.MapTarget target, Single u1, Single u2, Int32 stride, Int32 order, Single* points); + internal unsafe delegate void Map1f(OpenTK.Graphics.MapTarget target, Single u1, Single u2, Int32 stride, Int32 order, Single* points); internal unsafe static Map1f glMap1f; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void Map2d(OpenTK.Graphics.OpenGL.MapTarget target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double* points); + internal unsafe delegate void Map2d(OpenTK.Graphics.MapTarget target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double* points); internal unsafe static Map2d glMap2d; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void Map2f(OpenTK.Graphics.OpenGL.MapTarget target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single* points); + internal unsafe delegate void Map2f(OpenTK.Graphics.MapTarget target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single* points); internal unsafe static Map2f glMap2f; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void MapGrid1d(Int32 un, Double u1, Double u2); @@ -719,157 +719,157 @@ namespace OpenTK.Graphics.OpenGL internal unsafe delegate void EvalCoord2fv(Single* u); internal unsafe static EvalCoord2fv glEvalCoord2fv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void EvalMesh1(OpenTK.Graphics.OpenGL.MeshMode1 mode, Int32 i1, Int32 i2); + internal delegate void EvalMesh1(OpenTK.Graphics.MeshMode1 mode, Int32 i1, Int32 i2); internal static EvalMesh1 glEvalMesh1; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void EvalPoint1(Int32 i); internal static EvalPoint1 glEvalPoint1; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void EvalMesh2(OpenTK.Graphics.OpenGL.MeshMode2 mode, Int32 i1, Int32 i2, Int32 j1, Int32 j2); + internal delegate void EvalMesh2(OpenTK.Graphics.MeshMode2 mode, Int32 i1, Int32 i2, Int32 j1, Int32 j2); internal static EvalMesh2 glEvalMesh2; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void EvalPoint2(Int32 i, Int32 j); internal static EvalPoint2 glEvalPoint2; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void AlphaFunc(OpenTK.Graphics.OpenGL.AlphaFunction func, Single @ref); + internal delegate void AlphaFunc(OpenTK.Graphics.AlphaFunction func, Single @ref); internal static AlphaFunc glAlphaFunc; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BlendFunc(OpenTK.Graphics.OpenGL.BlendingFactorSrc sfactor, OpenTK.Graphics.OpenGL.BlendingFactorDest dfactor); + internal delegate void BlendFunc(OpenTK.Graphics.BlendingFactorSrc sfactor, OpenTK.Graphics.BlendingFactorDest dfactor); internal static BlendFunc glBlendFunc; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void LogicOp(OpenTK.Graphics.OpenGL.LogicOp opcode); + internal delegate void LogicOp(OpenTK.Graphics.LogicOp opcode); internal static LogicOp glLogicOp; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void StencilFunc(OpenTK.Graphics.OpenGL.StencilFunction func, Int32 @ref, UInt32 mask); + internal delegate void StencilFunc(OpenTK.Graphics.StencilFunction func, Int32 @ref, UInt32 mask); internal static StencilFunc glStencilFunc; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void StencilOp(OpenTK.Graphics.OpenGL.StencilOp fail, OpenTK.Graphics.OpenGL.StencilOp zfail, OpenTK.Graphics.OpenGL.StencilOp zpass); + internal delegate void StencilOp(OpenTK.Graphics.StencilOp fail, OpenTK.Graphics.StencilOp zfail, OpenTK.Graphics.StencilOp zpass); internal static StencilOp glStencilOp; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void DepthFunc(OpenTK.Graphics.OpenGL.DepthFunction func); + internal delegate void DepthFunc(OpenTK.Graphics.DepthFunction func); internal static DepthFunc glDepthFunc; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void PixelZoom(Single xfactor, Single yfactor); internal static PixelZoom glPixelZoom; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void PixelTransferf(OpenTK.Graphics.OpenGL.PixelTransferParameter pname, Single param); + internal delegate void PixelTransferf(OpenTK.Graphics.PixelTransferParameter pname, Single param); internal static PixelTransferf glPixelTransferf; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void PixelTransferi(OpenTK.Graphics.OpenGL.PixelTransferParameter pname, Int32 param); + internal delegate void PixelTransferi(OpenTK.Graphics.PixelTransferParameter pname, Int32 param); internal static PixelTransferi glPixelTransferi; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void PixelStoref(OpenTK.Graphics.OpenGL.PixelStoreParameter pname, Single param); + internal delegate void PixelStoref(OpenTK.Graphics.PixelStoreParameter pname, Single param); internal static PixelStoref glPixelStoref; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void PixelStorei(OpenTK.Graphics.OpenGL.PixelStoreParameter pname, Int32 param); + internal delegate void PixelStorei(OpenTK.Graphics.PixelStoreParameter pname, Int32 param); internal static PixelStorei glPixelStorei; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void PixelMapfv(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, Single* values); + internal unsafe delegate void PixelMapfv(OpenTK.Graphics.PixelMap map, Int32 mapsize, Single* values); internal unsafe static PixelMapfv glPixelMapfv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void PixelMapuiv(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, UInt32* values); + internal unsafe delegate void PixelMapuiv(OpenTK.Graphics.PixelMap map, Int32 mapsize, UInt32* values); internal unsafe static PixelMapuiv glPixelMapuiv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void PixelMapusv(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, UInt16* values); + internal unsafe delegate void PixelMapusv(OpenTK.Graphics.PixelMap map, Int32 mapsize, UInt16* values); internal unsafe static PixelMapusv glPixelMapusv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ReadBuffer(OpenTK.Graphics.OpenGL.ReadBufferMode mode); + internal delegate void ReadBuffer(OpenTK.Graphics.ReadBufferMode mode); internal static ReadBuffer glReadBuffer; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CopyPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelCopyType type); + internal delegate void CopyPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.PixelCopyType type); internal static CopyPixels glCopyPixels; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [Out] IntPtr pixels); + internal delegate void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr pixels); internal static ReadPixels glReadPixels; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void DrawPixels(Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels); + internal delegate void DrawPixels(Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels); internal static DrawPixels glDrawPixels; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetBooleanv(OpenTK.Graphics.OpenGL.GetPName pname, [Out] bool* @params); + internal unsafe delegate void GetBooleanv(OpenTK.Graphics.GetPName pname, [Out] bool* @params); internal unsafe static GetBooleanv glGetBooleanv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [Out] Double* equation); + internal unsafe delegate void GetClipPlane(OpenTK.Graphics.ClipPlaneName plane, [Out] Double* equation); internal unsafe static GetClipPlane glGetClipPlane; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetDoublev(OpenTK.Graphics.OpenGL.GetPName pname, [Out] Double* @params); + internal unsafe delegate void GetDoublev(OpenTK.Graphics.GetPName pname, [Out] Double* @params); internal unsafe static GetDoublev glGetDoublev; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate OpenTK.Graphics.OpenGL.ErrorCode GetError(); + internal delegate OpenTK.Graphics.ErrorCode GetError(); internal static GetError glGetError; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetFloatv(OpenTK.Graphics.OpenGL.GetPName pname, [Out] Single* @params); + internal unsafe delegate void GetFloatv(OpenTK.Graphics.GetPName pname, [Out] Single* @params); internal unsafe static GetFloatv glGetFloatv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetIntegerv(OpenTK.Graphics.OpenGL.GetPName pname, [Out] Int32* @params); + internal unsafe delegate void GetIntegerv(OpenTK.Graphics.GetPName pname, [Out] Int32* @params); internal unsafe static GetIntegerv glGetIntegerv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetLightfv(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [Out] Single* @params); + internal unsafe delegate void GetLightfv(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, [Out] Single* @params); internal unsafe static GetLightfv glGetLightfv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetLightiv(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [Out] Int32* @params); + internal unsafe delegate void GetLightiv(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, [Out] Int32* @params); internal unsafe static GetLightiv glGetLightiv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetMapdv(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [Out] Double* v); + internal unsafe delegate void GetMapdv(OpenTK.Graphics.MapTarget target, OpenTK.Graphics.GetMapQuery query, [Out] Double* v); internal unsafe static GetMapdv glGetMapdv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetMapfv(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [Out] Single* v); + internal unsafe delegate void GetMapfv(OpenTK.Graphics.MapTarget target, OpenTK.Graphics.GetMapQuery query, [Out] Single* v); internal unsafe static GetMapfv glGetMapfv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetMapiv(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [Out] Int32* v); + internal unsafe delegate void GetMapiv(OpenTK.Graphics.MapTarget target, OpenTK.Graphics.GetMapQuery query, [Out] Int32* v); internal unsafe static GetMapiv glGetMapiv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetMaterialfv(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [Out] Single* @params); + internal unsafe delegate void GetMaterialfv(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, [Out] Single* @params); internal unsafe static GetMaterialfv glGetMaterialfv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetMaterialiv(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [Out] Int32* @params); + internal unsafe delegate void GetMaterialiv(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, [Out] Int32* @params); internal unsafe static GetMaterialiv glGetMaterialiv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetPixelMapfv(OpenTK.Graphics.OpenGL.PixelMap map, [Out] Single* values); + internal unsafe delegate void GetPixelMapfv(OpenTK.Graphics.PixelMap map, [Out] Single* values); internal unsafe static GetPixelMapfv glGetPixelMapfv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetPixelMapuiv(OpenTK.Graphics.OpenGL.PixelMap map, [Out] UInt32* values); + internal unsafe delegate void GetPixelMapuiv(OpenTK.Graphics.PixelMap map, [Out] UInt32* values); internal unsafe static GetPixelMapuiv glGetPixelMapuiv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetPixelMapusv(OpenTK.Graphics.OpenGL.PixelMap map, [Out] UInt16* values); + internal unsafe delegate void GetPixelMapusv(OpenTK.Graphics.PixelMap map, [Out] UInt16* values); internal unsafe static GetPixelMapusv glGetPixelMapusv; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void GetPolygonStipple([Out] Byte* mask); internal unsafe static GetPolygonStipple glGetPolygonStipple; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate IntPtr GetString(OpenTK.Graphics.OpenGL.StringName name); + internal delegate IntPtr GetString(OpenTK.Graphics.StringName name); internal static GetString glGetString; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetTexEnvfv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [Out] Single* @params); + internal unsafe delegate void GetTexEnvfv(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, [Out] Single* @params); internal unsafe static GetTexEnvfv glGetTexEnvfv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetTexEnviv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [Out] Int32* @params); + internal unsafe delegate void GetTexEnviv(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, [Out] Int32* @params); internal unsafe static GetTexEnviv glGetTexEnviv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetTexGendv(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [Out] Double* @params); + internal unsafe delegate void GetTexGendv(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, [Out] Double* @params); internal unsafe static GetTexGendv glGetTexGendv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetTexGenfv(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [Out] Single* @params); + internal unsafe delegate void GetTexGenfv(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, [Out] Single* @params); internal unsafe static GetTexGenfv glGetTexGenfv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetTexGeniv(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [Out] Int32* @params); + internal unsafe delegate void GetTexGeniv(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, [Out] Int32* @params); internal unsafe static GetTexGeniv glGetTexGeniv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [Out] IntPtr pixels); + internal delegate void GetTexImage(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr pixels); internal static GetTexImage glGetTexImage; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetTexParameterfv(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [Out] Single* @params); + internal unsafe delegate void GetTexParameterfv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Single* @params); internal unsafe static GetTexParameterfv glGetTexParameterfv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetTexParameteriv(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [Out] Int32* @params); + internal unsafe delegate void GetTexParameteriv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32* @params); internal unsafe static GetTexParameteriv glGetTexParameteriv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetTexLevelParameterfv(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [Out] Single* @params); + internal unsafe delegate void GetTexLevelParameterfv(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.GetTextureParameter pname, [Out] Single* @params); internal unsafe static GetTexLevelParameterfv glGetTexLevelParameterfv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetTexLevelParameteriv(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [Out] Int32* @params); + internal unsafe delegate void GetTexLevelParameteriv(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32* @params); internal unsafe static GetTexLevelParameteriv glGetTexLevelParameteriv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate bool IsEnabled(OpenTK.Graphics.OpenGL.EnableCap cap); + internal delegate bool IsEnabled(OpenTK.Graphics.EnableCap cap); internal static IsEnabled glIsEnabled; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate bool IsList(UInt32 list); @@ -890,7 +890,7 @@ namespace OpenTK.Graphics.OpenGL internal unsafe delegate void LoadMatrixd(Double* m); internal unsafe static LoadMatrixd glLoadMatrixd; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MatrixMode(OpenTK.Graphics.OpenGL.MatrixMode mode); + internal delegate void MatrixMode(OpenTK.Graphics.MatrixMode mode); internal static MatrixMode glMatrixMode; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void MultMatrixf(Single* m); @@ -932,67 +932,67 @@ namespace OpenTK.Graphics.OpenGL internal delegate void ArrayElement(Int32 i); internal static ArrayElement glArrayElement; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, IntPtr pointer); + internal delegate void ColorPointer(Int32 size, OpenTK.Graphics.ColorPointerType type, Int32 stride, IntPtr pointer); internal static ColorPointer glColorPointer; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void DisableClientState(OpenTK.Graphics.OpenGL.EnableCap array); + internal delegate void DisableClientState(OpenTK.Graphics.EnableCap array); internal static DisableClientState glDisableClientState; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void DrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 first, Int32 count); + internal delegate void DrawArrays(OpenTK.Graphics.BeginMode mode, Int32 first, Int32 count); internal static DrawArrays glDrawArrays; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void DrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices); + internal delegate void DrawElements(OpenTK.Graphics.BeginMode mode, Int32 count, OpenTK.Graphics.DrawElementsType type, IntPtr indices); internal static DrawElements glDrawElements; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void EdgeFlagPointer(Int32 stride, IntPtr pointer); internal static EdgeFlagPointer glEdgeFlagPointer; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void EnableClientState(OpenTK.Graphics.OpenGL.EnableCap array); + internal delegate void EnableClientState(OpenTK.Graphics.EnableCap array); internal static EnableClientState glEnableClientState; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetPointerv(OpenTK.Graphics.OpenGL.GetPointervPName pname, [Out] IntPtr @params); + internal delegate void GetPointerv(OpenTK.Graphics.GetPointervPName pname, [Out] IntPtr @params); internal static GetPointerv glGetPointerv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void IndexPointer(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, IntPtr pointer); + internal delegate void IndexPointer(OpenTK.Graphics.IndexPointerType type, Int32 stride, IntPtr pointer); internal static IndexPointer glIndexPointer; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void InterleavedArrays(OpenTK.Graphics.OpenGL.InterleavedArrayFormat format, Int32 stride, IntPtr pointer); + internal delegate void InterleavedArrays(OpenTK.Graphics.InterleavedArrayFormat format, Int32 stride, IntPtr pointer); internal static InterleavedArrays glInterleavedArrays; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, IntPtr pointer); + internal delegate void NormalPointer(OpenTK.Graphics.NormalPointerType type, Int32 stride, IntPtr pointer); internal static NormalPointer glNormalPointer; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, IntPtr pointer); + internal delegate void TexCoordPointer(Int32 size, OpenTK.Graphics.TexCoordPointerType type, Int32 stride, IntPtr pointer); internal static TexCoordPointer glTexCoordPointer; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, IntPtr pointer); + internal delegate void VertexPointer(Int32 size, OpenTK.Graphics.VertexPointerType type, Int32 stride, IntPtr pointer); internal static VertexPointer glVertexPointer; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void PolygonOffset(Single factor, Single units); internal static PolygonOffset glPolygonOffset; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CopyTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border); + internal delegate void CopyTexImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border); internal static CopyTexImage1D glCopyTexImage1D; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CopyTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border); + internal delegate void CopyTexImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border); internal static CopyTexImage2D glCopyTexImage2D; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CopyTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width); + internal delegate void CopyTexSubImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width); internal static CopyTexSubImage1D glCopyTexSubImage1D; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CopyTexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height); + internal delegate void CopyTexSubImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height); internal static CopyTexSubImage2D glCopyTexSubImage2D; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void TexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels); + internal delegate void TexSubImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels); internal static TexSubImage1D glTexSubImage1D; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void TexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels); + internal delegate void TexSubImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels); internal static TexSubImage2D glTexSubImage2D; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate bool AreTexturesResident(Int32 n, UInt32* textures, [Out] bool* residences); internal unsafe static AreTexturesResident glAreTexturesResident; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BindTexture(OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 texture); + internal delegate void BindTexture(OpenTK.Graphics.TextureTarget target, UInt32 texture); internal static BindTexture glBindTexture; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void DeleteTextures(Int32 n, UInt32* textures); @@ -1016,223 +1016,223 @@ namespace OpenTK.Graphics.OpenGL internal delegate void PopClientAttrib(); internal static PopClientAttrib glPopClientAttrib; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void PushClientAttrib(OpenTK.Graphics.OpenGL.ClientAttribMask mask); + internal delegate void PushClientAttrib(OpenTK.Graphics.ClientAttribMask mask); internal static PushClientAttrib glPushClientAttrib; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void BlendColor(Single red, Single green, Single blue, Single alpha); internal static BlendColor glBlendColor; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BlendEquation(OpenTK.Graphics.OpenGL.BlendEquationMode mode); + internal delegate void BlendEquation(OpenTK.Graphics.BlendEquationMode mode); internal static BlendEquation glBlendEquation; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices); + internal delegate void DrawRangeElements(OpenTK.Graphics.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.DrawElementsType type, IntPtr indices); internal static DrawRangeElements glDrawRangeElements; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ColorTable(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr table); + internal delegate void ColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr table); internal static ColorTable glColorTable; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ColorTableParameterfv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Single* @params); + internal unsafe delegate void ColorTableParameterfv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single* @params); internal unsafe static ColorTableParameterfv glColorTableParameterfv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ColorTableParameteriv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Int32* @params); + internal unsafe delegate void ColorTableParameteriv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32* @params); internal unsafe static ColorTableParameteriv glColorTableParameteriv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CopyColorTable(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width); + internal delegate void CopyColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width); internal static CopyColorTable glCopyColorTable; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetColorTable(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [Out] IntPtr table); + internal delegate void GetColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr table); internal static GetColorTable glGetColorTable; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetColorTableParameterfv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params); + internal unsafe delegate void GetColorTableParameterfv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params); internal unsafe static GetColorTableParameterfv glGetColorTableParameterfv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetColorTableParameteriv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params); + internal unsafe delegate void GetColorTableParameteriv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params); internal unsafe static GetColorTableParameteriv glGetColorTableParameteriv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ColorSubTable(OpenTK.Graphics.OpenGL.All target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr data); + internal delegate void ColorSubTable(OpenTK.Graphics.All target, Int32 start, Int32 count, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr data); internal static ColorSubTable glColorSubTable; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CopyColorSubTable(OpenTK.Graphics.OpenGL.All target, Int32 start, Int32 x, Int32 y, Int32 width); + internal delegate void CopyColorSubTable(OpenTK.Graphics.All target, Int32 start, Int32 x, Int32 y, Int32 width); internal static CopyColorSubTable glCopyColorSubTable; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr image); + internal delegate void ConvolutionFilter1D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr image); internal static ConvolutionFilter1D glConvolutionFilter1D; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr image); + internal delegate void ConvolutionFilter2D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr image); internal static ConvolutionFilter2D glConvolutionFilter2D; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ConvolutionParameterf(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Single @params); + internal delegate void ConvolutionParameterf(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single @params); internal static ConvolutionParameterf glConvolutionParameterf; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ConvolutionParameterfv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Single* @params); + internal unsafe delegate void ConvolutionParameterfv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single* @params); internal unsafe static ConvolutionParameterfv glConvolutionParameterfv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ConvolutionParameteri(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Int32 @params); + internal delegate void ConvolutionParameteri(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32 @params); internal static ConvolutionParameteri glConvolutionParameteri; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ConvolutionParameteriv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Int32* @params); + internal unsafe delegate void ConvolutionParameteriv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32* @params); internal unsafe static ConvolutionParameteriv glConvolutionParameteriv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CopyConvolutionFilter1D(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width); + internal delegate void CopyConvolutionFilter1D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width); internal static CopyConvolutionFilter1D glCopyConvolutionFilter1D; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CopyConvolutionFilter2D(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height); + internal delegate void CopyConvolutionFilter2D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height); internal static CopyConvolutionFilter2D glCopyConvolutionFilter2D; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetConvolutionFilter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [Out] IntPtr image); + internal delegate void GetConvolutionFilter(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr image); internal static GetConvolutionFilter glGetConvolutionFilter; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetConvolutionParameterfv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params); + internal unsafe delegate void GetConvolutionParameterfv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params); internal unsafe static GetConvolutionParameterfv glGetConvolutionParameterfv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetConvolutionParameteriv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params); + internal unsafe delegate void GetConvolutionParameteriv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params); internal unsafe static GetConvolutionParameteriv glGetConvolutionParameteriv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetSeparableFilter(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [Out] IntPtr row, [Out] IntPtr column, [Out] IntPtr span); + internal delegate void GetSeparableFilter(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr row, [Out] IntPtr column, [Out] IntPtr span); internal static GetSeparableFilter glGetSeparableFilter; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void SeparableFilter2D(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr row, IntPtr column); + internal delegate void SeparableFilter2D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr row, IntPtr column); internal static SeparableFilter2D glSeparableFilter2D; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetHistogram(OpenTK.Graphics.OpenGL.All target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [Out] IntPtr values); + internal delegate void GetHistogram(OpenTK.Graphics.All target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr values); internal static GetHistogram glGetHistogram; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetHistogramParameterfv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params); + internal unsafe delegate void GetHistogramParameterfv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params); internal unsafe static GetHistogramParameterfv glGetHistogramParameterfv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetHistogramParameteriv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params); + internal unsafe delegate void GetHistogramParameteriv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params); internal unsafe static GetHistogramParameteriv glGetHistogramParameteriv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetMinmax(OpenTK.Graphics.OpenGL.All target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [Out] IntPtr values); + internal delegate void GetMinmax(OpenTK.Graphics.All target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr values); internal static GetMinmax glGetMinmax; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetMinmaxParameterfv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params); + internal unsafe delegate void GetMinmaxParameterfv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params); internal unsafe static GetMinmaxParameterfv glGetMinmaxParameterfv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetMinmaxParameteriv(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params); + internal unsafe delegate void GetMinmaxParameteriv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params); internal unsafe static GetMinmaxParameteriv glGetMinmaxParameteriv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void Histogram(OpenTK.Graphics.OpenGL.All target, Int32 width, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink); + internal delegate void Histogram(OpenTK.Graphics.All target, Int32 width, OpenTK.Graphics.PixelInternalFormat internalformat, bool sink); internal static Histogram glHistogram; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void Minmax(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink); + internal delegate void Minmax(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, bool sink); internal static Minmax glMinmax; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ResetHistogram(OpenTK.Graphics.OpenGL.All target); + internal delegate void ResetHistogram(OpenTK.Graphics.All target); internal static ResetHistogram glResetHistogram; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ResetMinmax(OpenTK.Graphics.OpenGL.All target); + internal delegate void ResetMinmax(OpenTK.Graphics.All target); internal static ResetMinmax glResetMinmax; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void TexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels); + internal delegate void TexImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels); internal static TexImage3D glTexImage3D; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void TexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels); + internal delegate void TexSubImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels); internal static TexSubImage3D glTexSubImage3D; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CopyTexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height); + internal delegate void CopyTexSubImage3D(OpenTK.Graphics.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.Graphics.OpenGL.TextureUnit texture); + internal delegate void ActiveTexture(OpenTK.Graphics.TextureUnit texture); internal static ActiveTexture glActiveTexture; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ClientActiveTexture(OpenTK.Graphics.OpenGL.TextureUnit texture); + internal delegate void ClientActiveTexture(OpenTK.Graphics.TextureUnit texture); internal static ClientActiveTexture glClientActiveTexture; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord1d(OpenTK.Graphics.OpenGL.TextureUnit target, Double s); + internal delegate void MultiTexCoord1d(OpenTK.Graphics.TextureUnit target, Double s); internal static MultiTexCoord1d glMultiTexCoord1d; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord1dv(OpenTK.Graphics.OpenGL.TextureUnit target, Double* v); + internal unsafe delegate void MultiTexCoord1dv(OpenTK.Graphics.TextureUnit target, Double* v); internal unsafe static MultiTexCoord1dv glMultiTexCoord1dv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord1f(OpenTK.Graphics.OpenGL.TextureUnit target, Single s); + internal delegate void MultiTexCoord1f(OpenTK.Graphics.TextureUnit target, Single s); internal static MultiTexCoord1f glMultiTexCoord1f; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord1fv(OpenTK.Graphics.OpenGL.TextureUnit target, Single* v); + internal unsafe delegate void MultiTexCoord1fv(OpenTK.Graphics.TextureUnit target, Single* v); internal unsafe static MultiTexCoord1fv glMultiTexCoord1fv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord1i(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s); + internal delegate void MultiTexCoord1i(OpenTK.Graphics.TextureUnit target, Int32 s); internal static MultiTexCoord1i glMultiTexCoord1i; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord1iv(OpenTK.Graphics.OpenGL.TextureUnit target, Int32* v); + internal unsafe delegate void MultiTexCoord1iv(OpenTK.Graphics.TextureUnit target, Int32* v); internal unsafe static MultiTexCoord1iv glMultiTexCoord1iv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord1s(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s); + internal delegate void MultiTexCoord1s(OpenTK.Graphics.TextureUnit target, Int16 s); internal static MultiTexCoord1s glMultiTexCoord1s; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord1sv(OpenTK.Graphics.OpenGL.TextureUnit target, Int16* v); + internal unsafe delegate void MultiTexCoord1sv(OpenTK.Graphics.TextureUnit target, Int16* v); internal unsafe static MultiTexCoord1sv glMultiTexCoord1sv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord2d(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t); + internal delegate void MultiTexCoord2d(OpenTK.Graphics.TextureUnit target, Double s, Double t); internal static MultiTexCoord2d glMultiTexCoord2d; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord2dv(OpenTK.Graphics.OpenGL.TextureUnit target, Double* v); + internal unsafe delegate void MultiTexCoord2dv(OpenTK.Graphics.TextureUnit target, Double* v); internal unsafe static MultiTexCoord2dv glMultiTexCoord2dv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord2f(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t); + internal delegate void MultiTexCoord2f(OpenTK.Graphics.TextureUnit target, Single s, Single t); internal static MultiTexCoord2f glMultiTexCoord2f; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord2fv(OpenTK.Graphics.OpenGL.TextureUnit target, Single* v); + internal unsafe delegate void MultiTexCoord2fv(OpenTK.Graphics.TextureUnit target, Single* v); internal unsafe static MultiTexCoord2fv glMultiTexCoord2fv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord2i(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t); + internal delegate void MultiTexCoord2i(OpenTK.Graphics.TextureUnit target, Int32 s, Int32 t); internal static MultiTexCoord2i glMultiTexCoord2i; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord2iv(OpenTK.Graphics.OpenGL.TextureUnit target, Int32* v); + internal unsafe delegate void MultiTexCoord2iv(OpenTK.Graphics.TextureUnit target, Int32* v); internal unsafe static MultiTexCoord2iv glMultiTexCoord2iv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord2s(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t); + internal delegate void MultiTexCoord2s(OpenTK.Graphics.TextureUnit target, Int16 s, Int16 t); internal static MultiTexCoord2s glMultiTexCoord2s; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord2sv(OpenTK.Graphics.OpenGL.TextureUnit target, Int16* v); + internal unsafe delegate void MultiTexCoord2sv(OpenTK.Graphics.TextureUnit target, Int16* v); internal unsafe static MultiTexCoord2sv glMultiTexCoord2sv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord3d(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t, Double r); + internal delegate void MultiTexCoord3d(OpenTK.Graphics.TextureUnit target, Double s, Double t, Double r); internal static MultiTexCoord3d glMultiTexCoord3d; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord3dv(OpenTK.Graphics.OpenGL.TextureUnit target, Double* v); + internal unsafe delegate void MultiTexCoord3dv(OpenTK.Graphics.TextureUnit target, Double* v); internal unsafe static MultiTexCoord3dv glMultiTexCoord3dv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord3f(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t, Single r); + internal delegate void MultiTexCoord3f(OpenTK.Graphics.TextureUnit target, Single s, Single t, Single r); internal static MultiTexCoord3f glMultiTexCoord3f; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord3fv(OpenTK.Graphics.OpenGL.TextureUnit target, Single* v); + internal unsafe delegate void MultiTexCoord3fv(OpenTK.Graphics.TextureUnit target, Single* v); internal unsafe static MultiTexCoord3fv glMultiTexCoord3fv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord3i(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t, Int32 r); + internal delegate void MultiTexCoord3i(OpenTK.Graphics.TextureUnit target, Int32 s, Int32 t, Int32 r); internal static MultiTexCoord3i glMultiTexCoord3i; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord3iv(OpenTK.Graphics.OpenGL.TextureUnit target, Int32* v); + internal unsafe delegate void MultiTexCoord3iv(OpenTK.Graphics.TextureUnit target, Int32* v); internal unsafe static MultiTexCoord3iv glMultiTexCoord3iv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord3s(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t, Int16 r); + internal delegate void MultiTexCoord3s(OpenTK.Graphics.TextureUnit target, Int16 s, Int16 t, Int16 r); internal static MultiTexCoord3s glMultiTexCoord3s; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord3sv(OpenTK.Graphics.OpenGL.TextureUnit target, Int16* v); + internal unsafe delegate void MultiTexCoord3sv(OpenTK.Graphics.TextureUnit target, Int16* v); internal unsafe static MultiTexCoord3sv glMultiTexCoord3sv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord4d(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t, Double r, Double q); + internal delegate void MultiTexCoord4d(OpenTK.Graphics.TextureUnit target, Double s, Double t, Double r, Double q); internal static MultiTexCoord4d glMultiTexCoord4d; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord4dv(OpenTK.Graphics.OpenGL.TextureUnit target, Double* v); + internal unsafe delegate void MultiTexCoord4dv(OpenTK.Graphics.TextureUnit target, Double* v); internal unsafe static MultiTexCoord4dv glMultiTexCoord4dv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord4f(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t, Single r, Single q); + internal delegate void MultiTexCoord4f(OpenTK.Graphics.TextureUnit target, Single s, Single t, Single r, Single q); internal static MultiTexCoord4f glMultiTexCoord4f; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord4fv(OpenTK.Graphics.OpenGL.TextureUnit target, Single* v); + internal unsafe delegate void MultiTexCoord4fv(OpenTK.Graphics.TextureUnit target, Single* v); internal unsafe static MultiTexCoord4fv glMultiTexCoord4fv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord4i(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t, Int32 r, Int32 q); + internal delegate void MultiTexCoord4i(OpenTK.Graphics.TextureUnit target, Int32 s, Int32 t, Int32 r, Int32 q); internal static MultiTexCoord4i glMultiTexCoord4i; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord4iv(OpenTK.Graphics.OpenGL.TextureUnit target, Int32* v); + internal unsafe delegate void MultiTexCoord4iv(OpenTK.Graphics.TextureUnit target, Int32* v); internal unsafe static MultiTexCoord4iv glMultiTexCoord4iv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord4s(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t, Int16 r, Int16 q); + internal delegate void MultiTexCoord4s(OpenTK.Graphics.TextureUnit target, Int16 s, Int16 t, Int16 r, Int16 q); internal static MultiTexCoord4s glMultiTexCoord4s; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord4sv(OpenTK.Graphics.OpenGL.TextureUnit target, Int16* v); + internal unsafe delegate void MultiTexCoord4sv(OpenTK.Graphics.TextureUnit target, Int16* v); internal unsafe static MultiTexCoord4sv glMultiTexCoord4sv; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void LoadTransposeMatrixf(Single* m); @@ -1250,28 +1250,28 @@ namespace OpenTK.Graphics.OpenGL internal delegate void SampleCoverage(Single value, bool invert); internal static SampleCoverage glSampleCoverage; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, IntPtr data); + internal delegate void CompressedTexImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, IntPtr data); internal static CompressedTexImage3D glCompressedTexImage3D; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, IntPtr data); + internal delegate void CompressedTexImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, IntPtr data); internal static CompressedTexImage2D glCompressedTexImage2D; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, IntPtr data); + internal delegate void CompressedTexImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, IntPtr data); internal static CompressedTexImage1D glCompressedTexImage1D; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CompressedTexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data); + internal delegate void CompressedTexSubImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.PixelFormat format, Int32 imageSize, IntPtr data); internal static CompressedTexSubImage3D glCompressedTexSubImage3D; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CompressedTexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data); + internal delegate void CompressedTexSubImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, Int32 imageSize, IntPtr data); internal static CompressedTexSubImage2D glCompressedTexSubImage2D; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data); + internal delegate void CompressedTexSubImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.PixelFormat format, Int32 imageSize, IntPtr data); internal static CompressedTexSubImage1D glCompressedTexSubImage1D; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, [Out] IntPtr img); + internal delegate void GetCompressedTexImage(OpenTK.Graphics.TextureTarget target, Int32 level, [Out] IntPtr img); internal static GetCompressedTexImage glGetCompressedTexImage; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BlendFuncSeparate(OpenTK.Graphics.OpenGL.BlendingFactorSrc sfactorRGB, OpenTK.Graphics.OpenGL.BlendingFactorDest dfactorRGB, OpenTK.Graphics.OpenGL.BlendingFactorSrc sfactorAlpha, OpenTK.Graphics.OpenGL.BlendingFactorDest dfactorAlpha); + internal delegate void BlendFuncSeparate(OpenTK.Graphics.BlendingFactorSrc sfactorRGB, OpenTK.Graphics.BlendingFactorDest dfactorRGB, OpenTK.Graphics.BlendingFactorSrc sfactorAlpha, OpenTK.Graphics.BlendingFactorDest dfactorAlpha); internal static BlendFuncSeparate glBlendFuncSeparate; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void FogCoordf(Single coord); @@ -1286,25 +1286,25 @@ namespace OpenTK.Graphics.OpenGL internal unsafe delegate void FogCoorddv(Double* coord); internal unsafe static FogCoorddv glFogCoorddv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FogCoordPointer(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, IntPtr pointer); + internal delegate void FogCoordPointer(OpenTK.Graphics.FogPointerType type, Int32 stride, IntPtr pointer); internal static FogCoordPointer glFogCoordPointer; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiDrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, [Out] Int32* first, [Out] Int32* count, Int32 primcount); + internal unsafe delegate void MultiDrawArrays(OpenTK.Graphics.BeginMode mode, [Out] Int32* first, [Out] Int32* count, Int32 primcount); internal unsafe static MultiDrawArrays glMultiDrawArrays; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount); + internal unsafe delegate void MultiDrawElements(OpenTK.Graphics.BeginMode mode, Int32* count, OpenTK.Graphics.DrawElementsType type, IntPtr indices, Int32 primcount); internal unsafe static MultiDrawElements glMultiDrawElements; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void PointParameterf(OpenTK.Graphics.OpenGL.PointParameterName pname, Single param); + internal delegate void PointParameterf(OpenTK.Graphics.PointParameterName pname, Single param); internal static PointParameterf glPointParameterf; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void PointParameterfv(OpenTK.Graphics.OpenGL.PointParameterName pname, Single* @params); + internal unsafe delegate void PointParameterfv(OpenTK.Graphics.PointParameterName pname, Single* @params); internal unsafe static PointParameterfv glPointParameterfv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void PointParameteri(OpenTK.Graphics.OpenGL.PointParameterName pname, Int32 param); + internal delegate void PointParameteri(OpenTK.Graphics.PointParameterName pname, Int32 param); internal static PointParameteri glPointParameteri; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void PointParameteriv(OpenTK.Graphics.OpenGL.PointParameterName pname, Int32* @params); + internal unsafe delegate void PointParameteriv(OpenTK.Graphics.PointParameterName pname, Int32* @params); internal unsafe static PointParameteriv glPointParameteriv; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void SecondaryColor3b(SByte red, SByte green, SByte blue); @@ -1355,7 +1355,7 @@ namespace OpenTK.Graphics.OpenGL internal unsafe delegate void SecondaryColor3usv(UInt16* v); internal unsafe static SecondaryColor3usv glSecondaryColor3usv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void SecondaryColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, IntPtr pointer); + internal delegate void SecondaryColorPointer(Int32 size, OpenTK.Graphics.ColorPointerType type, Int32 stride, IntPtr pointer); internal static SecondaryColorPointer glSecondaryColorPointer; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void WindowPos2d(Double x, Double y); @@ -1415,22 +1415,22 @@ namespace OpenTK.Graphics.OpenGL internal delegate bool IsQuery(UInt32 id); internal static IsQuery glIsQuery; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BeginQuery(OpenTK.Graphics.OpenGL.QueryTarget target, UInt32 id); + internal delegate void BeginQuery(OpenTK.Graphics.QueryTarget target, UInt32 id); internal static BeginQuery glBeginQuery; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void EndQuery(OpenTK.Graphics.OpenGL.QueryTarget target); + internal delegate void EndQuery(OpenTK.Graphics.QueryTarget target); internal static EndQuery glEndQuery; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetQueryiv(OpenTK.Graphics.OpenGL.QueryTarget target, OpenTK.Graphics.OpenGL.GetQueryParam pname, [Out] Int32* @params); + internal unsafe delegate void GetQueryiv(OpenTK.Graphics.QueryTarget target, OpenTK.Graphics.GetQueryParam pname, [Out] Int32* @params); internal unsafe static GetQueryiv glGetQueryiv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetQueryObjectiv(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [Out] Int32* @params); + internal unsafe delegate void GetQueryObjectiv(UInt32 id, OpenTK.Graphics.GetQueryObjectParam pname, [Out] Int32* @params); internal unsafe static GetQueryObjectiv glGetQueryObjectiv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetQueryObjectuiv(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [Out] UInt32* @params); + internal unsafe delegate void GetQueryObjectuiv(UInt32 id, OpenTK.Graphics.GetQueryObjectParam pname, [Out] UInt32* @params); internal unsafe static GetQueryObjectuiv glGetQueryObjectuiv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BindBuffer(OpenTK.Graphics.OpenGL.BufferTarget target, UInt32 buffer); + internal delegate void BindBuffer(OpenTK.Graphics.BufferTarget target, UInt32 buffer); internal static BindBuffer glBindBuffer; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void DeleteBuffers(Int32 n, UInt32* buffers); @@ -1442,40 +1442,40 @@ namespace OpenTK.Graphics.OpenGL internal delegate bool IsBuffer(UInt32 buffer); internal static IsBuffer glIsBuffer; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BufferData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr size, IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage); + internal delegate void BufferData(OpenTK.Graphics.BufferTarget target, IntPtr size, IntPtr data, OpenTK.Graphics.BufferUsageHint usage); internal static BufferData glBufferData; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, IntPtr data); + internal delegate void BufferSubData(OpenTK.Graphics.BufferTarget target, IntPtr offset, IntPtr size, IntPtr data); internal static BufferSubData glBufferSubData; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [Out] IntPtr data); + internal delegate void GetBufferSubData(OpenTK.Graphics.BufferTarget target, IntPtr offset, IntPtr size, [Out] IntPtr data); internal static GetBufferSubData glGetBufferSubData; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate IntPtr MapBuffer(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferAccess access); + internal unsafe delegate IntPtr MapBuffer(OpenTK.Graphics.BufferTarget target, OpenTK.Graphics.BufferAccess access); internal unsafe static MapBuffer glMapBuffer; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate bool UnmapBuffer(OpenTK.Graphics.OpenGL.BufferTarget target); + internal delegate bool UnmapBuffer(OpenTK.Graphics.BufferTarget target); internal static UnmapBuffer glUnmapBuffer; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetBufferParameteriv(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [Out] Int32* @params); + internal unsafe delegate void GetBufferParameteriv(OpenTK.Graphics.BufferTarget target, OpenTK.Graphics.BufferParameterName pname, [Out] Int32* @params); internal unsafe static GetBufferParameteriv glGetBufferParameteriv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetBufferPointerv(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferPointer pname, [Out] IntPtr @params); + internal delegate void GetBufferPointerv(OpenTK.Graphics.BufferTarget target, OpenTK.Graphics.BufferPointer pname, [Out] IntPtr @params); internal static GetBufferPointerv glGetBufferPointerv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BlendEquationSeparate(OpenTK.Graphics.OpenGL.All modeRGB, OpenTK.Graphics.OpenGL.All modeAlpha); + internal delegate void BlendEquationSeparate(OpenTK.Graphics.All modeRGB, OpenTK.Graphics.All modeAlpha); internal static BlendEquationSeparate glBlendEquationSeparate; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void DrawBuffers(Int32 n, OpenTK.Graphics.OpenGL.DrawBuffersEnum* bufs); + internal unsafe delegate void DrawBuffers(Int32 n, OpenTK.Graphics.DrawBuffersEnum* bufs); internal unsafe static DrawBuffers glDrawBuffers; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void StencilOpSeparate(OpenTK.Graphics.OpenGL.All face, OpenTK.Graphics.OpenGL.StencilOp sfail, OpenTK.Graphics.OpenGL.StencilOp dpfail, OpenTK.Graphics.OpenGL.StencilOp dppass); + internal delegate void StencilOpSeparate(OpenTK.Graphics.All face, OpenTK.Graphics.StencilOp sfail, OpenTK.Graphics.StencilOp dpfail, OpenTK.Graphics.StencilOp dppass); internal static StencilOpSeparate glStencilOpSeparate; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void StencilFuncSeparate(OpenTK.Graphics.OpenGL.StencilFunction frontfunc, OpenTK.Graphics.OpenGL.StencilFunction backfunc, Int32 @ref, UInt32 mask); + internal delegate void StencilFuncSeparate(OpenTK.Graphics.StencilFunction frontfunc, OpenTK.Graphics.StencilFunction backfunc, Int32 @ref, UInt32 mask); internal static StencilFuncSeparate glStencilFuncSeparate; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void StencilMaskSeparate(OpenTK.Graphics.OpenGL.All face, UInt32 mask); + internal delegate void StencilMaskSeparate(OpenTK.Graphics.All face, UInt32 mask); internal static StencilMaskSeparate glStencilMaskSeparate; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void AttachShader(UInt32 program, UInt32 shader); @@ -1490,7 +1490,7 @@ namespace OpenTK.Graphics.OpenGL internal delegate Int32 CreateProgram(); internal static CreateProgram glCreateProgram; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate Int32 CreateShader(OpenTK.Graphics.OpenGL.ShaderType type); + internal delegate Int32 CreateShader(OpenTK.Graphics.ShaderType type); internal static CreateShader glCreateShader; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void DeleteProgram(UInt32 program); @@ -1508,10 +1508,10 @@ namespace OpenTK.Graphics.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.Graphics.OpenGL.ActiveAttribType* 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.Graphics.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.Graphics.OpenGL.ActiveUniformType* 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.Graphics.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); @@ -1520,13 +1520,13 @@ namespace OpenTK.Graphics.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.Graphics.OpenGL.ProgramParameter pname, [Out] Int32* @params); + internal unsafe delegate void GetProgramiv(UInt32 program, OpenTK.Graphics.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.Graphics.OpenGL.ShaderParameter pname, [Out] Int32* @params); + internal unsafe delegate void GetShaderiv(UInt32 shader, OpenTK.Graphics.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); @@ -1544,16 +1544,16 @@ namespace OpenTK.Graphics.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.Graphics.OpenGL.VertexAttribParameter pname, [Out] Double* @params); + internal unsafe delegate void GetVertexAttribdv(UInt32 index, OpenTK.Graphics.VertexAttribParameter pname, [Out] Double* @params); internal unsafe static GetVertexAttribdv glGetVertexAttribdv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetVertexAttribfv(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [Out] Single* @params); + internal unsafe delegate void GetVertexAttribfv(UInt32 index, OpenTK.Graphics.VertexAttribParameter pname, [Out] Single* @params); internal unsafe static GetVertexAttribfv glGetVertexAttribfv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetVertexAttribiv(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [Out] Int32* @params); + internal unsafe delegate void GetVertexAttribiv(UInt32 index, OpenTK.Graphics.VertexAttribParameter pname, [Out] Int32* @params); internal unsafe static GetVertexAttribiv glGetVertexAttribiv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetVertexAttribPointerv(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameter pname, [Out] IntPtr pointer); + internal delegate void GetVertexAttribPointerv(UInt32 index, OpenTK.Graphics.VertexAttribPointerParameter pname, [Out] IntPtr pointer); internal static GetVertexAttribPointerv glGetVertexAttribPointerv; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate bool IsProgram(UInt32 program); @@ -1739,7 +1739,7 @@ namespace OpenTK.Graphics.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.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, IntPtr pointer); + internal delegate void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.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); @@ -1760,106 +1760,106 @@ namespace OpenTK.Graphics.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.Graphics.OpenGL.TextureUnit texture); + internal delegate void ActiveTextureARB(OpenTK.Graphics.TextureUnit texture); internal static ActiveTextureARB glActiveTextureARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ClientActiveTextureARB(OpenTK.Graphics.OpenGL.TextureUnit texture); + internal delegate void ClientActiveTextureARB(OpenTK.Graphics.TextureUnit texture); internal static ClientActiveTextureARB glClientActiveTextureARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord1dARB(OpenTK.Graphics.OpenGL.TextureUnit target, Double s); + internal delegate void MultiTexCoord1dARB(OpenTK.Graphics.TextureUnit target, Double s); internal static MultiTexCoord1dARB glMultiTexCoord1dARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord1dvARB(OpenTK.Graphics.OpenGL.TextureUnit target, Double* v); + internal unsafe delegate void MultiTexCoord1dvARB(OpenTK.Graphics.TextureUnit target, Double* v); internal unsafe static MultiTexCoord1dvARB glMultiTexCoord1dvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord1fARB(OpenTK.Graphics.OpenGL.TextureUnit target, Single s); + internal delegate void MultiTexCoord1fARB(OpenTK.Graphics.TextureUnit target, Single s); internal static MultiTexCoord1fARB glMultiTexCoord1fARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord1fvARB(OpenTK.Graphics.OpenGL.TextureUnit target, Single* v); + internal unsafe delegate void MultiTexCoord1fvARB(OpenTK.Graphics.TextureUnit target, Single* v); internal unsafe static MultiTexCoord1fvARB glMultiTexCoord1fvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord1iARB(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s); + internal delegate void MultiTexCoord1iARB(OpenTK.Graphics.TextureUnit target, Int32 s); internal static MultiTexCoord1iARB glMultiTexCoord1iARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord1ivARB(OpenTK.Graphics.OpenGL.TextureUnit target, Int32* v); + internal unsafe delegate void MultiTexCoord1ivARB(OpenTK.Graphics.TextureUnit target, Int32* v); internal unsafe static MultiTexCoord1ivARB glMultiTexCoord1ivARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord1sARB(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s); + internal delegate void MultiTexCoord1sARB(OpenTK.Graphics.TextureUnit target, Int16 s); internal static MultiTexCoord1sARB glMultiTexCoord1sARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord1svARB(OpenTK.Graphics.OpenGL.TextureUnit target, Int16* v); + internal unsafe delegate void MultiTexCoord1svARB(OpenTK.Graphics.TextureUnit target, Int16* v); internal unsafe static MultiTexCoord1svARB glMultiTexCoord1svARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord2dARB(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t); + internal delegate void MultiTexCoord2dARB(OpenTK.Graphics.TextureUnit target, Double s, Double t); internal static MultiTexCoord2dARB glMultiTexCoord2dARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord2dvARB(OpenTK.Graphics.OpenGL.TextureUnit target, Double* v); + internal unsafe delegate void MultiTexCoord2dvARB(OpenTK.Graphics.TextureUnit target, Double* v); internal unsafe static MultiTexCoord2dvARB glMultiTexCoord2dvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord2fARB(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t); + internal delegate void MultiTexCoord2fARB(OpenTK.Graphics.TextureUnit target, Single s, Single t); internal static MultiTexCoord2fARB glMultiTexCoord2fARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord2fvARB(OpenTK.Graphics.OpenGL.TextureUnit target, Single* v); + internal unsafe delegate void MultiTexCoord2fvARB(OpenTK.Graphics.TextureUnit target, Single* v); internal unsafe static MultiTexCoord2fvARB glMultiTexCoord2fvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord2iARB(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t); + internal delegate void MultiTexCoord2iARB(OpenTK.Graphics.TextureUnit target, Int32 s, Int32 t); internal static MultiTexCoord2iARB glMultiTexCoord2iARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord2ivARB(OpenTK.Graphics.OpenGL.TextureUnit target, Int32* v); + internal unsafe delegate void MultiTexCoord2ivARB(OpenTK.Graphics.TextureUnit target, Int32* v); internal unsafe static MultiTexCoord2ivARB glMultiTexCoord2ivARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord2sARB(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t); + internal delegate void MultiTexCoord2sARB(OpenTK.Graphics.TextureUnit target, Int16 s, Int16 t); internal static MultiTexCoord2sARB glMultiTexCoord2sARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord2svARB(OpenTK.Graphics.OpenGL.TextureUnit target, Int16* v); + internal unsafe delegate void MultiTexCoord2svARB(OpenTK.Graphics.TextureUnit target, Int16* v); internal unsafe static MultiTexCoord2svARB glMultiTexCoord2svARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord3dARB(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t, Double r); + internal delegate void MultiTexCoord3dARB(OpenTK.Graphics.TextureUnit target, Double s, Double t, Double r); internal static MultiTexCoord3dARB glMultiTexCoord3dARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord3dvARB(OpenTK.Graphics.OpenGL.TextureUnit target, Double* v); + internal unsafe delegate void MultiTexCoord3dvARB(OpenTK.Graphics.TextureUnit target, Double* v); internal unsafe static MultiTexCoord3dvARB glMultiTexCoord3dvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord3fARB(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t, Single r); + internal delegate void MultiTexCoord3fARB(OpenTK.Graphics.TextureUnit target, Single s, Single t, Single r); internal static MultiTexCoord3fARB glMultiTexCoord3fARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord3fvARB(OpenTK.Graphics.OpenGL.TextureUnit target, Single* v); + internal unsafe delegate void MultiTexCoord3fvARB(OpenTK.Graphics.TextureUnit target, Single* v); internal unsafe static MultiTexCoord3fvARB glMultiTexCoord3fvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord3iARB(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t, Int32 r); + internal delegate void MultiTexCoord3iARB(OpenTK.Graphics.TextureUnit target, Int32 s, Int32 t, Int32 r); internal static MultiTexCoord3iARB glMultiTexCoord3iARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord3ivARB(OpenTK.Graphics.OpenGL.TextureUnit target, Int32* v); + internal unsafe delegate void MultiTexCoord3ivARB(OpenTK.Graphics.TextureUnit target, Int32* v); internal unsafe static MultiTexCoord3ivARB glMultiTexCoord3ivARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord3sARB(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t, Int16 r); + internal delegate void MultiTexCoord3sARB(OpenTK.Graphics.TextureUnit target, Int16 s, Int16 t, Int16 r); internal static MultiTexCoord3sARB glMultiTexCoord3sARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord3svARB(OpenTK.Graphics.OpenGL.TextureUnit target, Int16* v); + internal unsafe delegate void MultiTexCoord3svARB(OpenTK.Graphics.TextureUnit target, Int16* v); internal unsafe static MultiTexCoord3svARB glMultiTexCoord3svARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord4dARB(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t, Double r, Double q); + internal delegate void MultiTexCoord4dARB(OpenTK.Graphics.TextureUnit target, Double s, Double t, Double r, Double q); internal static MultiTexCoord4dARB glMultiTexCoord4dARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord4dvARB(OpenTK.Graphics.OpenGL.TextureUnit target, Double* v); + internal unsafe delegate void MultiTexCoord4dvARB(OpenTK.Graphics.TextureUnit target, Double* v); internal unsafe static MultiTexCoord4dvARB glMultiTexCoord4dvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord4fARB(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t, Single r, Single q); + internal delegate void MultiTexCoord4fARB(OpenTK.Graphics.TextureUnit target, Single s, Single t, Single r, Single q); internal static MultiTexCoord4fARB glMultiTexCoord4fARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord4fvARB(OpenTK.Graphics.OpenGL.TextureUnit target, Single* v); + internal unsafe delegate void MultiTexCoord4fvARB(OpenTK.Graphics.TextureUnit target, Single* v); internal unsafe static MultiTexCoord4fvARB glMultiTexCoord4fvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord4iARB(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t, Int32 r, Int32 q); + internal delegate void MultiTexCoord4iARB(OpenTK.Graphics.TextureUnit target, Int32 s, Int32 t, Int32 r, Int32 q); internal static MultiTexCoord4iARB glMultiTexCoord4iARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord4ivARB(OpenTK.Graphics.OpenGL.TextureUnit target, Int32* v); + internal unsafe delegate void MultiTexCoord4ivARB(OpenTK.Graphics.TextureUnit target, Int32* v); internal unsafe static MultiTexCoord4ivARB glMultiTexCoord4ivARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord4sARB(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t, Int16 r, Int16 q); + internal delegate void MultiTexCoord4sARB(OpenTK.Graphics.TextureUnit target, Int16 s, Int16 t, Int16 r, Int16 q); internal static MultiTexCoord4sARB glMultiTexCoord4sARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord4svARB(OpenTK.Graphics.OpenGL.TextureUnit target, Int16* v); + internal unsafe delegate void MultiTexCoord4svARB(OpenTK.Graphics.TextureUnit target, Int16* v); internal unsafe static MultiTexCoord4svARB glMultiTexCoord4svARB; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void LoadTransposeMatrixfARB(Single* m); @@ -1877,31 +1877,31 @@ namespace OpenTK.Graphics.OpenGL internal delegate void SampleCoverageARB(Single value, bool invert); internal static SampleCoverageARB glSampleCoverageARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CompressedTexImage3DARB(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, IntPtr data); + internal delegate void CompressedTexImage3DARB(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, IntPtr data); internal static CompressedTexImage3DARB glCompressedTexImage3DARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CompressedTexImage2DARB(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, IntPtr data); + internal delegate void CompressedTexImage2DARB(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, IntPtr data); internal static CompressedTexImage2DARB glCompressedTexImage2DARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CompressedTexImage1DARB(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, IntPtr data); + internal delegate void CompressedTexImage1DARB(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, IntPtr data); internal static CompressedTexImage1DARB glCompressedTexImage1DARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CompressedTexSubImage3DARB(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data); + internal delegate void CompressedTexSubImage3DARB(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.PixelFormat format, Int32 imageSize, IntPtr data); internal static CompressedTexSubImage3DARB glCompressedTexSubImage3DARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CompressedTexSubImage2DARB(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data); + internal delegate void CompressedTexSubImage2DARB(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, Int32 imageSize, IntPtr data); internal static CompressedTexSubImage2DARB glCompressedTexSubImage2DARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CompressedTexSubImage1DARB(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data); + internal delegate void CompressedTexSubImage1DARB(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.PixelFormat format, Int32 imageSize, IntPtr data); internal static CompressedTexSubImage1DARB glCompressedTexSubImage1DARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetCompressedTexImageARB(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, [Out] IntPtr img); + internal delegate void GetCompressedTexImageARB(OpenTK.Graphics.TextureTarget target, Int32 level, [Out] IntPtr img); internal static GetCompressedTexImageARB glGetCompressedTexImageARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void PointParameterfARB(OpenTK.Graphics.OpenGL.All pname, Single param); + internal delegate void PointParameterfARB(OpenTK.Graphics.All pname, Single param); internal static PointParameterfARB glPointParameterfARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void PointParameterfvARB(OpenTK.Graphics.OpenGL.All pname, Single* @params); + internal unsafe delegate void PointParameterfvARB(OpenTK.Graphics.All pname, Single* @params); internal unsafe static PointParameterfvARB glPointParameterfvARB; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void WeightbvARB(Int32 size, SByte* weights); @@ -1928,7 +1928,7 @@ namespace OpenTK.Graphics.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.Graphics.OpenGL.All type, Int32 stride, IntPtr pointer); + internal delegate void WeightPointerARB(Int32 size, OpenTK.Graphics.All type, Int32 stride, IntPtr pointer); internal static WeightPointerARB glWeightPointerARB; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void VertexBlendARB(Int32 count); @@ -1946,7 +1946,7 @@ namespace OpenTK.Graphics.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.Graphics.OpenGL.All type, Int32 stride, IntPtr pointer); + internal delegate void MatrixIndexPointerARB(Int32 size, OpenTK.Graphics.All type, Int32 stride, IntPtr pointer); internal static MatrixIndexPointerARB glMatrixIndexPointerARB; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void WindowPos2dARB(Double x, Double y); @@ -2105,7 +2105,7 @@ namespace OpenTK.Graphics.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.Graphics.OpenGL.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, IntPtr pointer); + internal delegate void VertexAttribPointerARB(UInt32 index, Int32 size, OpenTK.Graphics.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, IntPtr pointer); internal static VertexAttribPointerARB glVertexAttribPointerARB; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void EnableVertexAttribArrayARB(UInt32 index); @@ -2114,10 +2114,10 @@ namespace OpenTK.Graphics.OpenGL internal delegate void DisableVertexAttribArrayARB(UInt32 index); internal static DisableVertexAttribArrayARB glDisableVertexAttribArrayARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ProgramStringARB(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.AssemblyProgramFormatArb format, Int32 len, IntPtr @string); + internal delegate void ProgramStringARB(OpenTK.Graphics.AssemblyProgramTargetArb target, OpenTK.Graphics.AssemblyProgramFormatArb format, Int32 len, IntPtr @string); internal static ProgramStringARB glProgramStringARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BindProgramARB(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 program); + internal delegate void BindProgramARB(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 program); internal static BindProgramARB glBindProgramARB; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void DeleteProgramsARB(Int32 n, UInt32* programs); @@ -2126,64 +2126,64 @@ namespace OpenTK.Graphics.OpenGL internal unsafe delegate void GenProgramsARB(Int32 n, [Out] UInt32* programs); internal unsafe static GenProgramsARB glGenProgramsARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ProgramEnvParameter4dARB(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Double x, Double y, Double z, Double w); + internal delegate void ProgramEnvParameter4dARB(OpenTK.Graphics.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.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Double* @params); + internal unsafe delegate void ProgramEnvParameter4dvARB(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, Double* @params); internal unsafe static ProgramEnvParameter4dvARB glProgramEnvParameter4dvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ProgramEnvParameter4fARB(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Single x, Single y, Single z, Single w); + internal delegate void ProgramEnvParameter4fARB(OpenTK.Graphics.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.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Single* @params); + internal unsafe delegate void ProgramEnvParameter4fvARB(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, Single* @params); internal unsafe static ProgramEnvParameter4fvARB glProgramEnvParameter4fvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ProgramLocalParameter4dARB(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Double x, Double y, Double z, Double w); + internal delegate void ProgramLocalParameter4dARB(OpenTK.Graphics.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.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Double* @params); + internal unsafe delegate void ProgramLocalParameter4dvARB(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, Double* @params); internal unsafe static ProgramLocalParameter4dvARB glProgramLocalParameter4dvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ProgramLocalParameter4fARB(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Single x, Single y, Single z, Single w); + internal delegate void ProgramLocalParameter4fARB(OpenTK.Graphics.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.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Single* @params); + internal unsafe delegate void ProgramLocalParameter4fvARB(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, Single* @params); internal unsafe static ProgramLocalParameter4fvARB glProgramLocalParameter4fvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetProgramEnvParameterdvARB(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [Out] Double* @params); + internal unsafe delegate void GetProgramEnvParameterdvARB(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, [Out] Double* @params); internal unsafe static GetProgramEnvParameterdvARB glGetProgramEnvParameterdvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetProgramEnvParameterfvARB(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [Out] Single* @params); + internal unsafe delegate void GetProgramEnvParameterfvARB(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, [Out] Single* @params); internal unsafe static GetProgramEnvParameterfvARB glGetProgramEnvParameterfvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetProgramLocalParameterdvARB(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [Out] Double* @params); + internal unsafe delegate void GetProgramLocalParameterdvARB(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, [Out] Double* @params); internal unsafe static GetProgramLocalParameterdvARB glGetProgramLocalParameterdvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetProgramLocalParameterfvARB(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [Out] Single* @params); + internal unsafe delegate void GetProgramLocalParameterfvARB(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, [Out] Single* @params); internal unsafe static GetProgramLocalParameterfvARB glGetProgramLocalParameterfvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetProgramivARB(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [Out] Int32* @params); + internal unsafe delegate void GetProgramivARB(OpenTK.Graphics.AssemblyProgramTargetArb target, OpenTK.Graphics.AssemblyProgramParameterArb pname, [Out] Int32* @params); internal unsafe static GetProgramivARB glGetProgramivARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetProgramStringARB(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.AssemblyProgramStringParameterArb pname, [Out] IntPtr @string); + internal delegate void GetProgramStringARB(OpenTK.Graphics.AssemblyProgramTargetArb target, OpenTK.Graphics.AssemblyProgramStringParameterArb pname, [Out] IntPtr @string); internal static GetProgramStringARB glGetProgramStringARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetVertexAttribdvARB(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [Out] Double* @params); + internal unsafe delegate void GetVertexAttribdvARB(UInt32 index, OpenTK.Graphics.VertexAttribParameterArb pname, [Out] Double* @params); internal unsafe static GetVertexAttribdvARB glGetVertexAttribdvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetVertexAttribfvARB(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [Out] Single* @params); + internal unsafe delegate void GetVertexAttribfvARB(UInt32 index, OpenTK.Graphics.VertexAttribParameterArb pname, [Out] Single* @params); internal unsafe static GetVertexAttribfvARB glGetVertexAttribfvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetVertexAttribivARB(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [Out] Int32* @params); + internal unsafe delegate void GetVertexAttribivARB(UInt32 index, OpenTK.Graphics.VertexAttribParameterArb pname, [Out] Int32* @params); internal unsafe static GetVertexAttribivARB glGetVertexAttribivARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetVertexAttribPointervARB(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb pname, [Out] IntPtr pointer); + internal delegate void GetVertexAttribPointervARB(UInt32 index, OpenTK.Graphics.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.Graphics.OpenGL.BufferTargetArb target, UInt32 buffer); + internal delegate void BindBufferARB(OpenTK.Graphics.BufferTargetArb target, UInt32 buffer); internal static BindBufferARB glBindBufferARB; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void DeleteBuffersARB(Int32 n, UInt32* buffers); @@ -2195,25 +2195,25 @@ namespace OpenTK.Graphics.OpenGL internal delegate bool IsBufferARB(UInt32 buffer); internal static IsBufferARB glIsBufferARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BufferDataARB(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr size, IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageArb usage); + internal delegate void BufferDataARB(OpenTK.Graphics.BufferTargetArb target, IntPtr size, IntPtr data, OpenTK.Graphics.BufferUsageArb usage); internal static BufferDataARB glBufferDataARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BufferSubDataARB(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, IntPtr size, IntPtr data); + internal delegate void BufferSubDataARB(OpenTK.Graphics.BufferTargetArb target, IntPtr offset, IntPtr size, IntPtr data); internal static BufferSubDataARB glBufferSubDataARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetBufferSubDataARB(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, IntPtr size, [Out] IntPtr data); + internal delegate void GetBufferSubDataARB(OpenTK.Graphics.BufferTargetArb target, IntPtr offset, IntPtr size, [Out] IntPtr data); internal static GetBufferSubDataARB glGetBufferSubDataARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate IntPtr MapBufferARB(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.BufferAccessArb access); + internal unsafe delegate IntPtr MapBufferARB(OpenTK.Graphics.BufferTargetArb target, OpenTK.Graphics.BufferAccessArb access); internal unsafe static MapBufferARB glMapBufferARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate bool UnmapBufferARB(OpenTK.Graphics.OpenGL.BufferTargetArb target); + internal delegate bool UnmapBufferARB(OpenTK.Graphics.BufferTargetArb target); internal static UnmapBufferARB glUnmapBufferARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetBufferParameterivARB(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.BufferParameterNameArb pname, [Out] Int32* @params); + internal unsafe delegate void GetBufferParameterivARB(OpenTK.Graphics.All target, OpenTK.Graphics.BufferParameterNameArb pname, [Out] Int32* @params); internal unsafe static GetBufferParameterivARB glGetBufferParameterivARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetBufferPointervARB(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.BufferPointerNameArb pname, [Out] IntPtr @params); + internal delegate void GetBufferPointervARB(OpenTK.Graphics.All target, OpenTK.Graphics.BufferPointerNameArb pname, [Out] IntPtr @params); internal static GetBufferPointervARB glGetBufferPointervARB; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void GenQueriesARB(Int32 n, [Out] UInt32* ids); @@ -2225,31 +2225,31 @@ namespace OpenTK.Graphics.OpenGL internal delegate bool IsQueryARB(UInt32 id); internal static IsQueryARB glIsQueryARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BeginQueryARB(OpenTK.Graphics.OpenGL.All target, UInt32 id); + internal delegate void BeginQueryARB(OpenTK.Graphics.All target, UInt32 id); internal static BeginQueryARB glBeginQueryARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void EndQueryARB(OpenTK.Graphics.OpenGL.All target); + internal delegate void EndQueryARB(OpenTK.Graphics.All target); internal static EndQueryARB glEndQueryARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetQueryivARB(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params); + internal unsafe delegate void GetQueryivARB(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params); internal unsafe static GetQueryivARB glGetQueryivARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetQueryObjectivARB(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params); + internal unsafe delegate void GetQueryObjectivARB(UInt32 id, OpenTK.Graphics.All pname, [Out] Int32* @params); internal unsafe static GetQueryObjectivARB glGetQueryObjectivARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetQueryObjectuivARB(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] UInt32* @params); + internal unsafe delegate void GetQueryObjectuivARB(UInt32 id, OpenTK.Graphics.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.Graphics.OpenGL.All pname); + internal delegate Int32 GetHandleARB(OpenTK.Graphics.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.Graphics.OpenGL.All shaderType); + internal delegate Int32 CreateShaderObjectARB(OpenTK.Graphics.All shaderType); internal static CreateShaderObjectARB glCreateShaderObjectARB; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void ShaderSourceARB(UInt32 shaderObj, Int32 count, System.String[] @string, Int32* length); @@ -2330,10 +2330,10 @@ namespace OpenTK.Graphics.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.Graphics.OpenGL.All pname, [Out] Single* @params); + internal unsafe delegate void GetObjectParameterfvARB(UInt32 obj, OpenTK.Graphics.All pname, [Out] Single* @params); internal unsafe static GetObjectParameterfvARB glGetObjectParameterfvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetObjectParameterivARB(UInt32 obj, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params); + internal unsafe delegate void GetObjectParameterivARB(UInt32 obj, OpenTK.Graphics.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); @@ -2345,7 +2345,7 @@ namespace OpenTK.Graphics.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.Graphics.OpenGL.All* 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.Graphics.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); @@ -2360,16 +2360,16 @@ namespace OpenTK.Graphics.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.Graphics.OpenGL.All* 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.Graphics.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.Graphics.OpenGL.All* bufs); + internal unsafe delegate void DrawBuffersARB(Int32 n, OpenTK.Graphics.All* bufs); internal unsafe static DrawBuffersARB glDrawBuffersARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ClampColorARB(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All clamp); + internal delegate void ClampColorARB(OpenTK.Graphics.All target, OpenTK.Graphics.All clamp); internal static ClampColorARB glClampColorARB; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void BlendColorEXT(Single red, Single green, Single blue, Single alpha); @@ -2378,160 +2378,160 @@ namespace OpenTK.Graphics.OpenGL internal delegate void PolygonOffsetEXT(Single factor, Single bias); internal static PolygonOffsetEXT glPolygonOffsetEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void TexImage3DEXT(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels); + internal delegate void TexImage3DEXT(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels); internal static TexImage3DEXT glTexImage3DEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void TexSubImage3DEXT(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels); + internal delegate void TexSubImage3DEXT(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels); internal static TexSubImage3DEXT glTexSubImage3DEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetTexFilterFuncSGIS(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.All filter, [Out] Single* weights); + internal unsafe delegate void GetTexFilterFuncSGIS(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.All filter, [Out] Single* weights); internal unsafe static GetTexFilterFuncSGIS glGetTexFilterFuncSGIS; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void TexFilterFuncSGIS(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.All filter, Int32 n, Single* weights); + internal unsafe delegate void TexFilterFuncSGIS(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.All filter, Int32 n, Single* weights); internal unsafe static TexFilterFuncSGIS glTexFilterFuncSGIS; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void TexSubImage1DEXT(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels); + internal delegate void TexSubImage1DEXT(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels); internal static TexSubImage1DEXT glTexSubImage1DEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void TexSubImage2DEXT(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels); + internal delegate void TexSubImage2DEXT(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels); internal static TexSubImage2DEXT glTexSubImage2DEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CopyTexImage1DEXT(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border); + internal delegate void CopyTexImage1DEXT(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border); internal static CopyTexImage1DEXT glCopyTexImage1DEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CopyTexImage2DEXT(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border); + internal delegate void CopyTexImage2DEXT(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border); internal static CopyTexImage2DEXT glCopyTexImage2DEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CopyTexSubImage1DEXT(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width); + internal delegate void CopyTexSubImage1DEXT(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width); internal static CopyTexSubImage1DEXT glCopyTexSubImage1DEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CopyTexSubImage2DEXT(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height); + internal delegate void CopyTexSubImage2DEXT(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height); internal static CopyTexSubImage2DEXT glCopyTexSubImage2DEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CopyTexSubImage3DEXT(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height); + internal delegate void CopyTexSubImage3DEXT(OpenTK.Graphics.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.Graphics.OpenGL.All target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [Out] IntPtr values); + internal delegate void GetHistogramEXT(OpenTK.Graphics.All target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr values); internal static GetHistogramEXT glGetHistogramEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetHistogramParameterfvEXT(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params); + internal unsafe delegate void GetHistogramParameterfvEXT(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params); internal unsafe static GetHistogramParameterfvEXT glGetHistogramParameterfvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetHistogramParameterivEXT(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params); + internal unsafe delegate void GetHistogramParameterivEXT(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params); internal unsafe static GetHistogramParameterivEXT glGetHistogramParameterivEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetMinmaxEXT(OpenTK.Graphics.OpenGL.All target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [Out] IntPtr values); + internal delegate void GetMinmaxEXT(OpenTK.Graphics.All target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr values); internal static GetMinmaxEXT glGetMinmaxEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetMinmaxParameterfvEXT(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params); + internal unsafe delegate void GetMinmaxParameterfvEXT(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params); internal unsafe static GetMinmaxParameterfvEXT glGetMinmaxParameterfvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetMinmaxParameterivEXT(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params); + internal unsafe delegate void GetMinmaxParameterivEXT(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params); internal unsafe static GetMinmaxParameterivEXT glGetMinmaxParameterivEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void HistogramEXT(OpenTK.Graphics.OpenGL.All target, Int32 width, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink); + internal delegate void HistogramEXT(OpenTK.Graphics.All target, Int32 width, OpenTK.Graphics.PixelInternalFormat internalformat, bool sink); internal static HistogramEXT glHistogramEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MinmaxEXT(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink); + internal delegate void MinmaxEXT(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, bool sink); internal static MinmaxEXT glMinmaxEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ResetHistogramEXT(OpenTK.Graphics.OpenGL.All target); + internal delegate void ResetHistogramEXT(OpenTK.Graphics.All target); internal static ResetHistogramEXT glResetHistogramEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ResetMinmaxEXT(OpenTK.Graphics.OpenGL.All target); + internal delegate void ResetMinmaxEXT(OpenTK.Graphics.All target); internal static ResetMinmaxEXT glResetMinmaxEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ConvolutionFilter1DEXT(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr image); + internal delegate void ConvolutionFilter1DEXT(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr image); internal static ConvolutionFilter1DEXT glConvolutionFilter1DEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ConvolutionFilter2DEXT(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr image); + internal delegate void ConvolutionFilter2DEXT(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr image); internal static ConvolutionFilter2DEXT glConvolutionFilter2DEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ConvolutionParameterfEXT(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Single @params); + internal delegate void ConvolutionParameterfEXT(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single @params); internal static ConvolutionParameterfEXT glConvolutionParameterfEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ConvolutionParameterfvEXT(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Single* @params); + internal unsafe delegate void ConvolutionParameterfvEXT(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single* @params); internal unsafe static ConvolutionParameterfvEXT glConvolutionParameterfvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ConvolutionParameteriEXT(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Int32 @params); + internal delegate void ConvolutionParameteriEXT(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32 @params); internal static ConvolutionParameteriEXT glConvolutionParameteriEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ConvolutionParameterivEXT(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Int32* @params); + internal unsafe delegate void ConvolutionParameterivEXT(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32* @params); internal unsafe static ConvolutionParameterivEXT glConvolutionParameterivEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CopyConvolutionFilter1DEXT(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width); + internal delegate void CopyConvolutionFilter1DEXT(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width); internal static CopyConvolutionFilter1DEXT glCopyConvolutionFilter1DEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CopyConvolutionFilter2DEXT(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height); + internal delegate void CopyConvolutionFilter2DEXT(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height); internal static CopyConvolutionFilter2DEXT glCopyConvolutionFilter2DEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetConvolutionFilterEXT(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [Out] IntPtr image); + internal delegate void GetConvolutionFilterEXT(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr image); internal static GetConvolutionFilterEXT glGetConvolutionFilterEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetConvolutionParameterfvEXT(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params); + internal unsafe delegate void GetConvolutionParameterfvEXT(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params); internal unsafe static GetConvolutionParameterfvEXT glGetConvolutionParameterfvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetConvolutionParameterivEXT(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params); + internal unsafe delegate void GetConvolutionParameterivEXT(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params); internal unsafe static GetConvolutionParameterivEXT glGetConvolutionParameterivEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetSeparableFilterEXT(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [Out] IntPtr row, [Out] IntPtr column, [Out] IntPtr span); + internal delegate void GetSeparableFilterEXT(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr row, [Out] IntPtr column, [Out] IntPtr span); internal static GetSeparableFilterEXT glGetSeparableFilterEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void SeparableFilter2DEXT(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr row, IntPtr column); + internal delegate void SeparableFilter2DEXT(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr row, IntPtr column); internal static SeparableFilter2DEXT glSeparableFilter2DEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ColorTableSGI(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr table); + internal delegate void ColorTableSGI(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr table); internal static ColorTableSGI glColorTableSGI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ColorTableParameterfvSGI(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Single* @params); + internal unsafe delegate void ColorTableParameterfvSGI(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single* @params); internal unsafe static ColorTableParameterfvSGI glColorTableParameterfvSGI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ColorTableParameterivSGI(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Int32* @params); + internal unsafe delegate void ColorTableParameterivSGI(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32* @params); internal unsafe static ColorTableParameterivSGI glColorTableParameterivSGI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CopyColorTableSGI(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width); + internal delegate void CopyColorTableSGI(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width); internal static CopyColorTableSGI glCopyColorTableSGI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetColorTableSGI(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [Out] IntPtr table); + internal delegate void GetColorTableSGI(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr table); internal static GetColorTableSGI glGetColorTableSGI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetColorTableParameterfvSGI(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params); + internal unsafe delegate void GetColorTableParameterfvSGI(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params); internal unsafe static GetColorTableParameterfvSGI glGetColorTableParameterfvSGI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetColorTableParameterivSGI(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params); + internal unsafe delegate void GetColorTableParameterivSGI(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params); internal unsafe static GetColorTableParameterivSGI glGetColorTableParameterivSGI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void PixelTexGenSGIX(OpenTK.Graphics.OpenGL.All mode); + internal delegate void PixelTexGenSGIX(OpenTK.Graphics.All mode); internal static PixelTexGenSGIX glPixelTexGenSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void PixelTexGenParameteriSGIS(OpenTK.Graphics.OpenGL.All pname, Int32 param); + internal delegate void PixelTexGenParameteriSGIS(OpenTK.Graphics.All pname, Int32 param); internal static PixelTexGenParameteriSGIS glPixelTexGenParameteriSGIS; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void PixelTexGenParameterivSGIS(OpenTK.Graphics.OpenGL.All pname, Int32* @params); + internal unsafe delegate void PixelTexGenParameterivSGIS(OpenTK.Graphics.All pname, Int32* @params); internal unsafe static PixelTexGenParameterivSGIS glPixelTexGenParameterivSGIS; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void PixelTexGenParameterfSGIS(OpenTK.Graphics.OpenGL.All pname, Single param); + internal delegate void PixelTexGenParameterfSGIS(OpenTK.Graphics.All pname, Single param); internal static PixelTexGenParameterfSGIS glPixelTexGenParameterfSGIS; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void PixelTexGenParameterfvSGIS(OpenTK.Graphics.OpenGL.All pname, Single* @params); + internal unsafe delegate void PixelTexGenParameterfvSGIS(OpenTK.Graphics.All pname, Single* @params); internal unsafe static PixelTexGenParameterfvSGIS glPixelTexGenParameterfvSGIS; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetPixelTexGenParameterivSGIS(OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params); + internal unsafe delegate void GetPixelTexGenParameterivSGIS(OpenTK.Graphics.All pname, [Out] Int32* @params); internal unsafe static GetPixelTexGenParameterivSGIS glGetPixelTexGenParameterivSGIS; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetPixelTexGenParameterfvSGIS(OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params); + internal unsafe delegate void GetPixelTexGenParameterfvSGIS(OpenTK.Graphics.All pname, [Out] Single* @params); internal unsafe static GetPixelTexGenParameterfvSGIS glGetPixelTexGenParameterfvSGIS; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void TexImage4DSGIS(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 size4d, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels); + internal delegate void TexImage4DSGIS(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 size4d, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels); internal static TexImage4DSGIS glTexImage4DSGIS; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void TexSubImage4DSGIS(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 woffset, Int32 width, Int32 height, Int32 depth, Int32 size4d, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels); + internal delegate void TexSubImage4DSGIS(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 woffset, Int32 width, Int32 height, Int32 depth, Int32 size4d, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels); internal static TexSubImage4DSGIS glTexSubImage4DSGIS; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate bool AreTexturesResidentEXT(Int32 n, UInt32* textures, [Out] bool* residences); internal unsafe static AreTexturesResidentEXT glAreTexturesResidentEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BindTextureEXT(OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 texture); + internal delegate void BindTextureEXT(OpenTK.Graphics.TextureTarget target, UInt32 texture); internal static BindTextureEXT glBindTextureEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void DeleteTexturesEXT(Int32 n, UInt32* textures); @@ -2546,76 +2546,76 @@ namespace OpenTK.Graphics.OpenGL internal unsafe delegate void PrioritizeTexturesEXT(Int32 n, UInt32* textures, Single* priorities); internal unsafe static PrioritizeTexturesEXT glPrioritizeTexturesEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void DetailTexFuncSGIS(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, Single* points); + internal unsafe delegate void DetailTexFuncSGIS(OpenTK.Graphics.TextureTarget target, Int32 n, Single* points); internal unsafe static DetailTexFuncSGIS glDetailTexFuncSGIS; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetDetailTexFuncSGIS(OpenTK.Graphics.OpenGL.TextureTarget target, [Out] Single* points); + internal unsafe delegate void GetDetailTexFuncSGIS(OpenTK.Graphics.TextureTarget target, [Out] Single* points); internal unsafe static GetDetailTexFuncSGIS glGetDetailTexFuncSGIS; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void SharpenTexFuncSGIS(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, Single* points); + internal unsafe delegate void SharpenTexFuncSGIS(OpenTK.Graphics.TextureTarget target, Int32 n, Single* points); internal unsafe static SharpenTexFuncSGIS glSharpenTexFuncSGIS; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetSharpenTexFuncSGIS(OpenTK.Graphics.OpenGL.TextureTarget target, [Out] Single* points); + internal unsafe delegate void GetSharpenTexFuncSGIS(OpenTK.Graphics.TextureTarget target, [Out] Single* points); internal unsafe static GetSharpenTexFuncSGIS glGetSharpenTexFuncSGIS; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void SampleMaskSGIS(Single value, bool invert); internal static SampleMaskSGIS glSampleMaskSGIS; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void SamplePatternSGIS(OpenTK.Graphics.OpenGL.All pattern); + internal delegate void SamplePatternSGIS(OpenTK.Graphics.All pattern); internal static SamplePatternSGIS glSamplePatternSGIS; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void ArrayElementEXT(Int32 i); internal static ArrayElementEXT glArrayElementEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ColorPointerEXT(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, Int32 count, IntPtr pointer); + internal delegate void ColorPointerEXT(Int32 size, OpenTK.Graphics.ColorPointerType type, Int32 stride, Int32 count, IntPtr pointer); internal static ColorPointerEXT glColorPointerEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void DrawArraysEXT(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 first, Int32 count); + internal delegate void DrawArraysEXT(OpenTK.Graphics.BeginMode mode, Int32 first, Int32 count); internal static DrawArraysEXT glDrawArraysEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void EdgeFlagPointerEXT(Int32 stride, Int32 count, bool* pointer); internal unsafe static EdgeFlagPointerEXT glEdgeFlagPointerEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetPointervEXT(OpenTK.Graphics.OpenGL.GetPointervPName pname, [Out] IntPtr @params); + internal delegate void GetPointervEXT(OpenTK.Graphics.GetPointervPName pname, [Out] IntPtr @params); internal static GetPointervEXT glGetPointervEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void IndexPointerEXT(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, Int32 count, IntPtr pointer); + internal delegate void IndexPointerEXT(OpenTK.Graphics.IndexPointerType type, Int32 stride, Int32 count, IntPtr pointer); internal static IndexPointerEXT glIndexPointerEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void NormalPointerEXT(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, Int32 count, IntPtr pointer); + internal delegate void NormalPointerEXT(OpenTK.Graphics.NormalPointerType type, Int32 stride, Int32 count, IntPtr pointer); internal static NormalPointerEXT glNormalPointerEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void TexCoordPointerEXT(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, Int32 count, IntPtr pointer); + internal delegate void TexCoordPointerEXT(Int32 size, OpenTK.Graphics.TexCoordPointerType type, Int32 stride, Int32 count, IntPtr pointer); internal static TexCoordPointerEXT glTexCoordPointerEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexPointerEXT(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, Int32 count, IntPtr pointer); + internal delegate void VertexPointerEXT(Int32 size, OpenTK.Graphics.VertexPointerType type, Int32 stride, Int32 count, IntPtr pointer); internal static VertexPointerEXT glVertexPointerEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BlendEquationEXT(OpenTK.Graphics.OpenGL.All mode); + internal delegate void BlendEquationEXT(OpenTK.Graphics.All mode); internal static BlendEquationEXT glBlendEquationEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void SpriteParameterfSGIX(OpenTK.Graphics.OpenGL.All pname, Single param); + internal delegate void SpriteParameterfSGIX(OpenTK.Graphics.All pname, Single param); internal static SpriteParameterfSGIX glSpriteParameterfSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void SpriteParameterfvSGIX(OpenTK.Graphics.OpenGL.All pname, Single* @params); + internal unsafe delegate void SpriteParameterfvSGIX(OpenTK.Graphics.All pname, Single* @params); internal unsafe static SpriteParameterfvSGIX glSpriteParameterfvSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void SpriteParameteriSGIX(OpenTK.Graphics.OpenGL.All pname, Int32 param); + internal delegate void SpriteParameteriSGIX(OpenTK.Graphics.All pname, Int32 param); internal static SpriteParameteriSGIX glSpriteParameteriSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void SpriteParameterivSGIX(OpenTK.Graphics.OpenGL.All pname, Int32* @params); + internal unsafe delegate void SpriteParameterivSGIX(OpenTK.Graphics.All pname, Int32* @params); internal unsafe static SpriteParameterivSGIX glSpriteParameterivSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void PointParameterfEXT(OpenTK.Graphics.OpenGL.All pname, Single param); + internal delegate void PointParameterfEXT(OpenTK.Graphics.All pname, Single param); internal static PointParameterfEXT glPointParameterfEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void PointParameterfvEXT(OpenTK.Graphics.OpenGL.All pname, Single* @params); + internal unsafe delegate void PointParameterfvEXT(OpenTK.Graphics.All pname, Single* @params); internal unsafe static PointParameterfvEXT glPointParameterfvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void PointParameterfSGIS(OpenTK.Graphics.OpenGL.All pname, Single param); + internal delegate void PointParameterfSGIS(OpenTK.Graphics.All pname, Single param); internal static PointParameterfSGIS glPointParameterfSGIS; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void PointParameterfvSGIS(OpenTK.Graphics.OpenGL.All pname, Single* @params); + internal unsafe delegate void PointParameterfvSGIS(OpenTK.Graphics.All pname, Single* @params); internal unsafe static PointParameterfvSGIS glPointParameterfvSGIS; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate Int32 GetInstrumentsSGIX(); @@ -2642,10 +2642,10 @@ namespace OpenTK.Graphics.OpenGL internal delegate void TagSampleBufferSGIX(); internal static TagSampleBufferSGIX glTagSampleBufferSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void DeformationMap3dSGIX(OpenTK.Graphics.OpenGL.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 delegate void DeformationMap3dSGIX(OpenTK.Graphics.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.Graphics.OpenGL.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 delegate void DeformationMap3fSGIX(OpenTK.Graphics.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(UInt32 mask); @@ -2666,67 +2666,67 @@ namespace OpenTK.Graphics.OpenGL internal unsafe delegate void GetFogFuncSGIS([Out] Single* points); internal unsafe static GetFogFuncSGIS glGetFogFuncSGIS; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ImageTransformParameteriHP(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Int32 param); + internal delegate void ImageTransformParameteriHP(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32 param); internal static ImageTransformParameteriHP glImageTransformParameteriHP; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ImageTransformParameterfHP(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Single param); + internal delegate void ImageTransformParameterfHP(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single param); internal static ImageTransformParameterfHP glImageTransformParameterfHP; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ImageTransformParameterivHP(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Int32* @params); + internal unsafe delegate void ImageTransformParameterivHP(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32* @params); internal unsafe static ImageTransformParameterivHP glImageTransformParameterivHP; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ImageTransformParameterfvHP(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Single* @params); + internal unsafe delegate void ImageTransformParameterfvHP(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single* @params); internal unsafe static ImageTransformParameterfvHP glImageTransformParameterfvHP; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetImageTransformParameterivHP(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params); + internal unsafe delegate void GetImageTransformParameterivHP(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params); internal unsafe static GetImageTransformParameterivHP glGetImageTransformParameterivHP; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetImageTransformParameterfvHP(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params); + internal unsafe delegate void GetImageTransformParameterfvHP(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params); internal unsafe static GetImageTransformParameterfvHP glGetImageTransformParameterfvHP; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ColorSubTableEXT(OpenTK.Graphics.OpenGL.All target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr data); + internal delegate void ColorSubTableEXT(OpenTK.Graphics.All target, Int32 start, Int32 count, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr data); internal static ColorSubTableEXT glColorSubTableEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CopyColorSubTableEXT(OpenTK.Graphics.OpenGL.All target, Int32 start, Int32 x, Int32 y, Int32 width); + internal delegate void CopyColorSubTableEXT(OpenTK.Graphics.All target, Int32 start, Int32 x, Int32 y, Int32 width); internal static CopyColorSubTableEXT glCopyColorSubTableEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void HintPGI(OpenTK.Graphics.OpenGL.All target, Int32 mode); + internal delegate void HintPGI(OpenTK.Graphics.All target, Int32 mode); internal static HintPGI glHintPGI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ColorTableEXT(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalFormat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr table); + internal delegate void ColorTableEXT(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalFormat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr table); internal static ColorTableEXT glColorTableEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetColorTableEXT(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [Out] IntPtr data); + internal delegate void GetColorTableEXT(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr data); internal static GetColorTableEXT glGetColorTableEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetColorTableParameterivEXT(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params); + internal unsafe delegate void GetColorTableParameterivEXT(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params); internal unsafe static GetColorTableParameterivEXT glGetColorTableParameterivEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetColorTableParameterfvEXT(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params); + internal unsafe delegate void GetColorTableParameterfvEXT(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params); internal unsafe static GetColorTableParameterfvEXT glGetColorTableParameterfvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetListParameterfvSGIX(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [Out] Single* @params); + internal unsafe delegate void GetListParameterfvSGIX(UInt32 list, OpenTK.Graphics.ListParameterName pname, [Out] Single* @params); internal unsafe static GetListParameterfvSGIX glGetListParameterfvSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetListParameterivSGIX(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [Out] Int32* @params); + internal unsafe delegate void GetListParameterivSGIX(UInt32 list, OpenTK.Graphics.ListParameterName pname, [Out] Int32* @params); internal unsafe static GetListParameterivSGIX glGetListParameterivSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ListParameterfSGIX(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Single param); + internal delegate void ListParameterfSGIX(UInt32 list, OpenTK.Graphics.ListParameterName pname, Single param); internal static ListParameterfSGIX glListParameterfSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ListParameterfvSGIX(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Single* @params); + internal unsafe delegate void ListParameterfvSGIX(UInt32 list, OpenTK.Graphics.ListParameterName pname, Single* @params); internal unsafe static ListParameterfvSGIX glListParameterfvSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ListParameteriSGIX(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Int32 param); + internal delegate void ListParameteriSGIX(UInt32 list, OpenTK.Graphics.ListParameterName pname, Int32 param); internal static ListParameteriSGIX glListParameteriSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ListParameterivSGIX(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Int32* @params); + internal unsafe delegate void ListParameterivSGIX(UInt32 list, OpenTK.Graphics.ListParameterName pname, Int32* @params); internal unsafe static ListParameterivSGIX glListParameterivSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void IndexMaterialEXT(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.All mode); + internal delegate void IndexMaterialEXT(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.All mode); internal static IndexMaterialEXT glIndexMaterialEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void IndexFuncEXT(OpenTK.Graphics.OpenGL.All func, Single @ref); + internal delegate void IndexFuncEXT(OpenTK.Graphics.All func, Single @ref); internal static IndexFuncEXT glIndexFuncEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void LockArraysEXT(Int32 first, Int32 count); @@ -2735,76 +2735,76 @@ namespace OpenTK.Graphics.OpenGL internal delegate void UnlockArraysEXT(); internal static UnlockArraysEXT glUnlockArraysEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void CullParameterdvEXT(OpenTK.Graphics.OpenGL.All pname, [Out] Double* @params); + internal unsafe delegate void CullParameterdvEXT(OpenTK.Graphics.All pname, [Out] Double* @params); internal unsafe static CullParameterdvEXT glCullParameterdvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void CullParameterfvEXT(OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params); + internal unsafe delegate void CullParameterfvEXT(OpenTK.Graphics.All pname, [Out] Single* @params); internal unsafe static CullParameterfvEXT glCullParameterfvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FragmentColorMaterialSGIX(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter mode); + internal delegate void FragmentColorMaterialSGIX(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter mode); internal static FragmentColorMaterialSGIX glFragmentColorMaterialSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FragmentLightfSGIX(OpenTK.Graphics.OpenGL.All light, OpenTK.Graphics.OpenGL.All pname, Single param); + internal delegate void FragmentLightfSGIX(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, Single param); internal static FragmentLightfSGIX glFragmentLightfSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void FragmentLightfvSGIX(OpenTK.Graphics.OpenGL.All light, OpenTK.Graphics.OpenGL.All pname, Single* @params); + internal unsafe delegate void FragmentLightfvSGIX(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, Single* @params); internal unsafe static FragmentLightfvSGIX glFragmentLightfvSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FragmentLightiSGIX(OpenTK.Graphics.OpenGL.All light, OpenTK.Graphics.OpenGL.All pname, Int32 param); + internal delegate void FragmentLightiSGIX(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, Int32 param); internal static FragmentLightiSGIX glFragmentLightiSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void FragmentLightivSGIX(OpenTK.Graphics.OpenGL.All light, OpenTK.Graphics.OpenGL.All pname, Int32* @params); + internal unsafe delegate void FragmentLightivSGIX(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, Int32* @params); internal unsafe static FragmentLightivSGIX glFragmentLightivSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FragmentLightModelfSGIX(OpenTK.Graphics.OpenGL.All pname, Single param); + internal delegate void FragmentLightModelfSGIX(OpenTK.Graphics.All pname, Single param); internal static FragmentLightModelfSGIX glFragmentLightModelfSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void FragmentLightModelfvSGIX(OpenTK.Graphics.OpenGL.All pname, Single* @params); + internal unsafe delegate void FragmentLightModelfvSGIX(OpenTK.Graphics.All pname, Single* @params); internal unsafe static FragmentLightModelfvSGIX glFragmentLightModelfvSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FragmentLightModeliSGIX(OpenTK.Graphics.OpenGL.All pname, Int32 param); + internal delegate void FragmentLightModeliSGIX(OpenTK.Graphics.All pname, Int32 param); internal static FragmentLightModeliSGIX glFragmentLightModeliSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void FragmentLightModelivSGIX(OpenTK.Graphics.OpenGL.All pname, Int32* @params); + internal unsafe delegate void FragmentLightModelivSGIX(OpenTK.Graphics.All pname, Int32* @params); internal unsafe static FragmentLightModelivSGIX glFragmentLightModelivSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FragmentMaterialfSGIX(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Single param); + internal delegate void FragmentMaterialfSGIX(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, Single param); internal static FragmentMaterialfSGIX glFragmentMaterialfSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void FragmentMaterialfvSGIX(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Single* @params); + internal unsafe delegate void FragmentMaterialfvSGIX(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, Single* @params); internal unsafe static FragmentMaterialfvSGIX glFragmentMaterialfvSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FragmentMaterialiSGIX(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Int32 param); + internal delegate void FragmentMaterialiSGIX(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, Int32 param); internal static FragmentMaterialiSGIX glFragmentMaterialiSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void FragmentMaterialivSGIX(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Int32* @params); + internal unsafe delegate void FragmentMaterialivSGIX(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, Int32* @params); internal unsafe static FragmentMaterialivSGIX glFragmentMaterialivSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetFragmentLightfvSGIX(OpenTK.Graphics.OpenGL.All light, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params); + internal unsafe delegate void GetFragmentLightfvSGIX(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, [Out] Single* @params); internal unsafe static GetFragmentLightfvSGIX glGetFragmentLightfvSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetFragmentLightivSGIX(OpenTK.Graphics.OpenGL.All light, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params); + internal unsafe delegate void GetFragmentLightivSGIX(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, [Out] Int32* @params); internal unsafe static GetFragmentLightivSGIX glGetFragmentLightivSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetFragmentMaterialfvSGIX(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [Out] Single* @params); + internal unsafe delegate void GetFragmentMaterialfvSGIX(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, [Out] Single* @params); internal unsafe static GetFragmentMaterialfvSGIX glGetFragmentMaterialfvSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetFragmentMaterialivSGIX(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [Out] Int32* @params); + internal unsafe delegate void GetFragmentMaterialivSGIX(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, [Out] Int32* @params); internal unsafe static GetFragmentMaterialivSGIX glGetFragmentMaterialivSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void LightEnviSGIX(OpenTK.Graphics.OpenGL.All pname, Int32 param); + internal delegate void LightEnviSGIX(OpenTK.Graphics.All pname, Int32 param); internal static LightEnviSGIX glLightEnviSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void DrawRangeElementsEXT(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices); + internal delegate void DrawRangeElementsEXT(OpenTK.Graphics.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.DrawElementsType type, IntPtr indices); internal static DrawRangeElementsEXT glDrawRangeElementsEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ApplyTextureEXT(OpenTK.Graphics.OpenGL.All mode); + internal delegate void ApplyTextureEXT(OpenTK.Graphics.All mode); internal static ApplyTextureEXT glApplyTextureEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void TextureLightEXT(OpenTK.Graphics.OpenGL.All pname); + internal delegate void TextureLightEXT(OpenTK.Graphics.All pname); internal static TextureLightEXT glTextureLightEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void TextureMaterialEXT(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter mode); + internal delegate void TextureMaterialEXT(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter mode); internal static TextureMaterialEXT glTextureMaterialEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void AsyncMarkerSGIX(UInt32 marker); @@ -2825,28 +2825,28 @@ namespace OpenTK.Graphics.OpenGL internal delegate bool IsAsyncMarkerSGIX(UInt32 marker); internal static IsAsyncMarkerSGIX glIsAsyncMarkerSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexPointervINTEL(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, IntPtr pointer); + internal delegate void VertexPointervINTEL(Int32 size, OpenTK.Graphics.VertexPointerType type, IntPtr pointer); internal static VertexPointervINTEL glVertexPointervINTEL; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void NormalPointervINTEL(OpenTK.Graphics.OpenGL.NormalPointerType type, IntPtr pointer); + internal delegate void NormalPointervINTEL(OpenTK.Graphics.NormalPointerType type, IntPtr pointer); internal static NormalPointervINTEL glNormalPointervINTEL; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ColorPointervINTEL(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, IntPtr pointer); + internal delegate void ColorPointervINTEL(Int32 size, OpenTK.Graphics.VertexPointerType type, IntPtr pointer); internal static ColorPointervINTEL glColorPointervINTEL; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void TexCoordPointervINTEL(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, IntPtr pointer); + internal delegate void TexCoordPointervINTEL(Int32 size, OpenTK.Graphics.VertexPointerType type, IntPtr pointer); internal static TexCoordPointervINTEL glTexCoordPointervINTEL; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void PixelTransformParameteriEXT(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Int32 param); + internal delegate void PixelTransformParameteriEXT(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32 param); internal static PixelTransformParameteriEXT glPixelTransformParameteriEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void PixelTransformParameterfEXT(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Single param); + internal delegate void PixelTransformParameterfEXT(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single param); internal static PixelTransformParameterfEXT glPixelTransformParameterfEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void PixelTransformParameterivEXT(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Int32* @params); + internal unsafe delegate void PixelTransformParameterivEXT(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32* @params); internal unsafe static PixelTransformParameterivEXT glPixelTransformParameterivEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void PixelTransformParameterfvEXT(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Single* @params); + internal unsafe delegate void PixelTransformParameterfvEXT(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single* @params); internal unsafe static PixelTransformParameterfvEXT glPixelTransformParameterfvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void SecondaryColor3bEXT(SByte red, SByte green, SByte blue); @@ -2897,16 +2897,16 @@ namespace OpenTK.Graphics.OpenGL internal unsafe delegate void SecondaryColor3usvEXT(UInt16* v); internal unsafe static SecondaryColor3usvEXT glSecondaryColor3usvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void SecondaryColorPointerEXT(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, IntPtr pointer); + internal delegate void SecondaryColorPointerEXT(Int32 size, OpenTK.Graphics.ColorPointerType type, Int32 stride, IntPtr pointer); internal static SecondaryColorPointerEXT glSecondaryColorPointerEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void TextureNormalEXT(OpenTK.Graphics.OpenGL.All mode); + internal delegate void TextureNormalEXT(OpenTK.Graphics.All mode); internal static TextureNormalEXT glTextureNormalEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiDrawArraysEXT(OpenTK.Graphics.OpenGL.BeginMode mode, [Out] Int32* first, [Out] Int32* count, Int32 primcount); + internal unsafe delegate void MultiDrawArraysEXT(OpenTK.Graphics.BeginMode mode, [Out] Int32* first, [Out] Int32* count, Int32 primcount); internal unsafe static MultiDrawArraysEXT glMultiDrawArraysEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiDrawElementsEXT(OpenTK.Graphics.OpenGL.BeginMode mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount); + internal unsafe delegate void MultiDrawElementsEXT(OpenTK.Graphics.BeginMode mode, Int32* count, OpenTK.Graphics.DrawElementsType type, IntPtr indices, Int32 primcount); internal unsafe static MultiDrawElementsEXT glMultiDrawElementsEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void FogCoordfEXT(Single coord); @@ -2921,7 +2921,7 @@ namespace OpenTK.Graphics.OpenGL internal unsafe delegate void FogCoorddvEXT(Double* coord); internal unsafe static FogCoorddvEXT glFogCoorddvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FogCoordPointerEXT(OpenTK.Graphics.OpenGL.All type, Int32 stride, IntPtr pointer); + internal delegate void FogCoordPointerEXT(OpenTK.Graphics.All type, Int32 stride, IntPtr pointer); internal static FogCoordPointerEXT glFogCoordPointerEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void Tangent3bEXT(SByte tx, SByte ty, SByte tz); @@ -2984,10 +2984,10 @@ namespace OpenTK.Graphics.OpenGL internal unsafe delegate void Binormal3svEXT(Int16* v); internal unsafe static Binormal3svEXT glBinormal3svEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void TangentPointerEXT(OpenTK.Graphics.OpenGL.All type, Int32 stride, IntPtr pointer); + internal delegate void TangentPointerEXT(OpenTK.Graphics.All type, Int32 stride, IntPtr pointer); internal static TangentPointerEXT glTangentPointerEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BinormalPointerEXT(OpenTK.Graphics.OpenGL.All type, Int32 stride, IntPtr pointer); + internal delegate void BinormalPointerEXT(OpenTK.Graphics.All type, Int32 stride, IntPtr pointer); internal static BinormalPointerEXT glBinormalPointerEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void FinishTextureSUNX(); @@ -3035,7 +3035,7 @@ namespace OpenTK.Graphics.OpenGL internal unsafe delegate void ReplacementCodeubvSUN(Byte* code); internal unsafe static ReplacementCodeubvSUN glReplacementCodeubvSUN; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ReplacementCodePointerSUN(OpenTK.Graphics.OpenGL.All type, Int32 stride, IntPtr pointer); + internal delegate void ReplacementCodePointerSUN(OpenTK.Graphics.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); @@ -3158,10 +3158,10 @@ namespace OpenTK.Graphics.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.Graphics.OpenGL.All sfactorRGB, OpenTK.Graphics.OpenGL.All dfactorRGB, OpenTK.Graphics.OpenGL.All sfactorAlpha, OpenTK.Graphics.OpenGL.All dfactorAlpha); + internal delegate void BlendFuncSeparateEXT(OpenTK.Graphics.All sfactorRGB, OpenTK.Graphics.All dfactorRGB, OpenTK.Graphics.All sfactorAlpha, OpenTK.Graphics.All dfactorAlpha); internal static BlendFuncSeparateEXT glBlendFuncSeparateEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BlendFuncSeparateINGR(OpenTK.Graphics.OpenGL.All sfactorRGB, OpenTK.Graphics.OpenGL.All dfactorRGB, OpenTK.Graphics.OpenGL.All sfactorAlpha, OpenTK.Graphics.OpenGL.All dfactorAlpha); + internal delegate void BlendFuncSeparateINGR(OpenTK.Graphics.All sfactorRGB, OpenTK.Graphics.All dfactorRGB, OpenTK.Graphics.All sfactorAlpha, OpenTK.Graphics.All dfactorAlpha); internal static BlendFuncSeparateINGR glBlendFuncSeparateINGR; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void VertexWeightfEXT(Single weight); @@ -3170,7 +3170,7 @@ namespace OpenTK.Graphics.OpenGL internal unsafe delegate void VertexWeightfvEXT(Single* weight); internal unsafe static VertexWeightfvEXT glVertexWeightfvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexWeightPointerEXT(Int32 size, OpenTK.Graphics.OpenGL.All type, Int32 stride, IntPtr pointer); + internal delegate void VertexWeightPointerEXT(Int32 size, OpenTK.Graphics.All type, Int32 stride, IntPtr pointer); internal static VertexWeightPointerEXT glVertexWeightPointerEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void FlushVertexArrayRangeNV(); @@ -3179,43 +3179,43 @@ namespace OpenTK.Graphics.OpenGL internal delegate void VertexArrayRangeNV(Int32 length, IntPtr pointer); internal static VertexArrayRangeNV glVertexArrayRangeNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void CombinerParameterfvNV(OpenTK.Graphics.OpenGL.All pname, Single* @params); + internal unsafe delegate void CombinerParameterfvNV(OpenTK.Graphics.All pname, Single* @params); internal unsafe static CombinerParameterfvNV glCombinerParameterfvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CombinerParameterfNV(OpenTK.Graphics.OpenGL.All pname, Single param); + internal delegate void CombinerParameterfNV(OpenTK.Graphics.All pname, Single param); internal static CombinerParameterfNV glCombinerParameterfNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void CombinerParameterivNV(OpenTK.Graphics.OpenGL.All pname, Int32* @params); + internal unsafe delegate void CombinerParameterivNV(OpenTK.Graphics.All pname, Int32* @params); internal unsafe static CombinerParameterivNV glCombinerParameterivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CombinerParameteriNV(OpenTK.Graphics.OpenGL.All pname, Int32 param); + internal delegate void CombinerParameteriNV(OpenTK.Graphics.All pname, Int32 param); internal static CombinerParameteriNV glCombinerParameteriNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CombinerInputNV(OpenTK.Graphics.OpenGL.All stage, OpenTK.Graphics.OpenGL.All portion, OpenTK.Graphics.OpenGL.All variable, OpenTK.Graphics.OpenGL.All input, OpenTK.Graphics.OpenGL.All mapping, OpenTK.Graphics.OpenGL.All componentUsage); + internal delegate void CombinerInputNV(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All variable, OpenTK.Graphics.All input, OpenTK.Graphics.All mapping, OpenTK.Graphics.All componentUsage); internal static CombinerInputNV glCombinerInputNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void CombinerOutputNV(OpenTK.Graphics.OpenGL.All stage, OpenTK.Graphics.OpenGL.All portion, OpenTK.Graphics.OpenGL.All abOutput, OpenTK.Graphics.OpenGL.All cdOutput, OpenTK.Graphics.OpenGL.All sumOutput, OpenTK.Graphics.OpenGL.All scale, OpenTK.Graphics.OpenGL.All bias, bool abDotProduct, bool cdDotProduct, bool muxSum); + internal delegate void CombinerOutputNV(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All abOutput, OpenTK.Graphics.All cdOutput, OpenTK.Graphics.All sumOutput, OpenTK.Graphics.All scale, OpenTK.Graphics.All bias, bool abDotProduct, bool cdDotProduct, bool muxSum); internal static CombinerOutputNV glCombinerOutputNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FinalCombinerInputNV(OpenTK.Graphics.OpenGL.All variable, OpenTK.Graphics.OpenGL.All input, OpenTK.Graphics.OpenGL.All mapping, OpenTK.Graphics.OpenGL.All componentUsage); + internal delegate void FinalCombinerInputNV(OpenTK.Graphics.All variable, OpenTK.Graphics.All input, OpenTK.Graphics.All mapping, OpenTK.Graphics.All componentUsage); internal static FinalCombinerInputNV glFinalCombinerInputNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetCombinerInputParameterfvNV(OpenTK.Graphics.OpenGL.All stage, OpenTK.Graphics.OpenGL.All portion, OpenTK.Graphics.OpenGL.All variable, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params); + internal unsafe delegate void GetCombinerInputParameterfvNV(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All variable, OpenTK.Graphics.All pname, [Out] Single* @params); internal unsafe static GetCombinerInputParameterfvNV glGetCombinerInputParameterfvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetCombinerInputParameterivNV(OpenTK.Graphics.OpenGL.All stage, OpenTK.Graphics.OpenGL.All portion, OpenTK.Graphics.OpenGL.All variable, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params); + internal unsafe delegate void GetCombinerInputParameterivNV(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All variable, OpenTK.Graphics.All pname, [Out] Int32* @params); internal unsafe static GetCombinerInputParameterivNV glGetCombinerInputParameterivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetCombinerOutputParameterfvNV(OpenTK.Graphics.OpenGL.All stage, OpenTK.Graphics.OpenGL.All portion, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params); + internal unsafe delegate void GetCombinerOutputParameterfvNV(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All pname, [Out] Single* @params); internal unsafe static GetCombinerOutputParameterfvNV glGetCombinerOutputParameterfvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetCombinerOutputParameterivNV(OpenTK.Graphics.OpenGL.All stage, OpenTK.Graphics.OpenGL.All portion, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params); + internal unsafe delegate void GetCombinerOutputParameterivNV(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All pname, [Out] Int32* @params); internal unsafe static GetCombinerOutputParameterivNV glGetCombinerOutputParameterivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetFinalCombinerInputParameterfvNV(OpenTK.Graphics.OpenGL.All variable, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params); + internal unsafe delegate void GetFinalCombinerInputParameterfvNV(OpenTK.Graphics.All variable, OpenTK.Graphics.All pname, [Out] Single* @params); internal unsafe static GetFinalCombinerInputParameterfvNV glGetFinalCombinerInputParameterfvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetFinalCombinerInputParameterivNV(OpenTK.Graphics.OpenGL.All variable, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params); + internal unsafe delegate void GetFinalCombinerInputParameterivNV(OpenTK.Graphics.All variable, OpenTK.Graphics.All pname, [Out] Int32* @params); internal unsafe static GetFinalCombinerInputParameterivNV glGetFinalCombinerInputParameterivNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void ResizeBuffersMESA(); @@ -3293,34 +3293,34 @@ namespace OpenTK.Graphics.OpenGL internal unsafe delegate void WindowPos4svMESA(Int16* v); internal unsafe static WindowPos4svMESA glWindowPos4svMESA; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiModeDrawArraysIBM(OpenTK.Graphics.OpenGL.BeginMode* mode, Int32* first, Int32* count, Int32 primcount, Int32 modestride); + internal unsafe delegate void MultiModeDrawArraysIBM(OpenTK.Graphics.BeginMode* mode, Int32* first, Int32* count, Int32 primcount, Int32 modestride); internal unsafe static MultiModeDrawArraysIBM glMultiModeDrawArraysIBM; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiModeDrawElementsIBM(OpenTK.Graphics.OpenGL.BeginMode* mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount, Int32 modestride); + internal unsafe delegate void MultiModeDrawElementsIBM(OpenTK.Graphics.BeginMode* mode, Int32* count, OpenTK.Graphics.DrawElementsType type, IntPtr indices, Int32 primcount, Int32 modestride); internal unsafe static MultiModeDrawElementsIBM glMultiModeDrawElementsIBM; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ColorPointerListIBM(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, IntPtr pointer, Int32 ptrstride); + internal delegate void ColorPointerListIBM(Int32 size, OpenTK.Graphics.ColorPointerType type, Int32 stride, IntPtr pointer, Int32 ptrstride); internal static ColorPointerListIBM glColorPointerListIBM; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void SecondaryColorPointerListIBM(Int32 size, OpenTK.Graphics.OpenGL.All type, Int32 stride, IntPtr pointer, Int32 ptrstride); + internal delegate void SecondaryColorPointerListIBM(Int32 size, OpenTK.Graphics.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.Graphics.OpenGL.All type, Int32 stride, IntPtr pointer, Int32 ptrstride); + internal delegate void FogCoordPointerListIBM(OpenTK.Graphics.All type, Int32 stride, IntPtr pointer, Int32 ptrstride); internal static FogCoordPointerListIBM glFogCoordPointerListIBM; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void IndexPointerListIBM(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, IntPtr pointer, Int32 ptrstride); + internal delegate void IndexPointerListIBM(OpenTK.Graphics.IndexPointerType type, Int32 stride, IntPtr pointer, Int32 ptrstride); internal static IndexPointerListIBM glIndexPointerListIBM; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void NormalPointerListIBM(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, IntPtr pointer, Int32 ptrstride); + internal delegate void NormalPointerListIBM(OpenTK.Graphics.NormalPointerType type, Int32 stride, IntPtr pointer, Int32 ptrstride); internal static NormalPointerListIBM glNormalPointerListIBM; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void TexCoordPointerListIBM(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, IntPtr pointer, Int32 ptrstride); + internal delegate void TexCoordPointerListIBM(Int32 size, OpenTK.Graphics.TexCoordPointerType type, Int32 stride, IntPtr pointer, Int32 ptrstride); internal static TexCoordPointerListIBM glTexCoordPointerListIBM; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexPointerListIBM(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, IntPtr pointer, Int32 ptrstride); + internal delegate void VertexPointerListIBM(Int32 size, OpenTK.Graphics.VertexPointerType type, Int32 stride, IntPtr pointer, Int32 ptrstride); internal static VertexPointerListIBM glVertexPointerListIBM; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void TbufferMask3DFX(UInt32 mask); @@ -3329,13 +3329,13 @@ namespace OpenTK.Graphics.OpenGL internal delegate void SampleMaskEXT(Single value, bool invert); internal static SampleMaskEXT glSampleMaskEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void SamplePatternEXT(OpenTK.Graphics.OpenGL.All pattern); + internal delegate void SamplePatternEXT(OpenTK.Graphics.All pattern); internal static SamplePatternEXT glSamplePatternEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void TextureColorMaskSGIS(bool red, bool green, bool blue, bool alpha); internal static TextureColorMaskSGIS glTextureColorMaskSGIS; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void IglooInterfaceSGIX(OpenTK.Graphics.OpenGL.All pname, IntPtr @params); + internal delegate void IglooInterfaceSGIX(OpenTK.Graphics.All pname, IntPtr @params); internal static IglooInterfaceSGIX glIglooInterfaceSGIX; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void DeleteFencesNV(Int32 n, UInt32* fences); @@ -3350,121 +3350,121 @@ namespace OpenTK.Graphics.OpenGL internal delegate bool TestFenceNV(UInt32 fence); internal static TestFenceNV glTestFenceNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetFenceivNV(UInt32 fence, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params); + internal unsafe delegate void GetFenceivNV(UInt32 fence, OpenTK.Graphics.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.Graphics.OpenGL.All condition); + internal delegate void SetFenceNV(UInt32 fence, OpenTK.Graphics.All condition); internal static SetFenceNV glSetFenceNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MapControlPointsNV(OpenTK.Graphics.OpenGL.All target, UInt32 index, OpenTK.Graphics.OpenGL.All type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, IntPtr points); + internal delegate void MapControlPointsNV(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.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.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Int32* @params); + internal unsafe delegate void MapParameterivNV(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32* @params); internal unsafe static MapParameterivNV glMapParameterivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MapParameterfvNV(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Single* @params); + internal unsafe delegate void MapParameterfvNV(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single* @params); internal unsafe static MapParameterfvNV glMapParameterfvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetMapControlPointsNV(OpenTK.Graphics.OpenGL.All target, UInt32 index, OpenTK.Graphics.OpenGL.All type, Int32 ustride, Int32 vstride, bool packed, [Out] IntPtr points); + internal delegate void GetMapControlPointsNV(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All type, Int32 ustride, Int32 vstride, bool packed, [Out] IntPtr points); internal static GetMapControlPointsNV glGetMapControlPointsNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetMapParameterivNV(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params); + internal unsafe delegate void GetMapParameterivNV(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params); internal unsafe static GetMapParameterivNV glGetMapParameterivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetMapParameterfvNV(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params); + internal unsafe delegate void GetMapParameterfvNV(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params); internal unsafe static GetMapParameterfvNV glGetMapParameterfvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetMapAttribParameterivNV(OpenTK.Graphics.OpenGL.All target, UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params); + internal unsafe delegate void GetMapAttribParameterivNV(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All pname, [Out] Int32* @params); internal unsafe static GetMapAttribParameterivNV glGetMapAttribParameterivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetMapAttribParameterfvNV(OpenTK.Graphics.OpenGL.All target, UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params); + internal unsafe delegate void GetMapAttribParameterfvNV(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All pname, [Out] Single* @params); internal unsafe static GetMapAttribParameterfvNV glGetMapAttribParameterfvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void EvalMapsNV(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All mode); + internal delegate void EvalMapsNV(OpenTK.Graphics.All target, OpenTK.Graphics.All mode); internal static EvalMapsNV glEvalMapsNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void CombinerStageParameterfvNV(OpenTK.Graphics.OpenGL.All stage, OpenTK.Graphics.OpenGL.All pname, Single* @params); + internal unsafe delegate void CombinerStageParameterfvNV(OpenTK.Graphics.All stage, OpenTK.Graphics.All pname, Single* @params); internal unsafe static CombinerStageParameterfvNV glCombinerStageParameterfvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetCombinerStageParameterfvNV(OpenTK.Graphics.OpenGL.All stage, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params); + internal unsafe delegate void GetCombinerStageParameterfvNV(OpenTK.Graphics.All stage, OpenTK.Graphics.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.Graphics.OpenGL.All target, UInt32 id); + internal delegate void BindProgramNV(OpenTK.Graphics.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.Graphics.OpenGL.All target, UInt32 id, Single* @params); + internal unsafe delegate void ExecuteProgramNV(OpenTK.Graphics.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.Graphics.OpenGL.All target, UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Double* @params); + internal unsafe delegate void GetProgramParameterdvNV(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All pname, [Out] Double* @params); internal unsafe static GetProgramParameterdvNV glGetProgramParameterdvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetProgramParameterfvNV(OpenTK.Graphics.OpenGL.All target, UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params); + internal unsafe delegate void GetProgramParameterfvNV(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All pname, [Out] Single* @params); internal unsafe static GetProgramParameterfvNV glGetProgramParameterfvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetProgramivNV(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params); + internal unsafe delegate void GetProgramivNV(UInt32 id, OpenTK.Graphics.All pname, [Out] Int32* @params); internal unsafe static GetProgramivNV glGetProgramivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetProgramStringNV(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] Byte* program); + internal unsafe delegate void GetProgramStringNV(UInt32 id, OpenTK.Graphics.All pname, [Out] Byte* program); internal unsafe static GetProgramStringNV glGetProgramStringNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetTrackMatrixivNV(OpenTK.Graphics.OpenGL.All target, UInt32 address, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params); + internal unsafe delegate void GetTrackMatrixivNV(OpenTK.Graphics.All target, UInt32 address, OpenTK.Graphics.All pname, [Out] Int32* @params); internal unsafe static GetTrackMatrixivNV glGetTrackMatrixivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetVertexAttribdvNV(UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Double* @params); + internal unsafe delegate void GetVertexAttribdvNV(UInt32 index, OpenTK.Graphics.All pname, [Out] Double* @params); internal unsafe static GetVertexAttribdvNV glGetVertexAttribdvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetVertexAttribfvNV(UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params); + internal unsafe delegate void GetVertexAttribfvNV(UInt32 index, OpenTK.Graphics.All pname, [Out] Single* @params); internal unsafe static GetVertexAttribfvNV glGetVertexAttribfvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetVertexAttribivNV(UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params); + internal unsafe delegate void GetVertexAttribivNV(UInt32 index, OpenTK.Graphics.All pname, [Out] Int32* @params); internal unsafe static GetVertexAttribivNV glGetVertexAttribivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetVertexAttribPointervNV(UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] IntPtr pointer); + internal delegate void GetVertexAttribPointervNV(UInt32 index, OpenTK.Graphics.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.Graphics.OpenGL.All target, UInt32 id, Int32 len, Byte* program); + internal unsafe delegate void LoadProgramNV(OpenTK.Graphics.All target, UInt32 id, Int32 len, Byte* program); internal unsafe static LoadProgramNV glLoadProgramNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ProgramParameter4dNV(OpenTK.Graphics.OpenGL.All target, UInt32 index, Double x, Double y, Double z, Double w); + internal delegate void ProgramParameter4dNV(OpenTK.Graphics.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.Graphics.OpenGL.All target, UInt32 index, Double* v); + internal unsafe delegate void ProgramParameter4dvNV(OpenTK.Graphics.All target, UInt32 index, Double* v); internal unsafe static ProgramParameter4dvNV glProgramParameter4dvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ProgramParameter4fNV(OpenTK.Graphics.OpenGL.All target, UInt32 index, Single x, Single y, Single z, Single w); + internal delegate void ProgramParameter4fNV(OpenTK.Graphics.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.Graphics.OpenGL.All target, UInt32 index, Single* v); + internal unsafe delegate void ProgramParameter4fvNV(OpenTK.Graphics.All target, UInt32 index, Single* v); internal unsafe static ProgramParameter4fvNV glProgramParameter4fvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ProgramParameters4dvNV(OpenTK.Graphics.OpenGL.All target, UInt32 index, UInt32 count, Double* v); + internal unsafe delegate void ProgramParameters4dvNV(OpenTK.Graphics.All target, UInt32 index, UInt32 count, Double* v); internal unsafe static ProgramParameters4dvNV glProgramParameters4dvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ProgramParameters4fvNV(OpenTK.Graphics.OpenGL.All target, UInt32 index, UInt32 count, Single* v); + internal unsafe delegate void ProgramParameters4fvNV(OpenTK.Graphics.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.Graphics.OpenGL.All target, UInt32 address, OpenTK.Graphics.OpenGL.All matrix, OpenTK.Graphics.OpenGL.All transform); + internal delegate void TrackMatrixNV(OpenTK.Graphics.All target, UInt32 address, OpenTK.Graphics.All matrix, OpenTK.Graphics.All transform); internal static TrackMatrixNV glTrackMatrixNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexAttribPointerNV(UInt32 index, Int32 fsize, OpenTK.Graphics.OpenGL.All type, Int32 stride, IntPtr pointer); + internal delegate void VertexAttribPointerNV(UInt32 index, Int32 fsize, OpenTK.Graphics.All type, Int32 stride, IntPtr pointer); internal static VertexAttribPointerNV glVertexAttribPointerNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void VertexAttrib1dNV(UInt32 index, Double x); @@ -3584,16 +3584,16 @@ namespace OpenTK.Graphics.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.Graphics.OpenGL.All pname, Int32* param); + internal unsafe delegate void TexBumpParameterivATI(OpenTK.Graphics.All pname, Int32* param); internal unsafe static TexBumpParameterivATI glTexBumpParameterivATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void TexBumpParameterfvATI(OpenTK.Graphics.OpenGL.All pname, Single* param); + internal unsafe delegate void TexBumpParameterfvATI(OpenTK.Graphics.All pname, Single* param); internal unsafe static TexBumpParameterfvATI glTexBumpParameterfvATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetTexBumpParameterivATI(OpenTK.Graphics.OpenGL.All pname, [Out] Int32* param); + internal unsafe delegate void GetTexBumpParameterivATI(OpenTK.Graphics.All pname, [Out] Int32* param); internal unsafe static GetTexBumpParameterivATI glGetTexBumpParameterivATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetTexBumpParameterfvATI(OpenTK.Graphics.OpenGL.All pname, [Out] Single* param); + internal unsafe delegate void GetTexBumpParameterfvATI(OpenTK.Graphics.All pname, [Out] Single* param); internal unsafe static GetTexBumpParameterfvATI glGetTexBumpParameterfvATI; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate Int32 GenFragmentShadersATI(UInt32 range); @@ -3611,73 +3611,73 @@ namespace OpenTK.Graphics.OpenGL internal delegate void EndFragmentShaderATI(); internal static EndFragmentShaderATI glEndFragmentShaderATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void PassTexCoordATI(UInt32 dst, UInt32 coord, OpenTK.Graphics.OpenGL.All swizzle); + internal delegate void PassTexCoordATI(UInt32 dst, UInt32 coord, OpenTK.Graphics.All swizzle); internal static PassTexCoordATI glPassTexCoordATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void SampleMapATI(UInt32 dst, UInt32 interp, OpenTK.Graphics.OpenGL.All swizzle); + internal delegate void SampleMapATI(UInt32 dst, UInt32 interp, OpenTK.Graphics.All swizzle); internal static SampleMapATI glSampleMapATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ColorFragmentOp1ATI(OpenTK.Graphics.OpenGL.All op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod); + internal delegate void ColorFragmentOp1ATI(OpenTK.Graphics.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.Graphics.OpenGL.All op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod); + internal delegate void ColorFragmentOp2ATI(OpenTK.Graphics.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.Graphics.OpenGL.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 delegate void ColorFragmentOp3ATI(OpenTK.Graphics.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.Graphics.OpenGL.All op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod); + internal delegate void AlphaFragmentOp1ATI(OpenTK.Graphics.All op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod); internal static AlphaFragmentOp1ATI glAlphaFragmentOp1ATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void AlphaFragmentOp2ATI(OpenTK.Graphics.OpenGL.All op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod); + internal delegate void AlphaFragmentOp2ATI(OpenTK.Graphics.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.Graphics.OpenGL.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 delegate void AlphaFragmentOp3ATI(OpenTK.Graphics.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.Graphics.OpenGL.All pname, Int32 param); + internal delegate void PNTrianglesiATI(OpenTK.Graphics.All pname, Int32 param); internal static PNTrianglesiATI glPNTrianglesiATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void PNTrianglesfATI(OpenTK.Graphics.OpenGL.All pname, Single param); + internal delegate void PNTrianglesfATI(OpenTK.Graphics.All pname, Single param); internal static PNTrianglesfATI glPNTrianglesfATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate Int32 NewObjectBufferATI(Int32 size, IntPtr pointer, OpenTK.Graphics.OpenGL.All usage); + internal delegate Int32 NewObjectBufferATI(Int32 size, IntPtr pointer, OpenTK.Graphics.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.Graphics.OpenGL.All preserve); + internal delegate void UpdateObjectBufferATI(UInt32 buffer, UInt32 offset, Int32 size, IntPtr pointer, OpenTK.Graphics.All preserve); internal static UpdateObjectBufferATI glUpdateObjectBufferATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetObjectBufferfvATI(UInt32 buffer, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params); + internal unsafe delegate void GetObjectBufferfvATI(UInt32 buffer, OpenTK.Graphics.All pname, [Out] Single* @params); internal unsafe static GetObjectBufferfvATI glGetObjectBufferfvATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetObjectBufferivATI(UInt32 buffer, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params); + internal unsafe delegate void GetObjectBufferivATI(UInt32 buffer, OpenTK.Graphics.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.Graphics.OpenGL.EnableCap array, Int32 size, OpenTK.Graphics.OpenGL.All type, Int32 stride, UInt32 buffer, UInt32 offset); + internal delegate void ArrayObjectATI(OpenTK.Graphics.EnableCap array, Int32 size, OpenTK.Graphics.All type, Int32 stride, UInt32 buffer, UInt32 offset); internal static ArrayObjectATI glArrayObjectATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetArrayObjectfvATI(OpenTK.Graphics.OpenGL.EnableCap array, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params); + internal unsafe delegate void GetArrayObjectfvATI(OpenTK.Graphics.EnableCap array, OpenTK.Graphics.All pname, [Out] Single* @params); internal unsafe static GetArrayObjectfvATI glGetArrayObjectfvATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetArrayObjectivATI(OpenTK.Graphics.OpenGL.EnableCap array, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params); + internal unsafe delegate void GetArrayObjectivATI(OpenTK.Graphics.EnableCap array, OpenTK.Graphics.All pname, [Out] Int32* @params); internal unsafe static GetArrayObjectivATI glGetArrayObjectivATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VariantArrayObjectATI(UInt32 id, OpenTK.Graphics.OpenGL.All type, Int32 stride, UInt32 buffer, UInt32 offset); + internal delegate void VariantArrayObjectATI(UInt32 id, OpenTK.Graphics.All type, Int32 stride, UInt32 buffer, UInt32 offset); internal static VariantArrayObjectATI glVariantArrayObjectATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetVariantArrayObjectfvATI(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] Single* @params); + internal unsafe delegate void GetVariantArrayObjectfvATI(UInt32 id, OpenTK.Graphics.All pname, [Out] Single* @params); internal unsafe static GetVariantArrayObjectfvATI glGetVariantArrayObjectfvATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetVariantArrayObjectivATI(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params); + internal unsafe delegate void GetVariantArrayObjectivATI(UInt32 id, OpenTK.Graphics.All pname, [Out] Int32* @params); internal unsafe static GetVariantArrayObjectivATI glGetVariantArrayObjectivATI; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void BeginVertexShaderEXT(); @@ -3695,19 +3695,19 @@ namespace OpenTK.Graphics.OpenGL internal delegate void DeleteVertexShaderEXT(UInt32 id); internal static DeleteVertexShaderEXT glDeleteVertexShaderEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ShaderOp1EXT(OpenTK.Graphics.OpenGL.All op, UInt32 res, UInt32 arg1); + internal delegate void ShaderOp1EXT(OpenTK.Graphics.All op, UInt32 res, UInt32 arg1); internal static ShaderOp1EXT glShaderOp1EXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ShaderOp2EXT(OpenTK.Graphics.OpenGL.All op, UInt32 res, UInt32 arg1, UInt32 arg2); + internal delegate void ShaderOp2EXT(OpenTK.Graphics.All op, UInt32 res, UInt32 arg1, UInt32 arg2); internal static ShaderOp2EXT glShaderOp2EXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ShaderOp3EXT(OpenTK.Graphics.OpenGL.All op, UInt32 res, UInt32 arg1, UInt32 arg2, UInt32 arg3); + internal delegate void ShaderOp3EXT(OpenTK.Graphics.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.Graphics.OpenGL.All outX, OpenTK.Graphics.OpenGL.All outY, OpenTK.Graphics.OpenGL.All outZ, OpenTK.Graphics.OpenGL.All outW); + internal delegate void SwizzleEXT(UInt32 res, UInt32 @in, OpenTK.Graphics.All outX, OpenTK.Graphics.All outY, OpenTK.Graphics.All outZ, OpenTK.Graphics.All outW); internal static SwizzleEXT glSwizzleEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void WriteMaskEXT(UInt32 res, UInt32 @in, OpenTK.Graphics.OpenGL.All outX, OpenTK.Graphics.OpenGL.All outY, OpenTK.Graphics.OpenGL.All outZ, OpenTK.Graphics.OpenGL.All outW); + internal delegate void WriteMaskEXT(UInt32 res, UInt32 @in, OpenTK.Graphics.All outX, OpenTK.Graphics.All outY, OpenTK.Graphics.All outZ, OpenTK.Graphics.All outW); internal static WriteMaskEXT glWriteMaskEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void InsertComponentEXT(UInt32 res, UInt32 src, UInt32 num); @@ -3716,13 +3716,13 @@ namespace OpenTK.Graphics.OpenGL internal delegate void ExtractComponentEXT(UInt32 res, UInt32 src, UInt32 num); internal static ExtractComponentEXT glExtractComponentEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate Int32 GenSymbolsEXT(OpenTK.Graphics.OpenGL.All datatype, OpenTK.Graphics.OpenGL.All storagetype, OpenTK.Graphics.OpenGL.All range, UInt32 components); + internal delegate Int32 GenSymbolsEXT(OpenTK.Graphics.All datatype, OpenTK.Graphics.All storagetype, OpenTK.Graphics.All range, UInt32 components); internal static GenSymbolsEXT glGenSymbolsEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void SetInvariantEXT(UInt32 id, OpenTK.Graphics.OpenGL.All type, IntPtr addr); + internal delegate void SetInvariantEXT(UInt32 id, OpenTK.Graphics.All type, IntPtr addr); internal static SetInvariantEXT glSetInvariantEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void SetLocalConstantEXT(UInt32 id, OpenTK.Graphics.OpenGL.All type, IntPtr addr); + internal delegate void SetLocalConstantEXT(UInt32 id, OpenTK.Graphics.All type, IntPtr addr); internal static SetLocalConstantEXT glSetLocalConstantEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void VariantbvEXT(UInt32 id, SByte* addr); @@ -3749,7 +3749,7 @@ namespace OpenTK.Graphics.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.Graphics.OpenGL.All type, UInt32 stride, IntPtr addr); + internal delegate void VariantPointerEXT(UInt32 id, OpenTK.Graphics.All type, UInt32 stride, IntPtr addr); internal static VariantPointerEXT glVariantPointerEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void EnableVariantClientStateEXT(UInt32 id); @@ -3758,199 +3758,199 @@ namespace OpenTK.Graphics.OpenGL internal delegate void DisableVariantClientStateEXT(UInt32 id); internal static DisableVariantClientStateEXT glDisableVariantClientStateEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate Int32 BindLightParameterEXT(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter value); + internal delegate Int32 BindLightParameterEXT(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter value); internal static BindLightParameterEXT glBindLightParameterEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate Int32 BindMaterialParameterEXT(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter value); + internal delegate Int32 BindMaterialParameterEXT(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter value); internal static BindMaterialParameterEXT glBindMaterialParameterEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate Int32 BindTexGenParameterEXT(OpenTK.Graphics.OpenGL.TextureUnit unit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter value); + internal delegate Int32 BindTexGenParameterEXT(OpenTK.Graphics.TextureUnit unit, OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter value); internal static BindTexGenParameterEXT glBindTexGenParameterEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate Int32 BindTextureUnitParameterEXT(OpenTK.Graphics.OpenGL.TextureUnit unit, OpenTK.Graphics.OpenGL.All value); + internal delegate Int32 BindTextureUnitParameterEXT(OpenTK.Graphics.TextureUnit unit, OpenTK.Graphics.All value); internal static BindTextureUnitParameterEXT glBindTextureUnitParameterEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate Int32 BindParameterEXT(OpenTK.Graphics.OpenGL.All value); + internal delegate Int32 BindParameterEXT(OpenTK.Graphics.All value); internal static BindParameterEXT glBindParameterEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate bool IsVariantEnabledEXT(UInt32 id, OpenTK.Graphics.OpenGL.All cap); + internal delegate bool IsVariantEnabledEXT(UInt32 id, OpenTK.Graphics.All cap); internal static IsVariantEnabledEXT glIsVariantEnabledEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetVariantBooleanvEXT(UInt32 id, OpenTK.Graphics.OpenGL.All value, [Out] bool* data); + internal unsafe delegate void GetVariantBooleanvEXT(UInt32 id, OpenTK.Graphics.All value, [Out] bool* data); internal unsafe static GetVariantBooleanvEXT glGetVariantBooleanvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetVariantIntegervEXT(UInt32 id, OpenTK.Graphics.OpenGL.All value, [Out] Int32* data); + internal unsafe delegate void GetVariantIntegervEXT(UInt32 id, OpenTK.Graphics.All value, [Out] Int32* data); internal unsafe static GetVariantIntegervEXT glGetVariantIntegervEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetVariantFloatvEXT(UInt32 id, OpenTK.Graphics.OpenGL.All value, [Out] Single* data); + internal unsafe delegate void GetVariantFloatvEXT(UInt32 id, OpenTK.Graphics.All value, [Out] Single* data); internal unsafe static GetVariantFloatvEXT glGetVariantFloatvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GetVariantPointervEXT(UInt32 id, OpenTK.Graphics.OpenGL.All value, [Out] IntPtr data); + internal delegate void GetVariantPointervEXT(UInt32 id, OpenTK.Graphics.All value, [Out] IntPtr data); internal static GetVariantPointervEXT glGetVariantPointervEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetInvariantBooleanvEXT(UInt32 id, OpenTK.Graphics.OpenGL.All value, [Out] bool* data); + internal unsafe delegate void GetInvariantBooleanvEXT(UInt32 id, OpenTK.Graphics.All value, [Out] bool* data); internal unsafe static GetInvariantBooleanvEXT glGetInvariantBooleanvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetInvariantIntegervEXT(UInt32 id, OpenTK.Graphics.OpenGL.All value, [Out] Int32* data); + internal unsafe delegate void GetInvariantIntegervEXT(UInt32 id, OpenTK.Graphics.All value, [Out] Int32* data); internal unsafe static GetInvariantIntegervEXT glGetInvariantIntegervEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetInvariantFloatvEXT(UInt32 id, OpenTK.Graphics.OpenGL.All value, [Out] Single* data); + internal unsafe delegate void GetInvariantFloatvEXT(UInt32 id, OpenTK.Graphics.All value, [Out] Single* data); internal unsafe static GetInvariantFloatvEXT glGetInvariantFloatvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetLocalConstantBooleanvEXT(UInt32 id, OpenTK.Graphics.OpenGL.All value, [Out] bool* data); + internal unsafe delegate void GetLocalConstantBooleanvEXT(UInt32 id, OpenTK.Graphics.All value, [Out] bool* data); internal unsafe static GetLocalConstantBooleanvEXT glGetLocalConstantBooleanvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetLocalConstantIntegervEXT(UInt32 id, OpenTK.Graphics.OpenGL.All value, [Out] Int32* data); + internal unsafe delegate void GetLocalConstantIntegervEXT(UInt32 id, OpenTK.Graphics.All value, [Out] Int32* data); internal unsafe static GetLocalConstantIntegervEXT glGetLocalConstantIntegervEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetLocalConstantFloatvEXT(UInt32 id, OpenTK.Graphics.OpenGL.All value, [Out] Single* data); + internal unsafe delegate void GetLocalConstantFloatvEXT(UInt32 id, OpenTK.Graphics.All value, [Out] Single* data); internal unsafe static GetLocalConstantFloatvEXT glGetLocalConstantFloatvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexStream1sATI(OpenTK.Graphics.OpenGL.All stream, Int16 x); + internal delegate void VertexStream1sATI(OpenTK.Graphics.All stream, Int16 x); internal static VertexStream1sATI glVertexStream1sATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexStream1svATI(OpenTK.Graphics.OpenGL.All stream, Int16* coords); + internal unsafe delegate void VertexStream1svATI(OpenTK.Graphics.All stream, Int16* coords); internal unsafe static VertexStream1svATI glVertexStream1svATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexStream1iATI(OpenTK.Graphics.OpenGL.All stream, Int32 x); + internal delegate void VertexStream1iATI(OpenTK.Graphics.All stream, Int32 x); internal static VertexStream1iATI glVertexStream1iATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexStream1ivATI(OpenTK.Graphics.OpenGL.All stream, Int32* coords); + internal unsafe delegate void VertexStream1ivATI(OpenTK.Graphics.All stream, Int32* coords); internal unsafe static VertexStream1ivATI glVertexStream1ivATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexStream1fATI(OpenTK.Graphics.OpenGL.All stream, Single x); + internal delegate void VertexStream1fATI(OpenTK.Graphics.All stream, Single x); internal static VertexStream1fATI glVertexStream1fATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexStream1fvATI(OpenTK.Graphics.OpenGL.All stream, Single* coords); + internal unsafe delegate void VertexStream1fvATI(OpenTK.Graphics.All stream, Single* coords); internal unsafe static VertexStream1fvATI glVertexStream1fvATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexStream1dATI(OpenTK.Graphics.OpenGL.All stream, Double x); + internal delegate void VertexStream1dATI(OpenTK.Graphics.All stream, Double x); internal static VertexStream1dATI glVertexStream1dATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexStream1dvATI(OpenTK.Graphics.OpenGL.All stream, Double* coords); + internal unsafe delegate void VertexStream1dvATI(OpenTK.Graphics.All stream, Double* coords); internal unsafe static VertexStream1dvATI glVertexStream1dvATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexStream2sATI(OpenTK.Graphics.OpenGL.All stream, Int16 x, Int16 y); + internal delegate void VertexStream2sATI(OpenTK.Graphics.All stream, Int16 x, Int16 y); internal static VertexStream2sATI glVertexStream2sATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexStream2svATI(OpenTK.Graphics.OpenGL.All stream, Int16* coords); + internal unsafe delegate void VertexStream2svATI(OpenTK.Graphics.All stream, Int16* coords); internal unsafe static VertexStream2svATI glVertexStream2svATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexStream2iATI(OpenTK.Graphics.OpenGL.All stream, Int32 x, Int32 y); + internal delegate void VertexStream2iATI(OpenTK.Graphics.All stream, Int32 x, Int32 y); internal static VertexStream2iATI glVertexStream2iATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexStream2ivATI(OpenTK.Graphics.OpenGL.All stream, Int32* coords); + internal unsafe delegate void VertexStream2ivATI(OpenTK.Graphics.All stream, Int32* coords); internal unsafe static VertexStream2ivATI glVertexStream2ivATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexStream2fATI(OpenTK.Graphics.OpenGL.All stream, Single x, Single y); + internal delegate void VertexStream2fATI(OpenTK.Graphics.All stream, Single x, Single y); internal static VertexStream2fATI glVertexStream2fATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexStream2fvATI(OpenTK.Graphics.OpenGL.All stream, Single* coords); + internal unsafe delegate void VertexStream2fvATI(OpenTK.Graphics.All stream, Single* coords); internal unsafe static VertexStream2fvATI glVertexStream2fvATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexStream2dATI(OpenTK.Graphics.OpenGL.All stream, Double x, Double y); + internal delegate void VertexStream2dATI(OpenTK.Graphics.All stream, Double x, Double y); internal static VertexStream2dATI glVertexStream2dATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexStream2dvATI(OpenTK.Graphics.OpenGL.All stream, Double* coords); + internal unsafe delegate void VertexStream2dvATI(OpenTK.Graphics.All stream, Double* coords); internal unsafe static VertexStream2dvATI glVertexStream2dvATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexStream3sATI(OpenTK.Graphics.OpenGL.All stream, Int16 x, Int16 y, Int16 z); + internal delegate void VertexStream3sATI(OpenTK.Graphics.All stream, Int16 x, Int16 y, Int16 z); internal static VertexStream3sATI glVertexStream3sATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexStream3svATI(OpenTK.Graphics.OpenGL.All stream, Int16* coords); + internal unsafe delegate void VertexStream3svATI(OpenTK.Graphics.All stream, Int16* coords); internal unsafe static VertexStream3svATI glVertexStream3svATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexStream3iATI(OpenTK.Graphics.OpenGL.All stream, Int32 x, Int32 y, Int32 z); + internal delegate void VertexStream3iATI(OpenTK.Graphics.All stream, Int32 x, Int32 y, Int32 z); internal static VertexStream3iATI glVertexStream3iATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexStream3ivATI(OpenTK.Graphics.OpenGL.All stream, Int32* coords); + internal unsafe delegate void VertexStream3ivATI(OpenTK.Graphics.All stream, Int32* coords); internal unsafe static VertexStream3ivATI glVertexStream3ivATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexStream3fATI(OpenTK.Graphics.OpenGL.All stream, Single x, Single y, Single z); + internal delegate void VertexStream3fATI(OpenTK.Graphics.All stream, Single x, Single y, Single z); internal static VertexStream3fATI glVertexStream3fATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexStream3fvATI(OpenTK.Graphics.OpenGL.All stream, Single* coords); + internal unsafe delegate void VertexStream3fvATI(OpenTK.Graphics.All stream, Single* coords); internal unsafe static VertexStream3fvATI glVertexStream3fvATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexStream3dATI(OpenTK.Graphics.OpenGL.All stream, Double x, Double y, Double z); + internal delegate void VertexStream3dATI(OpenTK.Graphics.All stream, Double x, Double y, Double z); internal static VertexStream3dATI glVertexStream3dATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexStream3dvATI(OpenTK.Graphics.OpenGL.All stream, Double* coords); + internal unsafe delegate void VertexStream3dvATI(OpenTK.Graphics.All stream, Double* coords); internal unsafe static VertexStream3dvATI glVertexStream3dvATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexStream4sATI(OpenTK.Graphics.OpenGL.All stream, Int16 x, Int16 y, Int16 z, Int16 w); + internal delegate void VertexStream4sATI(OpenTK.Graphics.All stream, Int16 x, Int16 y, Int16 z, Int16 w); internal static VertexStream4sATI glVertexStream4sATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexStream4svATI(OpenTK.Graphics.OpenGL.All stream, Int16* coords); + internal unsafe delegate void VertexStream4svATI(OpenTK.Graphics.All stream, Int16* coords); internal unsafe static VertexStream4svATI glVertexStream4svATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexStream4iATI(OpenTK.Graphics.OpenGL.All stream, Int32 x, Int32 y, Int32 z, Int32 w); + internal delegate void VertexStream4iATI(OpenTK.Graphics.All stream, Int32 x, Int32 y, Int32 z, Int32 w); internal static VertexStream4iATI glVertexStream4iATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexStream4ivATI(OpenTK.Graphics.OpenGL.All stream, Int32* coords); + internal unsafe delegate void VertexStream4ivATI(OpenTK.Graphics.All stream, Int32* coords); internal unsafe static VertexStream4ivATI glVertexStream4ivATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexStream4fATI(OpenTK.Graphics.OpenGL.All stream, Single x, Single y, Single z, Single w); + internal delegate void VertexStream4fATI(OpenTK.Graphics.All stream, Single x, Single y, Single z, Single w); internal static VertexStream4fATI glVertexStream4fATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexStream4fvATI(OpenTK.Graphics.OpenGL.All stream, Single* coords); + internal unsafe delegate void VertexStream4fvATI(OpenTK.Graphics.All stream, Single* coords); internal unsafe static VertexStream4fvATI glVertexStream4fvATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexStream4dATI(OpenTK.Graphics.OpenGL.All stream, Double x, Double y, Double z, Double w); + internal delegate void VertexStream4dATI(OpenTK.Graphics.All stream, Double x, Double y, Double z, Double w); internal static VertexStream4dATI glVertexStream4dATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexStream4dvATI(OpenTK.Graphics.OpenGL.All stream, Double* coords); + internal unsafe delegate void VertexStream4dvATI(OpenTK.Graphics.All stream, Double* coords); internal unsafe static VertexStream4dvATI glVertexStream4dvATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void NormalStream3bATI(OpenTK.Graphics.OpenGL.All stream, SByte nx, SByte ny, SByte nz); + internal delegate void NormalStream3bATI(OpenTK.Graphics.All stream, SByte nx, SByte ny, SByte nz); internal static NormalStream3bATI glNormalStream3bATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void NormalStream3bvATI(OpenTK.Graphics.OpenGL.All stream, SByte* coords); + internal unsafe delegate void NormalStream3bvATI(OpenTK.Graphics.All stream, SByte* coords); internal unsafe static NormalStream3bvATI glNormalStream3bvATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void NormalStream3sATI(OpenTK.Graphics.OpenGL.All stream, Int16 nx, Int16 ny, Int16 nz); + internal delegate void NormalStream3sATI(OpenTK.Graphics.All stream, Int16 nx, Int16 ny, Int16 nz); internal static NormalStream3sATI glNormalStream3sATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void NormalStream3svATI(OpenTK.Graphics.OpenGL.All stream, Int16* coords); + internal unsafe delegate void NormalStream3svATI(OpenTK.Graphics.All stream, Int16* coords); internal unsafe static NormalStream3svATI glNormalStream3svATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void NormalStream3iATI(OpenTK.Graphics.OpenGL.All stream, Int32 nx, Int32 ny, Int32 nz); + internal delegate void NormalStream3iATI(OpenTK.Graphics.All stream, Int32 nx, Int32 ny, Int32 nz); internal static NormalStream3iATI glNormalStream3iATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void NormalStream3ivATI(OpenTK.Graphics.OpenGL.All stream, Int32* coords); + internal unsafe delegate void NormalStream3ivATI(OpenTK.Graphics.All stream, Int32* coords); internal unsafe static NormalStream3ivATI glNormalStream3ivATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void NormalStream3fATI(OpenTK.Graphics.OpenGL.All stream, Single nx, Single ny, Single nz); + internal delegate void NormalStream3fATI(OpenTK.Graphics.All stream, Single nx, Single ny, Single nz); internal static NormalStream3fATI glNormalStream3fATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void NormalStream3fvATI(OpenTK.Graphics.OpenGL.All stream, Single* coords); + internal unsafe delegate void NormalStream3fvATI(OpenTK.Graphics.All stream, Single* coords); internal unsafe static NormalStream3fvATI glNormalStream3fvATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void NormalStream3dATI(OpenTK.Graphics.OpenGL.All stream, Double nx, Double ny, Double nz); + internal delegate void NormalStream3dATI(OpenTK.Graphics.All stream, Double nx, Double ny, Double nz); internal static NormalStream3dATI glNormalStream3dATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void NormalStream3dvATI(OpenTK.Graphics.OpenGL.All stream, Double* coords); + internal unsafe delegate void NormalStream3dvATI(OpenTK.Graphics.All stream, Double* coords); internal unsafe static NormalStream3dvATI glNormalStream3dvATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ClientActiveVertexStreamATI(OpenTK.Graphics.OpenGL.All stream); + internal delegate void ClientActiveVertexStreamATI(OpenTK.Graphics.All stream); internal static ClientActiveVertexStreamATI glClientActiveVertexStreamATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexBlendEnviATI(OpenTK.Graphics.OpenGL.All pname, Int32 param); + internal delegate void VertexBlendEnviATI(OpenTK.Graphics.All pname, Int32 param); internal static VertexBlendEnviATI glVertexBlendEnviATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexBlendEnvfATI(OpenTK.Graphics.OpenGL.All pname, Single param); + internal delegate void VertexBlendEnvfATI(OpenTK.Graphics.All pname, Single param); internal static VertexBlendEnvfATI glVertexBlendEnvfATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ElementPointerATI(OpenTK.Graphics.OpenGL.All type, IntPtr pointer); + internal delegate void ElementPointerATI(OpenTK.Graphics.All type, IntPtr pointer); internal static ElementPointerATI glElementPointerATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void DrawElementArrayATI(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count); + internal delegate void DrawElementArrayATI(OpenTK.Graphics.BeginMode mode, Int32 count); internal static DrawElementArrayATI glDrawElementArrayATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void DrawRangeElementArrayATI(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count); + internal delegate void DrawRangeElementArrayATI(OpenTK.Graphics.BeginMode mode, UInt32 start, UInt32 end, Int32 count); internal static DrawRangeElementArrayATI glDrawRangeElementArrayATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void DrawMeshArraysSUN(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 first, Int32 count, Int32 width); + internal delegate void DrawMeshArraysSUN(OpenTK.Graphics.BeginMode mode, Int32 first, Int32 count, Int32 width); internal static DrawMeshArraysSUN glDrawMeshArraysSUN; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void GenOcclusionQueriesNV(Int32 n, [Out] UInt32* ids); @@ -3968,34 +3968,34 @@ namespace OpenTK.Graphics.OpenGL internal delegate void EndOcclusionQueryNV(); internal static EndOcclusionQueryNV glEndOcclusionQueryNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetOcclusionQueryivNV(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params); + internal unsafe delegate void GetOcclusionQueryivNV(UInt32 id, OpenTK.Graphics.All pname, [Out] Int32* @params); internal unsafe static GetOcclusionQueryivNV glGetOcclusionQueryivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetOcclusionQueryuivNV(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] UInt32* @params); + internal unsafe delegate void GetOcclusionQueryuivNV(UInt32 id, OpenTK.Graphics.All pname, [Out] UInt32* @params); internal unsafe static GetOcclusionQueryuivNV glGetOcclusionQueryuivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void PointParameteriNV(OpenTK.Graphics.OpenGL.All pname, Int32 param); + internal delegate void PointParameteriNV(OpenTK.Graphics.All pname, Int32 param); internal static PointParameteriNV glPointParameteriNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void PointParameterivNV(OpenTK.Graphics.OpenGL.All pname, Int32* @params); + internal unsafe delegate void PointParameterivNV(OpenTK.Graphics.All pname, Int32* @params); internal unsafe static PointParameterivNV glPointParameterivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ActiveStencilFaceEXT(OpenTK.Graphics.OpenGL.All face); + internal delegate void ActiveStencilFaceEXT(OpenTK.Graphics.All face); internal static ActiveStencilFaceEXT glActiveStencilFaceEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ElementPointerAPPLE(OpenTK.Graphics.OpenGL.All type, IntPtr pointer); + internal delegate void ElementPointerAPPLE(OpenTK.Graphics.All type, IntPtr pointer); internal static ElementPointerAPPLE glElementPointerAPPLE; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void DrawElementArrayAPPLE(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 first, Int32 count); + internal delegate void DrawElementArrayAPPLE(OpenTK.Graphics.BeginMode mode, Int32 first, Int32 count); internal static DrawElementArrayAPPLE glDrawElementArrayAPPLE; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void DrawRangeElementArrayAPPLE(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 first, Int32 count); + internal delegate void DrawRangeElementArrayAPPLE(OpenTK.Graphics.BeginMode mode, UInt32 start, UInt32 end, Int32 first, Int32 count); internal static DrawRangeElementArrayAPPLE glDrawRangeElementArrayAPPLE; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiDrawElementArrayAPPLE(OpenTK.Graphics.OpenGL.BeginMode mode, Int32* first, Int32* count, Int32 primcount); + internal unsafe delegate void MultiDrawElementArrayAPPLE(OpenTK.Graphics.BeginMode mode, Int32* first, Int32* count, Int32 primcount); internal unsafe static MultiDrawElementArrayAPPLE glMultiDrawElementArrayAPPLE; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiDrawRangeElementArrayAPPLE(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32* first, Int32* count, Int32 primcount); + internal unsafe delegate void MultiDrawRangeElementArrayAPPLE(OpenTK.Graphics.BeginMode mode, UInt32 start, UInt32 end, Int32* first, Int32* count, Int32 primcount); internal unsafe static MultiDrawRangeElementArrayAPPLE glMultiDrawRangeElementArrayAPPLE; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void GenFencesAPPLE(Int32 n, [Out] UInt32* fences); @@ -4016,10 +4016,10 @@ namespace OpenTK.Graphics.OpenGL internal delegate void FinishFenceAPPLE(UInt32 fence); internal static FinishFenceAPPLE glFinishFenceAPPLE; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate bool TestObjectAPPLE(OpenTK.Graphics.OpenGL.All @object, UInt32 name); + internal delegate bool TestObjectAPPLE(OpenTK.Graphics.All @object, UInt32 name); internal static TestObjectAPPLE glTestObjectAPPLE; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FinishObjectAPPLE(OpenTK.Graphics.OpenGL.All @object, Int32 name); + internal delegate void FinishObjectAPPLE(OpenTK.Graphics.All @object, Int32 name); internal static FinishObjectAPPLE glFinishObjectAPPLE; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void BindVertexArrayAPPLE(UInt32 array); @@ -4040,10 +4040,10 @@ namespace OpenTK.Graphics.OpenGL internal delegate void FlushVertexArrayRangeAPPLE(Int32 length, [Out] IntPtr pointer); internal static FlushVertexArrayRangeAPPLE glFlushVertexArrayRangeAPPLE; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexArrayParameteriAPPLE(OpenTK.Graphics.OpenGL.All pname, Int32 param); + internal delegate void VertexArrayParameteriAPPLE(OpenTK.Graphics.All pname, Int32 param); internal static VertexArrayParameteriAPPLE glVertexArrayParameteriAPPLE; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void DrawBuffersATI(Int32 n, OpenTK.Graphics.OpenGL.All* bufs); + internal unsafe delegate void DrawBuffersATI(Int32 n, OpenTK.Graphics.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); @@ -4124,28 +4124,28 @@ namespace OpenTK.Graphics.OpenGL internal unsafe delegate void TexCoord4hvNV(UInt16* v); internal unsafe static TexCoord4hvNV glTexCoord4hvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord1hNV(OpenTK.Graphics.OpenGL.TextureUnit target, UInt16 s); + internal delegate void MultiTexCoord1hNV(OpenTK.Graphics.TextureUnit target, UInt16 s); internal static MultiTexCoord1hNV glMultiTexCoord1hNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord1hvNV(OpenTK.Graphics.OpenGL.TextureUnit target, UInt16* v); + internal unsafe delegate void MultiTexCoord1hvNV(OpenTK.Graphics.TextureUnit target, UInt16* v); internal unsafe static MultiTexCoord1hvNV glMultiTexCoord1hvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord2hNV(OpenTK.Graphics.OpenGL.TextureUnit target, UInt16 s, UInt16 t); + internal delegate void MultiTexCoord2hNV(OpenTK.Graphics.TextureUnit target, UInt16 s, UInt16 t); internal static MultiTexCoord2hNV glMultiTexCoord2hNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord2hvNV(OpenTK.Graphics.OpenGL.TextureUnit target, UInt16* v); + internal unsafe delegate void MultiTexCoord2hvNV(OpenTK.Graphics.TextureUnit target, UInt16* v); internal unsafe static MultiTexCoord2hvNV glMultiTexCoord2hvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord3hNV(OpenTK.Graphics.OpenGL.TextureUnit target, UInt16 s, UInt16 t, UInt16 r); + internal delegate void MultiTexCoord3hNV(OpenTK.Graphics.TextureUnit target, UInt16 s, UInt16 t, UInt16 r); internal static MultiTexCoord3hNV glMultiTexCoord3hNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord3hvNV(OpenTK.Graphics.OpenGL.TextureUnit target, UInt16* v); + internal unsafe delegate void MultiTexCoord3hvNV(OpenTK.Graphics.TextureUnit target, UInt16* v); internal unsafe static MultiTexCoord3hvNV glMultiTexCoord3hvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord4hNV(OpenTK.Graphics.OpenGL.TextureUnit target, UInt16 s, UInt16 t, UInt16 r, UInt16 q); + internal delegate void MultiTexCoord4hNV(OpenTK.Graphics.TextureUnit target, UInt16 s, UInt16 t, UInt16 r, UInt16 q); internal static MultiTexCoord4hNV glMultiTexCoord4hNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord4hvNV(OpenTK.Graphics.OpenGL.TextureUnit target, UInt16* v); + internal unsafe delegate void MultiTexCoord4hvNV(OpenTK.Graphics.TextureUnit target, UInt16* v); internal unsafe static MultiTexCoord4hvNV glMultiTexCoord4hvNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void FogCoordhNV(UInt16 fog); @@ -4202,10 +4202,10 @@ namespace OpenTK.Graphics.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.Graphics.OpenGL.All target, Int32 length, [Out] IntPtr pointer); + internal delegate void PixelDataRangeNV(OpenTK.Graphics.All target, Int32 length, [Out] IntPtr pointer); internal static PixelDataRangeNV glPixelDataRangeNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FlushPixelDataRangeNV(OpenTK.Graphics.OpenGL.All target); + internal delegate void FlushPixelDataRangeNV(OpenTK.Graphics.All target); internal static FlushPixelDataRangeNV glFlushPixelDataRangeNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void PrimitiveRestartNV(); @@ -4220,31 +4220,31 @@ namespace OpenTK.Graphics.OpenGL internal delegate void UnmapObjectBufferATI(UInt32 buffer); internal static UnmapObjectBufferATI glUnmapObjectBufferATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void StencilOpSeparateATI(OpenTK.Graphics.OpenGL.All face, OpenTK.Graphics.OpenGL.StencilOp sfail, OpenTK.Graphics.OpenGL.StencilOp dpfail, OpenTK.Graphics.OpenGL.StencilOp dppass); + internal delegate void StencilOpSeparateATI(OpenTK.Graphics.All face, OpenTK.Graphics.StencilOp sfail, OpenTK.Graphics.StencilOp dpfail, OpenTK.Graphics.StencilOp dppass); internal static StencilOpSeparateATI glStencilOpSeparateATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void StencilFuncSeparateATI(OpenTK.Graphics.OpenGL.StencilFunction frontfunc, OpenTK.Graphics.OpenGL.StencilFunction backfunc, Int32 @ref, UInt32 mask); + internal delegate void StencilFuncSeparateATI(OpenTK.Graphics.StencilFunction frontfunc, OpenTK.Graphics.StencilFunction backfunc, Int32 @ref, UInt32 mask); internal static StencilFuncSeparateATI glStencilFuncSeparateATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexAttribArrayObjectATI(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.All type, bool normalized, Int32 stride, UInt32 buffer, UInt32 offset); + internal delegate void VertexAttribArrayObjectATI(UInt32 index, Int32 size, OpenTK.Graphics.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.Graphics.OpenGL.All pname, [Out] Single* @params); + internal unsafe delegate void GetVertexAttribArrayObjectfvATI(UInt32 index, OpenTK.Graphics.All pname, [Out] Single* @params); internal unsafe static GetVertexAttribArrayObjectfvATI glGetVertexAttribArrayObjectfvATI; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetVertexAttribArrayObjectivATI(UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params); + internal unsafe delegate void GetVertexAttribArrayObjectivATI(UInt32 index, OpenTK.Graphics.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.Graphics.OpenGL.All modeRGB, OpenTK.Graphics.OpenGL.All modeAlpha); + internal delegate void BlendEquationSeparateEXT(OpenTK.Graphics.All modeRGB, OpenTK.Graphics.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.Graphics.OpenGL.RenderbufferTarget target, UInt32 renderbuffer); + internal delegate void BindRenderbufferEXT(OpenTK.Graphics.RenderbufferTarget target, UInt32 renderbuffer); internal static BindRenderbufferEXT glBindRenderbufferEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void DeleteRenderbuffersEXT(Int32 n, UInt32* renderbuffers); @@ -4253,16 +4253,16 @@ namespace OpenTK.Graphics.OpenGL internal unsafe delegate void GenRenderbuffersEXT(Int32 n, [Out] UInt32* renderbuffers); internal unsafe static GenRenderbuffersEXT glGenRenderbuffersEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void RenderbufferStorageEXT(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height); + internal delegate void RenderbufferStorageEXT(OpenTK.Graphics.RenderbufferTarget target, OpenTK.Graphics.RenderbufferStorage internalformat, Int32 width, Int32 height); internal static RenderbufferStorageEXT glRenderbufferStorageEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetRenderbufferParameterivEXT(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [Out] Int32* @params); + internal unsafe delegate void GetRenderbufferParameterivEXT(OpenTK.Graphics.RenderbufferTarget target, OpenTK.Graphics.RenderbufferParameterName 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.Graphics.OpenGL.FramebufferTarget target, UInt32 framebuffer); + internal delegate void BindFramebufferEXT(OpenTK.Graphics.FramebufferTarget target, UInt32 framebuffer); internal static BindFramebufferEXT glBindFramebufferEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void DeleteFramebuffersEXT(Int32 n, UInt32* framebuffers); @@ -4271,25 +4271,25 @@ namespace OpenTK.Graphics.OpenGL internal unsafe delegate void GenFramebuffersEXT(Int32 n, [Out] UInt32* framebuffers); internal unsafe static GenFramebuffersEXT glGenFramebuffersEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate OpenTK.Graphics.OpenGL.FramebufferErrorCode CheckFramebufferStatusEXT(OpenTK.Graphics.OpenGL.FramebufferTarget target); + internal delegate OpenTK.Graphics.FramebufferErrorCode CheckFramebufferStatusEXT(OpenTK.Graphics.FramebufferTarget target); internal static CheckFramebufferStatusEXT glCheckFramebufferStatusEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FramebufferTexture1DEXT(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level); + internal delegate void FramebufferTexture1DEXT(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.TextureTarget textarget, UInt32 texture, Int32 level); internal static FramebufferTexture1DEXT glFramebufferTexture1DEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FramebufferTexture2DEXT(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level); + internal delegate void FramebufferTexture2DEXT(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.TextureTarget textarget, UInt32 texture, Int32 level); internal static FramebufferTexture2DEXT glFramebufferTexture2DEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FramebufferTexture3DEXT(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level, Int32 zoffset); + internal delegate void FramebufferTexture3DEXT(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.TextureTarget textarget, UInt32 texture, Int32 level, Int32 zoffset); internal static FramebufferTexture3DEXT glFramebufferTexture3DEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FramebufferRenderbufferEXT(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer); + internal delegate void FramebufferRenderbufferEXT(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer); internal static FramebufferRenderbufferEXT glFramebufferRenderbufferEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetFramebufferAttachmentParameterivEXT(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [Out] Int32* @params); + internal unsafe delegate void GetFramebufferAttachmentParameterivEXT(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.FramebufferParameterName pname, [Out] Int32* @params); internal unsafe static GetFramebufferAttachmentParameterivEXT glGetFramebufferAttachmentParameterivEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void GenerateMipmapEXT(OpenTK.Graphics.OpenGL.GenerateMipmapTarget target); + internal delegate void GenerateMipmapEXT(OpenTK.Graphics.GenerateMipmapTarget target); internal static GenerateMipmapEXT glGenerateMipmapEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void StringMarkerGREMEDY(Int32 len, IntPtr @string); @@ -4298,91 +4298,91 @@ namespace OpenTK.Graphics.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.Graphics.OpenGL.ClearBufferMask mask, OpenTK.Graphics.OpenGL.All filter); + internal delegate void BlitFramebufferEXT(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ClearBufferMask mask, OpenTK.Graphics.All filter); internal static BlitFramebufferEXT glBlitFramebufferEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void RenderbufferStorageMultisampleEXT(OpenTK.Graphics.OpenGL.All target, Int32 samples, OpenTK.Graphics.OpenGL.All internalformat, Int32 width, Int32 height); + internal delegate void RenderbufferStorageMultisampleEXT(OpenTK.Graphics.All target, Int32 samples, OpenTK.Graphics.All internalformat, Int32 width, Int32 height); internal static RenderbufferStorageMultisampleEXT glRenderbufferStorageMultisampleEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetQueryObjecti64vEXT(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] Int64* @params); + internal unsafe delegate void GetQueryObjecti64vEXT(UInt32 id, OpenTK.Graphics.All pname, [Out] Int64* @params); internal unsafe static GetQueryObjecti64vEXT glGetQueryObjecti64vEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetQueryObjectui64vEXT(UInt32 id, OpenTK.Graphics.OpenGL.All pname, [Out] UInt64* @params); + internal unsafe delegate void GetQueryObjectui64vEXT(UInt32 id, OpenTK.Graphics.All pname, [Out] UInt64* @params); internal unsafe static GetQueryObjectui64vEXT glGetQueryObjectui64vEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ProgramEnvParameters4fvEXT(OpenTK.Graphics.OpenGL.All target, UInt32 index, Int32 count, Single* @params); + internal unsafe delegate void ProgramEnvParameters4fvEXT(OpenTK.Graphics.All target, UInt32 index, Int32 count, Single* @params); internal unsafe static ProgramEnvParameters4fvEXT glProgramEnvParameters4fvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ProgramLocalParameters4fvEXT(OpenTK.Graphics.OpenGL.All target, UInt32 index, Int32 count, Single* @params); + internal unsafe delegate void ProgramLocalParameters4fvEXT(OpenTK.Graphics.All target, UInt32 index, Int32 count, Single* @params); internal unsafe static ProgramLocalParameters4fvEXT glProgramLocalParameters4fvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BufferParameteriAPPLE(OpenTK.Graphics.OpenGL.All target, OpenTK.Graphics.OpenGL.All pname, Int32 param); + internal delegate void BufferParameteriAPPLE(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32 param); internal static BufferParameteriAPPLE glBufferParameteriAPPLE; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FlushMappedBufferRangeAPPLE(OpenTK.Graphics.OpenGL.All target, IntPtr offset, IntPtr size); + internal delegate void FlushMappedBufferRangeAPPLE(OpenTK.Graphics.All target, IntPtr offset, IntPtr size); internal static FlushMappedBufferRangeAPPLE glFlushMappedBufferRangeAPPLE; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ProgramLocalParameterI4iNV(OpenTK.Graphics.OpenGL.All target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w); + internal delegate void ProgramLocalParameterI4iNV(OpenTK.Graphics.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.Graphics.OpenGL.All target, UInt32 index, Int32* @params); + internal unsafe delegate void ProgramLocalParameterI4ivNV(OpenTK.Graphics.All target, UInt32 index, Int32* @params); internal unsafe static ProgramLocalParameterI4ivNV glProgramLocalParameterI4ivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ProgramLocalParametersI4ivNV(OpenTK.Graphics.OpenGL.All target, UInt32 index, Int32 count, Int32* @params); + internal unsafe delegate void ProgramLocalParametersI4ivNV(OpenTK.Graphics.All target, UInt32 index, Int32 count, Int32* @params); internal unsafe static ProgramLocalParametersI4ivNV glProgramLocalParametersI4ivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ProgramLocalParameterI4uiNV(OpenTK.Graphics.OpenGL.All target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w); + internal delegate void ProgramLocalParameterI4uiNV(OpenTK.Graphics.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.Graphics.OpenGL.All target, UInt32 index, UInt32* @params); + internal unsafe delegate void ProgramLocalParameterI4uivNV(OpenTK.Graphics.All target, UInt32 index, UInt32* @params); internal unsafe static ProgramLocalParameterI4uivNV glProgramLocalParameterI4uivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ProgramLocalParametersI4uivNV(OpenTK.Graphics.OpenGL.All target, UInt32 index, Int32 count, UInt32* @params); + internal unsafe delegate void ProgramLocalParametersI4uivNV(OpenTK.Graphics.All target, UInt32 index, Int32 count, UInt32* @params); internal unsafe static ProgramLocalParametersI4uivNV glProgramLocalParametersI4uivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ProgramEnvParameterI4iNV(OpenTK.Graphics.OpenGL.All target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w); + internal delegate void ProgramEnvParameterI4iNV(OpenTK.Graphics.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.Graphics.OpenGL.All target, UInt32 index, Int32* @params); + internal unsafe delegate void ProgramEnvParameterI4ivNV(OpenTK.Graphics.All target, UInt32 index, Int32* @params); internal unsafe static ProgramEnvParameterI4ivNV glProgramEnvParameterI4ivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ProgramEnvParametersI4ivNV(OpenTK.Graphics.OpenGL.All target, UInt32 index, Int32 count, Int32* @params); + internal unsafe delegate void ProgramEnvParametersI4ivNV(OpenTK.Graphics.All target, UInt32 index, Int32 count, Int32* @params); internal unsafe static ProgramEnvParametersI4ivNV glProgramEnvParametersI4ivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ProgramEnvParameterI4uiNV(OpenTK.Graphics.OpenGL.All target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w); + internal delegate void ProgramEnvParameterI4uiNV(OpenTK.Graphics.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.Graphics.OpenGL.All target, UInt32 index, UInt32* @params); + internal unsafe delegate void ProgramEnvParameterI4uivNV(OpenTK.Graphics.All target, UInt32 index, UInt32* @params); internal unsafe static ProgramEnvParameterI4uivNV glProgramEnvParameterI4uivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ProgramEnvParametersI4uivNV(OpenTK.Graphics.OpenGL.All target, UInt32 index, Int32 count, UInt32* @params); + internal unsafe delegate void ProgramEnvParametersI4uivNV(OpenTK.Graphics.All target, UInt32 index, Int32 count, UInt32* @params); internal unsafe static ProgramEnvParametersI4uivNV glProgramEnvParametersI4uivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetProgramLocalParameterIivNV(OpenTK.Graphics.OpenGL.All target, UInt32 index, [Out] Int32* @params); + internal unsafe delegate void GetProgramLocalParameterIivNV(OpenTK.Graphics.All target, UInt32 index, [Out] Int32* @params); internal unsafe static GetProgramLocalParameterIivNV glGetProgramLocalParameterIivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetProgramLocalParameterIuivNV(OpenTK.Graphics.OpenGL.All target, UInt32 index, [Out] UInt32* @params); + internal unsafe delegate void GetProgramLocalParameterIuivNV(OpenTK.Graphics.All target, UInt32 index, [Out] UInt32* @params); internal unsafe static GetProgramLocalParameterIuivNV glGetProgramLocalParameterIuivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetProgramEnvParameterIivNV(OpenTK.Graphics.OpenGL.All target, UInt32 index, [Out] Int32* @params); + internal unsafe delegate void GetProgramEnvParameterIivNV(OpenTK.Graphics.All target, UInt32 index, [Out] Int32* @params); internal unsafe static GetProgramEnvParameterIivNV glGetProgramEnvParameterIivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetProgramEnvParameterIuivNV(OpenTK.Graphics.OpenGL.All target, UInt32 index, [Out] UInt32* @params); + internal unsafe delegate void GetProgramEnvParameterIuivNV(OpenTK.Graphics.All target, UInt32 index, [Out] UInt32* @params); internal unsafe static GetProgramEnvParameterIuivNV glGetProgramEnvParameterIuivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ProgramVertexLimitNV(OpenTK.Graphics.OpenGL.All target, Int32 limit); + internal delegate void ProgramVertexLimitNV(OpenTK.Graphics.All target, Int32 limit); internal static ProgramVertexLimitNV glProgramVertexLimitNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FramebufferTextureEXT(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level); + internal delegate void FramebufferTextureEXT(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, UInt32 texture, Int32 level); internal static FramebufferTextureEXT glFramebufferTextureEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FramebufferTextureLayerEXT(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer); + internal delegate void FramebufferTextureLayerEXT(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer); internal static FramebufferTextureLayerEXT glFramebufferTextureLayerEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FramebufferTextureFaceEXT(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.TextureTarget face); + internal delegate void FramebufferTextureFaceEXT(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, UInt32 texture, Int32 level, OpenTK.Graphics.TextureTarget face); internal static FramebufferTextureFaceEXT glFramebufferTextureFaceEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void ProgramParameteriEXT(UInt32 program, OpenTK.Graphics.OpenGL.All pname, Int32 value); + internal delegate void ProgramParameteriEXT(UInt32 program, OpenTK.Graphics.All pname, Int32 value); internal static ProgramParameteriEXT glProgramParameteriEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void VertexAttribI1iEXT(UInt32 index, Int32 x); @@ -4445,13 +4445,13 @@ namespace OpenTK.Graphics.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.Graphics.OpenGL.All type, Int32 stride, IntPtr pointer); + internal delegate void VertexAttribIPointerEXT(UInt32 index, Int32 size, OpenTK.Graphics.All type, Int32 stride, IntPtr pointer); internal static VertexAttribIPointerEXT glVertexAttribIPointerEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetVertexAttribIivEXT(UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] Int32* @params); + internal unsafe delegate void GetVertexAttribIivEXT(UInt32 index, OpenTK.Graphics.All pname, [Out] Int32* @params); internal unsafe static GetVertexAttribIivEXT glGetVertexAttribIivEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetVertexAttribIuivEXT(UInt32 index, OpenTK.Graphics.OpenGL.All pname, [Out] UInt32* @params); + internal unsafe delegate void GetVertexAttribIuivEXT(UInt32 index, OpenTK.Graphics.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); @@ -4487,13 +4487,13 @@ namespace OpenTK.Graphics.OpenGL internal unsafe delegate void Uniform4uivEXT(Int32 location, Int32 count, UInt32* value); internal unsafe static Uniform4uivEXT glUniform4uivEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void DrawArraysInstancedEXT(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 count, Int32 primcount); + internal delegate void DrawArraysInstancedEXT(OpenTK.Graphics.BeginMode mode, Int32 start, Int32 count, Int32 primcount); internal static DrawArraysInstancedEXT glDrawArraysInstancedEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void DrawElementsInstancedEXT(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount); + internal delegate void DrawElementsInstancedEXT(OpenTK.Graphics.BeginMode mode, Int32 count, OpenTK.Graphics.DrawElementsType type, IntPtr indices, Int32 primcount); internal static DrawElementsInstancedEXT glDrawElementsInstancedEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void TexBufferEXT(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.All internalformat, UInt32 buffer); + internal delegate void TexBufferEXT(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.All internalformat, UInt32 buffer); internal static TexBufferEXT glTexBufferEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void DepthRangedNV(Double zNear, Double zFar); @@ -4505,55 +4505,55 @@ namespace OpenTK.Graphics.OpenGL internal delegate void DepthBoundsdNV(Double zmin, Double zmax); internal static DepthBoundsdNV glDepthBoundsdNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void RenderbufferStorageMultisampleCoverageNV(OpenTK.Graphics.OpenGL.RenderbufferTarget target, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height); + internal delegate void RenderbufferStorageMultisampleCoverageNV(OpenTK.Graphics.RenderbufferTarget target, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height); internal static RenderbufferStorageMultisampleCoverageNV glRenderbufferStorageMultisampleCoverageNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ProgramBufferParametersfvNV(OpenTK.Graphics.OpenGL.All target, UInt32 buffer, UInt32 index, Int32 count, Single* @params); + internal unsafe delegate void ProgramBufferParametersfvNV(OpenTK.Graphics.All target, UInt32 buffer, UInt32 index, Int32 count, Single* @params); internal unsafe static ProgramBufferParametersfvNV glProgramBufferParametersfvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ProgramBufferParametersIivNV(OpenTK.Graphics.OpenGL.All target, UInt32 buffer, UInt32 index, Int32 count, Int32* @params); + internal unsafe delegate void ProgramBufferParametersIivNV(OpenTK.Graphics.All target, UInt32 buffer, UInt32 index, Int32 count, Int32* @params); internal unsafe static ProgramBufferParametersIivNV glProgramBufferParametersIivNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void ProgramBufferParametersIuivNV(OpenTK.Graphics.OpenGL.All target, UInt32 buffer, UInt32 index, Int32 count, UInt32* @params); + internal unsafe delegate void ProgramBufferParametersIuivNV(OpenTK.Graphics.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.Graphics.OpenGL.All target, UInt32 index, [Out] bool* data); + internal unsafe delegate void GetBooleanIndexedvEXT(OpenTK.Graphics.All target, UInt32 index, [Out] bool* data); internal unsafe static GetBooleanIndexedvEXT glGetBooleanIndexedvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetIntegerIndexedvEXT(OpenTK.Graphics.OpenGL.All target, UInt32 index, [Out] Int32* data); + internal unsafe delegate void GetIntegerIndexedvEXT(OpenTK.Graphics.All target, UInt32 index, [Out] Int32* data); internal unsafe static GetIntegerIndexedvEXT glGetIntegerIndexedvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void EnableIndexedEXT(OpenTK.Graphics.OpenGL.All target, UInt32 index); + internal delegate void EnableIndexedEXT(OpenTK.Graphics.All target, UInt32 index); internal static EnableIndexedEXT glEnableIndexedEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void DisableIndexedEXT(OpenTK.Graphics.OpenGL.All target, UInt32 index); + internal delegate void DisableIndexedEXT(OpenTK.Graphics.All target, UInt32 index); internal static DisableIndexedEXT glDisableIndexedEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate bool IsEnabledIndexedEXT(OpenTK.Graphics.OpenGL.All target, UInt32 index); + internal delegate bool IsEnabledIndexedEXT(OpenTK.Graphics.All target, UInt32 index); internal static IsEnabledIndexedEXT glIsEnabledIndexedEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BeginTransformFeedbackNV(OpenTK.Graphics.OpenGL.All primitiveMode); + internal delegate void BeginTransformFeedbackNV(OpenTK.Graphics.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.Graphics.OpenGL.All bufferMode); + internal unsafe delegate void TransformFeedbackAttribsNV(UInt32 count, Int32* attribs, OpenTK.Graphics.All bufferMode); internal unsafe static TransformFeedbackAttribsNV glTransformFeedbackAttribsNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BindBufferRangeNV(OpenTK.Graphics.OpenGL.All target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size); + internal delegate void BindBufferRangeNV(OpenTK.Graphics.All target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size); internal static BindBufferRangeNV glBindBufferRangeNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BindBufferOffsetNV(OpenTK.Graphics.OpenGL.All target, UInt32 index, UInt32 buffer, IntPtr offset); + internal delegate void BindBufferOffsetNV(OpenTK.Graphics.All target, UInt32 index, UInt32 buffer, IntPtr offset); internal static BindBufferOffsetNV glBindBufferOffsetNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void BindBufferBaseNV(OpenTK.Graphics.OpenGL.All target, UInt32 index, UInt32 buffer); + internal delegate void BindBufferBaseNV(OpenTK.Graphics.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.Graphics.OpenGL.All bufferMode); + internal unsafe delegate void TransformFeedbackVaryingsNV(UInt32 program, Int32 count, Int32* locations, OpenTK.Graphics.All bufferMode); internal unsafe static TransformFeedbackVaryingsNV glTransformFeedbackVaryingsNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void ActiveVaryingNV(UInt32 program, System.String name); @@ -4562,7 +4562,7 @@ namespace OpenTK.Graphics.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.Graphics.OpenGL.All* 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.Graphics.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); @@ -4577,16 +4577,16 @@ namespace OpenTK.Graphics.OpenGL internal delegate IntPtr GetUniformOffsetEXT(UInt32 program, Int32 location); internal static GetUniformOffsetEXT glGetUniformOffsetEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void TexParameterIivEXT(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32* @params); + internal unsafe delegate void TexParameterIivEXT(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32* @params); internal unsafe static TexParameterIivEXT glTexParameterIivEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void TexParameterIuivEXT(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, UInt32* @params); + internal unsafe delegate void TexParameterIuivEXT(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, UInt32* @params); internal unsafe static TexParameterIuivEXT glTexParameterIuivEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetTexParameterIivEXT(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [Out] Int32* @params); + internal unsafe delegate void GetTexParameterIivEXT(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32* @params); internal unsafe static GetTexParameterIivEXT glGetTexParameterIivEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetTexParameterIuivEXT(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [Out] UInt32* @params); + internal unsafe delegate void GetTexParameterIuivEXT(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] UInt32* @params); internal unsafe static GetTexParameterIuivEXT glGetTexParameterIuivEXT; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void ClearColorIiEXT(Int32 red, Int32 green, Int32 blue, Int32 alpha); diff --git a/Source/OpenTK/Graphics/OpenGL/GL/GLEnums.cs b/Source/OpenTK/Graphics/GL/GLEnums.cs similarity index 97% rename from Source/OpenTK/Graphics/OpenGL/GL/GLEnums.cs rename to Source/OpenTK/Graphics/GL/GLEnums.cs index 3bc4b5ae..666e2ea2 100644 --- a/Source/OpenTK/Graphics/OpenGL/GL/GLEnums.cs +++ b/Source/OpenTK/Graphics/GL/GLEnums.cs @@ -1,4 +1,4 @@ -namespace OpenTK.Graphics.OpenGL +namespace OpenTK.Graphics { #pragma warning disable 1591 diff --git a/Source/OpenTK/Graphics/OpenGL/GL/GLHelper.cs b/Source/OpenTK/Graphics/GL/GLHelper.cs similarity index 97% rename from Source/OpenTK/Graphics/OpenGL/GL/GLHelper.cs rename to Source/OpenTK/Graphics/GL/GLHelper.cs index 19b8d293..cd41e360 100644 --- a/Source/OpenTK/Graphics/OpenGL/GL/GLHelper.cs +++ b/Source/OpenTK/Graphics/GL/GLHelper.cs @@ -26,7 +26,7 @@ namespace OpenTK.Graphics.OpenGL.Enums internal static class Dummy { } } -namespace OpenTK.Graphics.OpenGL +namespace OpenTK.Graphics { /// /// OpenGL binding for .NET, implementing OpenGL 2.1, plus extensions. diff --git a/Source/OpenTK/Graphics/OpenGL/Glu/Glu.cs b/Source/OpenTK/Graphics/Glu/Glu.cs similarity index 90% rename from Source/OpenTK/Graphics/OpenGL/Glu/Glu.cs rename to Source/OpenTK/Graphics/Glu/Glu.cs index 87933ef2..95bf7ed0 100644 --- a/Source/OpenTK/Graphics/OpenGL/Glu/Glu.cs +++ b/Source/OpenTK/Graphics/Glu/Glu.cs @@ -1,4 +1,4 @@ -namespace OpenTK.Graphics.OpenGL +namespace OpenTK.Graphics { using System; using System.Runtime.InteropServices; @@ -276,43 +276,43 @@ namespace OpenTK.Graphics.OpenGL } public static - string ErrorString(OpenTK.Graphics.OpenGL.GluErrorCode error) + string ErrorString(OpenTK.Graphics.GluErrorCode error) { unsafe { - return System.Runtime.InteropServices.Marshal.PtrToStringAnsi(Delegates.gluErrorString((OpenTK.Graphics.OpenGL.GluErrorCode)error)); + return System.Runtime.InteropServices.Marshal.PtrToStringAnsi(Delegates.gluErrorString((OpenTK.Graphics.GluErrorCode)error)); } } public static - string GetString(OpenTK.Graphics.OpenGL.GluStringName name) + string GetString(OpenTK.Graphics.GluStringName name) { unsafe { - return System.Runtime.InteropServices.Marshal.PtrToStringAnsi(Delegates.gluGetString((OpenTK.Graphics.OpenGL.GluStringName)name)); + return System.Runtime.InteropServices.Marshal.PtrToStringAnsi(Delegates.gluGetString((OpenTK.Graphics.GluStringName)name)); } } public static - void GetNurbsProperty(IntPtr nurb, OpenTK.Graphics.OpenGL.NurbsProperty property, [Out] float[] data) + void GetNurbsProperty(IntPtr nurb, OpenTK.Graphics.NurbsProperty property, [Out] float[] data) { unsafe { fixed (float* data_ptr = data) { - Delegates.gluGetNurbsProperty((IntPtr)nurb, (OpenTK.Graphics.OpenGL.NurbsProperty)property, (float*)data_ptr); + Delegates.gluGetNurbsProperty((IntPtr)nurb, (OpenTK.Graphics.NurbsProperty)property, (float*)data_ptr); } } } public static - void GetNurbsProperty(IntPtr nurb, OpenTK.Graphics.OpenGL.NurbsProperty property, [Out] out float data) + void GetNurbsProperty(IntPtr nurb, OpenTK.Graphics.NurbsProperty property, [Out] out float data) { unsafe { fixed (float* data_ptr = &data) { - Delegates.gluGetNurbsProperty((IntPtr)nurb, (OpenTK.Graphics.OpenGL.NurbsProperty)property, (float*)data_ptr); + Delegates.gluGetNurbsProperty((IntPtr)nurb, (OpenTK.Graphics.NurbsProperty)property, (float*)data_ptr); data = *data_ptr; } } @@ -320,31 +320,31 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetNurbsProperty(IntPtr nurb, OpenTK.Graphics.OpenGL.NurbsProperty property, [Out] float* data) + unsafe void GetNurbsProperty(IntPtr nurb, OpenTK.Graphics.NurbsProperty property, [Out] float* data) { - Delegates.gluGetNurbsProperty((IntPtr)nurb, (OpenTK.Graphics.OpenGL.NurbsProperty)property, (float*)data); + Delegates.gluGetNurbsProperty((IntPtr)nurb, (OpenTK.Graphics.NurbsProperty)property, (float*)data); } public static - void GetTessProperty(IntPtr tess, OpenTK.Graphics.OpenGL.TessParameter which, [Out] double[] data) + void GetTessProperty(IntPtr tess, OpenTK.Graphics.TessParameter which, [Out] double[] data) { unsafe { fixed (double* data_ptr = data) { - Delegates.gluGetTessProperty((IntPtr)tess, (OpenTK.Graphics.OpenGL.TessParameter)which, (double*)data_ptr); + Delegates.gluGetTessProperty((IntPtr)tess, (OpenTK.Graphics.TessParameter)which, (double*)data_ptr); } } } public static - void GetTessProperty(IntPtr tess, OpenTK.Graphics.OpenGL.TessParameter which, [Out] out double data) + void GetTessProperty(IntPtr tess, OpenTK.Graphics.TessParameter which, [Out] out double data) { unsafe { fixed (double* data_ptr = &data) { - Delegates.gluGetTessProperty((IntPtr)tess, (OpenTK.Graphics.OpenGL.TessParameter)which, (double*)data_ptr); + Delegates.gluGetTessProperty((IntPtr)tess, (OpenTK.Graphics.TessParameter)which, (double*)data_ptr); data = *data_ptr; } } @@ -352,9 +352,9 @@ namespace OpenTK.Graphics.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetTessProperty(IntPtr tess, OpenTK.Graphics.OpenGL.TessParameter which, [Out] double* data) + unsafe void GetTessProperty(IntPtr tess, OpenTK.Graphics.TessParameter which, [Out] double* data) { - Delegates.gluGetTessProperty((IntPtr)tess, (OpenTK.Graphics.OpenGL.TessParameter)which, (double*)data); + Delegates.gluGetTessProperty((IntPtr)tess, (OpenTK.Graphics.TessParameter)which, (double*)data); } public static @@ -417,15 +417,15 @@ namespace OpenTK.Graphics.OpenGL } public static - void NextContour(IntPtr tess, OpenTK.Graphics.OpenGL.TessContour type) + void NextContour(IntPtr tess, OpenTK.Graphics.TessContour type) { - Delegates.gluNextContour((IntPtr)tess, (OpenTK.Graphics.OpenGL.TessContour)type); + Delegates.gluNextContour((IntPtr)tess, (OpenTK.Graphics.TessContour)type); } public static - void NurbsCallback(IntPtr nurb, OpenTK.Graphics.OpenGL.NurbsCallback which, Delegate CallBackFunc) + void NurbsCallback(IntPtr nurb, OpenTK.Graphics.NurbsCallback which, Delegate CallBackFunc) { - Delegates.gluNurbsCallback((IntPtr)nurb, (OpenTK.Graphics.OpenGL.NurbsCallback)which, (Delegate)CallBackFunc); + Delegates.gluNurbsCallback((IntPtr)nurb, (OpenTK.Graphics.NurbsCallback)which, (Delegate)CallBackFunc); } public static @@ -490,9 +490,9 @@ namespace OpenTK.Graphics.OpenGL } public static - void NurbsProperty(IntPtr nurb, OpenTK.Graphics.OpenGL.NurbsProperty property, float value) + void NurbsProperty(IntPtr nurb, OpenTK.Graphics.NurbsProperty property, float value) { - Delegates.gluNurbsProperty((IntPtr)nurb, (OpenTK.Graphics.OpenGL.NurbsProperty)property, (float)value); + Delegates.gluNurbsProperty((IntPtr)nurb, (OpenTK.Graphics.NurbsProperty)property, (float)value); } public static @@ -622,58 +622,58 @@ namespace OpenTK.Graphics.OpenGL } public static - void PwlCurve(IntPtr nurb, Int32 count, float[] data, Int32 stride, OpenTK.Graphics.OpenGL.NurbsTrim type) + void PwlCurve(IntPtr nurb, Int32 count, float[] data, Int32 stride, OpenTK.Graphics.NurbsTrim type) { unsafe { fixed (float* data_ptr = data) { - Delegates.gluPwlCurve((IntPtr)nurb, (Int32)count, (float*)data_ptr, (Int32)stride, (OpenTK.Graphics.OpenGL.NurbsTrim)type); + Delegates.gluPwlCurve((IntPtr)nurb, (Int32)count, (float*)data_ptr, (Int32)stride, (OpenTK.Graphics.NurbsTrim)type); } } } public static - void PwlCurve(IntPtr nurb, Int32 count, ref float data, Int32 stride, OpenTK.Graphics.OpenGL.NurbsTrim type) + void PwlCurve(IntPtr nurb, Int32 count, ref float data, Int32 stride, OpenTK.Graphics.NurbsTrim type) { unsafe { fixed (float* data_ptr = &data) { - Delegates.gluPwlCurve((IntPtr)nurb, (Int32)count, (float*)data_ptr, (Int32)stride, (OpenTK.Graphics.OpenGL.NurbsTrim)type); + Delegates.gluPwlCurve((IntPtr)nurb, (Int32)count, (float*)data_ptr, (Int32)stride, (OpenTK.Graphics.NurbsTrim)type); } } } [System.CLSCompliant(false)] public static - unsafe void PwlCurve(IntPtr nurb, Int32 count, float* data, Int32 stride, OpenTK.Graphics.OpenGL.NurbsTrim type) + unsafe void PwlCurve(IntPtr nurb, Int32 count, float* data, Int32 stride, OpenTK.Graphics.NurbsTrim type) { - Delegates.gluPwlCurve((IntPtr)nurb, (Int32)count, (float*)data, (Int32)stride, (OpenTK.Graphics.OpenGL.NurbsTrim)type); + Delegates.gluPwlCurve((IntPtr)nurb, (Int32)count, (float*)data, (Int32)stride, (OpenTK.Graphics.NurbsTrim)type); } public static - void QuadricCallback(IntPtr quad, OpenTK.Graphics.OpenGL.QuadricCallback which, Delegate CallBackFunc) + void QuadricCallback(IntPtr quad, OpenTK.Graphics.QuadricCallback which, Delegate CallBackFunc) { - Delegates.gluQuadricCallback((IntPtr)quad, (OpenTK.Graphics.OpenGL.QuadricCallback)which, (Delegate)CallBackFunc); + Delegates.gluQuadricCallback((IntPtr)quad, (OpenTK.Graphics.QuadricCallback)which, (Delegate)CallBackFunc); } public static - void QuadricDrawStyle(IntPtr quad, OpenTK.Graphics.OpenGL.QuadricDrawStyle draw) + void QuadricDrawStyle(IntPtr quad, OpenTK.Graphics.QuadricDrawStyle draw) { - Delegates.gluQuadricDrawStyle((IntPtr)quad, (OpenTK.Graphics.OpenGL.QuadricDrawStyle)draw); + Delegates.gluQuadricDrawStyle((IntPtr)quad, (OpenTK.Graphics.QuadricDrawStyle)draw); } public static - void QuadricNormal(IntPtr quad, OpenTK.Graphics.OpenGL.QuadricNormal normal) + void QuadricNormal(IntPtr quad, OpenTK.Graphics.QuadricNormal normal) { - Delegates.gluQuadricNormals((IntPtr)quad, (OpenTK.Graphics.OpenGL.QuadricNormal)normal); + Delegates.gluQuadricNormals((IntPtr)quad, (OpenTK.Graphics.QuadricNormal)normal); } public static - void QuadricOrientation(IntPtr quad, OpenTK.Graphics.OpenGL.QuadricOrientation orientation) + void QuadricOrientation(IntPtr quad, OpenTK.Graphics.QuadricOrientation orientation) { - Delegates.gluQuadricOrientation((IntPtr)quad, (OpenTK.Graphics.OpenGL.QuadricOrientation)orientation); + Delegates.gluQuadricOrientation((IntPtr)quad, (OpenTK.Graphics.QuadricOrientation)orientation); } public static @@ -749,9 +749,9 @@ namespace OpenTK.Graphics.OpenGL } public static - void TessCallback(IntPtr tess, OpenTK.Graphics.OpenGL.TessCallback which, Delegate CallBackFunc) + void TessCallback(IntPtr tess, OpenTK.Graphics.TessCallback which, Delegate CallBackFunc) { - Delegates.gluTessCallback((IntPtr)tess, (OpenTK.Graphics.OpenGL.TessCallback)which, (Delegate)CallBackFunc); + Delegates.gluTessCallback((IntPtr)tess, (OpenTK.Graphics.TessCallback)which, (Delegate)CallBackFunc); } public static @@ -773,9 +773,9 @@ namespace OpenTK.Graphics.OpenGL } public static - void TessProperty(IntPtr tess, OpenTK.Graphics.OpenGL.TessParameter which, double data) + void TessProperty(IntPtr tess, OpenTK.Graphics.TessParameter which, double data) { - Delegates.gluTessProperty((IntPtr)tess, (OpenTK.Graphics.OpenGL.TessParameter)which, (double)data); + Delegates.gluTessProperty((IntPtr)tess, (OpenTK.Graphics.TessParameter)which, (double)data); } public static diff --git a/Source/OpenTK/Graphics/OpenGL/Glu/GluCore.cs b/Source/OpenTK/Graphics/Glu/GluCore.cs similarity index 94% rename from Source/OpenTK/Graphics/OpenGL/Glu/GluCore.cs rename to Source/OpenTK/Graphics/Glu/GluCore.cs index 2f27f1e9..ad188ff6 100644 --- a/Source/OpenTK/Graphics/OpenGL/Glu/GluCore.cs +++ b/Source/OpenTK/Graphics/Glu/GluCore.cs @@ -1,4 +1,4 @@ -namespace OpenTK.Graphics.OpenGL +namespace OpenTK.Graphics { using System; using System.Runtime.InteropServices; @@ -73,16 +73,16 @@ namespace OpenTK.Graphics.OpenGL internal extern static void EndTrim(IntPtr nurb); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(Glu.Library, EntryPoint = "gluErrorString", ExactSpelling = true)] - internal extern static IntPtr ErrorString(OpenTK.Graphics.OpenGL.GluErrorCode error); + internal extern static IntPtr ErrorString(OpenTK.Graphics.GluErrorCode error); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(Glu.Library, EntryPoint = "gluGetString", ExactSpelling = true)] - internal extern static IntPtr GetString(OpenTK.Graphics.OpenGL.GluStringName name); + internal extern static IntPtr GetString(OpenTK.Graphics.GluStringName name); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(Glu.Library, EntryPoint = "gluGetNurbsProperty", ExactSpelling = true)] - internal extern static unsafe void GetNurbsProperty(IntPtr nurb, OpenTK.Graphics.OpenGL.NurbsProperty property, [Out] float* data); + internal extern static unsafe void GetNurbsProperty(IntPtr nurb, OpenTK.Graphics.NurbsProperty property, [Out] float* data); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(Glu.Library, EntryPoint = "gluGetTessProperty", ExactSpelling = true)] - internal extern static unsafe void GetTessProperty(IntPtr tess, OpenTK.Graphics.OpenGL.TessParameter which, [Out] double* data); + internal extern static unsafe void GetTessProperty(IntPtr tess, OpenTK.Graphics.TessParameter which, [Out] double* data); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(Glu.Library, EntryPoint = "gluLoadSamplingMatrices", ExactSpelling = true)] internal extern static unsafe void LoadSamplingMatrices(IntPtr nurb, float* model, float* perspective, Int32* view); @@ -100,10 +100,10 @@ namespace OpenTK.Graphics.OpenGL internal extern static IntPtr NewTess(); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(Glu.Library, EntryPoint = "gluNextContour", ExactSpelling = true)] - internal extern static void NextContour(IntPtr tess, OpenTK.Graphics.OpenGL.TessContour type); + internal extern static void NextContour(IntPtr tess, OpenTK.Graphics.TessContour type); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(Glu.Library, EntryPoint = "gluNurbsCallback", ExactSpelling = true)] - internal extern static void NurbsCallback(IntPtr nurb, OpenTK.Graphics.OpenGL.NurbsCallback which, Delegate CallBackFunc); + internal extern static void NurbsCallback(IntPtr nurb, OpenTK.Graphics.NurbsCallback which, Delegate CallBackFunc); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(Glu.Library, EntryPoint = "gluNurbsCallbackData", ExactSpelling = true)] internal extern static void NurbsCallbackData(IntPtr nurb, IntPtr userData); @@ -112,7 +112,7 @@ namespace OpenTK.Graphics.OpenGL internal extern static unsafe void NurbsCurve(IntPtr nurb, Int32 knotCount, [Out] float* knots, Int32 stride, [Out] float* control, Int32 order, MapTarget type); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(Glu.Library, EntryPoint = "gluNurbsProperty", ExactSpelling = true)] - internal extern static void NurbsProperty(IntPtr nurb, OpenTK.Graphics.OpenGL.NurbsProperty property, float value); + internal extern static void NurbsProperty(IntPtr nurb, OpenTK.Graphics.NurbsProperty property, float value); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(Glu.Library, EntryPoint = "gluNurbsSurface", ExactSpelling = true)] internal extern static unsafe void NurbsSurface(IntPtr nurb, Int32 sKnotCount, float* sKnots, Int32 tKnotCount, float* tKnots, Int32 sStride, Int32 tStride, float* control, Int32 sOrder, Int32 tOrder, MapTarget type); @@ -133,19 +133,19 @@ namespace OpenTK.Graphics.OpenGL internal extern static unsafe Int32 Project(double objX, double objY, double objZ, double* model, double* proj, Int32* view, double* winX, double* winY, double* winZ); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(Glu.Library, EntryPoint = "gluPwlCurve", ExactSpelling = true)] - internal extern static unsafe void PwlCurve(IntPtr nurb, Int32 count, float* data, Int32 stride, OpenTK.Graphics.OpenGL.NurbsTrim type); + internal extern static unsafe void PwlCurve(IntPtr nurb, Int32 count, float* data, Int32 stride, OpenTK.Graphics.NurbsTrim type); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(Glu.Library, EntryPoint = "gluQuadricCallback", ExactSpelling = true)] - internal extern static void QuadricCallback(IntPtr quad, OpenTK.Graphics.OpenGL.QuadricCallback which, Delegate CallBackFunc); + internal extern static void QuadricCallback(IntPtr quad, OpenTK.Graphics.QuadricCallback which, Delegate CallBackFunc); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(Glu.Library, EntryPoint = "gluQuadricDrawStyle", ExactSpelling = true)] - internal extern static void QuadricDrawStyle(IntPtr quad, OpenTK.Graphics.OpenGL.QuadricDrawStyle draw); + internal extern static void QuadricDrawStyle(IntPtr quad, OpenTK.Graphics.QuadricDrawStyle draw); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(Glu.Library, EntryPoint = "gluQuadricNormals", ExactSpelling = true)] - internal extern static void QuadricNormals(IntPtr quad, OpenTK.Graphics.OpenGL.QuadricNormal normal); + internal extern static void QuadricNormals(IntPtr quad, OpenTK.Graphics.QuadricNormal normal); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(Glu.Library, EntryPoint = "gluQuadricOrientation", ExactSpelling = true)] - internal extern static void QuadricOrientation(IntPtr quad, OpenTK.Graphics.OpenGL.QuadricOrientation orientation); + internal extern static void QuadricOrientation(IntPtr quad, OpenTK.Graphics.QuadricOrientation orientation); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(Glu.Library, EntryPoint = "gluQuadricTexture", ExactSpelling = true)] internal extern static void QuadricTexture(IntPtr quad, bool texture); @@ -163,7 +163,7 @@ namespace OpenTK.Graphics.OpenGL internal extern static void TessBeginPolygon(IntPtr tess, IntPtr data); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(Glu.Library, EntryPoint = "gluTessCallback", ExactSpelling = true)] - internal extern static void TessCallback(IntPtr tess, OpenTK.Graphics.OpenGL.TessCallback which, Delegate CallBackFunc); + internal extern static void TessCallback(IntPtr tess, OpenTK.Graphics.TessCallback which, Delegate CallBackFunc); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(Glu.Library, EntryPoint = "gluTessEndContour", ExactSpelling = true)] internal extern static void TessEndContour(IntPtr tess); @@ -175,7 +175,7 @@ namespace OpenTK.Graphics.OpenGL internal extern static void TessNormal(IntPtr tess, double valueX, double valueY, double valueZ); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(Glu.Library, EntryPoint = "gluTessProperty", ExactSpelling = true)] - internal extern static void TessProperty(IntPtr tess, OpenTK.Graphics.OpenGL.TessParameter which, double data); + internal extern static void TessProperty(IntPtr tess, OpenTK.Graphics.TessParameter which, double data); [System.Security.SuppressUnmanagedCodeSecurity()] [System.Runtime.InteropServices.DllImport(Glu.Library, EntryPoint = "gluTessVertex", ExactSpelling = true)] internal extern static unsafe void TessVertex(IntPtr tess, double* location, IntPtr data); diff --git a/Source/OpenTK/Graphics/OpenGL/Glu/GluDelegates.cs b/Source/OpenTK/Graphics/Glu/GluDelegates.cs similarity index 92% rename from Source/OpenTK/Graphics/OpenGL/Glu/GluDelegates.cs rename to Source/OpenTK/Graphics/Glu/GluDelegates.cs index b0db2d8f..fc764502 100644 --- a/Source/OpenTK/Graphics/OpenGL/Glu/GluDelegates.cs +++ b/Source/OpenTK/Graphics/Glu/GluDelegates.cs @@ -1,4 +1,4 @@ -namespace OpenTK.Graphics.OpenGL +namespace OpenTK.Graphics { using System; using System.Runtime.InteropServices; @@ -71,16 +71,16 @@ namespace OpenTK.Graphics.OpenGL internal delegate void EndTrim(IntPtr nurb); internal static EndTrim gluEndTrim; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate IntPtr ErrorString(OpenTK.Graphics.OpenGL.GluErrorCode error); + internal delegate IntPtr ErrorString(OpenTK.Graphics.GluErrorCode error); internal static ErrorString gluErrorString; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate IntPtr GetString(OpenTK.Graphics.OpenGL.GluStringName name); + internal delegate IntPtr GetString(OpenTK.Graphics.GluStringName name); internal static GetString gluGetString; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetNurbsProperty(IntPtr nurb, OpenTK.Graphics.OpenGL.NurbsProperty property, [Out] float* data); + internal unsafe delegate void GetNurbsProperty(IntPtr nurb, OpenTK.Graphics.NurbsProperty property, [Out] float* data); internal unsafe static GetNurbsProperty gluGetNurbsProperty; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void GetTessProperty(IntPtr tess, OpenTK.Graphics.OpenGL.TessParameter which, [Out] double* data); + internal unsafe delegate void GetTessProperty(IntPtr tess, OpenTK.Graphics.TessParameter which, [Out] double* data); internal unsafe static GetTessProperty gluGetTessProperty; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void LoadSamplingMatrices(IntPtr nurb, float* model, float* perspective, Int32* view); @@ -98,10 +98,10 @@ namespace OpenTK.Graphics.OpenGL internal delegate IntPtr NewTess(); internal static NewTess gluNewTess; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void NextContour(IntPtr tess, OpenTK.Graphics.OpenGL.TessContour type); + internal delegate void NextContour(IntPtr tess, OpenTK.Graphics.TessContour type); internal static NextContour gluNextContour; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void NurbsCallback(IntPtr nurb, OpenTK.Graphics.OpenGL.NurbsCallback which, Delegate CallBackFunc); + internal delegate void NurbsCallback(IntPtr nurb, OpenTK.Graphics.NurbsCallback which, Delegate CallBackFunc); internal static NurbsCallback gluNurbsCallback; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void NurbsCallbackData(IntPtr nurb, IntPtr userData); @@ -113,7 +113,7 @@ namespace OpenTK.Graphics.OpenGL internal unsafe delegate void NurbsCurve(IntPtr nurb, Int32 knotCount, [Out] float* knots, Int32 stride, [Out] float* control, Int32 order, MapTarget type); internal unsafe static NurbsCurve gluNurbsCurve; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void NurbsProperty(IntPtr nurb, OpenTK.Graphics.OpenGL.NurbsProperty property, float value); + internal delegate void NurbsProperty(IntPtr nurb, OpenTK.Graphics.NurbsProperty property, float value); internal static NurbsProperty gluNurbsProperty; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void NurbsSurface(IntPtr nurb, Int32 sKnotCount, float* sKnots, Int32 tKnotCount, float* tKnots, Int32 sStride, Int32 tStride, float* control, Int32 sOrder, Int32 tOrder, MapTarget type); @@ -134,19 +134,19 @@ namespace OpenTK.Graphics.OpenGL internal unsafe delegate Int32 Project(double objX, double objY, double objZ, double* model, double* proj, Int32* view, double* winX, double* winY, double* winZ); internal unsafe static Project gluProject; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void PwlCurve(IntPtr nurb, Int32 count, float* data, Int32 stride, OpenTK.Graphics.OpenGL.NurbsTrim type); + internal unsafe delegate void PwlCurve(IntPtr nurb, Int32 count, float* data, Int32 stride, OpenTK.Graphics.NurbsTrim type); internal unsafe static PwlCurve gluPwlCurve; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void QuadricCallback(IntPtr quad, OpenTK.Graphics.OpenGL.QuadricCallback which, Delegate CallBackFunc); + internal delegate void QuadricCallback(IntPtr quad, OpenTK.Graphics.QuadricCallback which, Delegate CallBackFunc); internal static QuadricCallback gluQuadricCallback; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void QuadricDrawStyle(IntPtr quad, OpenTK.Graphics.OpenGL.QuadricDrawStyle draw); + internal delegate void QuadricDrawStyle(IntPtr quad, OpenTK.Graphics.QuadricDrawStyle draw); internal static QuadricDrawStyle gluQuadricDrawStyle; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void QuadricNormals(IntPtr quad, OpenTK.Graphics.OpenGL.QuadricNormal normal); + internal delegate void QuadricNormals(IntPtr quad, OpenTK.Graphics.QuadricNormal normal); internal static QuadricNormals gluQuadricNormals; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void QuadricOrientation(IntPtr quad, OpenTK.Graphics.OpenGL.QuadricOrientation orientation); + internal delegate void QuadricOrientation(IntPtr quad, OpenTK.Graphics.QuadricOrientation orientation); internal static QuadricOrientation gluQuadricOrientation; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void QuadricTexture(IntPtr quad, bool texture); @@ -164,7 +164,7 @@ namespace OpenTK.Graphics.OpenGL internal delegate void TessBeginPolygon(IntPtr tess, IntPtr data); internal static TessBeginPolygon gluTessBeginPolygon; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void TessCallback(IntPtr tess, OpenTK.Graphics.OpenGL.TessCallback which, Delegate CallBackFunc); + internal delegate void TessCallback(IntPtr tess, OpenTK.Graphics.TessCallback which, Delegate CallBackFunc); internal static TessCallback gluTessCallback; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void TessEndContour(IntPtr tess); @@ -176,7 +176,7 @@ namespace OpenTK.Graphics.OpenGL internal delegate void TessNormal(IntPtr tess, double valueX, double valueY, double valueZ); internal static TessNormal gluTessNormal; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void TessProperty(IntPtr tess, OpenTK.Graphics.OpenGL.TessParameter which, double data); + internal delegate void TessProperty(IntPtr tess, OpenTK.Graphics.TessParameter which, double data); internal static TessProperty gluTessProperty; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void TessVertex(IntPtr tess, double* location, IntPtr data); diff --git a/Source/OpenTK/Graphics/OpenGL/Glu/GluEnums.cs b/Source/OpenTK/Graphics/Glu/GluEnums.cs similarity index 96% rename from Source/OpenTK/Graphics/OpenGL/Glu/GluEnums.cs rename to Source/OpenTK/Graphics/Glu/GluEnums.cs index be04876d..aa824906 100644 --- a/Source/OpenTK/Graphics/OpenGL/Glu/GluEnums.cs +++ b/Source/OpenTK/Graphics/Glu/GluEnums.cs @@ -1,4 +1,4 @@ -namespace OpenTK.Graphics.OpenGL +namespace OpenTK.Graphics { #pragma warning disable 1591 diff --git a/Source/OpenTK/Graphics/OpenGL/Glu/GluHelper.cs b/Source/OpenTK/Graphics/Glu/GluHelper.cs similarity index 97% rename from Source/OpenTK/Graphics/OpenGL/Glu/GluHelper.cs rename to Source/OpenTK/Graphics/Glu/GluHelper.cs index 9f96a40d..53e6b17e 100644 --- a/Source/OpenTK/Graphics/OpenGL/Glu/GluHelper.cs +++ b/Source/OpenTK/Graphics/Glu/GluHelper.cs @@ -15,7 +15,7 @@ using System.Reflection.Emit; using OpenTK.Platform; using OpenTK.Math; -namespace OpenTK.Graphics.OpenGL +namespace OpenTK.Graphics { public static partial class Glu { diff --git a/Source/Utilities/Fonts/TextureFont.cs b/Source/Utilities/Fonts/TextureFont.cs index 93619bab..a6939b85 100644 --- a/Source/Utilities/Fonts/TextureFont.cs +++ b/Source/Utilities/Fonts/TextureFont.cs @@ -14,14 +14,13 @@ using System.Runtime.InteropServices; using System.Diagnostics; using OpenTK.Math; -using OpenTK.Graphics.OpenGL; -using OpenTK.Graphics.OpenGL.Enums; +using OpenTK.Graphics; using OpenTK.Platform; namespace OpenTK.Graphics { using Graphics = System.Drawing.Graphics; - using PixelFormat = OpenTK.Graphics.OpenGL.PixelFormat; + using PixelFormat = OpenTK.Graphics.PixelFormat; public class TextureFont : IFont { @@ -97,7 +96,7 @@ namespace OpenTK.Graphics GL.TexParameter(TextureTarget.Texture2D, TextureParameterName.TextureMagFilter, (int)All.Linear); GL.TexImage2D(TextureTarget.Texture2D, 0, PixelInternalFormat.Alpha, texture_width, texture_height, 0, - PixelFormat.Rgba, PixelType.UnsignedByte, IntPtr.Zero); + OpenTK.Graphics.PixelFormat.Rgba, PixelType.UnsignedByte, IntPtr.Zero); } #endregion @@ -169,7 +168,7 @@ namespace OpenTK.Graphics //BitmapData bitmap_data = bitmap.LockBits(new Rectangle(0, 0, rect.Width, rect.Height), ImageLockMode.ReadOnly, // System.Drawing.Imaging.PixelFormat.Format32bppArgb); //GL.TexSubImage2D(TextureTarget.Texture2D, 0, rect.Left, rect.Top, rect.Width, rect.Height, - // OpenTK.Graphics.OpenGL.Enums.PixelFormat.Rgba, PixelType.UnsignedByte, bitmap_data.Scan0); + // OpenTK.Graphics.Enums.PixelFormat.Rgba, PixelType.UnsignedByte, bitmap_data.Scan0); //bitmap.UnlockBits(bitmap_data); BitmapData bitmap_data = bmp.LockBits(new Rectangle(0, 0, bmp.Width, bmp.Height), ImageLockMode.ReadOnly, @@ -191,7 +190,7 @@ namespace OpenTK.Graphics fixed (int* data_ptr = data) GL.TexSubImage2D(TextureTarget.Texture2D, 0, rect.Left, rect.Top, rect.Width, rect.Height, - PixelFormat.Rgba, PixelType.UnsignedByte, (IntPtr)data_ptr); + OpenTK.Graphics.PixelFormat.Rgba, PixelType.UnsignedByte, (IntPtr)data_ptr); } bmp.UnlockBits(bitmap_data);