mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-24 06:50:45 -04:00
21 lines
300 B
C
21 lines
300 B
C
#ifndef RVL_SDK_GX_MISC_H
|
|
#define RVL_SDK_GX_MISC_H
|
|
#include <dolphin/types.h>
|
|
#include <dolphin/gx/GXEnum.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
void GXSetMisc(GXMiscToken token, u32 val);
|
|
void GXFlush();
|
|
void GXResetWriteGatherPipe();
|
|
|
|
void GXAbortFrame();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|