d_drawlist (#1881)

This commit is contained in:
Jcw87
2023-08-13 21:08:32 -07:00
committed by GitHub
parent 9ae61771ec
commit a997bb00bc
11 changed files with 998 additions and 197 deletions
+1
View File
@@ -26,6 +26,7 @@ struct mDoLib_clipper {
}
static f32 getFar() { return mSystemFar; }
static f32 getFovyRate() { return mFovyRate; }
static void resetFar() {
mClipper.setFar(mSystemFar);
+4
View File
@@ -67,6 +67,10 @@ inline void cMtx_ZrotM(Mtx mtx, s16 z) {
mDoMtx_ZrotM(mtx, z);
}
inline void cMtx_lookAt(Mtx param_0, const Vec* param_1, const Vec* param_2, s16 param_3) {
mDoMtx_lookAt(param_0, param_1, param_2, param_3);
}
inline void cMtx_multVec(Mtx mtx, const Vec* src, Vec* dst) {
mDoMtx_multVec(mtx, src, dst);
}