X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fmatrix.h;h=2e1096f5f4586d7f6c05ea0620f59a5425b4b450;hp=fe67ad7e4bf749693eedae982a2cbb0d10b40884;hb=HEAD;hpb=a4ec5410595ddf37bfbc0e85ad87d31a9cbf94f1 diff --git a/source/matrix.h b/source/matrix.h deleted file mode 100644 index fe67ad7e..00000000 --- a/source/matrix.h +++ /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.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