aboutsummaryrefslogtreecommitdiff
path: root/libpsn00b/include/psxgte.h
diff options
context:
space:
mode:
authorJohn Wilbert M. Villamor <lameguy64@gmail.com>2019-09-23 11:28:07 +0800
committerJohn Wilbert M. Villamor <lameguy64@gmail.com>2019-09-23 11:28:07 +0800
commit72b7d4168afc63db572539d41623c3ab0f09ddf4 (patch)
treeca6f3ba4e1deada4fb41ce6d34dd64e81afbc9b1 /libpsn00b/include/psxgte.h
parent82a441e7bd3a5103330c7d5ca7f9df470953e586 (diff)
downloadpsn00bsdk-72b7d4168afc63db572539d41623c3ab0f09ddf4.tar.gz
Added strcat(), added gte_stsz() macro, added _boot() and fixed typos in setUVWH() macro
Diffstat (limited to 'libpsn00b/include/psxgte.h')
-rw-r--r--libpsn00b/include/psxgte.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/libpsn00b/include/psxgte.h b/libpsn00b/include/psxgte.h
index 43d529a..98d9fa4 100644
--- a/libpsn00b/include/psxgte.h
+++ b/libpsn00b/include/psxgte.h
@@ -12,24 +12,24 @@
#define rcos(a) icos(a)
-typedef struct {
+typedef struct MATRIX {
short m[3][3];
int t[3];
} MATRIX;
-typedef struct {
+typedef struct VECTOR {
int vx, vy, vz;
} VECTOR;
-typedef struct {
+typedef struct SVECTOR {
short vx, vy, vz, pad;
} SVECTOR;
-typedef struct {
+typedef struct CVECTOR {
unsigned char r, g, b, cd;
} CVECTOR;
-typedef struct {
+typedef struct DVECTOR {
short vx, vy;
} DVECTOR;