Wrap all entities and shapes

This commit is contained in:
Camden Dixie O'Brien
2025-10-14 19:03:02 +01:00
parent ce6328e135
commit c4d0266673
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