Files
tp/include/dolphin/gd/GDGeometry.h
T

21 lines
363 B
C
Raw Normal View History

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
#ifdef __cplusplus
2022-04-23 18:58:35 -07:00
extern "C" {
#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);
#ifdef __cplusplus
};
#endif
2021-03-28 22:49:05 +02:00
#endif /* GDGEOMETRY_H */