]> git.tdb.fi Git - libs/gl.git/blobdiff - source/matrix.cpp
Check the flat qualifier from the correct member
[libs/gl.git] / source / matrix.cpp
diff --git a/source/matrix.cpp b/source/matrix.cpp
deleted file mode 100644 (file)
index 7a91078..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-/* $Id$
-
-This file is part of libmspgl
-Copyright © 2007  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
-#include "matrix.h"
-
-namespace Msp {
-namespace GL {
-
-void matrix_mode(MatrixMode m)
-{
-       glMatrixMode(m);
-}
-
-void load_identity()
-{
-       glLoadIdentity();
-}
-
-void mult_matrix(const float *matrix)
-{
-       glMultMatrixf(matrix);
-}
-
-void mult_matrix(const double *matrix)
-{
-       glMultMatrixd(matrix);
-}
-
-void push_matrix()
-{
-       glPushMatrix();
-}
-
-void pop_matrix()
-{
-       glPopMatrix();
-}
-
-} // namespace GL
-} // namespace Msp