mirror of
https://github.com/zeldaret/tp
synced 2026-06-12 13:35:26 -04:00
2453c0e333
* move dolsdk2004 over * cleanup some temp work * finish and cleanup gf * b_bh done * d_a_e_mb done
19 lines
296 B
C
19 lines
296 B
C
#ifndef _DOLPHIN_GX_GXCULL_H_
|
|
#define _DOLPHIN_GX_GXCULL_H_
|
|
|
|
#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
|