Merge pull request #1297 from marauder2k9-torque/matrix-templated

Template Matrix class
This commit is contained in:
Brian Roberts 2024-11-07 16:17:38 -06:00 committed by GitHub
commit 1be326e0d0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
20 changed files with 2523 additions and 99 deletions

View file

@ -60,7 +60,12 @@
class Point2I;
class Point2F;
class LinearColorF;
#ifndef USE_TEMPLATE_MATRIX
class MatrixF;
#else
template<typename DATA_TYPE, U32 rows, U32 cols> class Matrix;
typedef Matrix<F32, 4, 4> MatrixF;
#endif
class GFXShader;
class GFXVertexFormat;