diff options
Diffstat (limited to 'src/surface.c')
-rw-r--r-- | src/surface.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/surface.c b/src/surface.c index 79c8b6b..e3b16cb 100644 --- a/src/surface.c +++ b/src/surface.c @@ -202,16 +202,3 @@ void destroy_surface (struct Wlclock_surface *surface) free(surface); } -void update_all_hands (void) -{ - clocklog(1, "[surface] Updating all hands.\n"); - struct Wlclock_output *op, *tmp; - wl_list_for_each_safe(op, tmp, &context.outputs, link) - if ( op->surface != NULL ) - { - render_hands_frame(op->surface); - wl_surface_commit(op->surface->hands_surface); - wl_surface_commit(op->surface->background_surface); - } -} - |