Switch to Aurora headers for GX/VI

Replace GXSetArray() with GXSETARRAY() taking in size everywhere

Fix a ton of structs/enums being referred to with underscore name.
This commit is contained in:
PJB3005
2026-03-02 01:21:54 +01:00
parent fe21abb1ec
commit 883ba38bb8
74 changed files with 176 additions and 190 deletions
+3 -5
View File
@@ -7,8 +7,6 @@
#include "JSystem/JUtility/JUTXfb.h"
#include <dolphin/os.h>
typedef struct _GXColor GXColor;
typedef struct _GXRenderModeObj GXRenderModeObj;
class JKRHeap;
typedef void (*JFWDisplayUnkFunc)(void);
@@ -49,7 +47,7 @@ public:
void ctor_subroutine(bool);
JFWDisplay(JKRHeap*, JUTXfb::EXfbNumber, bool);
static JFWDisplay* createManager(_GXRenderModeObj const*, JKRHeap*,
static JFWDisplay* createManager(GXRenderModeObj const*, JKRHeap*,
JUTXfb::EXfbNumber, bool);
void prepareCopyDisp();
void drawendXfb_single();
@@ -61,9 +59,9 @@ public:
void waitBlanking(int);
void threadSleep(s64);
void clearEfb_init();
void clearEfb(int, int, int, int, _GXColor);
void clearEfb(int, int, int, int, GXColor);
void clearEfb();
void clearEfb(_GXColor);
void clearEfb(GXColor);
void calcCombinationRatio();
virtual void beginRender();
-1
View File
@@ -4,7 +4,6 @@
#include <dolphin/types.h>
#include "JSystem/JUtility/JUTAssert.h"
typedef struct _GXRenderModeObj GXRenderModeObj;
class JKRExpHeap;
class JKRThread;
class JUTConsole;