mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 23:05:36 -04:00
1114b13da8
* d_a_alldie / d_a_tboxSw / d_a_tag_gstart / d_a_tag_hstop * dolphin OS work / cleanup * dolphin GX work / cleanup * finish changing dolphin files to C * more files into C * match rest of MSL_C math functions * more dolphin files converted to C * remove asm * d_bg_w work * remove asm * d_a_alink work / kytag14
26 lines
599 B
C
26 lines
599 B
C
#ifndef GXGEOMETRY_H
|
|
#define GXGEOMETRY_H
|
|
|
|
#include "dolphin/gx/GXStruct.h"
|
|
#include "dolphin/gx/GXEnum.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void __GXSetDirtyState(void);
|
|
void GXBegin(GXPrimitive type, GXVtxFmt fmt, u16 vert_num);
|
|
void __GXSendFlushPrim(void);
|
|
void GXSetLineWidth(u8 width, GXTexOffset offsets);
|
|
void GXSetPointSize(u8 size, GXTexOffset offsets);
|
|
void GXEnableTexOffsets(GXTexCoordID coord, GXBool line, GXBool point);
|
|
void GXSetCullMode(GXCullMode mode);
|
|
void GXSetCoPlanar(GXBool enable);
|
|
void __GXSetGenMode(void);
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|
|
|
|
#endif /* GXGEOMETRY_H */
|