diff options
author | Phil Jones <philj56@gmail.com> | 2021-10-31 16:47:03 +0000 |
---|---|---|
committer | Phil Jones <philj56@gmail.com> | 2021-10-31 16:54:20 +0000 |
commit | 74adfe0cbca300e73774c6e0aa9b3c53a5e5b57b (patch) | |
tree | 88d0efbdd9755849eb22ee3478595df5c8e69a34 /src/surface.h | |
parent | c691b8e48c572e2d5f1c7c16c8f42babd7d706d5 (diff) |
Add HiDPI support and lots of cleanup.
Diffstat (limited to 'src/surface.h')
-rw-r--r-- | src/surface.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/surface.h b/src/surface.h index 2b2910a..bd79a80 100644 --- a/src/surface.h +++ b/src/surface.h @@ -15,7 +15,13 @@ struct surface { bool redraw; }; -void surface_initialise(struct surface *surface, struct wl_display *wl_display, struct image *texture); -void surface_draw(struct surface *surface, struct color *color, struct image *texture); +void surface_initialise( + struct surface *surface, + struct wl_display *wl_display, + struct image *texture); +void surface_draw( + struct surface *surface, + struct color *color, + struct image *texture); #endif /* SURFACE_H */ |