Matched thpmain, THPSimple, and THPDraw

This commit is contained in:
mrshigure 2024-01-18 13:15:43 -08:00
parent 01c79f14b0
commit 742ddc1f7c
8 changed files with 1121 additions and 9 deletions

10
include/game/THPDraw.h Executable file
View file

@ -0,0 +1,10 @@
#ifndef _GAME_THPDRAW_H
#define _GAME_THPDRAW_H
#include "dolphin.h"
void THPGXRestore(void);
void THPGXYuv2RgbSetup(GXRenderModeObj *obj, GXColor *arg1, Mtx arg2);
void THPGXYuv2RgbDraw(u32 *yImage, u32 *uImage, u32 *vImage, s16 x, s16 y, s16 texWidth, s16 texHeight, s16 polyWidth, s16 polyHeight);
#endif