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