migrate to new c djstdlib

This commit is contained in:
Daniel Ledda
2025-11-14 10:37:18 +01:00
parent 344056744d
commit 7ec69b3067
21 changed files with 392 additions and 366 deletions

View File

@@ -3,14 +3,14 @@
#include "stddef.h"
struct Shape {
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;