mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-28 07:54:51 -04:00
0f438b0b2a
* d_name * scnname
15 lines
290 B
C
15 lines
290 B
C
#ifndef GDGEOMETRY_H
|
|
#define GDGEOMETRY_H
|
|
|
|
#include "dolphin/gx/GX.h"
|
|
#include "dolphin/types.h"
|
|
|
|
extern "C" {
|
|
|
|
void GDSetVtxDescv(GXVtxDescList*);
|
|
void GDSetArray(GXAttr attr, const void* data, u8 stride);
|
|
void GDSetArrayRaw(GXAttr attr, u32 data, u8 stride);
|
|
}
|
|
|
|
#endif /* GDGEOMETRY_H */
|