summaryrefslogtreecommitdiff
path: root/src/surface.c
diff options
context:
space:
mode:
authorLeon Henrik Plickat <leonhenrik.plickat@stud.uni-goettingen.de>2020-09-24 18:50:50 +0200
committerLeon Henrik Plickat <leonhenrik.plickat@stud.uni-goettingen.de>2020-09-24 18:50:50 +0200
commit3a85053e4e72e7bd19790032e5851d2a6c785e9e (patch)
tree685cb56f66eb3d979e73e2611ff8c59b065dc6dd /src/surface.c
parent76c39ec0b1b6e48f8aa527c481a03f9aa6bfe472 (diff)
downloadwlclock-3a85053e4e72e7bd19790032e5851d2a6c785e9e.tar.gz
wlclock-3a85053e4e72e7bd19790032e5851d2a6c785e9e.tar.bz2
Render background
Diffstat (limited to 'src/surface.c')
-rw-r--r--src/surface.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/surface.c b/src/surface.c
index 9e6c8e2..243a23d 100644
--- a/src/surface.c
+++ b/src/surface.c
@@ -18,6 +18,7 @@
#include"misc.h"
#include"surface.h"
#include"buffer.h"
+#include"render.h"
static uint32_t min (uint32_t a, uint32_t b)
{
@@ -149,7 +150,7 @@ void update_surface (struct Wlclock_surface *surface)
if ( surface == NULL || ! surface->configured )
return;
configure_layer_surface(surface);
- // render_surface_frame(surface); // TODO
+ render_surface_frame(surface);
wl_surface_commit(surface->surface);
}