Fixed line endings.
This commit is contained in:
parent
00dc559578
commit
eb811d16b7
1 changed files with 45 additions and 45 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue