]> git.tdb.fi Git - libs/gl.git/blobdiff - source/core/matrix.h
Adapt to changes in mspmath
[libs/gl.git] / source / core / matrix.h
index 71531ef68b2e4d17abd27fa7bed70be7154edcbd..4a51ddce65da8af12b2c1efd04e9ed10d08027d4 100644 (file)
@@ -2,16 +2,16 @@
 #define MSP_GL_MATRIX_H_
 
 #include <msp/geometry/angle.h>
-#include <msp/linal/squarematrix.h>
+#include <msp/linal/matrix.h>
 #include "vector.h"
 
 namespace Msp {
 namespace GL {
 
-class Matrix: public LinAl::SquareMatrix<float, 4>
+class Matrix: public LinAl::Matrix<float, 4, 4>
 {
 private:
-       typedef LinAl::SquareMatrix<float, 4> Base;
+       typedef LinAl::Matrix<float, 4, 4> Base;
        typedef Geometry::Angle<float> Angle;
 
 public: