Files
dusklight/libs/dolphin/include/dolphin/gx.h
T
Luke Street 4df8ccc871 Reorganize library code into libs/ (#3119)
* Reorganize files into libs/{dolphin,JSystem,PowerPC_EABI_Support,revolution,TRK_MINNOW_DOLPHIN}

* Update configure.py and project.py for new libs structure

* Refactor `#include <dolphin/x.h>` -> `<x.h>`

* Remove `__REVOLUTION_SDK__` forwards from dolphin

* Fix dolphin/ references in revolution

* Wrap `#include <dolphin.h>` in `!__REVOLUTION_SDK__`

* Always build TRK against dolphin headers

* Resolve revolution SDK header resolution issues
2026-03-01 14:35:36 -08:00

41 lines
935 B
C

#ifndef _DOLPHIN_GX_H_
#define _DOLPHIN_GX_H_
#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