2021-03-28 22:49:05 +02:00
|
|
|
#ifndef GDGEOMETRY_H
|
|
|
|
|
#define GDGEOMETRY_H
|
|
|
|
|
|
2022-04-28 13:58:43 -07:00
|
|
|
#include "dolphin/types.h"
|
2022-04-23 18:58:35 -07:00
|
|
|
|
2022-11-11 10:09:48 -08:00
|
|
|
#ifdef __cplusplus
|
2022-04-23 18:58:35 -07:00
|
|
|
extern "C" {
|
2022-11-11 10:09:48 -08:00
|
|
|
#endif
|
2022-04-23 18:58:35 -07:00
|
|
|
|
2023-05-12 12:10:14 -07:00
|
|
|
typedef struct _GXVtxDescList GXVtxDescList;
|
|
|
|
|
|
2022-04-23 18:58:35 -07:00
|
|
|
void GDSetVtxDescv(GXVtxDescList*);
|
|
|
|
|
void GDSetArray(GXAttr attr, const void* data, u8 stride);
|
|
|
|
|
void GDSetArrayRaw(GXAttr attr, u32 data, u8 stride);
|
2022-11-11 10:09:48 -08:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
};
|
|
|
|
|
#endif
|
2021-03-28 22:49:05 +02:00
|
|
|
|
|
|
|
|
#endif /* GDGEOMETRY_H */
|