X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fmatrix.h;h=b574c7359506bf05e9cecc46fd9f4593f721bab2;hb=b617c5d7b5283ad260a77f01e42e6170cabbc03d;hp=13de6c8f4542030eb22e35647c443e6e473640fb;hpb=2316272b57cf9bea26d2c35b9451910c169efafa;p=libs%2Fgl.git diff --git a/source/matrix.h b/source/matrix.h index 13de6c8f..b574c735 100644 --- a/source/matrix.h +++ b/source/matrix.h @@ -15,13 +15,15 @@ namespace GL { enum MatrixMode { - MODELVIEW=GL_MODELVIEW, - PROJECTION=GL_PROJECTION, - TEXTURE=GL_TEXTURE + MODELVIEW = GL_MODELVIEW, + PROJECTION = GL_PROJECTION, + TEXTURE = GL_TEXTURE }; void matrix_mode(MatrixMode); void load_identity(); +void load_matrix(const float *); +void load_matrix(const double *); void mult_matrix(const float *); void mult_matrix(const double *); void push_matrix();