pikmin2/include/THP/THPDraw.h
HeartPiece ea8e424e5e Link THPPlayer.c
thanks @SwareJonge for matching this for MKDD for us to yoink c:
2023-09-15 17:44:42 +10:00

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