Lines Matching refs:rsc_Matrix
128 static void SC_loadMatrix(uint32_t bank, uint32_t offset, rsc_Matrix *m)
133 memcpy(m, &f[offset], sizeof(rsc_Matrix));
170 static void SC_storeMatrix(uint32_t bank, uint32_t offset, const rsc_Matrix *m)
175 memcpy(&f[offset], m, sizeof(rsc_Matrix));
537 static void SC_matrixLoadIdentity(rsc_Matrix *mat)
543 static void SC_matrixLoadFloat(rsc_Matrix *mat, const float *f)
549 static void SC_matrixLoadMat(rsc_Matrix *mat, const rsc_Matrix *newmat)
555 static void SC_matrixLoadRotate(rsc_Matrix *mat, float rot, float x, float y, float z)
561 static void SC_matrixLoadScale(rsc_Matrix *mat, float x, float y, float z)
567 static void SC_matrixLoadTranslate(rsc_Matrix *mat, float x, float y, float z)
573 static void SC_matrixLoadMultiply(rsc_Matrix *mat, const rsc_Matrix *lhs, const rsc_Matrix *rhs)
580 static void SC_matrixMultiply(rsc_Matrix *mat, const rsc_Matrix *rhs)
586 static void SC_matrixRotate(rsc_Matrix *mat, float rot, float x, float y, float z)
592 static void SC_matrixScale(rsc_Matrix *mat, float x, float y, float z)
598 static void SC_matrixTranslate(rsc_Matrix *mat, float x, float y, float z)
664 static void SC_vpLoadModelMatrix(const rsc_Matrix *m)
670 static void SC_vpLoadTextureMatrix(const rsc_Matrix *m)