diff --git a/Source/OpenTK/Graphics/GL/GLHelper.cs b/Source/OpenTK/Graphics/GL/GLHelper.cs index 8d82d61b..9a6100dc 100644 --- a/Source/OpenTK/Graphics/GL/GLHelper.cs +++ b/Source/OpenTK/Graphics/GL/GLHelper.cs @@ -796,51 +796,51 @@ namespace OpenTK.Graphics Delegates.glMultTransposeMatrixf((Single*)m_ptr); } } - } - - public static void MultMatrix(ref Matrix4d mat) - { - unsafe - { - fixed (Double* m_ptr = &mat.Row0.X) - { - Delegates.glMultMatrixd((Double*)m_ptr); - } - } - } - - public static void LoadMatrix(ref Matrix4d mat) - { - unsafe - { - fixed (Double* m_ptr = &mat.Row0.X) - { - Delegates.glLoadMatrixd((Double*)m_ptr); - } - } - } - - public static void LoadTransposeMatrix(ref Matrix4d mat) - { - unsafe - { - fixed (Double* m_ptr = &mat.Row0.X) - { - Delegates.glLoadTransposeMatrixd((Double*)m_ptr); - } - } - } - - public static void MultTransposeMatrix(ref Matrix4d mat) - { - unsafe - { - fixed (Double* m_ptr = &mat.Row0.X) - { - Delegates.glMultTransposeMatrixd((Double*)m_ptr); - } - } - } + } + + public static void MultMatrix(ref Matrix4d mat) + { + unsafe + { + fixed (Double* m_ptr = &mat.Row0.X) + { + Delegates.glMultMatrixd((Double*)m_ptr); + } + } + } + + public static void LoadMatrix(ref Matrix4d mat) + { + unsafe + { + fixed (Double* m_ptr = &mat.Row0.X) + { + Delegates.glLoadMatrixd((Double*)m_ptr); + } + } + } + + public static void LoadTransposeMatrix(ref Matrix4d mat) + { + unsafe + { + fixed (Double* m_ptr = &mat.Row0.X) + { + Delegates.glLoadTransposeMatrixd((Double*)m_ptr); + } + } + } + + public static void MultTransposeMatrix(ref Matrix4d mat) + { + unsafe + { + fixed (Double* m_ptr = &mat.Row0.X) + { + Delegates.glMultTransposeMatrixd((Double*)m_ptr); + } + } + } #endregion