diff --git a/Documentation/Changelog.txt b/Documentation/Changelog.txt index bb7b7d16..0e937fa2 100644 --- a/Documentation/Changelog.txt +++ b/Documentation/Changelog.txt @@ -7,6 +7,8 @@ + Enabled documentation generation in debug builds. + Compute + Bitfields are now mapped to 'long' instead of 'int'. + + Math + + Namespace OpenTK.Math no longer exists. Math functions are now placed directly inside the OpenTK namespace. ------------------------- OpenTK 0.9.8-1 -> 0.9.9 @@ -229,7 +231,7 @@ OpenTK 0.9.1 -> 0.9.2 + Improved GLControl implementations. + Graphics + Added Color4 struct that can hold floating-point ARGB colors. - + Added several new overloads to the GL class. Most deal with OpenTK.Math and System.Drawing.Color interoperation. + + Added several new overloads to the GL class. Most deal with OpenTK and System.Drawing.Color interoperation. + Added support for the Half type. + Math + Added half and double precision structures. @@ -369,7 +371,7 @@ OpenTK 0.3.12 -> 0.3.13 + Improved GameWindow.Exit() handling. + Removed obsolete GameWindow.Create and GameWindow.Destroy events. + Math - + Andy Gill implemented Vector2/3/4, Matrix4 and Quaternion methods for OpenTK.Math. + + Andy Gill implemented Vector2/3/4, Matrix4 and Quaternion methods for OpenTK. + Added Box2 struct which defines a rectangular region. Used in OpenTK.Fonts (see below). - Removed (float*) and (IntPtr) cast operators from Vector234. Added this[] operator. + Fonts diff --git a/Documentation/Release.txt b/Documentation/Release.txt index e61bfbda..f152b610 100644 --- a/Documentation/Release.txt +++ b/Documentation/Release.txt @@ -6,6 +6,7 @@ The Open Toolkit 0.9.9-1 Beta This is the first preview release of what will become OpenTK 1.0. Major changes: * OpenCL bugfixes. +* Math API improvements. Please note that this is a work-in-progress snapshot release and should only be used for testing purposes. @@ -42,7 +43,12 @@ Please note that binary compatibility is not preserved between beta releases. [0.9.9-1] -1. OpenCL bitfields are now mapped to 'long' instead of 'int'. Casts from [Flags] enums to 'int' may now fail. Please avoid such casts or use 'long' instead. +1. The OpenTK.Math namespace no longer exists. Please replace all references by 'OpenTK'. This can be easily achieved with the following Search & Replace operations: + +'using OpenTK.Math;' -> 'using OpenTK;' +'OpenTK.Math.' -> 'OpenTK.' + +2. OpenCL bitfields are now mapped to 'long' instead of 'int'. Casts from [Flags] enums to 'int' may now fail. Please avoid such casts or use 'long' instead. [0.9.9] @@ -60,7 +66,7 @@ Please mark all relevant overrides as 'protected'. 3. Glu is now marked as deprecated. -Please use OpenTK.Math instead. +Please use OpenTK instead. 4. OpenTK.Input.[Keyboard|Mouse|Joystick]Device are marked as obsolete. diff --git a/Documentation/Todo.txt b/Documentation/Todo.txt index f71572a5..f088bc7c 100644 --- a/Documentation/Todo.txt +++ b/Documentation/Todo.txt @@ -24,8 +24,8 @@ + Implement GameWindow-independent input drivers. + Implement support for multiple mice and keyboards. -[OpenTK.Math] -+ Move to the OpenTK namespace instead of OpenTK.Math. +[OpenTK] ++ Move to the OpenTK namespace instead of OpenTK. + Improve performance. + Improve API. diff --git a/Source/Bind/Specifications/csharp.tm b/Source/Bind/Specifications/csharp.tm index 33642a9f..500a2d7c 100644 --- a/Source/Bind/Specifications/csharp.tm +++ b/Source/Bind/Specifications/csharp.tm @@ -26,8 +26,8 @@ PixelInternalFormat, PixelInternalFormat GLsizeiptrARB, IntPtr GLintptrARB, IntPtr GLhandleARB, UInt32 -GLhalfARB, OpenTK.Math.Half -GLhalfNV, OpenTK.Math.Half +GLhalfARB, OpenTK.Half +GLhalfNV, OpenTK.Half GLcharARB, Char # 64 bit types (introduced in 2.1) diff --git a/Source/Examples/OpenAL/1.1/PlayStatic.cs b/Source/Examples/OpenAL/1.1/PlayStatic.cs index eeff648a..785e33fd 100644 --- a/Source/Examples/OpenAL/1.1/PlayStatic.cs +++ b/Source/Examples/OpenAL/1.1/PlayStatic.cs @@ -25,7 +25,6 @@ using System; using System.Threading; -using OpenTK.Math; using OpenTK.Audio; diff --git a/Source/Examples/OpenGL/1.1/ImmediateMode.cs b/Source/Examples/OpenGL/1.1/ImmediateMode.cs index 0215c90b..f138f302 100644 --- a/Source/Examples/OpenGL/1.1/ImmediateMode.cs +++ b/Source/Examples/OpenGL/1.1/ImmediateMode.cs @@ -72,7 +72,7 @@ namespace Examples.Tutorial GL.MatrixMode(MatrixMode.Projection); if (Keyboard[OpenTK.Input.Key.Space]) { - OpenTK.Math.Matrix4 perspective = OpenTK.Math.Matrix4.Perspective(45, (float)aspect_ratio, 1, 64); + OpenTK.Matrix4 perspective = OpenTK.Matrix4.Perspective(45, (float)aspect_ratio, 1, 64); GL.LoadMatrix(ref perspective); } else diff --git a/Source/Examples/OpenGL/1.1/VertexLighting.cs b/Source/Examples/OpenGL/1.1/VertexLighting.cs index a3a83ada..01fed128 100644 --- a/Source/Examples/OpenGL/1.1/VertexLighting.cs +++ b/Source/Examples/OpenGL/1.1/VertexLighting.cs @@ -12,7 +12,6 @@ using System.Drawing; using OpenTK; using OpenTK.Graphics; using Examples.Shapes; -using OpenTK.Math; namespace Examples.Tutorial { diff --git a/Source/Examples/OpenGL/1.5/VertexBufferObject.cs b/Source/Examples/OpenGL/1.5/VertexBufferObject.cs index e07a4f16..dcd9d7fa 100644 --- a/Source/Examples/OpenGL/1.5/VertexBufferObject.cs +++ b/Source/Examples/OpenGL/1.5/VertexBufferObject.cs @@ -15,7 +15,6 @@ using System.Threading; using OpenTK; using OpenTK.Graphics; using OpenTK.Platform; -using OpenTK.Math; #endregion diff --git a/Source/Examples/OpenGL/EXT/FramebufferObject.cs b/Source/Examples/OpenGL/EXT/FramebufferObject.cs index 5a15f4a0..de606b02 100644 --- a/Source/Examples/OpenGL/EXT/FramebufferObject.cs +++ b/Source/Examples/OpenGL/EXT/FramebufferObject.cs @@ -12,7 +12,6 @@ using System.Drawing; using OpenTK; using OpenTK.Input; -using OpenTK.Math; using OpenTK.Graphics; using OpenTK.Graphics.OpenGL; diff --git a/Source/Examples/OpenTK/Test/MathSerialization.cs b/Source/Examples/OpenTK/Test/MathSerialization.cs index e4c7a79f..08994eda 100644 --- a/Source/Examples/OpenTK/Test/MathSerialization.cs +++ b/Source/Examples/OpenTK/Test/MathSerialization.cs @@ -16,7 +16,6 @@ using System.Xml; using System.Xml.Serialization; -using OpenTK.Math; namespace Examples.Tests { diff --git a/Source/Examples/OpenTK/Test/MathSpeed.cs b/Source/Examples/OpenTK/Test/MathSpeed.cs index 0573144e..503ee135 100644 --- a/Source/Examples/OpenTK/Test/MathSpeed.cs +++ b/Source/Examples/OpenTK/Test/MathSpeed.cs @@ -8,7 +8,6 @@ using System; using System.Collections.Generic; using System.Text; using System.Diagnostics; -using OpenTK.Math; namespace Examples.Tests { diff --git a/Source/Examples/Properties/Resources.Designer.cs b/Source/Examples/Properties/Resources.Designer.cs index 36a10998..77245653 100644 --- a/Source/Examples/Properties/Resources.Designer.cs +++ b/Source/Examples/Properties/Resources.Designer.cs @@ -249,7 +249,7 @@ namespace Examples.Properties { /// ///using OpenTK; ///using OpenTK.Input; - ///using OpenTK.Math; + // ///using OpenTK.Graphics; ///using OpenTK.Graphics.OpenGL; /// @@ -791,7 +791,7 @@ namespace Examples.Properties { ///using OpenTK; ///using OpenTK.Graphics; ///using OpenTK.Platform; - ///using OpenTK.Math; + /// /// ///#endregion /// @@ -820,7 +820,7 @@ namespace Examples.Properties { ///using OpenTK; ///using OpenTK.Graphics; ///using Examples.Shapes; - ///using OpenTK.Math; + /// /// ///namespace Examples.Tutorial ///{ diff --git a/Source/Examples/Shapes/Cube.cs b/Source/Examples/Shapes/Cube.cs index 3b1906c0..a77f888f 100644 --- a/Source/Examples/Shapes/Cube.cs +++ b/Source/Examples/Shapes/Cube.cs @@ -9,9 +9,10 @@ using System.Collections.Generic; using System.Text; using System.Drawing; -using OpenTK.Math; using System.Runtime.InteropServices; +using OpenTK; + namespace Examples.Shapes { public class Cube : Shape diff --git a/Source/Examples/Shapes/IsoSphere.cs b/Source/Examples/Shapes/IsoSphere.cs index a574d05c..8372af88 100644 --- a/Source/Examples/Shapes/IsoSphere.cs +++ b/Source/Examples/Shapes/IsoSphere.cs @@ -8,7 +8,7 @@ using System; using System.Collections.Generic; using System.Text; -using OpenTK.Math; +using OpenTK; namespace Examples.Shapes { diff --git a/Source/Examples/Shapes/Plane.cs b/Source/Examples/Shapes/Plane.cs index cc2415c4..633bcb0e 100644 --- a/Source/Examples/Shapes/Plane.cs +++ b/Source/Examples/Shapes/Plane.cs @@ -7,7 +7,8 @@ using System; using System.Collections.Generic; using System.Text; -using OpenTK.Math; + +using OpenTK; namespace Examples.Shapes { diff --git a/Source/Examples/Shapes/Shape.cs b/Source/Examples/Shapes/Shape.cs index 01254ea3..faa7d2b7 100644 --- a/Source/Examples/Shapes/Shape.cs +++ b/Source/Examples/Shapes/Shape.cs @@ -8,10 +8,11 @@ using System; using System.Collections.Generic; using System.Text; -using OpenTK.Math; using System.Runtime.InteropServices; using System.Drawing; +using OpenTK; + namespace Examples.Shapes { public abstract class Shape diff --git a/Source/OpenTK/Audio/OpenAL/AL/AL.cs b/Source/OpenTK/Audio/OpenAL/AL/AL.cs index 7cdea668..758c16b7 100644 --- a/Source/OpenTK/Audio/OpenAL/AL/AL.cs +++ b/Source/OpenTK/Audio/OpenAL/AL/AL.cs @@ -11,7 +11,6 @@ using System; using System.Runtime.InteropServices; using System.Security; -using OpenTK.Math; /* Type Mapping // 8-bit boolean diff --git a/Source/OpenTK/Audio/OpenAL/AL/EffectsExtension.cs b/Source/OpenTK/Audio/OpenAL/AL/EffectsExtension.cs index a8bd2424..3d3dd701 100644 --- a/Source/OpenTK/Audio/OpenAL/AL/EffectsExtension.cs +++ b/Source/OpenTK/Audio/OpenAL/AL/EffectsExtension.cs @@ -11,7 +11,6 @@ using System; using System.Diagnostics; using System.Runtime.InteropServices; -using OpenTK.Math; namespace OpenTK.Audio { diff --git a/Source/OpenTK/Audio/OpenAL/AL/EffectsExtensionPresets.cs b/Source/OpenTK/Audio/OpenAL/AL/EffectsExtensionPresets.cs index 45df4d6b..71b08db5 100644 --- a/Source/OpenTK/Audio/OpenAL/AL/EffectsExtensionPresets.cs +++ b/Source/OpenTK/Audio/OpenAL/AL/EffectsExtensionPresets.cs @@ -9,7 +9,6 @@ using System; -using OpenTK.Math; namespace OpenTK.Audio { diff --git a/Source/OpenTK/Audio/SoundData.cs b/Source/OpenTK/Audio/SoundData.cs index a83bd0e2..1ccadd29 100644 --- a/Source/OpenTK/Audio/SoundData.cs +++ b/Source/OpenTK/Audio/SoundData.cs @@ -37,7 +37,7 @@ namespace OpenTK.Audio this.SoundFormat = format; - buffer = new byte[OpenTK.Math.Functions.NextPowerOfTwo(data.Length)]; + buffer = new byte[OpenTK.Functions.NextPowerOfTwo(data.Length)]; Array.Copy(data, buffer, data.Length); //buffer = (byte[])data.Clone(); } diff --git a/Source/OpenTK/Graphics/GL/GL.cs b/Source/OpenTK/Graphics/GL/GL.cs index e4e8c846..1606a3c9 100644 --- a/Source/OpenTK/Graphics/GL/GL.cs +++ b/Source/OpenTK/Graphics/GL/GL.cs @@ -119706,13 +119706,13 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glColor3hNV")] public static - void Color3h(OpenTK.Math.Half red, OpenTK.Math.Half green, OpenTK.Math.Half blue) + void Color3h(OpenTK.Half red, OpenTK.Half green, OpenTK.Half blue) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor3hNV((OpenTK.Math.Half)red, (OpenTK.Math.Half)green, (OpenTK.Math.Half)blue); + Delegates.glColor3hNV((OpenTK.Half)red, (OpenTK.Half)green, (OpenTK.Half)blue); #if DEBUG } #endif @@ -119720,7 +119720,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glColor3hvNV")] public static - void Color3h(ref OpenTK.Math.Half v) + void Color3h(ref OpenTK.Half v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -119728,9 +119728,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = &v) + fixed (OpenTK.Half* v_ptr = &v) { - Delegates.glColor3hvNV((OpenTK.Math.Half*)v_ptr); + Delegates.glColor3hvNV((OpenTK.Half*)v_ptr); } } #if DEBUG @@ -119741,13 +119741,13 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glColor3hvNV")] public static - unsafe void Color3h(OpenTK.Math.Half* v) + unsafe void Color3h(OpenTK.Half* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor3hvNV((OpenTK.Math.Half*)v); + Delegates.glColor3hvNV((OpenTK.Half*)v); #if DEBUG } #endif @@ -119755,7 +119755,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glColor3hvNV")] public static - void Color3h(OpenTK.Math.Half[] v) + void Color3h(OpenTK.Half[] v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -119763,9 +119763,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = v) + fixed (OpenTK.Half* v_ptr = v) { - Delegates.glColor3hvNV((OpenTK.Math.Half*)v_ptr); + Delegates.glColor3hvNV((OpenTK.Half*)v_ptr); } } #if DEBUG @@ -119775,13 +119775,13 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glColor4hNV")] public static - void Color4h(OpenTK.Math.Half red, OpenTK.Math.Half green, OpenTK.Math.Half blue, OpenTK.Math.Half alpha) + void Color4h(OpenTK.Half red, OpenTK.Half green, OpenTK.Half blue, OpenTK.Half alpha) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor4hNV((OpenTK.Math.Half)red, (OpenTK.Math.Half)green, (OpenTK.Math.Half)blue, (OpenTK.Math.Half)alpha); + Delegates.glColor4hNV((OpenTK.Half)red, (OpenTK.Half)green, (OpenTK.Half)blue, (OpenTK.Half)alpha); #if DEBUG } #endif @@ -119789,7 +119789,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glColor4hvNV")] public static - void Color4h(OpenTK.Math.Half[] v) + void Color4h(OpenTK.Half[] v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -119797,9 +119797,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = v) + fixed (OpenTK.Half* v_ptr = v) { - Delegates.glColor4hvNV((OpenTK.Math.Half*)v_ptr); + Delegates.glColor4hvNV((OpenTK.Half*)v_ptr); } } #if DEBUG @@ -119809,7 +119809,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glColor4hvNV")] public static - void Color4h(ref OpenTK.Math.Half v) + void Color4h(ref OpenTK.Half v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -119817,9 +119817,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = &v) + fixed (OpenTK.Half* v_ptr = &v) { - Delegates.glColor4hvNV((OpenTK.Math.Half*)v_ptr); + Delegates.glColor4hvNV((OpenTK.Half*)v_ptr); } } #if DEBUG @@ -119830,13 +119830,13 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glColor4hvNV")] public static - unsafe void Color4h(OpenTK.Math.Half* v) + unsafe void Color4h(OpenTK.Half* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor4hvNV((OpenTK.Math.Half*)v); + Delegates.glColor4hvNV((OpenTK.Half*)v); #if DEBUG } #endif @@ -120837,13 +120837,13 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glFogCoordhNV")] public static - void FogCoordh(OpenTK.Math.Half fog) + void FogCoordh(OpenTK.Half fog) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFogCoordhNV((OpenTK.Math.Half)fog); + Delegates.glFogCoordhNV((OpenTK.Half)fog); #if DEBUG } #endif @@ -120852,13 +120852,13 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glFogCoordhvNV")] public static - unsafe void FogCoordh(OpenTK.Math.Half* fog) + unsafe void FogCoordh(OpenTK.Half* fog) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFogCoordhvNV((OpenTK.Math.Half*)fog); + Delegates.glFogCoordhvNV((OpenTK.Half*)fog); #if DEBUG } #endif @@ -125700,13 +125700,13 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glMultiTexCoord1hNV")] public static - void MultiTexCoord1h(OpenTK.Graphics.TextureUnit target, OpenTK.Math.Half s) + void MultiTexCoord1h(OpenTK.Graphics.TextureUnit target, OpenTK.Half s) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord1hNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Math.Half)s); + Delegates.glMultiTexCoord1hNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Half)s); #if DEBUG } #endif @@ -125715,13 +125715,13 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glMultiTexCoord1hvNV")] public static - unsafe void MultiTexCoord1h(OpenTK.Graphics.TextureUnit target, OpenTK.Math.Half* v) + unsafe void MultiTexCoord1h(OpenTK.Graphics.TextureUnit target, OpenTK.Half* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord1hvNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Math.Half*)v); + Delegates.glMultiTexCoord1hvNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Half*)v); #if DEBUG } #endif @@ -125729,13 +125729,13 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glMultiTexCoord2hNV")] public static - void MultiTexCoord2h(OpenTK.Graphics.TextureUnit target, OpenTK.Math.Half s, OpenTK.Math.Half t) + void MultiTexCoord2h(OpenTK.Graphics.TextureUnit target, OpenTK.Half s, OpenTK.Half t) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord2hNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Math.Half)s, (OpenTK.Math.Half)t); + Delegates.glMultiTexCoord2hNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Half)s, (OpenTK.Half)t); #if DEBUG } #endif @@ -125743,7 +125743,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glMultiTexCoord2hvNV")] public static - void MultiTexCoord2h(OpenTK.Graphics.TextureUnit target, OpenTK.Math.Half[] v) + void MultiTexCoord2h(OpenTK.Graphics.TextureUnit target, OpenTK.Half[] v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -125751,9 +125751,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = v) + fixed (OpenTK.Half* v_ptr = v) { - Delegates.glMultiTexCoord2hvNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Math.Half*)v_ptr); + Delegates.glMultiTexCoord2hvNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Half*)v_ptr); } } #if DEBUG @@ -125764,13 +125764,13 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glMultiTexCoord2hvNV")] public static - unsafe void MultiTexCoord2h(OpenTK.Graphics.TextureUnit target, OpenTK.Math.Half* v) + unsafe void MultiTexCoord2h(OpenTK.Graphics.TextureUnit target, OpenTK.Half* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord2hvNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Math.Half*)v); + Delegates.glMultiTexCoord2hvNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Half*)v); #if DEBUG } #endif @@ -125778,7 +125778,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glMultiTexCoord2hvNV")] public static - void MultiTexCoord2h(OpenTK.Graphics.TextureUnit target, ref OpenTK.Math.Half v) + void MultiTexCoord2h(OpenTK.Graphics.TextureUnit target, ref OpenTK.Half v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -125786,9 +125786,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = &v) + fixed (OpenTK.Half* v_ptr = &v) { - Delegates.glMultiTexCoord2hvNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Math.Half*)v_ptr); + Delegates.glMultiTexCoord2hvNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Half*)v_ptr); } } #if DEBUG @@ -125798,13 +125798,13 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glMultiTexCoord3hNV")] public static - void MultiTexCoord3h(OpenTK.Graphics.TextureUnit target, OpenTK.Math.Half s, OpenTK.Math.Half t, OpenTK.Math.Half r) + void MultiTexCoord3h(OpenTK.Graphics.TextureUnit target, OpenTK.Half s, OpenTK.Half t, OpenTK.Half r) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord3hNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Math.Half)s, (OpenTK.Math.Half)t, (OpenTK.Math.Half)r); + Delegates.glMultiTexCoord3hNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Half)s, (OpenTK.Half)t, (OpenTK.Half)r); #if DEBUG } #endif @@ -125812,7 +125812,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glMultiTexCoord3hvNV")] public static - void MultiTexCoord3h(OpenTK.Graphics.TextureUnit target, ref OpenTK.Math.Half v) + void MultiTexCoord3h(OpenTK.Graphics.TextureUnit target, ref OpenTK.Half v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -125820,9 +125820,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = &v) + fixed (OpenTK.Half* v_ptr = &v) { - Delegates.glMultiTexCoord3hvNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Math.Half*)v_ptr); + Delegates.glMultiTexCoord3hvNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Half*)v_ptr); } } #if DEBUG @@ -125833,13 +125833,13 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glMultiTexCoord3hvNV")] public static - unsafe void MultiTexCoord3h(OpenTK.Graphics.TextureUnit target, OpenTK.Math.Half* v) + unsafe void MultiTexCoord3h(OpenTK.Graphics.TextureUnit target, OpenTK.Half* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord3hvNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Math.Half*)v); + Delegates.glMultiTexCoord3hvNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Half*)v); #if DEBUG } #endif @@ -125847,7 +125847,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glMultiTexCoord3hvNV")] public static - void MultiTexCoord3h(OpenTK.Graphics.TextureUnit target, OpenTK.Math.Half[] v) + void MultiTexCoord3h(OpenTK.Graphics.TextureUnit target, OpenTK.Half[] v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -125855,9 +125855,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = v) + fixed (OpenTK.Half* v_ptr = v) { - Delegates.glMultiTexCoord3hvNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Math.Half*)v_ptr); + Delegates.glMultiTexCoord3hvNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Half*)v_ptr); } } #if DEBUG @@ -125867,13 +125867,13 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glMultiTexCoord4hNV")] public static - void MultiTexCoord4h(OpenTK.Graphics.TextureUnit target, OpenTK.Math.Half s, OpenTK.Math.Half t, OpenTK.Math.Half r, OpenTK.Math.Half q) + void MultiTexCoord4h(OpenTK.Graphics.TextureUnit target, OpenTK.Half s, OpenTK.Half t, OpenTK.Half r, OpenTK.Half q) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord4hNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Math.Half)s, (OpenTK.Math.Half)t, (OpenTK.Math.Half)r, (OpenTK.Math.Half)q); + Delegates.glMultiTexCoord4hNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Half)s, (OpenTK.Half)t, (OpenTK.Half)r, (OpenTK.Half)q); #if DEBUG } #endif @@ -125882,13 +125882,13 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glMultiTexCoord4hvNV")] public static - unsafe void MultiTexCoord4h(OpenTK.Graphics.TextureUnit target, OpenTK.Math.Half* v) + unsafe void MultiTexCoord4h(OpenTK.Graphics.TextureUnit target, OpenTK.Half* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord4hvNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Math.Half*)v); + Delegates.glMultiTexCoord4hvNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Half*)v); #if DEBUG } #endif @@ -125896,7 +125896,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glMultiTexCoord4hvNV")] public static - void MultiTexCoord4h(OpenTK.Graphics.TextureUnit target, OpenTK.Math.Half[] v) + void MultiTexCoord4h(OpenTK.Graphics.TextureUnit target, OpenTK.Half[] v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -125904,9 +125904,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = v) + fixed (OpenTK.Half* v_ptr = v) { - Delegates.glMultiTexCoord4hvNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Math.Half*)v_ptr); + Delegates.glMultiTexCoord4hvNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Half*)v_ptr); } } #if DEBUG @@ -125916,7 +125916,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glMultiTexCoord4hvNV")] public static - void MultiTexCoord4h(OpenTK.Graphics.TextureUnit target, ref OpenTK.Math.Half v) + void MultiTexCoord4h(OpenTK.Graphics.TextureUnit target, ref OpenTK.Half v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -125924,9 +125924,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = &v) + fixed (OpenTK.Half* v_ptr = &v) { - Delegates.glMultiTexCoord4hvNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Math.Half*)v_ptr); + Delegates.glMultiTexCoord4hvNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Half*)v_ptr); } } #if DEBUG @@ -125936,13 +125936,13 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glNormal3hNV")] public static - void Normal3h(OpenTK.Math.Half nx, OpenTK.Math.Half ny, OpenTK.Math.Half nz) + void Normal3h(OpenTK.Half nx, OpenTK.Half ny, OpenTK.Half nz) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormal3hNV((OpenTK.Math.Half)nx, (OpenTK.Math.Half)ny, (OpenTK.Math.Half)nz); + Delegates.glNormal3hNV((OpenTK.Half)nx, (OpenTK.Half)ny, (OpenTK.Half)nz); #if DEBUG } #endif @@ -125950,7 +125950,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glNormal3hvNV")] public static - void Normal3h(OpenTK.Math.Half[] v) + void Normal3h(OpenTK.Half[] v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -125958,9 +125958,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = v) + fixed (OpenTK.Half* v_ptr = v) { - Delegates.glNormal3hvNV((OpenTK.Math.Half*)v_ptr); + Delegates.glNormal3hvNV((OpenTK.Half*)v_ptr); } } #if DEBUG @@ -125970,7 +125970,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glNormal3hvNV")] public static - void Normal3h(ref OpenTK.Math.Half v) + void Normal3h(ref OpenTK.Half v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -125978,9 +125978,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = &v) + fixed (OpenTK.Half* v_ptr = &v) { - Delegates.glNormal3hvNV((OpenTK.Math.Half*)v_ptr); + Delegates.glNormal3hvNV((OpenTK.Half*)v_ptr); } } #if DEBUG @@ -125991,13 +125991,13 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glNormal3hvNV")] public static - unsafe void Normal3h(OpenTK.Math.Half* v) + unsafe void Normal3h(OpenTK.Half* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormal3hvNV((OpenTK.Math.Half*)v); + Delegates.glNormal3hvNV((OpenTK.Half*)v); #if DEBUG } #endif @@ -128411,13 +128411,13 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glSecondaryColor3hNV")] public static - void SecondaryColor3h(OpenTK.Math.Half red, OpenTK.Math.Half green, OpenTK.Math.Half blue) + void SecondaryColor3h(OpenTK.Half red, OpenTK.Half green, OpenTK.Half blue) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColor3hNV((OpenTK.Math.Half)red, (OpenTK.Math.Half)green, (OpenTK.Math.Half)blue); + Delegates.glSecondaryColor3hNV((OpenTK.Half)red, (OpenTK.Half)green, (OpenTK.Half)blue); #if DEBUG } #endif @@ -128426,13 +128426,13 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glSecondaryColor3hvNV")] public static - unsafe void SecondaryColor3h(OpenTK.Math.Half* v) + unsafe void SecondaryColor3h(OpenTK.Half* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColor3hvNV((OpenTK.Math.Half*)v); + Delegates.glSecondaryColor3hvNV((OpenTK.Half*)v); #if DEBUG } #endif @@ -128440,7 +128440,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glSecondaryColor3hvNV")] public static - void SecondaryColor3h(ref OpenTK.Math.Half v) + void SecondaryColor3h(ref OpenTK.Half v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -128448,9 +128448,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = &v) + fixed (OpenTK.Half* v_ptr = &v) { - Delegates.glSecondaryColor3hvNV((OpenTK.Math.Half*)v_ptr); + Delegates.glSecondaryColor3hvNV((OpenTK.Half*)v_ptr); } } #if DEBUG @@ -128460,7 +128460,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glSecondaryColor3hvNV")] public static - void SecondaryColor3h(OpenTK.Math.Half[] v) + void SecondaryColor3h(OpenTK.Half[] v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -128468,9 +128468,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = v) + fixed (OpenTK.Half* v_ptr = v) { - Delegates.glSecondaryColor3hvNV((OpenTK.Math.Half*)v_ptr); + Delegates.glSecondaryColor3hvNV((OpenTK.Half*)v_ptr); } } #if DEBUG @@ -128538,13 +128538,13 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glTexCoord1hNV")] public static - void TexCoord1h(OpenTK.Math.Half s) + void TexCoord1h(OpenTK.Half s) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord1hNV((OpenTK.Math.Half)s); + Delegates.glTexCoord1hNV((OpenTK.Half)s); #if DEBUG } #endif @@ -128553,13 +128553,13 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glTexCoord1hvNV")] public static - unsafe void TexCoord1h(OpenTK.Math.Half* v) + unsafe void TexCoord1h(OpenTK.Half* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord1hvNV((OpenTK.Math.Half*)v); + Delegates.glTexCoord1hvNV((OpenTK.Half*)v); #if DEBUG } #endif @@ -128567,13 +128567,13 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glTexCoord2hNV")] public static - void TexCoord2h(OpenTK.Math.Half s, OpenTK.Math.Half t) + void TexCoord2h(OpenTK.Half s, OpenTK.Half t) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord2hNV((OpenTK.Math.Half)s, (OpenTK.Math.Half)t); + Delegates.glTexCoord2hNV((OpenTK.Half)s, (OpenTK.Half)t); #if DEBUG } #endif @@ -128582,13 +128582,13 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glTexCoord2hvNV")] public static - unsafe void TexCoord2h(OpenTK.Math.Half* v) + unsafe void TexCoord2h(OpenTK.Half* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord2hvNV((OpenTK.Math.Half*)v); + Delegates.glTexCoord2hvNV((OpenTK.Half*)v); #if DEBUG } #endif @@ -128596,7 +128596,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glTexCoord2hvNV")] public static - void TexCoord2h(ref OpenTK.Math.Half v) + void TexCoord2h(ref OpenTK.Half v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -128604,9 +128604,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = &v) + fixed (OpenTK.Half* v_ptr = &v) { - Delegates.glTexCoord2hvNV((OpenTK.Math.Half*)v_ptr); + Delegates.glTexCoord2hvNV((OpenTK.Half*)v_ptr); } } #if DEBUG @@ -128616,7 +128616,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glTexCoord2hvNV")] public static - void TexCoord2h(OpenTK.Math.Half[] v) + void TexCoord2h(OpenTK.Half[] v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -128624,9 +128624,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = v) + fixed (OpenTK.Half* v_ptr = v) { - Delegates.glTexCoord2hvNV((OpenTK.Math.Half*)v_ptr); + Delegates.glTexCoord2hvNV((OpenTK.Half*)v_ptr); } } #if DEBUG @@ -128636,13 +128636,13 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glTexCoord3hNV")] public static - void TexCoord3h(OpenTK.Math.Half s, OpenTK.Math.Half t, OpenTK.Math.Half r) + void TexCoord3h(OpenTK.Half s, OpenTK.Half t, OpenTK.Half r) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord3hNV((OpenTK.Math.Half)s, (OpenTK.Math.Half)t, (OpenTK.Math.Half)r); + Delegates.glTexCoord3hNV((OpenTK.Half)s, (OpenTK.Half)t, (OpenTK.Half)r); #if DEBUG } #endif @@ -128651,13 +128651,13 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glTexCoord3hvNV")] public static - unsafe void TexCoord3h(OpenTK.Math.Half* v) + unsafe void TexCoord3h(OpenTK.Half* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord3hvNV((OpenTK.Math.Half*)v); + Delegates.glTexCoord3hvNV((OpenTK.Half*)v); #if DEBUG } #endif @@ -128665,7 +128665,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glTexCoord3hvNV")] public static - void TexCoord3h(OpenTK.Math.Half[] v) + void TexCoord3h(OpenTK.Half[] v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -128673,9 +128673,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = v) + fixed (OpenTK.Half* v_ptr = v) { - Delegates.glTexCoord3hvNV((OpenTK.Math.Half*)v_ptr); + Delegates.glTexCoord3hvNV((OpenTK.Half*)v_ptr); } } #if DEBUG @@ -128685,7 +128685,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glTexCoord3hvNV")] public static - void TexCoord3h(ref OpenTK.Math.Half v) + void TexCoord3h(ref OpenTK.Half v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -128693,9 +128693,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = &v) + fixed (OpenTK.Half* v_ptr = &v) { - Delegates.glTexCoord3hvNV((OpenTK.Math.Half*)v_ptr); + Delegates.glTexCoord3hvNV((OpenTK.Half*)v_ptr); } } #if DEBUG @@ -128705,13 +128705,13 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glTexCoord4hNV")] public static - void TexCoord4h(OpenTK.Math.Half s, OpenTK.Math.Half t, OpenTK.Math.Half r, OpenTK.Math.Half q) + void TexCoord4h(OpenTK.Half s, OpenTK.Half t, OpenTK.Half r, OpenTK.Half q) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord4hNV((OpenTK.Math.Half)s, (OpenTK.Math.Half)t, (OpenTK.Math.Half)r, (OpenTK.Math.Half)q); + Delegates.glTexCoord4hNV((OpenTK.Half)s, (OpenTK.Half)t, (OpenTK.Half)r, (OpenTK.Half)q); #if DEBUG } #endif @@ -128720,13 +128720,13 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glTexCoord4hvNV")] public static - unsafe void TexCoord4h(OpenTK.Math.Half* v) + unsafe void TexCoord4h(OpenTK.Half* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord4hvNV((OpenTK.Math.Half*)v); + Delegates.glTexCoord4hvNV((OpenTK.Half*)v); #if DEBUG } #endif @@ -128734,7 +128734,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glTexCoord4hvNV")] public static - void TexCoord4h(ref OpenTK.Math.Half v) + void TexCoord4h(ref OpenTK.Half v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -128742,9 +128742,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = &v) + fixed (OpenTK.Half* v_ptr = &v) { - Delegates.glTexCoord4hvNV((OpenTK.Math.Half*)v_ptr); + Delegates.glTexCoord4hvNV((OpenTK.Half*)v_ptr); } } #if DEBUG @@ -128754,7 +128754,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glTexCoord4hvNV")] public static - void TexCoord4h(OpenTK.Math.Half[] v) + void TexCoord4h(OpenTK.Half[] v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -128762,9 +128762,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = v) + fixed (OpenTK.Half* v_ptr = v) { - Delegates.glTexCoord4hvNV((OpenTK.Math.Half*)v_ptr); + Delegates.glTexCoord4hvNV((OpenTK.Half*)v_ptr); } } #if DEBUG @@ -129056,13 +129056,13 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertex2hNV")] public static - void Vertex2h(OpenTK.Math.Half x, OpenTK.Math.Half y) + void Vertex2h(OpenTK.Half x, OpenTK.Half y) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex2hNV((OpenTK.Math.Half)x, (OpenTK.Math.Half)y); + Delegates.glVertex2hNV((OpenTK.Half)x, (OpenTK.Half)y); #if DEBUG } #endif @@ -129070,7 +129070,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertex2hvNV")] public static - void Vertex2h(OpenTK.Math.Half[] v) + void Vertex2h(OpenTK.Half[] v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -129078,9 +129078,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = v) + fixed (OpenTK.Half* v_ptr = v) { - Delegates.glVertex2hvNV((OpenTK.Math.Half*)v_ptr); + Delegates.glVertex2hvNV((OpenTK.Half*)v_ptr); } } #if DEBUG @@ -129091,13 +129091,13 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertex2hvNV")] public static - unsafe void Vertex2h(OpenTK.Math.Half* v) + unsafe void Vertex2h(OpenTK.Half* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex2hvNV((OpenTK.Math.Half*)v); + Delegates.glVertex2hvNV((OpenTK.Half*)v); #if DEBUG } #endif @@ -129105,7 +129105,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertex2hvNV")] public static - void Vertex2h(ref OpenTK.Math.Half v) + void Vertex2h(ref OpenTK.Half v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -129113,9 +129113,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = &v) + fixed (OpenTK.Half* v_ptr = &v) { - Delegates.glVertex2hvNV((OpenTK.Math.Half*)v_ptr); + Delegates.glVertex2hvNV((OpenTK.Half*)v_ptr); } } #if DEBUG @@ -129125,13 +129125,13 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertex3hNV")] public static - void Vertex3h(OpenTK.Math.Half x, OpenTK.Math.Half y, OpenTK.Math.Half z) + void Vertex3h(OpenTK.Half x, OpenTK.Half y, OpenTK.Half z) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex3hNV((OpenTK.Math.Half)x, (OpenTK.Math.Half)y, (OpenTK.Math.Half)z); + Delegates.glVertex3hNV((OpenTK.Half)x, (OpenTK.Half)y, (OpenTK.Half)z); #if DEBUG } #endif @@ -129139,7 +129139,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertex3hvNV")] public static - void Vertex3h(OpenTK.Math.Half[] v) + void Vertex3h(OpenTK.Half[] v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -129147,9 +129147,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = v) + fixed (OpenTK.Half* v_ptr = v) { - Delegates.glVertex3hvNV((OpenTK.Math.Half*)v_ptr); + Delegates.glVertex3hvNV((OpenTK.Half*)v_ptr); } } #if DEBUG @@ -129159,7 +129159,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertex3hvNV")] public static - void Vertex3h(ref OpenTK.Math.Half v) + void Vertex3h(ref OpenTK.Half v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -129167,9 +129167,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = &v) + fixed (OpenTK.Half* v_ptr = &v) { - Delegates.glVertex3hvNV((OpenTK.Math.Half*)v_ptr); + Delegates.glVertex3hvNV((OpenTK.Half*)v_ptr); } } #if DEBUG @@ -129180,13 +129180,13 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertex3hvNV")] public static - unsafe void Vertex3h(OpenTK.Math.Half* v) + unsafe void Vertex3h(OpenTK.Half* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex3hvNV((OpenTK.Math.Half*)v); + Delegates.glVertex3hvNV((OpenTK.Half*)v); #if DEBUG } #endif @@ -129194,13 +129194,13 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertex4hNV")] public static - void Vertex4h(OpenTK.Math.Half x, OpenTK.Math.Half y, OpenTK.Math.Half z, OpenTK.Math.Half w) + void Vertex4h(OpenTK.Half x, OpenTK.Half y, OpenTK.Half z, OpenTK.Half w) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex4hNV((OpenTK.Math.Half)x, (OpenTK.Math.Half)y, (OpenTK.Math.Half)z, (OpenTK.Math.Half)w); + Delegates.glVertex4hNV((OpenTK.Half)x, (OpenTK.Half)y, (OpenTK.Half)z, (OpenTK.Half)w); #if DEBUG } #endif @@ -129208,7 +129208,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertex4hvNV")] public static - void Vertex4h(ref OpenTK.Math.Half v) + void Vertex4h(ref OpenTK.Half v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -129216,9 +129216,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = &v) + fixed (OpenTK.Half* v_ptr = &v) { - Delegates.glVertex4hvNV((OpenTK.Math.Half*)v_ptr); + Delegates.glVertex4hvNV((OpenTK.Half*)v_ptr); } } #if DEBUG @@ -129228,7 +129228,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertex4hvNV")] public static - void Vertex4h(OpenTK.Math.Half[] v) + void Vertex4h(OpenTK.Half[] v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -129236,9 +129236,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = v) + fixed (OpenTK.Half* v_ptr = v) { - Delegates.glVertex4hvNV((OpenTK.Math.Half*)v_ptr); + Delegates.glVertex4hvNV((OpenTK.Half*)v_ptr); } } #if DEBUG @@ -129249,13 +129249,13 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertex4hvNV")] public static - unsafe void Vertex4h(OpenTK.Math.Half* v) + unsafe void Vertex4h(OpenTK.Half* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex4hvNV((OpenTK.Math.Half*)v); + Delegates.glVertex4hvNV((OpenTK.Half*)v); #if DEBUG } #endif @@ -129600,13 +129600,13 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib1hNV")] public static - void VertexAttrib1h(UInt32 index, OpenTK.Math.Half x) + void VertexAttrib1h(UInt32 index, OpenTK.Half x) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1hNV((UInt32)index, (OpenTK.Math.Half)x); + Delegates.glVertexAttrib1hNV((UInt32)index, (OpenTK.Half)x); #if DEBUG } #endif @@ -129614,13 +129614,13 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib1hNV")] public static - void VertexAttrib1h(Int32 index, OpenTK.Math.Half x) + void VertexAttrib1h(Int32 index, OpenTK.Half x) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1hNV((UInt32)index, (OpenTK.Math.Half)x); + Delegates.glVertexAttrib1hNV((UInt32)index, (OpenTK.Half)x); #if DEBUG } #endif @@ -129629,13 +129629,13 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib1hvNV")] public static - unsafe void VertexAttrib1h(UInt32 index, OpenTK.Math.Half* v) + unsafe void VertexAttrib1h(UInt32 index, OpenTK.Half* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1hvNV((UInt32)index, (OpenTK.Math.Half*)v); + Delegates.glVertexAttrib1hvNV((UInt32)index, (OpenTK.Half*)v); #if DEBUG } #endif @@ -129644,13 +129644,13 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib1hvNV")] public static - unsafe void VertexAttrib1h(Int32 index, OpenTK.Math.Half* v) + unsafe void VertexAttrib1h(Int32 index, OpenTK.Half* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1hvNV((UInt32)index, (OpenTK.Math.Half*)v); + Delegates.glVertexAttrib1hvNV((UInt32)index, (OpenTK.Half*)v); #if DEBUG } #endif @@ -130279,13 +130279,13 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib2hNV")] public static - void VertexAttrib2h(Int32 index, OpenTK.Math.Half x, OpenTK.Math.Half y) + void VertexAttrib2h(Int32 index, OpenTK.Half x, OpenTK.Half y) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2hNV((UInt32)index, (OpenTK.Math.Half)x, (OpenTK.Math.Half)y); + Delegates.glVertexAttrib2hNV((UInt32)index, (OpenTK.Half)x, (OpenTK.Half)y); #if DEBUG } #endif @@ -130294,13 +130294,13 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib2hNV")] public static - void VertexAttrib2h(UInt32 index, OpenTK.Math.Half x, OpenTK.Math.Half y) + void VertexAttrib2h(UInt32 index, OpenTK.Half x, OpenTK.Half y) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2hNV((UInt32)index, (OpenTK.Math.Half)x, (OpenTK.Math.Half)y); + Delegates.glVertexAttrib2hNV((UInt32)index, (OpenTK.Half)x, (OpenTK.Half)y); #if DEBUG } #endif @@ -130309,7 +130309,7 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib2hvNV")] public static - void VertexAttrib2h(UInt32 index, ref OpenTK.Math.Half v) + void VertexAttrib2h(UInt32 index, ref OpenTK.Half v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -130317,9 +130317,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = &v) + fixed (OpenTK.Half* v_ptr = &v) { - Delegates.glVertexAttrib2hvNV((UInt32)index, (OpenTK.Math.Half*)v_ptr); + Delegates.glVertexAttrib2hvNV((UInt32)index, (OpenTK.Half*)v_ptr); } } #if DEBUG @@ -130329,7 +130329,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib2hvNV")] public static - void VertexAttrib2h(Int32 index, OpenTK.Math.Half[] v) + void VertexAttrib2h(Int32 index, OpenTK.Half[] v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -130337,9 +130337,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = v) + fixed (OpenTK.Half* v_ptr = v) { - Delegates.glVertexAttrib2hvNV((UInt32)index, (OpenTK.Math.Half*)v_ptr); + Delegates.glVertexAttrib2hvNV((UInt32)index, (OpenTK.Half*)v_ptr); } } #if DEBUG @@ -130349,7 +130349,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib2hvNV")] public static - void VertexAttrib2h(Int32 index, ref OpenTK.Math.Half v) + void VertexAttrib2h(Int32 index, ref OpenTK.Half v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -130357,9 +130357,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = &v) + fixed (OpenTK.Half* v_ptr = &v) { - Delegates.glVertexAttrib2hvNV((UInt32)index, (OpenTK.Math.Half*)v_ptr); + Delegates.glVertexAttrib2hvNV((UInt32)index, (OpenTK.Half*)v_ptr); } } #if DEBUG @@ -130370,13 +130370,13 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib2hvNV")] public static - unsafe void VertexAttrib2h(Int32 index, OpenTK.Math.Half* v) + unsafe void VertexAttrib2h(Int32 index, OpenTK.Half* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2hvNV((UInt32)index, (OpenTK.Math.Half*)v); + Delegates.glVertexAttrib2hvNV((UInt32)index, (OpenTK.Half*)v); #if DEBUG } #endif @@ -130385,13 +130385,13 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib2hvNV")] public static - unsafe void VertexAttrib2h(UInt32 index, OpenTK.Math.Half* v) + unsafe void VertexAttrib2h(UInt32 index, OpenTK.Half* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2hvNV((UInt32)index, (OpenTK.Math.Half*)v); + Delegates.glVertexAttrib2hvNV((UInt32)index, (OpenTK.Half*)v); #if DEBUG } #endif @@ -130400,7 +130400,7 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib2hvNV")] public static - void VertexAttrib2h(UInt32 index, OpenTK.Math.Half[] v) + void VertexAttrib2h(UInt32 index, OpenTK.Half[] v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -130408,9 +130408,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = v) + fixed (OpenTK.Half* v_ptr = v) { - Delegates.glVertexAttrib2hvNV((UInt32)index, (OpenTK.Math.Half*)v_ptr); + Delegates.glVertexAttrib2hvNV((UInt32)index, (OpenTK.Half*)v_ptr); } } #if DEBUG @@ -131180,13 +131180,13 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib3hNV")] public static - void VertexAttrib3h(UInt32 index, OpenTK.Math.Half x, OpenTK.Math.Half y, OpenTK.Math.Half z) + void VertexAttrib3h(UInt32 index, OpenTK.Half x, OpenTK.Half y, OpenTK.Half z) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3hNV((UInt32)index, (OpenTK.Math.Half)x, (OpenTK.Math.Half)y, (OpenTK.Math.Half)z); + Delegates.glVertexAttrib3hNV((UInt32)index, (OpenTK.Half)x, (OpenTK.Half)y, (OpenTK.Half)z); #if DEBUG } #endif @@ -131194,13 +131194,13 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib3hNV")] public static - void VertexAttrib3h(Int32 index, OpenTK.Math.Half x, OpenTK.Math.Half y, OpenTK.Math.Half z) + void VertexAttrib3h(Int32 index, OpenTK.Half x, OpenTK.Half y, OpenTK.Half z) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3hNV((UInt32)index, (OpenTK.Math.Half)x, (OpenTK.Math.Half)y, (OpenTK.Math.Half)z); + Delegates.glVertexAttrib3hNV((UInt32)index, (OpenTK.Half)x, (OpenTK.Half)y, (OpenTK.Half)z); #if DEBUG } #endif @@ -131208,7 +131208,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib3hvNV")] public static - void VertexAttrib3h(Int32 index, ref OpenTK.Math.Half v) + void VertexAttrib3h(Int32 index, ref OpenTK.Half v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -131216,9 +131216,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = &v) + fixed (OpenTK.Half* v_ptr = &v) { - Delegates.glVertexAttrib3hvNV((UInt32)index, (OpenTK.Math.Half*)v_ptr); + Delegates.glVertexAttrib3hvNV((UInt32)index, (OpenTK.Half*)v_ptr); } } #if DEBUG @@ -131229,13 +131229,13 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib3hvNV")] public static - unsafe void VertexAttrib3h(UInt32 index, OpenTK.Math.Half* v) + unsafe void VertexAttrib3h(UInt32 index, OpenTK.Half* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3hvNV((UInt32)index, (OpenTK.Math.Half*)v); + Delegates.glVertexAttrib3hvNV((UInt32)index, (OpenTK.Half*)v); #if DEBUG } #endif @@ -131243,7 +131243,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib3hvNV")] public static - void VertexAttrib3h(Int32 index, OpenTK.Math.Half[] v) + void VertexAttrib3h(Int32 index, OpenTK.Half[] v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -131251,9 +131251,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = v) + fixed (OpenTK.Half* v_ptr = v) { - Delegates.glVertexAttrib3hvNV((UInt32)index, (OpenTK.Math.Half*)v_ptr); + Delegates.glVertexAttrib3hvNV((UInt32)index, (OpenTK.Half*)v_ptr); } } #if DEBUG @@ -131264,7 +131264,7 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib3hvNV")] public static - void VertexAttrib3h(UInt32 index, ref OpenTK.Math.Half v) + void VertexAttrib3h(UInt32 index, ref OpenTK.Half v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -131272,9 +131272,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = &v) + fixed (OpenTK.Half* v_ptr = &v) { - Delegates.glVertexAttrib3hvNV((UInt32)index, (OpenTK.Math.Half*)v_ptr); + Delegates.glVertexAttrib3hvNV((UInt32)index, (OpenTK.Half*)v_ptr); } } #if DEBUG @@ -131285,7 +131285,7 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib3hvNV")] public static - void VertexAttrib3h(UInt32 index, OpenTK.Math.Half[] v) + void VertexAttrib3h(UInt32 index, OpenTK.Half[] v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -131293,9 +131293,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = v) + fixed (OpenTK.Half* v_ptr = v) { - Delegates.glVertexAttrib3hvNV((UInt32)index, (OpenTK.Math.Half*)v_ptr); + Delegates.glVertexAttrib3hvNV((UInt32)index, (OpenTK.Half*)v_ptr); } } #if DEBUG @@ -131306,13 +131306,13 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib3hvNV")] public static - unsafe void VertexAttrib3h(Int32 index, OpenTK.Math.Half* v) + unsafe void VertexAttrib3h(Int32 index, OpenTK.Half* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3hvNV((UInt32)index, (OpenTK.Math.Half*)v); + Delegates.glVertexAttrib3hvNV((UInt32)index, (OpenTK.Half*)v); #if DEBUG } #endif @@ -132079,13 +132079,13 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib4hNV")] public static - void VertexAttrib4h(Int32 index, OpenTK.Math.Half x, OpenTK.Math.Half y, OpenTK.Math.Half z, OpenTK.Math.Half w) + void VertexAttrib4h(Int32 index, OpenTK.Half x, OpenTK.Half y, OpenTK.Half z, OpenTK.Half w) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4hNV((UInt32)index, (OpenTK.Math.Half)x, (OpenTK.Math.Half)y, (OpenTK.Math.Half)z, (OpenTK.Math.Half)w); + Delegates.glVertexAttrib4hNV((UInt32)index, (OpenTK.Half)x, (OpenTK.Half)y, (OpenTK.Half)z, (OpenTK.Half)w); #if DEBUG } #endif @@ -132094,13 +132094,13 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib4hNV")] public static - void VertexAttrib4h(UInt32 index, OpenTK.Math.Half x, OpenTK.Math.Half y, OpenTK.Math.Half z, OpenTK.Math.Half w) + void VertexAttrib4h(UInt32 index, OpenTK.Half x, OpenTK.Half y, OpenTK.Half z, OpenTK.Half w) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4hNV((UInt32)index, (OpenTK.Math.Half)x, (OpenTK.Math.Half)y, (OpenTK.Math.Half)z, (OpenTK.Math.Half)w); + Delegates.glVertexAttrib4hNV((UInt32)index, (OpenTK.Half)x, (OpenTK.Half)y, (OpenTK.Half)z, (OpenTK.Half)w); #if DEBUG } #endif @@ -132108,7 +132108,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib4hvNV")] public static - void VertexAttrib4h(Int32 index, ref OpenTK.Math.Half v) + void VertexAttrib4h(Int32 index, ref OpenTK.Half v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -132116,9 +132116,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = &v) + fixed (OpenTK.Half* v_ptr = &v) { - Delegates.glVertexAttrib4hvNV((UInt32)index, (OpenTK.Math.Half*)v_ptr); + Delegates.glVertexAttrib4hvNV((UInt32)index, (OpenTK.Half*)v_ptr); } } #if DEBUG @@ -132129,13 +132129,13 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib4hvNV")] public static - unsafe void VertexAttrib4h(UInt32 index, OpenTK.Math.Half* v) + unsafe void VertexAttrib4h(UInt32 index, OpenTK.Half* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4hvNV((UInt32)index, (OpenTK.Math.Half*)v); + Delegates.glVertexAttrib4hvNV((UInt32)index, (OpenTK.Half*)v); #if DEBUG } #endif @@ -132144,7 +132144,7 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib4hvNV")] public static - void VertexAttrib4h(UInt32 index, ref OpenTK.Math.Half v) + void VertexAttrib4h(UInt32 index, ref OpenTK.Half v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -132152,9 +132152,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = &v) + fixed (OpenTK.Half* v_ptr = &v) { - Delegates.glVertexAttrib4hvNV((UInt32)index, (OpenTK.Math.Half*)v_ptr); + Delegates.glVertexAttrib4hvNV((UInt32)index, (OpenTK.Half*)v_ptr); } } #if DEBUG @@ -132165,13 +132165,13 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib4hvNV")] public static - unsafe void VertexAttrib4h(Int32 index, OpenTK.Math.Half* v) + unsafe void VertexAttrib4h(Int32 index, OpenTK.Half* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4hvNV((UInt32)index, (OpenTK.Math.Half*)v); + Delegates.glVertexAttrib4hvNV((UInt32)index, (OpenTK.Half*)v); #if DEBUG } #endif @@ -132180,7 +132180,7 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib4hvNV")] public static - void VertexAttrib4h(UInt32 index, OpenTK.Math.Half[] v) + void VertexAttrib4h(UInt32 index, OpenTK.Half[] v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -132188,9 +132188,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = v) + fixed (OpenTK.Half* v_ptr = v) { - Delegates.glVertexAttrib4hvNV((UInt32)index, (OpenTK.Math.Half*)v_ptr); + Delegates.glVertexAttrib4hvNV((UInt32)index, (OpenTK.Half*)v_ptr); } } #if DEBUG @@ -132200,7 +132200,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib4hvNV")] public static - void VertexAttrib4h(Int32 index, OpenTK.Math.Half[] v) + void VertexAttrib4h(Int32 index, OpenTK.Half[] v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -132208,9 +132208,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = v) + fixed (OpenTK.Half* v_ptr = v) { - Delegates.glVertexAttrib4hvNV((UInt32)index, (OpenTK.Math.Half*)v_ptr); + Delegates.glVertexAttrib4hvNV((UInt32)index, (OpenTK.Half*)v_ptr); } } #if DEBUG @@ -133508,7 +133508,7 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs1hvNV")] public static - void VertexAttribs1h(UInt32 index, Int32 n, ref OpenTK.Math.Half v) + void VertexAttribs1h(UInt32 index, Int32 n, ref OpenTK.Half v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -133516,9 +133516,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = &v) + fixed (OpenTK.Half* v_ptr = &v) { - Delegates.glVertexAttribs1hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v_ptr); + Delegates.glVertexAttribs1hvNV((UInt32)index, (Int32)n, (OpenTK.Half*)v_ptr); } } #if DEBUG @@ -133529,13 +133529,13 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs1hvNV")] public static - unsafe void VertexAttribs1h(Int32 index, Int32 n, OpenTK.Math.Half* v) + unsafe void VertexAttribs1h(Int32 index, Int32 n, OpenTK.Half* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs1hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v); + Delegates.glVertexAttribs1hvNV((UInt32)index, (Int32)n, (OpenTK.Half*)v); #if DEBUG } #endif @@ -133544,13 +133544,13 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs1hvNV")] public static - unsafe void VertexAttribs1h(UInt32 index, Int32 n, OpenTK.Math.Half* v) + unsafe void VertexAttribs1h(UInt32 index, Int32 n, OpenTK.Half* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs1hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v); + Delegates.glVertexAttribs1hvNV((UInt32)index, (Int32)n, (OpenTK.Half*)v); #if DEBUG } #endif @@ -133558,7 +133558,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs1hvNV")] public static - void VertexAttribs1h(Int32 index, Int32 n, ref OpenTK.Math.Half v) + void VertexAttribs1h(Int32 index, Int32 n, ref OpenTK.Half v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -133566,9 +133566,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = &v) + fixed (OpenTK.Half* v_ptr = &v) { - Delegates.glVertexAttribs1hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v_ptr); + Delegates.glVertexAttribs1hvNV((UInt32)index, (Int32)n, (OpenTK.Half*)v_ptr); } } #if DEBUG @@ -133579,7 +133579,7 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs1hvNV")] public static - void VertexAttribs1h(UInt32 index, Int32 n, OpenTK.Math.Half[] v) + void VertexAttribs1h(UInt32 index, Int32 n, OpenTK.Half[] v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -133587,9 +133587,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = v) + fixed (OpenTK.Half* v_ptr = v) { - Delegates.glVertexAttribs1hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v_ptr); + Delegates.glVertexAttribs1hvNV((UInt32)index, (Int32)n, (OpenTK.Half*)v_ptr); } } #if DEBUG @@ -133599,7 +133599,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs1hvNV")] public static - void VertexAttribs1h(Int32 index, Int32 n, OpenTK.Math.Half[] v) + void VertexAttribs1h(Int32 index, Int32 n, OpenTK.Half[] v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -133607,9 +133607,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = v) + fixed (OpenTK.Half* v_ptr = v) { - Delegates.glVertexAttribs1hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v_ptr); + Delegates.glVertexAttribs1hvNV((UInt32)index, (Int32)n, (OpenTK.Half*)v_ptr); } } #if DEBUG @@ -133956,7 +133956,7 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs2hvNV")] public static - void VertexAttribs2h(UInt32 index, Int32 n, OpenTK.Math.Half[] v) + void VertexAttribs2h(UInt32 index, Int32 n, OpenTK.Half[] v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -133964,9 +133964,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = v) + fixed (OpenTK.Half* v_ptr = v) { - Delegates.glVertexAttribs2hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v_ptr); + Delegates.glVertexAttribs2hvNV((UInt32)index, (Int32)n, (OpenTK.Half*)v_ptr); } } #if DEBUG @@ -133976,7 +133976,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs2hvNV")] public static - void VertexAttribs2h(Int32 index, Int32 n, ref OpenTK.Math.Half v) + void VertexAttribs2h(Int32 index, Int32 n, ref OpenTK.Half v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -133984,9 +133984,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = &v) + fixed (OpenTK.Half* v_ptr = &v) { - Delegates.glVertexAttribs2hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v_ptr); + Delegates.glVertexAttribs2hvNV((UInt32)index, (Int32)n, (OpenTK.Half*)v_ptr); } } #if DEBUG @@ -133997,13 +133997,13 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs2hvNV")] public static - unsafe void VertexAttribs2h(Int32 index, Int32 n, OpenTK.Math.Half* v) + unsafe void VertexAttribs2h(Int32 index, Int32 n, OpenTK.Half* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs2hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v); + Delegates.glVertexAttribs2hvNV((UInt32)index, (Int32)n, (OpenTK.Half*)v); #if DEBUG } #endif @@ -134012,13 +134012,13 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs2hvNV")] public static - unsafe void VertexAttribs2h(UInt32 index, Int32 n, OpenTK.Math.Half* v) + unsafe void VertexAttribs2h(UInt32 index, Int32 n, OpenTK.Half* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs2hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v); + Delegates.glVertexAttribs2hvNV((UInt32)index, (Int32)n, (OpenTK.Half*)v); #if DEBUG } #endif @@ -134026,7 +134026,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs2hvNV")] public static - void VertexAttribs2h(Int32 index, Int32 n, OpenTK.Math.Half[] v) + void VertexAttribs2h(Int32 index, Int32 n, OpenTK.Half[] v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -134034,9 +134034,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = v) + fixed (OpenTK.Half* v_ptr = v) { - Delegates.glVertexAttribs2hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v_ptr); + Delegates.glVertexAttribs2hvNV((UInt32)index, (Int32)n, (OpenTK.Half*)v_ptr); } } #if DEBUG @@ -134047,7 +134047,7 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs2hvNV")] public static - void VertexAttribs2h(UInt32 index, Int32 n, ref OpenTK.Math.Half v) + void VertexAttribs2h(UInt32 index, Int32 n, ref OpenTK.Half v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -134055,9 +134055,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = &v) + fixed (OpenTK.Half* v_ptr = &v) { - Delegates.glVertexAttribs2hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v_ptr); + Delegates.glVertexAttribs2hvNV((UInt32)index, (Int32)n, (OpenTK.Half*)v_ptr); } } #if DEBUG @@ -134403,7 +134403,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs3hvNV")] public static - void VertexAttribs3h(Int32 index, Int32 n, OpenTK.Math.Half[] v) + void VertexAttribs3h(Int32 index, Int32 n, OpenTK.Half[] v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -134411,9 +134411,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = v) + fixed (OpenTK.Half* v_ptr = v) { - Delegates.glVertexAttribs3hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v_ptr); + Delegates.glVertexAttribs3hvNV((UInt32)index, (Int32)n, (OpenTK.Half*)v_ptr); } } #if DEBUG @@ -134424,7 +134424,7 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs3hvNV")] public static - void VertexAttribs3h(UInt32 index, Int32 n, OpenTK.Math.Half[] v) + void VertexAttribs3h(UInt32 index, Int32 n, OpenTK.Half[] v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -134432,9 +134432,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = v) + fixed (OpenTK.Half* v_ptr = v) { - Delegates.glVertexAttribs3hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v_ptr); + Delegates.glVertexAttribs3hvNV((UInt32)index, (Int32)n, (OpenTK.Half*)v_ptr); } } #if DEBUG @@ -134445,7 +134445,7 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs3hvNV")] public static - void VertexAttribs3h(UInt32 index, Int32 n, ref OpenTK.Math.Half v) + void VertexAttribs3h(UInt32 index, Int32 n, ref OpenTK.Half v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -134453,9 +134453,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = &v) + fixed (OpenTK.Half* v_ptr = &v) { - Delegates.glVertexAttribs3hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v_ptr); + Delegates.glVertexAttribs3hvNV((UInt32)index, (Int32)n, (OpenTK.Half*)v_ptr); } } #if DEBUG @@ -134465,7 +134465,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs3hvNV")] public static - void VertexAttribs3h(Int32 index, Int32 n, ref OpenTK.Math.Half v) + void VertexAttribs3h(Int32 index, Int32 n, ref OpenTK.Half v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -134473,9 +134473,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = &v) + fixed (OpenTK.Half* v_ptr = &v) { - Delegates.glVertexAttribs3hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v_ptr); + Delegates.glVertexAttribs3hvNV((UInt32)index, (Int32)n, (OpenTK.Half*)v_ptr); } } #if DEBUG @@ -134486,13 +134486,13 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs3hvNV")] public static - unsafe void VertexAttribs3h(UInt32 index, Int32 n, OpenTK.Math.Half* v) + unsafe void VertexAttribs3h(UInt32 index, Int32 n, OpenTK.Half* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs3hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v); + Delegates.glVertexAttribs3hvNV((UInt32)index, (Int32)n, (OpenTK.Half*)v); #if DEBUG } #endif @@ -134501,13 +134501,13 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs3hvNV")] public static - unsafe void VertexAttribs3h(Int32 index, Int32 n, OpenTK.Math.Half* v) + unsafe void VertexAttribs3h(Int32 index, Int32 n, OpenTK.Half* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs3hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v); + Delegates.glVertexAttribs3hvNV((UInt32)index, (Int32)n, (OpenTK.Half*)v); #if DEBUG } #endif @@ -134851,7 +134851,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs4hvNV")] public static - void VertexAttribs4h(Int32 index, Int32 n, ref OpenTK.Math.Half v) + void VertexAttribs4h(Int32 index, Int32 n, ref OpenTK.Half v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -134859,9 +134859,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = &v) + fixed (OpenTK.Half* v_ptr = &v) { - Delegates.glVertexAttribs4hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v_ptr); + Delegates.glVertexAttribs4hvNV((UInt32)index, (Int32)n, (OpenTK.Half*)v_ptr); } } #if DEBUG @@ -134872,13 +134872,13 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs4hvNV")] public static - unsafe void VertexAttribs4h(UInt32 index, Int32 n, OpenTK.Math.Half* v) + unsafe void VertexAttribs4h(UInt32 index, Int32 n, OpenTK.Half* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs4hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v); + Delegates.glVertexAttribs4hvNV((UInt32)index, (Int32)n, (OpenTK.Half*)v); #if DEBUG } #endif @@ -134887,13 +134887,13 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs4hvNV")] public static - unsafe void VertexAttribs4h(Int32 index, Int32 n, OpenTK.Math.Half* v) + unsafe void VertexAttribs4h(Int32 index, Int32 n, OpenTK.Half* v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs4hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v); + Delegates.glVertexAttribs4hvNV((UInt32)index, (Int32)n, (OpenTK.Half*)v); #if DEBUG } #endif @@ -134902,7 +134902,7 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs4hvNV")] public static - void VertexAttribs4h(UInt32 index, Int32 n, OpenTK.Math.Half[] v) + void VertexAttribs4h(UInt32 index, Int32 n, OpenTK.Half[] v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -134910,9 +134910,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = v) + fixed (OpenTK.Half* v_ptr = v) { - Delegates.glVertexAttribs4hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v_ptr); + Delegates.glVertexAttribs4hvNV((UInt32)index, (Int32)n, (OpenTK.Half*)v_ptr); } } #if DEBUG @@ -134922,7 +134922,7 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs4hvNV")] public static - void VertexAttribs4h(Int32 index, Int32 n, OpenTK.Math.Half[] v) + void VertexAttribs4h(Int32 index, Int32 n, OpenTK.Half[] v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -134930,9 +134930,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = v) + fixed (OpenTK.Half* v_ptr = v) { - Delegates.glVertexAttribs4hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v_ptr); + Delegates.glVertexAttribs4hvNV((UInt32)index, (Int32)n, (OpenTK.Half*)v_ptr); } } #if DEBUG @@ -134943,7 +134943,7 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs4hvNV")] public static - void VertexAttribs4h(UInt32 index, Int32 n, ref OpenTK.Math.Half v) + void VertexAttribs4h(UInt32 index, Int32 n, ref OpenTK.Half v) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) @@ -134951,9 +134951,9 @@ namespace OpenTK.Graphics #endif unsafe { - fixed (OpenTK.Math.Half* v_ptr = &v) + fixed (OpenTK.Half* v_ptr = &v) { - Delegates.glVertexAttribs4hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v_ptr); + Delegates.glVertexAttribs4hvNV((UInt32)index, (Int32)n, (OpenTK.Half*)v_ptr); } } #if DEBUG @@ -135187,13 +135187,13 @@ namespace OpenTK.Graphics [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexWeighthNV")] public static - void VertexWeighth(OpenTK.Math.Half weight) + void VertexWeighth(OpenTK.Half weight) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexWeighthNV((OpenTK.Math.Half)weight); + Delegates.glVertexWeighthNV((OpenTK.Half)weight); #if DEBUG } #endif @@ -135202,13 +135202,13 @@ namespace OpenTK.Graphics [System.CLSCompliant(false)] [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexWeighthvNV")] public static - unsafe void VertexWeighth(OpenTK.Math.Half* weight) + unsafe void VertexWeighth(OpenTK.Half* weight) { #if DEBUG using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexWeighthvNV((OpenTK.Math.Half*)weight); + Delegates.glVertexWeighthvNV((OpenTK.Half*)weight); #if DEBUG } #endif diff --git a/Source/OpenTK/Graphics/GL/GLDelegates.cs b/Source/OpenTK/Graphics/GL/GLDelegates.cs index 7376bde2..7ad0464d 100644 --- a/Source/OpenTK/Graphics/GL/GLDelegates.cs +++ b/Source/OpenTK/Graphics/GL/GLDelegates.cs @@ -416,10 +416,10 @@ namespace OpenTK.Graphics internal unsafe delegate void Color3fVertex3fvSUN(Single* c, Single* v); internal unsafe static Color3fVertex3fvSUN glColor3fVertex3fvSUN; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void Color3hNV(OpenTK.Math.Half red, OpenTK.Math.Half green, OpenTK.Math.Half blue); + internal delegate void Color3hNV(OpenTK.Half red, OpenTK.Half green, OpenTK.Half blue); internal static Color3hNV glColor3hNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void Color3hvNV(OpenTK.Math.Half* v); + internal unsafe delegate void Color3hvNV(OpenTK.Half* v); internal unsafe static Color3hvNV glColor3hvNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void Color3i(Int32 red, Int32 green, Int32 blue); @@ -476,10 +476,10 @@ namespace OpenTK.Graphics internal unsafe delegate void Color4fv(Single* v); internal unsafe static Color4fv glColor4fv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void Color4hNV(OpenTK.Math.Half red, OpenTK.Math.Half green, OpenTK.Math.Half blue, OpenTK.Math.Half alpha); + internal delegate void Color4hNV(OpenTK.Half red, OpenTK.Half green, OpenTK.Half blue, OpenTK.Half alpha); internal static Color4hNV glColor4hNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void Color4hvNV(OpenTK.Math.Half* v); + internal unsafe delegate void Color4hvNV(OpenTK.Half* v); internal unsafe static Color4hvNV glColor4hvNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void Color4i(Int32 red, Int32 green, Int32 blue, Int32 alpha); @@ -1235,10 +1235,10 @@ namespace OpenTK.Graphics internal unsafe delegate void FogCoordfvEXT(Single* coord); internal unsafe static FogCoordfvEXT glFogCoordfvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void FogCoordhNV(OpenTK.Math.Half fog); + internal delegate void FogCoordhNV(OpenTK.Half fog); internal static FogCoordhNV glFogCoordhNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void FogCoordhvNV(OpenTK.Math.Half* fog); + internal unsafe delegate void FogCoordhvNV(OpenTK.Half* fog); internal unsafe static FogCoordhvNV glFogCoordhvNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void FogCoordPointer(OpenTK.Graphics.FogPointerType type, Int32 stride, IntPtr pointer); @@ -2705,10 +2705,10 @@ namespace OpenTK.Graphics internal unsafe delegate void MultiTexCoord1fvARB(OpenTK.Graphics.TextureUnit target, Single* v); internal unsafe static MultiTexCoord1fvARB glMultiTexCoord1fvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord1hNV(OpenTK.Graphics.TextureUnit target, OpenTK.Math.Half s); + internal delegate void MultiTexCoord1hNV(OpenTK.Graphics.TextureUnit target, OpenTK.Half s); internal static MultiTexCoord1hNV glMultiTexCoord1hNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord1hvNV(OpenTK.Graphics.TextureUnit target, OpenTK.Math.Half* v); + internal unsafe delegate void MultiTexCoord1hvNV(OpenTK.Graphics.TextureUnit target, OpenTK.Half* v); internal unsafe static MultiTexCoord1hvNV glMultiTexCoord1hvNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void MultiTexCoord1i(OpenTK.Graphics.TextureUnit target, Int32 s); @@ -2759,10 +2759,10 @@ namespace OpenTK.Graphics internal unsafe delegate void MultiTexCoord2fvARB(OpenTK.Graphics.TextureUnit target, Single* v); internal unsafe static MultiTexCoord2fvARB glMultiTexCoord2fvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord2hNV(OpenTK.Graphics.TextureUnit target, OpenTK.Math.Half s, OpenTK.Math.Half t); + internal delegate void MultiTexCoord2hNV(OpenTK.Graphics.TextureUnit target, OpenTK.Half s, OpenTK.Half t); internal static MultiTexCoord2hNV glMultiTexCoord2hNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord2hvNV(OpenTK.Graphics.TextureUnit target, OpenTK.Math.Half* v); + internal unsafe delegate void MultiTexCoord2hvNV(OpenTK.Graphics.TextureUnit target, OpenTK.Half* v); internal unsafe static MultiTexCoord2hvNV glMultiTexCoord2hvNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void MultiTexCoord2i(OpenTK.Graphics.TextureUnit target, Int32 s, Int32 t); @@ -2813,10 +2813,10 @@ namespace OpenTK.Graphics internal unsafe delegate void MultiTexCoord3fvARB(OpenTK.Graphics.TextureUnit target, Single* v); internal unsafe static MultiTexCoord3fvARB glMultiTexCoord3fvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord3hNV(OpenTK.Graphics.TextureUnit target, OpenTK.Math.Half s, OpenTK.Math.Half t, OpenTK.Math.Half r); + internal delegate void MultiTexCoord3hNV(OpenTK.Graphics.TextureUnit target, OpenTK.Half s, OpenTK.Half t, OpenTK.Half r); internal static MultiTexCoord3hNV glMultiTexCoord3hNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord3hvNV(OpenTK.Graphics.TextureUnit target, OpenTK.Math.Half* v); + internal unsafe delegate void MultiTexCoord3hvNV(OpenTK.Graphics.TextureUnit target, OpenTK.Half* v); internal unsafe static MultiTexCoord3hvNV glMultiTexCoord3hvNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void MultiTexCoord3i(OpenTK.Graphics.TextureUnit target, Int32 s, Int32 t, Int32 r); @@ -2867,10 +2867,10 @@ namespace OpenTK.Graphics internal unsafe delegate void MultiTexCoord4fvARB(OpenTK.Graphics.TextureUnit target, Single* v); internal unsafe static MultiTexCoord4fvARB glMultiTexCoord4fvARB; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void MultiTexCoord4hNV(OpenTK.Graphics.TextureUnit target, OpenTK.Math.Half s, OpenTK.Math.Half t, OpenTK.Math.Half r, OpenTK.Math.Half q); + internal delegate void MultiTexCoord4hNV(OpenTK.Graphics.TextureUnit target, OpenTK.Half s, OpenTK.Half t, OpenTK.Half r, OpenTK.Half q); internal static MultiTexCoord4hNV glMultiTexCoord4hNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void MultiTexCoord4hvNV(OpenTK.Graphics.TextureUnit target, OpenTK.Math.Half* v); + internal unsafe delegate void MultiTexCoord4hvNV(OpenTK.Graphics.TextureUnit target, OpenTK.Half* v); internal unsafe static MultiTexCoord4hvNV glMultiTexCoord4hvNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void MultiTexCoord4i(OpenTK.Graphics.TextureUnit target, Int32 s, Int32 t, Int32 r, Int32 q); @@ -3089,10 +3089,10 @@ namespace OpenTK.Graphics internal unsafe delegate void Normal3fVertex3fvSUN(Single* n, Single* v); internal unsafe static Normal3fVertex3fvSUN glNormal3fVertex3fvSUN; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void Normal3hNV(OpenTK.Math.Half nx, OpenTK.Math.Half ny, OpenTK.Math.Half nz); + internal delegate void Normal3hNV(OpenTK.Half nx, OpenTK.Half ny, OpenTK.Half nz); internal static Normal3hNV glNormal3hNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void Normal3hvNV(OpenTK.Math.Half* v); + internal unsafe delegate void Normal3hvNV(OpenTK.Half* v); internal unsafe static Normal3hvNV glNormal3hvNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void Normal3i(Int32 nx, Int32 ny, Int32 nz); @@ -3836,10 +3836,10 @@ namespace OpenTK.Graphics internal unsafe delegate void SecondaryColor3fvEXT(Single* v); internal unsafe static SecondaryColor3fvEXT glSecondaryColor3fvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void SecondaryColor3hNV(OpenTK.Math.Half red, OpenTK.Math.Half green, OpenTK.Math.Half blue); + internal delegate void SecondaryColor3hNV(OpenTK.Half red, OpenTK.Half green, OpenTK.Half blue); internal static SecondaryColor3hNV glSecondaryColor3hNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void SecondaryColor3hvNV(OpenTK.Math.Half* v); + internal unsafe delegate void SecondaryColor3hvNV(OpenTK.Half* v); internal unsafe static SecondaryColor3hvNV glSecondaryColor3hvNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void SecondaryColor3i(Int32 red, Int32 green, Int32 blue); @@ -4091,10 +4091,10 @@ namespace OpenTK.Graphics internal unsafe delegate void TexCoord1fv(Single* v); internal unsafe static TexCoord1fv glTexCoord1fv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void TexCoord1hNV(OpenTK.Math.Half s); + internal delegate void TexCoord1hNV(OpenTK.Half s); internal static TexCoord1hNV glTexCoord1hNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void TexCoord1hvNV(OpenTK.Math.Half* v); + internal unsafe delegate void TexCoord1hvNV(OpenTK.Half* v); internal unsafe static TexCoord1hvNV glTexCoord1hvNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void TexCoord1i(Int32 s); @@ -4151,10 +4151,10 @@ namespace OpenTK.Graphics internal unsafe delegate void TexCoord2fVertex3fvSUN(Single* tc, Single* v); internal unsafe static TexCoord2fVertex3fvSUN glTexCoord2fVertex3fvSUN; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void TexCoord2hNV(OpenTK.Math.Half s, OpenTK.Math.Half t); + internal delegate void TexCoord2hNV(OpenTK.Half s, OpenTK.Half t); internal static TexCoord2hNV glTexCoord2hNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void TexCoord2hvNV(OpenTK.Math.Half* v); + internal unsafe delegate void TexCoord2hvNV(OpenTK.Half* v); internal unsafe static TexCoord2hvNV glTexCoord2hvNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void TexCoord2i(Int32 s, Int32 t); @@ -4181,10 +4181,10 @@ namespace OpenTK.Graphics internal unsafe delegate void TexCoord3fv(Single* v); internal unsafe static TexCoord3fv glTexCoord3fv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void TexCoord3hNV(OpenTK.Math.Half s, OpenTK.Math.Half t, OpenTK.Math.Half r); + internal delegate void TexCoord3hNV(OpenTK.Half s, OpenTK.Half t, OpenTK.Half r); internal static TexCoord3hNV glTexCoord3hNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void TexCoord3hvNV(OpenTK.Math.Half* v); + internal unsafe delegate void TexCoord3hvNV(OpenTK.Half* v); internal unsafe static TexCoord3hvNV glTexCoord3hvNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void TexCoord3i(Int32 s, Int32 t, Int32 r); @@ -4223,10 +4223,10 @@ namespace OpenTK.Graphics internal unsafe delegate void TexCoord4fVertex4fvSUN(Single* tc, Single* v); internal unsafe static TexCoord4fVertex4fvSUN glTexCoord4fVertex4fvSUN; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void TexCoord4hNV(OpenTK.Math.Half s, OpenTK.Math.Half t, OpenTK.Math.Half r, OpenTK.Math.Half q); + internal delegate void TexCoord4hNV(OpenTK.Half s, OpenTK.Half t, OpenTK.Half r, OpenTK.Half q); internal static TexCoord4hNV glTexCoord4hNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void TexCoord4hvNV(OpenTK.Math.Half* v); + internal unsafe delegate void TexCoord4hvNV(OpenTK.Half* v); internal unsafe static TexCoord4hvNV glTexCoord4hvNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void TexCoord4i(Int32 s, Int32 t, Int32 r, Int32 q); @@ -4682,10 +4682,10 @@ namespace OpenTK.Graphics internal unsafe delegate void Vertex2fv(Single* v); internal unsafe static Vertex2fv glVertex2fv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void Vertex2hNV(OpenTK.Math.Half x, OpenTK.Math.Half y); + internal delegate void Vertex2hNV(OpenTK.Half x, OpenTK.Half y); internal static Vertex2hNV glVertex2hNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void Vertex2hvNV(OpenTK.Math.Half* v); + internal unsafe delegate void Vertex2hvNV(OpenTK.Half* v); internal unsafe static Vertex2hvNV glVertex2hvNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void Vertex2i(Int32 x, Int32 y); @@ -4712,10 +4712,10 @@ namespace OpenTK.Graphics internal unsafe delegate void Vertex3fv(Single* v); internal unsafe static Vertex3fv glVertex3fv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void Vertex3hNV(OpenTK.Math.Half x, OpenTK.Math.Half y, OpenTK.Math.Half z); + internal delegate void Vertex3hNV(OpenTK.Half x, OpenTK.Half y, OpenTK.Half z); internal static Vertex3hNV glVertex3hNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void Vertex3hvNV(OpenTK.Math.Half* v); + internal unsafe delegate void Vertex3hvNV(OpenTK.Half* v); internal unsafe static Vertex3hvNV glVertex3hvNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void Vertex3i(Int32 x, Int32 y, Int32 z); @@ -4742,10 +4742,10 @@ namespace OpenTK.Graphics internal unsafe delegate void Vertex4fv(Single* v); internal unsafe static Vertex4fv glVertex4fv; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void Vertex4hNV(OpenTK.Math.Half x, OpenTK.Math.Half y, OpenTK.Math.Half z, OpenTK.Math.Half w); + internal delegate void Vertex4hNV(OpenTK.Half x, OpenTK.Half y, OpenTK.Half z, OpenTK.Half w); internal static Vertex4hNV glVertex4hNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void Vertex4hvNV(OpenTK.Math.Half* v); + internal unsafe delegate void Vertex4hvNV(OpenTK.Half* v); internal unsafe static Vertex4hvNV glVertex4hvNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void Vertex4i(Int32 x, Int32 y, Int32 z, Int32 w); @@ -4805,10 +4805,10 @@ namespace OpenTK.Graphics internal unsafe delegate void VertexAttrib1fvNV(UInt32 index, Single* v); internal unsafe static VertexAttrib1fvNV glVertexAttrib1fvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexAttrib1hNV(UInt32 index, OpenTK.Math.Half x); + internal delegate void VertexAttrib1hNV(UInt32 index, OpenTK.Half x); internal static VertexAttrib1hNV glVertexAttrib1hNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexAttrib1hvNV(UInt32 index, OpenTK.Math.Half* v); + internal unsafe delegate void VertexAttrib1hvNV(UInt32 index, OpenTK.Half* v); internal unsafe static VertexAttrib1hvNV glVertexAttrib1hvNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void VertexAttrib1s(UInt32 index, Int16 x); @@ -4865,10 +4865,10 @@ namespace OpenTK.Graphics internal unsafe delegate void VertexAttrib2fvNV(UInt32 index, Single* v); internal unsafe static VertexAttrib2fvNV glVertexAttrib2fvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexAttrib2hNV(UInt32 index, OpenTK.Math.Half x, OpenTK.Math.Half y); + internal delegate void VertexAttrib2hNV(UInt32 index, OpenTK.Half x, OpenTK.Half y); internal static VertexAttrib2hNV glVertexAttrib2hNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexAttrib2hvNV(UInt32 index, OpenTK.Math.Half* v); + internal unsafe delegate void VertexAttrib2hvNV(UInt32 index, OpenTK.Half* v); internal unsafe static VertexAttrib2hvNV glVertexAttrib2hvNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void VertexAttrib2s(UInt32 index, Int16 x, Int16 y); @@ -4925,10 +4925,10 @@ namespace OpenTK.Graphics internal unsafe delegate void VertexAttrib3fvNV(UInt32 index, Single* v); internal unsafe static VertexAttrib3fvNV glVertexAttrib3fvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexAttrib3hNV(UInt32 index, OpenTK.Math.Half x, OpenTK.Math.Half y, OpenTK.Math.Half z); + internal delegate void VertexAttrib3hNV(UInt32 index, OpenTK.Half x, OpenTK.Half y, OpenTK.Half z); internal static VertexAttrib3hNV glVertexAttrib3hNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexAttrib3hvNV(UInt32 index, OpenTK.Math.Half* v); + internal unsafe delegate void VertexAttrib3hvNV(UInt32 index, OpenTK.Half* v); internal unsafe static VertexAttrib3hvNV glVertexAttrib3hvNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void VertexAttrib3s(UInt32 index, Int16 x, Int16 y, Int16 z); @@ -4991,10 +4991,10 @@ namespace OpenTK.Graphics internal unsafe delegate void VertexAttrib4fvNV(UInt32 index, Single* v); internal unsafe static VertexAttrib4fvNV glVertexAttrib4fvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexAttrib4hNV(UInt32 index, OpenTK.Math.Half x, OpenTK.Math.Half y, OpenTK.Math.Half z, OpenTK.Math.Half w); + internal delegate void VertexAttrib4hNV(UInt32 index, OpenTK.Half x, OpenTK.Half y, OpenTK.Half z, OpenTK.Half w); internal static VertexAttrib4hNV glVertexAttrib4hNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexAttrib4hvNV(UInt32 index, OpenTK.Math.Half* v); + internal unsafe delegate void VertexAttrib4hvNV(UInt32 index, OpenTK.Half* v); internal unsafe static VertexAttrib4hvNV glVertexAttrib4hvNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void VertexAttrib4iv(UInt32 index, Int32* v); @@ -5234,7 +5234,7 @@ namespace OpenTK.Graphics internal unsafe delegate void VertexAttribs1fvNV(UInt32 index, Int32 count, Single* v); internal unsafe static VertexAttribs1fvNV glVertexAttribs1fvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexAttribs1hvNV(UInt32 index, Int32 n, OpenTK.Math.Half* v); + internal unsafe delegate void VertexAttribs1hvNV(UInt32 index, Int32 n, OpenTK.Half* v); internal unsafe static VertexAttribs1hvNV glVertexAttribs1hvNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void VertexAttribs1svNV(UInt32 index, Int32 count, Int16* v); @@ -5246,7 +5246,7 @@ namespace OpenTK.Graphics internal unsafe delegate void VertexAttribs2fvNV(UInt32 index, Int32 count, Single* v); internal unsafe static VertexAttribs2fvNV glVertexAttribs2fvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexAttribs2hvNV(UInt32 index, Int32 n, OpenTK.Math.Half* v); + internal unsafe delegate void VertexAttribs2hvNV(UInt32 index, Int32 n, OpenTK.Half* v); internal unsafe static VertexAttribs2hvNV glVertexAttribs2hvNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void VertexAttribs2svNV(UInt32 index, Int32 count, Int16* v); @@ -5258,7 +5258,7 @@ namespace OpenTK.Graphics internal unsafe delegate void VertexAttribs3fvNV(UInt32 index, Int32 count, Single* v); internal unsafe static VertexAttribs3fvNV glVertexAttribs3fvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexAttribs3hvNV(UInt32 index, Int32 n, OpenTK.Math.Half* v); + internal unsafe delegate void VertexAttribs3hvNV(UInt32 index, Int32 n, OpenTK.Half* v); internal unsafe static VertexAttribs3hvNV glVertexAttribs3hvNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void VertexAttribs3svNV(UInt32 index, Int32 count, Int16* v); @@ -5270,7 +5270,7 @@ namespace OpenTK.Graphics internal unsafe delegate void VertexAttribs4fvNV(UInt32 index, Int32 count, Single* v); internal unsafe static VertexAttribs4fvNV glVertexAttribs4fvNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexAttribs4hvNV(UInt32 index, Int32 n, OpenTK.Math.Half* v); + internal unsafe delegate void VertexAttribs4hvNV(UInt32 index, Int32 n, OpenTK.Half* v); internal unsafe static VertexAttribs4hvNV glVertexAttribs4hvNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal unsafe delegate void VertexAttribs4svNV(UInt32 index, Int32 count, Int16* v); @@ -5402,10 +5402,10 @@ namespace OpenTK.Graphics internal unsafe delegate void VertexWeightfvEXT(Single* weight); internal unsafe static VertexWeightfvEXT glVertexWeightfvEXT; [System.Security.SuppressUnmanagedCodeSecurity()] - internal delegate void VertexWeighthNV(OpenTK.Math.Half weight); + internal delegate void VertexWeighthNV(OpenTK.Half weight); internal static VertexWeighthNV glVertexWeighthNV; [System.Security.SuppressUnmanagedCodeSecurity()] - internal unsafe delegate void VertexWeighthvNV(OpenTK.Math.Half* weight); + internal unsafe delegate void VertexWeighthvNV(OpenTK.Half* weight); internal unsafe static VertexWeighthvNV glVertexWeighthvNV; [System.Security.SuppressUnmanagedCodeSecurity()] internal delegate void VertexWeightPointerEXT(Int32 size, OpenTK.Graphics.ExtVertexWeighting type, Int32 stride, IntPtr pointer); diff --git a/Source/OpenTK/Graphics/GL/GLHelper.cs b/Source/OpenTK/Graphics/GL/GLHelper.cs index c1130562..deaa9c9b 100644 --- a/Source/OpenTK/Graphics/GL/GLHelper.cs +++ b/Source/OpenTK/Graphics/GL/GLHelper.cs @@ -16,7 +16,7 @@ using System.Reflection; using System.Diagnostics; using System.Reflection.Emit; -using OpenTK.Math; + #endregion diff --git a/Source/OpenTK/Graphics/Glu/GluHelper.cs b/Source/OpenTK/Graphics/Glu/GluHelper.cs index 87b632ff..0c65ea5b 100644 --- a/Source/OpenTK/Graphics/Glu/GluHelper.cs +++ b/Source/OpenTK/Graphics/Glu/GluHelper.cs @@ -13,7 +13,6 @@ using System.Runtime.InteropServices; using System.Reflection.Emit; using OpenTK.Platform; -using OpenTK.Math; namespace OpenTK.Graphics { diff --git a/Source/OpenTK/Math/BezierCurve.cs b/Source/OpenTK/Math/BezierCurve.cs index 9ffa8a7a..ed832121 100644 --- a/Source/OpenTK/Math/BezierCurve.cs +++ b/Source/OpenTK/Math/BezierCurve.cs @@ -4,7 +4,7 @@ * This notice may not be removed from any source distribution. * See license.txt for licensing detailed licensing details. * - * Contributions by Georg Wächter. + * Contributions by Georg W�chter. */ #endregion @@ -12,7 +12,7 @@ using System; using System.Collections.Generic; using System.Text; -namespace OpenTK.Math +namespace OpenTK { /// /// Represents a bezier curve with as many points as you want. diff --git a/Source/OpenTK/Math/BezierCurveCubic.cs b/Source/OpenTK/Math/BezierCurveCubic.cs index 2e6dd800..77e9cf48 100644 --- a/Source/OpenTK/Math/BezierCurveCubic.cs +++ b/Source/OpenTK/Math/BezierCurveCubic.cs @@ -4,7 +4,7 @@ * This notice may not be removed from any source distribution. * See license.txt for licensing detailed licensing details. * - * Contributions by Georg Wächter. + * Contributions by Georg W�chter. */ #endregion @@ -12,7 +12,7 @@ using System; using System.Collections.Generic; using System.Text; -namespace OpenTK.Math +namespace OpenTK { /// /// Represents a cubic bezier curve with two anchor and two control points. diff --git a/Source/OpenTK/Math/BezierCurveQuadric.cs b/Source/OpenTK/Math/BezierCurveQuadric.cs index 955b3243..941769b6 100644 --- a/Source/OpenTK/Math/BezierCurveQuadric.cs +++ b/Source/OpenTK/Math/BezierCurveQuadric.cs @@ -4,7 +4,7 @@ * This notice may not be removed from any source distribution. * See license.txt for licensing detailed licensing details. * - * Contributions by Georg Wächter. + * Contributions by Georg W�chter. */ #endregion @@ -12,7 +12,7 @@ using System; using System.Collections.Generic; using System.Text; -namespace OpenTK.Math +namespace OpenTK { /// /// Represents a quadric bezier curve with two anchor and one control point. diff --git a/Source/OpenTK/Math/Box2.cs b/Source/OpenTK/Math/Box2.cs index b6fdffe5..5bf223cc 100644 --- a/Source/OpenTK/Math/Box2.cs +++ b/Source/OpenTK/Math/Box2.cs @@ -8,8 +8,7 @@ using System; using System.Collections.Generic; using System.Text; using System.Runtime.InteropServices; - -namespace OpenTK.Math +namespace OpenTK { /// /// Defines a 2d box (rectangle). @@ -40,8 +39,8 @@ namespace OpenTK.Math /// /// Constructs a new Box2 with the specified dimensions. /// - /// An OpenTK.Math.Vector2 describing the top-left corner of the Box2. - /// An OpenTK.Math.Vector2 describing the bottom-right corner of the Box2. + /// AnOpenTK.Vector2 describing the top-left corner of the Box2. + /// An OpenTK.Vector2 describing the bottom-right corner of the Box2. public Box2(Vector2 topLeft, Vector2 bottomRight) { Left = topLeft.X; @@ -72,7 +71,7 @@ namespace OpenTK.Math /// The position of the left boundary. /// The position of the right boundary. /// The position of the bottom boundary. - /// A new OpenTK.Math.Box2 with the specfied dimensions. + /// A new OpenTK.Box2 with the specfied dimensions. public static Box2 FromTLRB(float top, float left, float right, float bottom) { return new Box2(left, top, right, bottom); diff --git a/Source/OpenTK/Math/Functions.cs b/Source/OpenTK/Math/Functions.cs index d138a594..1e7ebfb4 100644 --- a/Source/OpenTK/Math/Functions.cs +++ b/Source/OpenTK/Math/Functions.cs @@ -11,8 +11,7 @@ using System; using System.Collections.Generic; using System.Text; - -namespace OpenTK.Math +namespace OpenTK { /// /// Contains mathematical functions for the OpenTK.Math toolkit. diff --git a/Source/OpenTK/Math/Half.cs b/Source/OpenTK/Math/Half.cs index 6f9a5502..dc8b3838 100644 --- a/Source/OpenTK/Math/Half.cs +++ b/Source/OpenTK/Math/Half.cs @@ -61,7 +61,7 @@ using System.IO; using System.Runtime.InteropServices; using System.Runtime.Serialization; -namespace OpenTK.Math +namespace OpenTK { /// @@ -320,7 +320,7 @@ namespace OpenTK.Math #region Conversions /// - /// Converts a System.Single to a OpenTK.Math.Half. + /// Converts a System.Single to a OpenTK.Half. /// /// The value to convert. /// A @@ -334,7 +334,7 @@ namespace OpenTK.Math } /// - /// Converts a System.Double to a OpenTK.Math.Half. + /// Converts a System.Double to a OpenTK.Half. /// /// The value to convert. /// A @@ -348,7 +348,7 @@ namespace OpenTK.Math } /// - /// Converts a OpenTK.Math.Half to a System.Single. + /// Converts a OpenTK.Half to a System.Single. /// /// The value to convert. /// A @@ -362,7 +362,7 @@ namespace OpenTK.Math } /// - /// Converts a OpenTK.Math.Half to a System.Double. + /// Converts a OpenTK.Half to a System.Double. /// /// The value to convert. /// A @@ -440,9 +440,9 @@ namespace OpenTK.Math const int maxUlps = 1; /// - /// Returns a value indicating whether this instance is equal to a specified OpenTK.Math.Half value. + /// Returns a value indicating whether this instance is equal to a specified OpenTK.Half value. /// - /// OpenTK.Math.Half object to compare to this instance.. + /// OpenTK.Half object to compare to this instance.. /// True, if other is equal to this instance; false otherwise. public bool Equals(Half other) { @@ -480,12 +480,12 @@ namespace OpenTK.Math /// /// A signed number indicating the relative values of this instance and value. If the number is: /// Less than zero, then this instance is less than other, or this instance is not a number - /// (OpenTK.Math.Half.NaN) and other is a number. + /// (OpenTK.Half.NaN) and other is a number. /// Zero: this instance is equal to value, or both this instance and other - /// are not a number (OpenTK.Math.Half.NaN), OpenTK.Math.Half.PositiveInfinity, or - /// OpenTK.Math.Half.NegativeInfinity. + /// are not a number (OpenTK.Half.NaN), OpenTK.Half.PositiveInfinity, or + /// OpenTK.Half.NegativeInfinity. /// Greater than zero: this instance is greater than othrs, or this instance is a number - /// and other is not a number (OpenTK.Math.Half.NaN). + /// and other is not a number (OpenTK.Half.NaN). /// public int CompareTo(Half other) { diff --git a/Source/OpenTK/Math/Matrix3d.cs b/Source/OpenTK/Math/Matrix3d.cs index 777de8cd..29db6bd6 100644 --- a/Source/OpenTK/Math/Matrix3d.cs +++ b/Source/OpenTK/Math/Matrix3d.cs @@ -25,7 +25,7 @@ SOFTWARE. using System; using System.Runtime.InteropServices; -namespace OpenTK.Math +namespace OpenTK { // Todo: Remove this warning when the code goes public. #pragma warning disable 3019 @@ -321,7 +321,7 @@ namespace OpenTK.Math #region Equality /// Indicates whether the current matrix is equal to another matrix. - /// The OpenTK.Math.Matrix3d structure to compare with. + /// The OpenTK.Matrix3d structure to compare with. /// true if the current matrix is equal to the matrix parameter; otherwise, false. [CLSCompliant(false)] public bool Equals(Matrix3d matrix) @@ -339,7 +339,7 @@ namespace OpenTK.Math } /// Indicates whether the current matrix is equal to another matrix. - /// The OpenTK.Math.Matrix3d structure to compare to. + /// The OpenTK.Matrix3d structure to compare to. /// true if the current matrix is equal to the matrix parameter; otherwise, false. public bool Equals(ref Matrix3d matrix) { @@ -374,7 +374,7 @@ namespace OpenTK.Math } /// Indicates whether the current matrix is approximately equal to another matrix. - /// The OpenTK.Math.Matrix3d structure to compare with. + /// The OpenTK.Matrix3d structure to compare with. /// The limit below which the matrices are considered equal. /// true if the current matrix is approximately equal to the matrix parameter; otherwise, false. public bool EqualsApprox(ref Matrix3d matrix, double tolerance) diff --git a/Source/OpenTK/Math/Matrix4.cs b/Source/OpenTK/Math/Matrix4.cs index 4e42bb4a..8c896df3 100644 --- a/Source/OpenTK/Math/Matrix4.cs +++ b/Source/OpenTK/Math/Matrix4.cs @@ -25,7 +25,7 @@ SOFTWARE. using System; using System.Runtime.InteropServices; -namespace OpenTK.Math +namespace OpenTK { /// /// Represents a 4x4 Matrix diff --git a/Source/OpenTK/Math/Matrix4d.cs b/Source/OpenTK/Math/Matrix4d.cs index 7ef75a6e..3b3fcbab 100644 --- a/Source/OpenTK/Math/Matrix4d.cs +++ b/Source/OpenTK/Math/Matrix4d.cs @@ -25,7 +25,7 @@ SOFTWARE. using System; using System.Runtime.InteropServices; -namespace OpenTK.Math +namespace OpenTK { /// /// Represents a 4x4 Matrix with double-precision components. diff --git a/Source/OpenTK/Math/Quaternion.cs b/Source/OpenTK/Math/Quaternion.cs index 51305163..96eb83f0 100644 --- a/Source/OpenTK/Math/Quaternion.cs +++ b/Source/OpenTK/Math/Quaternion.cs @@ -27,7 +27,7 @@ using System.Runtime.InteropServices; using System.ComponentModel; using System.Xml.Serialization; -namespace OpenTK.Math +namespace OpenTK { /// /// Represents a Quaternion. @@ -74,7 +74,7 @@ namespace OpenTK.Math #region Properties /// - /// Gets or sets an OpenTK.Math.Vector3 with the X, Y and Z components of this instance. + /// Gets or sets an OpenTK.Vector3 with the X, Y and Z components of this instance. /// [Obsolete("Use Xyz property instead.")] [CLSCompliant(false)] @@ -83,7 +83,7 @@ namespace OpenTK.Math public Vector3 XYZ { get { return Xyz; } set { Xyz = value; } } /// - /// Gets or sets an OpenTK.Math.Vector3 with the X, Y and Z components of this instance. + /// Gets or sets an OpenTK.Vector3 with the X, Y and Z components of this instance. /// public Vector3 Xyz { get { return xyz; } set { xyz = value; } } diff --git a/Source/OpenTK/Math/Quaterniond.cs b/Source/OpenTK/Math/Quaterniond.cs index f045da7a..16f0612f 100644 --- a/Source/OpenTK/Math/Quaterniond.cs +++ b/Source/OpenTK/Math/Quaterniond.cs @@ -27,7 +27,7 @@ using System.Runtime.InteropServices; using System.ComponentModel; using System.Xml.Serialization; -namespace OpenTK.Math +namespace OpenTK { /// /// Represents a double-precision Quaternion. @@ -74,7 +74,7 @@ namespace OpenTK.Math #region Properties /// - /// Gets or sets an OpenTK.Math.Vector3d with the X, Y and Z components of this instance. + /// Gets or sets an OpenTK.Vector3d with the X, Y and Z components of this instance. /// [Obsolete("Use Xyz property instead.")] [CLSCompliant(false)] @@ -83,7 +83,7 @@ namespace OpenTK.Math public Vector3d XYZ { get { return Xyz; } set { Xyz = value; } } /// - /// Gets or sets an OpenTK.Math.Vector3d with the X, Y and Z components of this instance. + /// Gets or sets an OpenTK.Vector3d with the X, Y and Z components of this instance. /// public Vector3d Xyz { get { return xyz; } set { xyz = value; } } diff --git a/Source/OpenTK/Math/Vector2.cs b/Source/OpenTK/Math/Vector2.cs index edf2f09c..84b72efc 100644 --- a/Source/OpenTK/Math/Vector2.cs +++ b/Source/OpenTK/Math/Vector2.cs @@ -24,8 +24,7 @@ SOFTWARE. using System; using System.Runtime.InteropServices; - -namespace OpenTK.Math +namespace OpenTK { /// Represents a 2D vector using two single-precision floating-point numbers. /// @@ -200,7 +199,7 @@ namespace OpenTK.Math { get { - return 1.0f / OpenTK.Math.Functions.InverseSqrtFast(X * X + Y * Y); + return 1.0f /OpenTK.Functions.InverseSqrtFast(X * X + Y * Y); } } diff --git a/Source/OpenTK/Math/Vector2d.cs b/Source/OpenTK/Math/Vector2d.cs index cdfca9b2..67e30773 100644 --- a/Source/OpenTK/Math/Vector2d.cs +++ b/Source/OpenTK/Math/Vector2d.cs @@ -25,7 +25,7 @@ SOFTWARE. using System; using System.Runtime.InteropServices; -namespace OpenTK.Math +namespace OpenTK { /// Represents a 2D vector using two double-precision floating-point numbers. [Serializable] @@ -686,7 +686,7 @@ namespace OpenTK.Math return !left.Equals(right); } - /// Converts OpenTK.Math.Vector2 to OpenTK.Math.Vector2d. + /// Converts OpenTK.Vector2 to OpenTK.Vector2d. /// The Vector2 to convert. /// The resulting Vector2d. public static explicit operator Vector2d(Vector2 v2) @@ -694,7 +694,7 @@ namespace OpenTK.Math return new Vector2d(v2.X, v2.Y); } - /// Converts OpenTK.Math.Vector2d to OpenTK.Math.Vector2. + /// Converts OpenTK.Vector2d to OpenTK.Vector2. /// The Vector2d to convert. /// The resulting Vector2. public static explicit operator Vector2(Vector2d v2d) diff --git a/Source/OpenTK/Math/Vector2h.cs b/Source/OpenTK/Math/Vector2h.cs index df720fa7..1b0cbe5b 100644 --- a/Source/OpenTK/Math/Vector2h.cs +++ b/Source/OpenTK/Math/Vector2h.cs @@ -27,7 +27,7 @@ using System.IO; using System.Runtime.InteropServices; using System.Runtime.Serialization; -namespace OpenTK.Math +namespace OpenTK { /// 2-component Vector of the Half type. Occupies 4 Byte total. @@ -83,7 +83,7 @@ namespace OpenTK.Math /// /// The new Half2 instance will convert the Vector2 into 16-Bit Half precision floating point. /// - /// OpenTK.Math.Vector2 + /// OpenTK.Vector2 [CLSCompliant(false)] public Vector2h(Vector2 v) { @@ -94,7 +94,7 @@ namespace OpenTK.Math /// /// The new Half2 instance will convert the Vector2 into 16-Bit Half precision floating point. /// - /// OpenTK.Math.Vector2 + /// OpenTK.Vector2 /// Enable checks that will throw if the conversion result is not meaningful. [CLSCompliant(false)] public Vector2h(Vector2 v, bool throwOnError) @@ -107,7 +107,7 @@ namespace OpenTK.Math /// The new Half2 instance will convert the Vector2 into 16-Bit Half precision floating point. /// This is the fastest constructor. /// - /// OpenTK.Math.Vector2 + /// OpenTK.Vector2 public Vector2h(ref Vector2 v) { X = new Half(v.X); @@ -117,7 +117,7 @@ namespace OpenTK.Math /// /// The new Half2 instance will convert the Vector2 into 16-Bit Half precision floating point. /// - /// OpenTK.Math.Vector2 + /// OpenTK.Vector2 /// Enable checks that will throw if the conversion result is not meaningful. public Vector2h(ref Vector2 v, bool throwOnError) { @@ -128,7 +128,7 @@ namespace OpenTK.Math /// /// The new Half2 instance will convert the Vector2d into 16-Bit Half precision floating point. /// - /// OpenTK.Math.Vector2d + /// OpenTK.Vector2d public Vector2h(Vector2d v) { X = new Half(v.X); @@ -138,7 +138,7 @@ namespace OpenTK.Math /// /// The new Half2 instance will convert the Vector2d into 16-Bit Half precision floating point. /// - /// OpenTK.Math.Vector2d + /// OpenTK.Vector2d /// Enable checks that will throw if the conversion result is not meaningful. public Vector2h(Vector2d v, bool throwOnError) { @@ -150,7 +150,7 @@ namespace OpenTK.Math /// The new Half2 instance will convert the Vector2d into 16-Bit Half precision floating point. /// This is the faster constructor. /// - /// OpenTK.Math.Vector2d + /// OpenTK.Vector2d [CLSCompliant(false)] public Vector2h(ref Vector2d v) { @@ -161,7 +161,7 @@ namespace OpenTK.Math /// /// The new Half2 instance will convert the Vector2d into 16-Bit Half precision floating point. /// - /// OpenTK.Math.Vector2d + /// OpenTK.Vector2d /// Enable checks that will throw if the conversion result is not meaningful. [CLSCompliant(false)] public Vector2h(ref Vector2d v, bool throwOnError) @@ -177,7 +177,7 @@ namespace OpenTK.Math /// /// Returns this Half2 instance's contents as Vector2. /// - /// OpenTK.Math.Vector2 + /// OpenTK.Vector2 public Vector2 ToVector2() { return new Vector2(X, Y); @@ -195,7 +195,7 @@ namespace OpenTK.Math #region Conversions - /// Converts OpenTK.Math.Vector2 to OpenTK.Math.Half2. + /// Converts OpenTK.Vector2 to OpenTK.Half2. /// The Vector2 to convert. /// The resulting Half vector. public static explicit operator Vector2h(Vector2 v) @@ -203,7 +203,7 @@ namespace OpenTK.Math return new Vector2h(v); } - /// Converts OpenTK.Math.Vector2d to OpenTK.Math.Half2. + /// Converts OpenTK.Vector2d to OpenTK.Half2. /// The Vector2d to convert. /// The resulting Half vector. public static explicit operator Vector2h(Vector2d v) @@ -211,7 +211,7 @@ namespace OpenTK.Math return new Vector2h(v); } - /// Converts OpenTK.Math.Half2 to OpenTK.Math.Vector2. + /// Converts OpenTK.Half2 to OpenTK.Vector2. /// The Half2 to convert. /// The resulting Vector2. public static explicit operator Vector2(Vector2h h) @@ -219,7 +219,7 @@ namespace OpenTK.Math return new Vector2(h.X, h.Y); } - /// Converts OpenTK.Math.Half2 to OpenTK.Math.Vector2d. + /// Converts OpenTK.Half2 to OpenTK.Vector2d. /// The Half2 to convert. /// The resulting Vector2d. public static explicit operator Vector2d(Vector2h h) @@ -280,8 +280,8 @@ namespace OpenTK.Math #region IEquatable Members - /// Returns a value indicating whether this instance is equal to a specified OpenTK.Math.Half2 vector. - /// OpenTK.Math.Half2 to compare to this instance.. + /// Returns a value indicating whether this instance is equal to a specified OpenTK.Half2 vector. + /// OpenTK.Half2 to compare to this instance.. /// True, if other is equal to this instance; false otherwise. public bool Equals(Vector2h other) { diff --git a/Source/OpenTK/Math/Vector3.cs b/Source/OpenTK/Math/Vector3.cs index dd01e087..cf09708d 100644 --- a/Source/OpenTK/Math/Vector3.cs +++ b/Source/OpenTK/Math/Vector3.cs @@ -25,8 +25,7 @@ SOFTWARE. using System; using System.Runtime.InteropServices; using System.Xml.Serialization; - -namespace OpenTK.Math +namespace OpenTK { /// /// Represents a 3D vector using three single-precision floating-point numbers. @@ -216,7 +215,7 @@ namespace OpenTK.Math { get { - return 1.0f / OpenTK.Math.Functions.InverseSqrtFast(X * X + Y * Y + Z * Z); + return 1.0f /OpenTK.Functions.InverseSqrtFast(X * X + Y * Y + Z * Z); } } @@ -1014,7 +1013,7 @@ namespace OpenTK.Math #region Swizzle /// - /// Gets or sets an OpenTK.Math.Vector2 with the X and Y components of this instance. + /// Gets or sets an OpenTK.Vector2 with the X and Y components of this instance. /// [XmlIgnore] public Vector2 Xy { get { return new Vector2(X, Y); } set { X = value.X; Y = value.Y; } } diff --git a/Source/OpenTK/Math/Vector3d.cs b/Source/OpenTK/Math/Vector3d.cs index c962fb34..babda74f 100644 --- a/Source/OpenTK/Math/Vector3d.cs +++ b/Source/OpenTK/Math/Vector3d.cs @@ -26,7 +26,7 @@ using System; using System.Runtime.InteropServices; using System.Xml.Serialization; -namespace OpenTK.Math +namespace OpenTK { /// /// Represents a 3D vector using three double-precision floating-point numbers. @@ -214,7 +214,7 @@ namespace OpenTK.Math { get { - return 1.0f / OpenTK.Math.Functions.InverseSqrtFast(X * X + Y * Y + Z * Z); + return 1.0f / OpenTK.Functions.InverseSqrtFast(X * X + Y * Y + Z * Z); } } @@ -1010,7 +1010,7 @@ namespace OpenTK.Math #region Swizzle /// - /// Gets or sets an OpenTK.Math.Vector2d with the X and Y components of this instance. + /// Gets or sets an OpenTK.Vector2d with the X and Y components of this instance. /// [XmlIgnore] public Vector2d Xy { get { return new Vector2d(X, Y); } set { X = value.X; Y = value.Y; } } @@ -1078,7 +1078,7 @@ namespace OpenTK.Math return !left.Equals(right); } - /// Converts OpenTK.Math.Vector3 to OpenTK.Math.Vector3d. + /// Converts OpenTK.Vector3 to OpenTK.Vector3d. /// The Vector3 to convert. /// The resulting Vector3d. public static explicit operator Vector3d(Vector3 v3) @@ -1086,7 +1086,7 @@ namespace OpenTK.Math return new Vector3d(v3.X, v3.Y, v3.Z); } - /// Converts OpenTK.Math.Vector3d to OpenTK.Math.Vector3. + /// Converts OpenTK.Vector3d to OpenTK.Vector3. /// The Vector3d to convert. /// The resulting Vector3. public static explicit operator Vector3(Vector3d v3d) diff --git a/Source/OpenTK/Math/Vector3h.cs b/Source/OpenTK/Math/Vector3h.cs index 1992e118..58825ca6 100644 --- a/Source/OpenTK/Math/Vector3h.cs +++ b/Source/OpenTK/Math/Vector3h.cs @@ -28,7 +28,7 @@ using System.Runtime.InteropServices; using System.Runtime.Serialization; using System.Xml.Serialization; -namespace OpenTK.Math +namespace OpenTK { /// /// 3-component Vector of the Half type. Occupies 6 Byte total. @@ -94,7 +94,7 @@ namespace OpenTK.Math /// /// The new Half3 instance will convert the Vector3 into 16-Bit Half precision floating point. /// - /// OpenTK.Math.Vector3 + /// OpenTK.Vector3 [CLSCompliant(false)] public Vector3h(Vector3 v) { @@ -106,7 +106,7 @@ namespace OpenTK.Math /// /// The new Half3 instance will convert the Vector3 into 16-Bit Half precision floating point. /// - /// OpenTK.Math.Vector3 + /// OpenTK.Vector3 /// Enable checks that will throw if the conversion result is not meaningful. [CLSCompliant(false)] public Vector3h(Vector3 v, bool throwOnError) @@ -120,7 +120,7 @@ namespace OpenTK.Math /// The new Half3 instance will convert the Vector3 into 16-Bit Half precision floating point. /// This is the fastest constructor. /// - /// OpenTK.Math.Vector3 + /// OpenTK.Vector3 public Vector3h(ref Vector3 v) { X = new Half(v.X); @@ -131,7 +131,7 @@ namespace OpenTK.Math /// /// The new Half3 instance will convert the Vector3 into 16-Bit Half precision floating point. /// - /// OpenTK.Math.Vector3 + /// OpenTK.Vector3 /// Enable checks that will throw if the conversion result is not meaningful. public Vector3h(ref Vector3 v, bool throwOnError) { @@ -143,7 +143,7 @@ namespace OpenTK.Math /// /// The new Half3 instance will convert the Vector3d into 16-Bit Half precision floating point. /// - /// OpenTK.Math.Vector3d + /// OpenTK.Vector3d public Vector3h(Vector3d v) { X = new Half(v.X); @@ -154,7 +154,7 @@ namespace OpenTK.Math /// /// The new Half3 instance will convert the Vector3d into 16-Bit Half precision floating point. /// - /// OpenTK.Math.Vector3d + /// OpenTK.Vector3d /// Enable checks that will throw if the conversion result is not meaningful. public Vector3h(Vector3d v, bool throwOnError) { @@ -167,7 +167,7 @@ namespace OpenTK.Math /// The new Half3 instance will convert the Vector3d into 16-Bit Half precision floating point. /// This is the faster constructor. /// - /// OpenTK.Math.Vector3d + /// OpenTK.Vector3d [CLSCompliant(false)] public Vector3h(ref Vector3d v) { @@ -179,7 +179,7 @@ namespace OpenTK.Math /// /// The new Half3 instance will convert the Vector3d into 16-Bit Half precision floating point. /// - /// OpenTK.Math.Vector3d + /// OpenTK.Vector3d /// Enable checks that will throw if the conversion result is not meaningful. [CLSCompliant(false)] public Vector3h(ref Vector3d v, bool throwOnError) @@ -194,7 +194,7 @@ namespace OpenTK.Math #region Swizzle /// - /// Gets or sets an OpenTK.Math.Vector2h with the X and Y components of this instance. + /// Gets or sets an OpenTK.Vector2h with the X and Y components of this instance. /// [XmlIgnore] public Vector2h Xy { get { return new Vector2h(X, Y); } set { X = value.X; Y = value.Y; } } @@ -206,7 +206,7 @@ namespace OpenTK.Math /// /// Returns this Half3 instance's contents as Vector3. /// - /// OpenTK.Math.Vector3 + /// OpenTK.Vector3 public Vector3 ToVector3() { return new Vector3(X, Y, Z); @@ -224,7 +224,7 @@ namespace OpenTK.Math #region Conversions - /// Converts OpenTK.Math.Vector3 to OpenTK.Math.Half3. + /// Converts OpenTK.Vector3 to OpenTK.Half3. /// The Vector3 to convert. /// The resulting Half vector. public static explicit operator Vector3h(Vector3 v3f) @@ -232,7 +232,7 @@ namespace OpenTK.Math return new Vector3h(v3f); } - /// Converts OpenTK.Math.Vector3d to OpenTK.Math.Half3. + /// Converts OpenTK.Vector3d to OpenTK.Half3. /// The Vector3d to convert. /// The resulting Half vector. public static explicit operator Vector3h(Vector3d v3d) @@ -240,7 +240,7 @@ namespace OpenTK.Math return new Vector3h(v3d); } - /// Converts OpenTK.Math.Half3 to OpenTK.Math.Vector3. + /// Converts OpenTK.Half3 to OpenTK.Vector3. /// The Half3 to convert. /// The resulting Vector3. public static explicit operator Vector3(Vector3h h3) @@ -252,7 +252,7 @@ namespace OpenTK.Math return result; } - /// Converts OpenTK.Math.Half3 to OpenTK.Math.Vector3d. + /// Converts OpenTK.Half3 to OpenTK.Vector3d. /// The Half3 to convert. /// The resulting Vector3d. public static explicit operator Vector3d(Vector3h h3) @@ -321,8 +321,8 @@ namespace OpenTK.Math #region IEquatable Members - /// Returns a value indicating whether this instance is equal to a specified OpenTK.Math.Half3 vector. - /// OpenTK.Math.Half3 to compare to this instance.. + /// Returns a value indicating whether this instance is equal to a specified OpenTK.Half3 vector. + /// OpenTK.Half3 to compare to this instance.. /// True, if other is equal to this instance; false otherwise. public bool Equals(Vector3h other) { diff --git a/Source/OpenTK/Math/Vector4.cs b/Source/OpenTK/Math/Vector4.cs index c8f73b68..06d4472c 100644 --- a/Source/OpenTK/Math/Vector4.cs +++ b/Source/OpenTK/Math/Vector4.cs @@ -25,8 +25,7 @@ SOFTWARE. using System; using System.Runtime.InteropServices; using System.Xml.Serialization; - -namespace OpenTK.Math +namespace OpenTK { /// Represents a 4D vector using four single-precision floating-point numbers. /// @@ -278,7 +277,7 @@ namespace OpenTK.Math { get { - return 1.0f / OpenTK.Math.Functions.InverseSqrtFast(X * X + Y * Y + Z * Z + W * W); + return 1.0f /OpenTK.Functions.InverseSqrtFast(X * X + Y * Y + Z * Z + W * W); } } @@ -833,13 +832,13 @@ namespace OpenTK.Math #region Swizzle /// - /// Gets or sets an OpenTK.Math.Vector2 with the X and Y components of this instance. + /// Gets or sets an OpenTK.Vector2 with the X and Y components of this instance. /// [XmlIgnore] public Vector2 Xy { get { return new Vector2(X, Y); } set { X = value.X; Y = value.Y; } } /// - /// Gets or sets an OpenTK.Math.Vector3 with the X, Y and Z components of this instance. + /// Gets or sets an OpenTK.Vector3 with the X, Y and Z components of this instance. /// [XmlIgnore] public Vector3 Xyz { get { return new Vector3(X, Y, Z); } set { X = value.X; Y = value.Y; Z = value.Z; } } diff --git a/Source/OpenTK/Math/Vector4d.cs b/Source/OpenTK/Math/Vector4d.cs index 9bf47e45..c22bea23 100644 --- a/Source/OpenTK/Math/Vector4d.cs +++ b/Source/OpenTK/Math/Vector4d.cs @@ -26,7 +26,7 @@ using System; using System.Runtime.InteropServices; using System.Xml.Serialization; -namespace OpenTK.Math +namespace OpenTK { /// Represents a 4D vector using four double-precision floating-point numbers. [Serializable] @@ -275,7 +275,7 @@ namespace OpenTK.Math { get { - return 1.0f / OpenTK.Math.Functions.InverseSqrtFast(X * X + Y * Y + Z * Z + W * W); + return 1.0f / OpenTK.Functions.InverseSqrtFast(X * X + Y * Y + Z * Z + W * W); } } @@ -829,13 +829,13 @@ namespace OpenTK.Math #region Swizzle /// - /// Gets or sets an OpenTK.Math.Vector2d with the X and Y components of this instance. + /// Gets or sets an OpenTK.Vector2d with the X and Y components of this instance. /// [XmlIgnore] public Vector2d Xy { get { return new Vector2d(X, Y); } set { X = value.X; Y = value.Y; } } /// - /// Gets or sets an OpenTK.Math.Vector3d with the X, Y and Z components of this instance. + /// Gets or sets an OpenTK.Vector3d with the X, Y and Z components of this instance. /// [XmlIgnore] public Vector3d Xyz { get { return new Vector3d(X, Y, Z); } set { X = value.X; Y = value.Y; Z = value.Z; } } @@ -923,7 +923,7 @@ namespace OpenTK.Math } } - /// Converts OpenTK.Math.Vector4 to OpenTK.Math.Vector4d. + /// Converts OpenTK.Vector4 to OpenTK.Vector4d. /// The Vector4 to convert. /// The resulting Vector4d. public static explicit operator Vector4d(Vector4 v4) @@ -931,7 +931,7 @@ namespace OpenTK.Math return new Vector4d(v4.X, v4.Y, v4.Z, v4.W); } - /// Converts OpenTK.Math.Vector4d to OpenTK.Math.Vector4. + /// Converts OpenTK.Vector4d to OpenTK.Vector4. /// The Vector4d to convert. /// The resulting Vector4. public static explicit operator Vector4(Vector4d v4d) diff --git a/Source/OpenTK/Math/Vector4h.cs b/Source/OpenTK/Math/Vector4h.cs index ac44de22..f6b2e617 100644 --- a/Source/OpenTK/Math/Vector4h.cs +++ b/Source/OpenTK/Math/Vector4h.cs @@ -28,7 +28,7 @@ using System.Runtime.InteropServices; using System.Runtime.Serialization; using System.Xml.Serialization; -namespace OpenTK.Math +namespace OpenTK { /// /// 4-component Vector of the Half type. Occupies 8 Byte total. @@ -103,7 +103,7 @@ namespace OpenTK.Math /// /// The new Half4 instance will convert the Vector4 into 16-Bit Half precision floating point. /// - /// OpenTK.Math.Vector4 + /// OpenTK.Vector4 [CLSCompliant(false)] public Vector4h(Vector4 v) { @@ -116,7 +116,7 @@ namespace OpenTK.Math /// /// The new Half4 instance will convert the Vector4 into 16-Bit Half precision floating point. /// - /// OpenTK.Math.Vector4 + /// OpenTK.Vector4 /// Enable checks that will throw if the conversion result is not meaningful. [CLSCompliant(false)] public Vector4h(Vector4 v, bool throwOnError) @@ -131,7 +131,7 @@ namespace OpenTK.Math /// The new Half4 instance will convert the Vector4 into 16-Bit Half precision floating point. /// This is the fastest constructor. /// - /// OpenTK.Math.Vector4 + /// OpenTK.Vector4 public Vector4h(ref Vector4 v) { X = new Half(v.X); @@ -143,7 +143,7 @@ namespace OpenTK.Math /// /// The new Half4 instance will convert the Vector4 into 16-Bit Half precision floating point. /// - /// OpenTK.Math.Vector4 + /// OpenTK.Vector4 /// Enable checks that will throw if the conversion result is not meaningful. public Vector4h(ref Vector4 v, bool throwOnError) { @@ -156,7 +156,7 @@ namespace OpenTK.Math /// /// The new Half4 instance will convert the Vector4d into 16-Bit Half precision floating point. /// - /// OpenTK.Math.Vector4d + /// OpenTK.Vector4d public Vector4h(Vector4d v) { X = new Half(v.X); @@ -168,7 +168,7 @@ namespace OpenTK.Math /// /// The new Half4 instance will convert the Vector4d into 16-Bit Half precision floating point. /// - /// OpenTK.Math.Vector4d + /// OpenTK.Vector4d /// Enable checks that will throw if the conversion result is not meaningful. public Vector4h(Vector4d v, bool throwOnError) { @@ -182,7 +182,7 @@ namespace OpenTK.Math /// The new Half4 instance will convert the Vector4d into 16-Bit Half precision floating point. /// This is the faster constructor. /// - /// OpenTK.Math.Vector4d + /// OpenTK.Vector4d [CLSCompliant(false)] public Vector4h(ref Vector4d v) { @@ -195,7 +195,7 @@ namespace OpenTK.Math /// /// The new Half4 instance will convert the Vector4d into 16-Bit Half precision floating point. /// - /// OpenTK.Math.Vector4d + /// OpenTK.Vector4d /// Enable checks that will throw if the conversion result is not meaningful. [CLSCompliant(false)] public Vector4h(ref Vector4d v, bool throwOnError) @@ -211,13 +211,13 @@ namespace OpenTK.Math #region Swizzle /// - /// Gets or sets an OpenTK.Math.Vector2h with the X and Y components of this instance. + /// Gets or sets an OpenTK.Vector2h with the X and Y components of this instance. /// [XmlIgnore] public Vector2h Xy { get { return new Vector2h(X, Y); } set { X = value.X; Y = value.Y; } } /// - /// Gets or sets an OpenTK.Math.Vector3h with the X, Y and Z components of this instance. + /// Gets or sets an OpenTK.Vector3h with the X, Y and Z components of this instance. /// [XmlIgnore] public Vector3h Xyz { get { return new Vector3h(X, Y, Z); } set { X = value.X; Y = value.Y; Z = value.Z; } } @@ -229,7 +229,7 @@ namespace OpenTK.Math /// /// Returns this Half4 instance's contents as Vector4. /// - /// OpenTK.Math.Vector4 + /// OpenTK.Vector4 public Vector4 ToVector4() { return new Vector4(X, Y, Z, W); @@ -247,7 +247,7 @@ namespace OpenTK.Math #region Conversions - /// Converts OpenTK.Math.Vector4 to OpenTK.Math.Half4. + /// Converts OpenTK.Vector4 to OpenTK.Half4. /// The Vector4 to convert. /// The resulting Half vector. public static explicit operator Vector4h(Vector4 v4f) @@ -255,7 +255,7 @@ namespace OpenTK.Math return new Vector4h(v4f); } - /// Converts OpenTK.Math.Vector4d to OpenTK.Math.Half4. + /// Converts OpenTK.Vector4d to OpenTK.Half4. /// The Vector4d to convert. /// The resulting Half vector. public static explicit operator Vector4h(Vector4d v4d) @@ -263,7 +263,7 @@ namespace OpenTK.Math return new Vector4h(v4d); } - /// Converts OpenTK.Math.Half4 to OpenTK.Math.Vector4. + /// Converts OpenTK.Half4 to OpenTK.Vector4. /// The Half4 to convert. /// The resulting Vector4. public static explicit operator Vector4(Vector4h h4) @@ -276,7 +276,7 @@ namespace OpenTK.Math return result; } - /// Converts OpenTK.Math.Half4 to OpenTK.Math.Vector4d. + /// Converts OpenTK.Half4 to OpenTK.Vector4d. /// The Half4 to convert. /// The resulting Vector4d. public static explicit operator Vector4d(Vector4h h4) @@ -350,8 +350,8 @@ namespace OpenTK.Math #region IEquatable Members - /// Returns a value indicating whether this instance is equal to a specified OpenTK.Math.Half4 vector. - /// OpenTK.Math.Half4 to compare to this instance.. + /// Returns a value indicating whether this instance is equal to a specified OpenTK.Half4 vector. + /// OpenTK.Half4 to compare to this instance.. /// True, if other is equal to this instance; false otherwise. public bool Equals(Vector4h other) { diff --git a/Source/Utilities/Fonts/DisplayListTextPrinter.cs b/Source/Utilities/Fonts/DisplayListTextPrinter.cs index bf4d8967..2db546e2 100644 --- a/Source/Utilities/Fonts/DisplayListTextPrinter.cs +++ b/Source/Utilities/Fonts/DisplayListTextPrinter.cs @@ -9,7 +9,6 @@ using System.Collections.Generic; using System.Text; using OpenTK.Graphics.OpenGL; -using OpenTK.Math; namespace OpenTK.Graphics { diff --git a/Source/Utilities/Fonts/IFont.cs b/Source/Utilities/Fonts/IFont.cs index 9e49f4bd..d73ddbb9 100644 --- a/Source/Utilities/Fonts/IFont.cs +++ b/Source/Utilities/Fonts/IFont.cs @@ -8,7 +8,6 @@ using System; using System.Collections.Generic; using System.Text; -using OpenTK.Math; namespace OpenTK.Graphics { diff --git a/Source/Utilities/Fonts/IPrinterImplementation.cs b/Source/Utilities/Fonts/IPrinterImplementation.cs index c476dc1d..08218bf9 100644 --- a/Source/Utilities/Fonts/IPrinterImplementation.cs +++ b/Source/Utilities/Fonts/IPrinterImplementation.cs @@ -8,7 +8,6 @@ using System; using System.Collections.Generic; using System.Text; -using OpenTK.Math; namespace OpenTK.Graphics { diff --git a/Source/Utilities/Fonts/TextureFont.cs b/Source/Utilities/Fonts/TextureFont.cs index 57cf80cf..cddce112 100644 --- a/Source/Utilities/Fonts/TextureFont.cs +++ b/Source/Utilities/Fonts/TextureFont.cs @@ -13,7 +13,6 @@ using System.Drawing.Imaging; using System.Runtime.InteropServices; using System.Diagnostics; -using OpenTK.Math; using OpenTK.Graphics; using OpenTK.Platform; diff --git a/Source/Utilities/Fonts/VboTextPrinter.cs b/Source/Utilities/Fonts/VboTextPrinter.cs index 76ce9609..15333ddb 100644 --- a/Source/Utilities/Fonts/VboTextPrinter.cs +++ b/Source/Utilities/Fonts/VboTextPrinter.cs @@ -10,7 +10,6 @@ using System.Text; using System.Runtime.InteropServices; using OpenTK.Graphics.OpenGL; -using OpenTK.Math; namespace OpenTK.Graphics { diff --git a/Source/Utilities/Graphics/Text/GL1TextOutputProvider.cs b/Source/Utilities/Graphics/Text/GL1TextOutputProvider.cs index fd7c9d8c..128782ab 100644 --- a/Source/Utilities/Graphics/Text/GL1TextOutputProvider.cs +++ b/Source/Utilities/Graphics/Text/GL1TextOutputProvider.cs @@ -27,7 +27,7 @@ using System.Collections.Generic; using System.Drawing; -using OpenTK.Math; + using System; namespace OpenTK.Graphics.Text diff --git a/Source/Utilities/Graphics/TextPrinter.cs b/Source/Utilities/Graphics/TextPrinter.cs index cb8aac74..67d60320 100644 --- a/Source/Utilities/Graphics/TextPrinter.cs +++ b/Source/Utilities/Graphics/TextPrinter.cs @@ -14,7 +14,6 @@ using System.Text.RegularExpressions; using System.Runtime.InteropServices; using System.Diagnostics; -using OpenTK.Math; using OpenTK.Graphics; using OpenTK.Graphics.Text; using OpenTK.Platform;