blob: c942a7de70ad6fa9a2618f6da2be8788d8bcb1b6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#ifndef WLCLOCK_RENDER_H
#define WLCLOCK_RENDER_H
#include<stdbool.h>
struct Wlclock_surface;
void schedule_frame (struct Wlclock_surface *surface, bool background, bool hands);
#endif
|