mirror of
https://github.com/encounter/aurora.git
synced 2025-07-04 12:15:59 +00:00
8 lines
242 B
C++
8 lines
242 B
C++
#include "gx.hpp"
|
|
|
|
void GXSetScissor(u32 left, u32 top, u32 width, u32 height) { aurora::gfx::set_scissor(left, top, width, height); }
|
|
|
|
void GXSetCullMode(GXCullMode mode) { update_gx_state(g_gxState.cullMode, mode); }
|
|
|
|
// TODO GXSetCoPlanar
|