2021-03-28 22:49:05 +02:00
|
|
|
#ifndef GXGEOMETRY_H
|
|
|
|
|
#define GXGEOMETRY_H
|
|
|
|
|
|
2022-11-11 10:09:48 -08:00
|
|
|
#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
|
2021-03-28 22:49:05 +02:00
|
|
|
|
|
|
|
|
#endif /* GXGEOMETRY_H */
|