marioparty4/include/dolphin/gx/GXDispList.h
Dávid Balatoni b05b70d6b7
Fixed many bugs (#586)
* Fixed some includes

* Fix allocation bugs

* More fixes and trying to get 3D rendering done

* Fixed many bugs
2025-04-22 03:40:10 +02:00

25 lines
492 B
C

#ifndef _DOLPHIN_GXDISPLIST
#define _DOLPHIN_GXDISPLIST
#include <dolphin/types.h>
#ifdef __cplusplus
extern "C" {
#endif
#ifdef AURORA
#define GXCALLDISPLAYLISTLE GXCallDisplayListLE
#else
#define GXCALLDISPLAYLISTLE GXCallDisplayList
#endif
void GXBeginDisplayList(void* list, u32 size);
u32 GXEndDisplayList(void);
void GXCallDisplayListLE(const void* list, u32 nbytes);
void GXCallDisplayList(const void* list, u32 nbytes);
#ifdef __cplusplus
}
#endif
#endif // _DOLPHIN_GXDISPLIST