2025-02-10 11:20:42 -08:00
|
|
|
#ifndef _DOLPHIN_GX_H_
|
|
|
|
|
#define _DOLPHIN_GX_H_
|
2024-01-19 16:22:19 -08:00
|
|
|
|
2025-10-19 10:30:49 -07:00
|
|
|
#ifdef __REVOLUTION_SDK__
|
|
|
|
|
#include <revolution/gx.h>
|
|
|
|
|
#else
|
2025-02-10 11:20:42 -08:00
|
|
|
#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
|
2024-01-19 16:22:19 -08:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2025-02-10 11:20:42 -08:00
|
|
|
// GXMisc
|
|
|
|
|
void (*GXSetDrawSyncCallback(void (*cb)(u16)))(u16);
|
|
|
|
|
void GXSetDrawSync(u16 token);
|
2024-01-19 16:22:19 -08:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2025-02-10 11:20:42 -08:00
|
|
|
}
|
2024-01-19 16:22:19 -08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif
|
2025-10-19 10:30:49 -07:00
|
|
|
#endif
|