mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-24 23:01:23 -04:00
7ef1810132
* m_Do_main / f_ap_game debug stuff * revolution sdk compatibility * f_op_actor debug work * rename fopAcM_SetupActor to fopAcM_ct * fix build * fix jp/pal splits
23 lines
369 B
C
23 lines
369 B
C
#ifndef _DOLPHIN_GX_GXCULL_H_
|
|
#define _DOLPHIN_GX_GXCULL_H_
|
|
|
|
#ifdef __REVOLUTION_SDK__
|
|
#include <revolution/gx/GXCull.h>
|
|
#else
|
|
#include <dolphin/gx/GXEnum.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void GXSetScissor(u32 left, u32 top, u32 wd, u32 ht);
|
|
void GXSetCullMode(GXCullMode mode);
|
|
void GXSetCoPlanar(GXBool enable);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
#endif
|