mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
20 lines
291 B
C
20 lines
291 B
C
#ifndef RVL_SDK_GX_MISC_H
|
|
#define RVL_SDK_GX_MISC_H
|
|
#include "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 |