Files
somaesque-native/src/gfx/geometry.h
Daniel Ledda 50f4501c86 update
2025-01-04 19:19:01 +01:00

20 lines
304 B
C

#ifndef LEDDA_GEOMETRY_H
#define LEDDA_GEOMETRY_H
#include <stddef.h>
struct Shape {
unsigned int* indices;
size_t indices_size;
float* uv;
size_t uv_size;
float* xyz;
size_t xyz_size;
};
extern const Shape TRIANGLE;
extern const Shape SQUARE;
extern const Shape CUBE;
#endif