]> git.tdb.fi Git - libs/gl.git/blobdiff - source/matrix.h
Check the flat qualifier from the correct member
[libs/gl.git] / source / matrix.h
diff --git a/source/matrix.h b/source/matrix.h
deleted file mode 100644 (file)
index b4cc339..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-/* $Id$
-
-This file is part of libmspgl
-Copyright © 2007  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
-#ifndef MSP_GL_MATRIX_H_
-#define MSP_GL_MATRIX_H_
-
-#include <GL/gl.h>
-
-namespace Msp {
-namespace GL {
-
-enum MatrixMode
-{
-       MODELVIEW=GL_MODELVIEW,
-       PROJECTION=GL_PROJECTION,
-       TEXTURE=GL_TEXTURE
-};
-
-void matrix_mode(MatrixMode);
-void load_identity();
-void mult_matrix(const float *);
-void mult_matrix(const double *);
-void push_matrix();
-void pop_matrix();
-
-} // namespace GL
-} // namespace Msp
-
-#endif