aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop/output.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/desktop/output.c')
-rw-r--r--sway/desktop/output.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/desktop/output.c b/sway/desktop/output.c
index 5c26ac52..37528cac 100644
--- a/sway/desktop/output.c
+++ b/sway/desktop/output.c
@@ -285,10 +285,10 @@ static void render_surface_iterator(struct wlr_surface *surface, int sx, int sy,
285 intersects = get_view_box(&data->root_geo, data->output, data->view, 285 intersects = get_view_box(&data->root_geo, data->output, data->view,
286 sx, sy, &box); 286 sx, sy, &box);
287 } else { 287 } else {
288 if (!wlr_surface_has_buffer(surface)) { 288 texture = wlr_surface_get_texture(surface);
289 if (texture == NULL) {
289 return; 290 return;
290 } 291 }
291 texture = surface->texture;
292 intersects = get_surface_box(&data->root_geo, data->output, surface, 292 intersects = get_surface_box(&data->root_geo, data->output, surface,
293 sx, sy, &box); 293 sx, sy, &box);
294 } 294 }