mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 17:51:53 +01:00
46 lines
739 B
C
46 lines
739 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(void *displayList,
|
|
uint32_t bytes);
|
|
|
|
void
|
|
GX2CallDisplayList(void *displayList,
|
|
uint32_t bytes);
|
|
|
|
BOOL
|
|
GX2GetDisplayListWriteStatus();
|
|
|
|
BOOL
|
|
GX2GetCurrentDisplayList(void **outDisplayList,
|
|
uint32_t *outSize);
|
|
|
|
void
|
|
GX2CopyDisplayList(void *displayList,
|
|
uint32_t bytes);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/** @} */
|