Wrap all entities and shapes

This commit is contained in:
2025-10-18 17:43:22 +01:00
parent 8d13b862c5
commit fe3c615517
3 changed files with 32 additions and 50 deletions

View File

@@ -7,9 +7,6 @@
#define MAX_VERTS 8U
#define WRAP 1
#define CONNECT (1 << 1)
typedef struct {
int drm_fd;
float aspect;
@@ -23,6 +20,6 @@ void renderer_clear();
void renderer_swap();
void renderer_draw(
const vec2_t *vs, unsigned count, mat3_t model, uint8_t flags);
const vec2_t *vs, unsigned count, mat3_t model, bool connect);
#endif