mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-05 03:24:17 +01:00
ee9bd49c34
So your application will exit cleanly even when you break the GPU.
32 lines
301 B
C
32 lines
301 B
C
#pragma once
|
|
#include <wut.h>
|
|
#include "enum.h"
|
|
|
|
/**
|
|
* \defgroup gx2_state State
|
|
* \ingroup gx2
|
|
* @{
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void
|
|
GX2Init(uint32_t *attributes);
|
|
|
|
void
|
|
GX2Shutdown();
|
|
|
|
void
|
|
GX2Flush();
|
|
|
|
void
|
|
GX2ResetGPU(uint32_t unknown);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/** @} */
|