mirror of
https://github.com/zeldaret/tp
synced 2026-06-10 04:54:14 -04:00
8fd9f2ab5d
* start JSystem * JKRAram and JUTGamePad * started heap and thread * more JKernel * mostly finished JKernel * delete unused asm * JKRFileFinder * delete unused asm and match findNextFile * format * fix mtx_vec
16 lines
334 B
C
16 lines
334 B
C
#ifndef MTX44_H
|
|
#define MTX44_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
typedef float Mtx44[4][4];
|
|
|
|
extern "C" {
|
|
|
|
void C_MTXPerspective(Mtx44 matrix, float fov_y, float aspect, float near, float far);
|
|
void C_MTXOrtho(Mtx44 matrix, float top, float bottom, float left, float right, float near,
|
|
float far);
|
|
}
|
|
|
|
#endif /* MTX44_H */
|