Files
dusklight/src/SSystem/SComponent/c_API_graphic.cpp
T
TakaRikka dfa8efa97b project cleanup (#2895)
* some wii OS fixes

* remove old dol2asm comments

* remove dol2asm.h

* remove function address comments

* normalize ATTRIBUTE_ALIGN usage

* DECL_WEAK macro

* fix gcc attribute weak macro

* wrap more mwcc specific things in ifdefs

* fixes

* fix revo sdk version flags

* fixes
2025-11-30 15:23:42 -07:00

20 lines
324 B
C++

/**
* c_API_graphic.cpp
*
*/
#include "SSystem/SComponent/c_API_graphic.h"
#include "SSystem/SComponent/c_API.h"
void cAPIGph_Painter() {
g_cAPI_Interface.painterMtd();
}
void cAPIGph_BeforeOfDraw() {
g_cAPI_Interface.beforeOfDrawMtd();
}
void cAPIGph_AfterOfDraw() {
g_cAPI_Interface.afterOfDrawMtd();
}