papermario/src/guOrtho.c

42 lines
1012 B
C
Raw Normal View History

2020-07-29 04:56:01 +02:00
#include "common.h"
2020-10-19 04:55:52 +02:00
#ifdef NON_MATCHING
void guOrthoF(float mf[4][4], float l, float r, float b, float t,
float n, float f, float scale) {
2020-07-29 04:56:01 +02:00
s32 i, j;
guMtxIdentF(mf);
2020-10-19 04:55:52 +02:00
mf[0][0] = 2 / (r - l);
mf[1][1] = 2 / (t - b);
mf[2][2] = -2 / (f - n);
mf[3][0] = -(r + l) / (r - l);
mf[3][1] = -(t + b) / (t - b);
mf[3][2] = -(f + n) / (f - n);
2020-07-29 04:56:01 +02:00
mf[3][3] = 1;
for (i = 0; i < 4; i++) {
for (j = 0; j < 4; j++) {
mf[i][j] *= scale;
}
}
2020-10-19 04:55:52 +02:00
}
#else
INCLUDE_ASM(void, "guOrtho", guOrthoF, float mf[4][4], float l, float r, float b, float t, float n, float f,
float scale);
#endif
2020-07-29 04:56:01 +02:00
2020-10-19 04:55:52 +02:00
#ifdef NON_MATCHING
void guOrtho(Mtx* m, float l, float r, float b, float t,
float n, float f, float scale) {
2020-07-29 04:56:01 +02:00
float mf[4][4];
2020-10-19 04:55:52 +02:00
guOrthoF(mf, l, r, b, t, n, f, scale);
2020-07-29 04:56:01 +02:00
2020-10-19 04:55:52 +02:00
guMtxF2L(mf, m);
}
#else
INCLUDE_ASM(void, "guOrtho", guOrtho, Mtx* m, float l, float r, float b, float t,
float n, float f, float scale);
#endif