gx2: Add GX2TempGetGPUVersion.

This commit is contained in:
James Benton 2017-05-10 17:24:01 +01:00
parent 753226cff3
commit 5c9cc47e1c
2 changed files with 24 additions and 0 deletions

21
include/gx2/temp.h Normal file
View File

@ -0,0 +1,21 @@
#pragma once
#include <wut.h>
/**
* \defgroup gx2_temp Temp
* \ingroup gx2
* @{
*/
#ifdef __cplusplus
extern "C" {
#endif
uint32_t
GX2TempGetGPUVersion();
#ifdef __cplusplus
}
#endif
/** @} */

View File

@ -194,6 +194,9 @@ EXPORT(GX2SetTessellation);
EXPORT(GX2SetMinTessellationLevel);
EXPORT(GX2SetMaxTessellationLevel);
// gx2/temp.h
EXPORT(GX2TempGetGPUVersion);
// gx2/texture.h
EXPORT(GX2InitTextureRegs);
EXPORT(GX2SetPixelTexture);