mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-05 03:24:17 +01:00
46 lines
757 B
C
46 lines
757 B
C
#pragma once
|
|
#include <wut.h>
|
|
|
|
/**
|
|
* \defgroup gx2_displaylist Display List
|
|
* \ingroup gx2
|
|
* @{
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void
|
|
GX2BeginDisplayListEx(void *displayList,
|
|
uint32_t bytes,
|
|
BOOL unk1);
|
|
|
|
uint32_t
|
|
GX2EndDisplayList(void *displayList);
|
|
|
|
void
|
|
GX2DirectCallDisplayList(const void *displayList,
|
|
uint32_t bytes);
|
|
|
|
void
|
|
GX2CallDisplayList(const void *displayList,
|
|
uint32_t bytes);
|
|
|
|
BOOL
|
|
GX2GetDisplayListWriteStatus();
|
|
|
|
BOOL
|
|
GX2GetCurrentDisplayList(void **outDisplayList,
|
|
uint32_t *outSize);
|
|
|
|
void
|
|
GX2CopyDisplayList(const void *displayList,
|
|
uint32_t bytes);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/** @} */
|