diff options
| author | Maarten van Gompel <proycon@anaproy.nl> | 2021-09-19 14:23:51 +0200 |
|---|---|---|
| committer | John Sullivan <jsullivan@csumb.edu> | 2021-10-19 23:12:01 -0700 |
| commit | 81159507d35ef087dfd796c08af07c1902e270e5 (patch) | |
| tree | e90bb57e65614d214d6c9d7e08e1e0f29298ee40 /drw.h | |
| parent | 6c9636c137d0426c38fc6bdc655c3d327ddab4c2 (diff) | |
| download | suggpicker-81159507d35ef087dfd796c08af07c1902e270e5.tar.gz | |
applied clang-format (no functional changes), but exempted custom include order in keyboard.c and main.c
Diffstat (limited to 'drw.h')
| -rw-r--r-- | drw.h | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/drw.h b/drw.h index 80f2979..69c0aa9 100644 --- a/drw.h +++ b/drw.h @@ -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 |
