mirror of
https://github.com/zeldaret/ss
synced 2026-06-29 03:00:46 -04:00
28 lines
668 B
C
28 lines
668 B
C
#ifndef RVL_SDK_GX_GEOMETRY_H
|
|
#define RVL_SDK_GX_GEOMETRY_H
|
|
#include <lib/rvl/GX/GXTypes.h>
|
|
#include <lib/rvl/types.h>
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void GXBegin(GXPrimitive prim, GXVtxFmt fmt, u16 verts);
|
|
static void GXEnd(void) {}
|
|
|
|
void GXSetLineWidth(u8 width, u32 offset);
|
|
void GXSetPointSize(u8 size, u32 offset);
|
|
void GXEnableTexOffsets(GXTexCoordID coordId, GXBool lineOfs,
|
|
GXBool pointOfs);
|
|
void GXSetCullMode(GXCullMode mode);
|
|
void GXGetCullMode(GXCullMode* out);
|
|
void GXSetCoPlanar(GXBool coplanar);
|
|
|
|
void __GXSetDirtyState(void);
|
|
void __GXSendFlushPrim(void);
|
|
void __GXSetGenMode(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|