blob: e0c34ef7279383c9dd3cadd48288a092c59948d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef GDGEOMETRY_H
#define GDGEOMETRY_H
#ifdef __cplusplus
extern "C" {
#endif
typedef struct _GXVtxDescList GXVtxDescList;
void GDSetVtxDescv(GXVtxDescList*);
void GDSetArray(GXAttr attr, const void* data, u8 stride);
void GDSetArrayRaw(GXAttr attr, u32 data, u8 stride);
#ifdef __cplusplus
};
#endif
#endif /* GDGEOMETRY_H */
|