wut/include/gx2/state.h

29 lines
264 B
C
Raw Normal View History

2016-01-06 00:24:54 +01:00
#pragma once
#include <wut.h>
#include "enum.h"
2016-01-06 00:24:54 +01:00
2016-01-07 17:02:54 +01:00
/**
* \defgroup gx2_state State
* \ingroup gx2
* @{
*/
2016-01-07 15:09:43 +01:00
#ifdef __cplusplus
extern "C" {
#endif
2016-01-06 00:24:54 +01:00
void
GX2Init(uint32_t *attributes);
void
GX2Shutdown();
void
GX2Flush();
2016-01-07 15:09:43 +01:00
#ifdef __cplusplus
}
#endif
2016-01-07 17:02:54 +01:00
/** @} */