Add popup to display pressed keys

This commit is contained in:
Willow Barraco
2023-09-06 09:28:09 +02:00
parent b1890848d5
commit 24e354ce9e
5 changed files with 137 additions and 15 deletions

2
drw.h
View File

@ -30,6 +30,8 @@ typedef union {
uint32_t color;
} Color;
void drw_do_clear(struct drwsurf *d, uint32_t x, uint32_t y,
uint32_t w, uint32_t h);
void drw_do_rectangle(struct drwsurf *d, Color color, uint32_t x, uint32_t y,
uint32_t w, uint32_t h, bool fill);
void drw_fill_rectangle(struct drwsurf *d, Color color, uint32_t x, uint32_t y,