Twilight Princess
Decompilation of The Legend of Zelda: Twilight Princess
Loading...
Searching...
No Matches
JPADrawInfo.h
Go to the documentation of this file.
1#ifndef JPADRAWINFO_H
2#define JPADRAWINFO_H
3
4#include "dolphin/mtx.h"
5
11public:
16
19 C_MTXLightOrtho(mPrjMtx, top, bottom, left, right, 0.5f, 0.5f, 0.5f, 0.5f);
20 }
21
24
25 void getCamMtx(Mtx* dst) const { MTXCopy(mCamMtx, *dst); }
26 void getPrjMtx(Mtx* dst) const { MTXCopy(mPrjMtx, *dst); }
27};
28
29#endif
T cLib_calcTimer(T *value)
Definition c_lib.h:74
Definition JPADrawInfo.h:10
Mtx mPrjMtx
Definition JPADrawInfo.h:23
JPADrawInfo(Mtx param_0, f32 fovY, f32 aspect)
Definition JPADrawInfo.h:12
JPADrawInfo(Mtx param_0, f32 top, f32 bottom, f32 left, f32 right)
Definition JPADrawInfo.h:17
Mtx mCamMtx
Definition JPADrawInfo.h:22
void getPrjMtx(Mtx *dst) const
Definition JPADrawInfo.h:26
void getCamMtx(Mtx *dst) const
Definition JPADrawInfo.h:25
void C_MTXLightPerspective(Mtx m, f32 fovY, f32 aspect, f32 scaleS, f32 scaleT, f32 transS, f32 transT)
Definition mtx.c:571
void C_MTXLightOrtho(Mtx m, f32 t, f32 b, f32 l, f32 r, f32 scaleS, f32 scaleT, f32 transS, f32 transT)
Definition mtx.c:598
f32 Mtx[3][4]
Definition mtx.h:15
float f32
Definition types.h:22