mirror of
https://github.com/zeldaret/tp
synced 2026-06-25 18:04:43 -04:00
2453c0e333
* move dolsdk2004 over * cleanup some temp work * finish and cleanup gf * b_bh done * d_a_e_mb done
19 lines
297 B
C
19 lines
297 B
C
#ifndef _DOLPHIN_GX_GXDISPLIST_H_
|
|
#define _DOLPHIN_GX_GXDISPLIST_H_
|
|
|
|
#include <dolphin/types.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void GXBeginDisplayList(void* list, u32 size);
|
|
u32 GXEndDisplayList(void);
|
|
void GXCallDisplayList(void* list, u32 nbytes);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|