mirror of
https://github.com/encounter/aurora.git
synced 2025-08-13 23:59:06 +00:00
* Support making simple display lists on the fly and more data formats * Add a macro for GXCallDisplayListLE * Resolve conversations
26 lines
479 B
C
26 lines
479 B
C
#ifndef DOLPHIN_GXDISPLIST_H
|
|
#define DOLPHIN_GXDISPLIST_H
|
|
|
|
#include <dolphin/types.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef AURORA
|
|
#define GXCallDisplayListNative GXCallDisplayListLE
|
|
#else
|
|
#define GXCallDisplayListNative 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
|