summaryrefslogtreecommitdiff
path: root/src/surface.c
diff options
context:
space:
mode:
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);
}