diff options
Diffstat (limited to 'src/render.h')
-rw-r--r-- | src/render.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/render.h b/src/render.h index ed82de9..c942a7d 100644 --- a/src/render.h +++ b/src/render.h @@ -1,9 +1,10 @@ #ifndef WLCLOCK_RENDER_H #define WLCLOCK_RENDER_H +#include<stdbool.h> + struct Wlclock_surface; -void render_background_frame (struct Wlclock_surface *surface); -void render_hands_frame (struct Wlclock_surface *surface); +void schedule_frame (struct Wlclock_surface *surface, bool background, bool hands); #endif |