mirror of
https://github.com/zeldaret/ss
synced 2026-06-09 12:36:09 -04:00
31 lines
650 B
C
31 lines
650 B
C
#ifndef RVL_SDK_GX_GEOMETRY_H
|
|
#define RVL_SDK_GX_GEOMETRY_H
|
|
#include "common.h"
|
|
#include "rvl/GX/GXTypes.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void GXBegin(GXPrimitive prim, GXVtxFmt fmt, u16 verts);
|
|
|
|
static void GXEnd(void);
|
|
|
|
#define GXEnd()
|
|
|
|
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
|