Drawing wall splines

This commit is contained in:
Luka Jankovic 2025-06-16 23:44:44 +02:00
parent 09cc69d38d
commit b217a72e6d
4 changed files with 27 additions and 29 deletions

View file

@ -8,7 +8,7 @@
enum kubo_wall_state {
KUBO_WALL_INIT,
KUBO_WALL_STARTED,
KUBO_WALL_DRAWING,
KUBO_WALL_DONE
};
@ -17,7 +17,7 @@ struct kubo_wall {
unsigned int num_vertices;
unsigned int num_vertices_alloc;
enum kubo_wall_state wall_state;
enum kubo_wall_state state;
};
struct kubo_wall *kubo_wall_init();