mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-25 07:02:47 -04:00
7ef1810132
* m_Do_main / f_ap_game debug stuff * revolution sdk compatibility * f_op_actor debug work * rename fopAcM_SetupActor to fopAcM_ct * fix build * fix jp/pal splits
41 lines
1004 B
C
41 lines
1004 B
C
#ifndef _REVOLUTION_GX_H_
|
|
#define _REVOLUTION_GX_H_
|
|
|
|
#include <revolution/gx/GXStruct.h>
|
|
#include <revolution/gx/GXTransform.h>
|
|
#include <revolution/gx/GXTev.h>
|
|
#include <revolution/gx/GXPixel.h>
|
|
#include <revolution/gx/GXManage.h>
|
|
#include <revolution/gx/GXFifo.h>
|
|
#include <revolution/gx/GXCull.h>
|
|
#include <revolution/gx/GXGeometry.h>
|
|
#include <revolution/gx/GXVert.h>
|
|
#include <revolution/gx/GXTexture.h>
|
|
#include <revolution/gx/GXTev.h>
|
|
#include <revolution/gx/GXLighting.h>
|
|
#include <revolution/gx/GXDispList.h>
|
|
#include <revolution/gx/GXCommandList.h>
|
|
#include <revolution/gx/GXBump.h>
|
|
#include <revolution/gx/GXFrameBuffer.h>
|
|
#include <revolution/gx/GXGet.h>
|
|
#include <revolution/gx/GXDraw.h>
|
|
#include <revolution/gx/GXPerf.h>
|
|
#include <revolution/gx/GXCpu2Efb.h>
|
|
#include <revolution/gx/GXVerify.h>
|
|
|
|
// unsorted GX externs
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// GXMisc
|
|
void (*GXSetDrawSyncCallback(void (*cb)(u16)))(u16);
|
|
void GXSetDrawSync(u16 token);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|