From 8120fd052120423cc4e84d7e893bef125fb06a6b Mon Sep 17 00:00:00 2001 From: Zach DeCook Date: Fri, 3 Dec 2021 11:57:19 -0500 Subject: overlapped key output: highlight letters swiped through --- drw.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'drw.h') diff --git a/drw.h b/drw.h index 69c0aa9..fb3df1c 100644 --- a/drw.h +++ b/drw.h @@ -31,8 +31,12 @@ typedef union { uint32_t color; } Color; +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, uint32_t w, uint32_t h); +void drw_over_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); -- cgit 1.4.1