mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
850fae1aa3
* 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
45 lines
1001 B
C
45 lines
1001 B
C
#ifndef _DOLPHIN_GX_H_
|
|
#define _DOLPHIN_GX_H_
|
|
|
|
#ifdef __REVOLUTION_SDK__
|
|
#include <revolution/gx.h>
|
|
#else
|
|
#include <dolphin/gx/GXStruct.h>
|
|
#include <dolphin/gx/GXTransform.h>
|
|
#include <dolphin/gx/GXTev.h>
|
|
#include <dolphin/gx/GXPixel.h>
|
|
#include <dolphin/gx/GXManage.h>
|
|
#include <dolphin/gx/GXFifo.h>
|
|
#include <dolphin/gx/GXCull.h>
|
|
#include <dolphin/gx/GXGeometry.h>
|
|
#include <dolphin/gx/GXVert.h>
|
|
#include <dolphin/gx/GXTexture.h>
|
|
#include <dolphin/gx/GXTev.h>
|
|
#include <dolphin/gx/GXLighting.h>
|
|
#include <dolphin/gx/GXDispList.h>
|
|
#include <dolphin/gx/GXCommandList.h>
|
|
#include <dolphin/gx/GXBump.h>
|
|
#include <dolphin/gx/GXFrameBuffer.h>
|
|
#include <dolphin/gx/GXGet.h>
|
|
#include <dolphin/gx/GXDraw.h>
|
|
#include <dolphin/gx/GXPerf.h>
|
|
#include <dolphin/gx/GXCpu2Efb.h>
|
|
#include <dolphin/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
|
|
#endif
|