blob: 46b473726863758ef5a767de9b0a4d43c854cdff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#ifndef RVL_SDK_GX_FIFO_H
#define RVL_SDK_GX_FIFO_H
#include "common.h"
#include "rvl/GX/GXInternal.h"
#include "rvl/OS/OSThread.h"
#ifdef __cplusplus
extern "C" {
#endif
GX_DECL_PUBLIC_STRUCT(GXFifoObj, 128);
void GXSetCPUFifo(GXFifoObj *);
BOOL GXGetCPUFifo(GXFifoObj *);
u32 GXGetFifoCount(GXFifoObj *);
u8 GXGetFifoWrap(GXFifoObj *);
// IDK where this goes
OSThread *GXSetCurrentGXThread();
OSThread *GXGetCurrentGXThread();
void GXSetDrawDoneCallback(void *);
#ifdef __cplusplus
}
#endif
#endif
|