mirror of
https://github.com/zeldaret/ss
synced 2026-05-25 07:23:00 -04:00
26af4db82d
* update from dtk-template and start work towards using clangd * include <a> -> "a" * Update build.yml * remove/add non-trivial class in union warning
28 lines
632 B
C
28 lines
632 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);
|
|
|
|
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
|