mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-06-02 01:30:00 -04:00
dfa8efa97b
* 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
20 lines
324 B
C++
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();
|
|
}
|