]> 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 66848b2..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-#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 push_matrix();
-void pop_matrix();
-
-} // namespace GL
-} // namespace Msp
-
-#endif