fix gu protos

This commit is contained in:
Prakxo
2023-05-12 22:47:49 +02:00
parent edbcf8c53c
commit 777d138c8b
4 changed files with 25 additions and 14 deletions
+12 -1
View File
@@ -30,6 +30,17 @@ void guMtxIdent(Mtx *m);
void guNormalize(float* x, float* y, float* z);
void guOrtho(Mtx *m, float l, float r, float b, float t, float n, float f, float scale);
void guRotate(Mtx* m, float a, float x, float y, float z);
void guLookAt(Mtx *m,
float xEye, float yEye, float zEye,
float xAt, float yAt, float zAt,
float xUp, float yUp, float zUp);
void guPerspective(Mtx *m, u16 *perspNorm, float fovy,
float aspect, float near, float far, float scale);
void guLookAtHilite (Mtx *m, LookAt *l, Hilite *h,
float xEye, float yEye, float zEye,
float xAt, float yAt, float zAt,
@@ -38,4 +49,4 @@ void guLookAtHilite (Mtx *m, LookAt *l, Hilite *h,
float xl2, float yl2, float zl2, /* light 2 direction */
int twidth, int theight); /* highlight txtr size*/
#endif
#endif
+2 -2
View File
@@ -3,7 +3,7 @@
#include "types.h"
#include "m_play.h"
#include "m_actor.h"
#include "m_actor_type.h"
#ifdef __cplusplus
extern "C" {
@@ -80,4 +80,4 @@ extern f32 get_percent(const int max, const int min, const int x);
}
#endif
#endif
#endif