Import SDK Types
This commit is contained in:
parent
84b3e69630
commit
4fe4c38e0d
86 changed files with 6528 additions and 27 deletions
24
include/dolphin/gx/GXManage.h
Normal file
24
include/dolphin/gx/GXManage.h
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
#ifndef _DOLPHIN_GXMANAGE
|
||||
#define _DOLPHIN_GXMANAGE
|
||||
|
||||
#include <dolphin/gx/GXFifo.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef void (*GXDrawDoneCallback)(void);
|
||||
|
||||
GXFifoObj* GXInit(void* base, u32 size);
|
||||
GXDrawDoneCallback GXSetDrawDoneCallback(GXDrawDoneCallback cb);
|
||||
void GXDrawDone(void);
|
||||
void GXSetDrawDone(void);
|
||||
void GXFlush(void);
|
||||
void GXPixModeSync(void);
|
||||
void GXSetMisc(GXMiscToken token, u32 val);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif // _DOLPHIN_GXMANAGE
|
||||
Loading…
Add table
Add a link
Reference in a new issue