suggestion picker: a persistent layer to complement virtual keyboards like wvkbd
Diffstat (limited to 'drw.h')
| -rw-r--r-- | drw.h | 19 |
1 files changed, 7 insertions, 12 deletions
@@ -31,17 +31,12 @@ typedef union { uint32_t color; } Color; -void -drw_fill_rectangle(struct drwsurf *d, Color color, uint32_t x, uint32_t y, - uint32_t w, uint32_t h); - -void -drw_draw_text(struct drwsurf *d, Color color, - uint32_t x, uint32_t y, - uint32_t w, uint32_t h, - const char *label); - -uint32_t -setup_buffer(struct drwsurf *drwsurf); +void drw_fill_rectangle(struct drwsurf *d, Color color, uint32_t x, uint32_t y, + uint32_t w, uint32_t h); + +void drw_draw_text(struct drwsurf *d, Color color, uint32_t x, uint32_t y, + uint32_t w, uint32_t h, const char *label); + +uint32_t setup_buffer(struct drwsurf *drwsurf); #endif |