mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 15:01:53 -04:00
7fd7d0c1f3
* d_a_obj_carry work, SETUP_ACTOR macro * rm headers, add script * progress * macro rename, consistent spacing
25 lines
566 B
C
25 lines
566 B
C
#ifndef GXGEOMETRY_H
|
|
#define GXGEOMETRY_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 */
|