Lines Matching defs:m

55 static void SC_MatrixLoadRotate(Matrix4x4 *m, float rot, float x, float y, float z) {  in SC_MatrixLoadRotate()
58 static void SC_MatrixLoadScale(Matrix4x4 *m, float x, float y, float z) { in SC_MatrixLoadScale()
61 static void SC_MatrixLoadTranslate(Matrix4x4 *m, float x, float y, float z) { in SC_MatrixLoadTranslate()
64 static void SC_MatrixRotate(Matrix4x4 *m, float rot, float x, float y, float z) { in SC_MatrixRotate()
67 static void SC_MatrixScale(Matrix4x4 *m, float x, float y, float z) { in SC_MatrixScale()
70 static void SC_MatrixTranslate(Matrix4x4 *m, float x, float y, float z) { in SC_MatrixTranslate()
74 static void SC_MatrixLoadOrtho(Matrix4x4 *m, float l, float r, float b, float t, float n, float f) { in SC_MatrixLoadOrtho()
77 static void SC_MatrixLoadFrustum(Matrix4x4 *m, float l, float r, float b, float t, float n, float f… in SC_MatrixLoadFrustum()
80 static void SC_MatrixLoadPerspective(Matrix4x4 *m, float fovy, float aspect, float near, float far)… in SC_MatrixLoadPerspective()
84 static bool SC_MatrixInverse_4x4(Matrix4x4 *m) { in SC_MatrixInverse_4x4()
87 static bool SC_MatrixInverseTranspose_4x4(Matrix4x4 *m) { in SC_MatrixInverseTranspose_4x4()
90 static void SC_MatrixTranspose_4x4(Matrix4x4 *m) { in SC_MatrixTranspose_4x4()
93 static void SC_MatrixTranspose_3x3(Matrix3x3 *m) { in SC_MatrixTranspose_3x3()
96 static void SC_MatrixTranspose_2x2(Matrix2x2 *m) { in SC_MatrixTranspose_2x2()
157 void __attribute__((overloadable)) rsMatrixLoadScale(rs_matrix4x4 *m, in rsMatrixLoadScale()
161 void __attribute__((overloadable)) rsMatrixLoadTranslate(rs_matrix4x4 *m, in rsMatrixLoadTranslate()
165 void __attribute__((overloadable)) rsMatrixRotate(rs_matrix4x4 *m, float rot, in rsMatrixRotate()
169 void __attribute__((overloadable)) rsMatrixScale(rs_matrix4x4 *m, float x, in rsMatrixScale()
173 void __attribute__((overloadable)) rsMatrixTranslate(rs_matrix4x4 *m, float x, in rsMatrixTranslate()
177 void __attribute__((overloadable)) rsMatrixLoadOrtho(rs_matrix4x4 *m, float l, in rsMatrixLoadOrtho()
181 void __attribute__((overloadable)) rsMatrixLoadFrustum(rs_matrix4x4 *m, in rsMatrixLoadFrustum()
185 void __attribute__((overloadable)) rsMatrixLoadPerspective(rs_matrix4x4 *m, in rsMatrixLoadPerspective()
189 bool __attribute__((overloadable)) rsMatrixInverse(rs_matrix4x4 *m) { in rsMatrixInverse()
192 bool __attribute__((overloadable)) rsMatrixInverseTranspose(rs_matrix4x4 *m) { in rsMatrixInverseTranspose()
195 void __attribute__((overloadable)) rsMatrixTranspose(rs_matrix4x4 *m) { in rsMatrixTranspose()
198 void __attribute__((overloadable)) rsMatrixTranspose(rs_matrix3x3 *m) { in rsMatrixTranspose()
201 void __attribute__((overloadable)) rsMatrixTranspose(rs_matrix2x2 *m) { in rsMatrixTranspose()