summaryrefslogtreecommitdiffstats
path: root/sway/desktop/output.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/desktop/output.c')
-rw-r--r--sway/desktop/output.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sway/desktop/output.c b/sway/desktop/output.c
index aa18f1b8..3bbd0bb2 100644
--- a/sway/desktop/output.c
+++ b/sway/desktop/output.c
@@ -332,14 +332,14 @@ void output_damage_whole(struct sway_output *output) {
332 wlr_output_damage_add_whole(output->damage); 332 wlr_output_damage_add_whole(output->damage);
333} 333}
334 334
335void output_damage_whole_surface(struct sway_output *output, 335void output_damage_surface(struct sway_output *output, double ox, double oy,
336 double ox, double oy, struct wlr_surface *surface) { 336 struct wlr_surface *surface, bool whole) {
337 // TODO 337 // TODO
338 output_damage_whole(output); 338 output_damage_whole(output);
339} 339}
340 340
341void output_damage_whole_view(struct sway_output *output, 341void output_damage_view(struct sway_output *output, struct sway_view *view,
342 struct sway_view *view) { 342 bool whole) {
343 // TODO 343 // TODO
344 output_damage_whole(output); 344 output_damage_whole(output);
345} 345}