NSMBW-Decomp
A decompilation of New Super Mario Bros. Wii
Loading...
Searching...
No Matches
mtx44.h
1#ifndef RVL_SDK_MTX_MTX44_H
2#define RVL_SDK_MTX_MTX44_H
3#include <types.h>
4
5#include <revolution/MTX/mtxtypes.h>
6#ifdef __cplusplus
7extern "C" {
8#endif
9
10void C_MTXFrustum(Mtx44 mtx, f32 t, f32 b, f32 l, f32 r, f32 n, f32 f);
11void C_MTXPerspective(Mtx44 mtx, f32 fovy, f32 aspect, f32 n, f32 f);
12void C_MTXOrtho(Mtx44 mtx, f32 t, f32 b, f32 l, f32 r, f32 n, f32 f);
13
14#ifdef __cplusplus
15}
16#endif
17#endif