mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 18:31:48 +01:00
25 lines
289 B
C
25 lines
289 B
C
|
#pragma once
|
||
|
#include <wut.h>
|
||
|
#include "enum.h"
|
||
|
|
||
|
/**
|
||
|
* \defgroup gx2_mem Memory
|
||
|
* \ingroup gx2
|
||
|
* @{
|
||
|
*/
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
void
|
||
|
GX2Invalidate(GX2InvalidateMode mode,
|
||
|
void *buffer,
|
||
|
uint32_t size);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
/** @} */
|