mirror of
https://github.com/encounter/tp.git
synced 2026-07-11 06:18:46 -07:00
* 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 */
|