Files
somaesque-native/src/gfx/geometry.h
2025-11-14 10:37:18 +01:00

20 lines
312 B
C

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