mirror of https://github.com/PrimeDecomp/prime.git
22 lines
483 B
C
22 lines
483 B
C
|
#ifndef _THP_THPDRAW_H
|
||
|
#define _THP_THPDRAW_H
|
||
|
|
||
|
#include "types.h"
|
||
|
#include "Dolphin/GX/GXTypes.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif // ifdef __cplusplus
|
||
|
|
||
|
void THPGXRestore(void);
|
||
|
void THPGXYuv2RgbSetup(GXRenderModeObj* obj);
|
||
|
void THPGXYuv2RgbDraw(u32* yImage, u32* uImage, u32* vImage, s16 x, s16 y, s16 texWidth, s16 texHeight, s16 polyWidth, s16 polyHeight);
|
||
|
void THPPlayerStop();
|
||
|
BOOL THPPlayerSetVolume(int, int);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
};
|
||
|
#endif // ifdef __cplusplus
|
||
|
|
||
|
#endif
|