diff options
author | emersion <contact@emersion.fr> | 2017-10-31 13:48:09 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2017-10-31 13:48:09 +0100 |
commit | c97b5ac4ce43794b68b8aabcf8005b9cbd60a51a (patch) | |
tree | c6de9f4b2e246f4ce0295f2e5dcf465d6fe61a8b | |
parent | 9142def292f300827c5c8e75e239e0f8c1da7138 (diff) |
Fix output_cursor_render bounds check
-rw-r--r-- | types/wlr_output.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/types/wlr_output.c b/types/wlr_output.c index 706f12fb..38bb03d5 100644 --- a/types/wlr_output.c +++ b/types/wlr_output.c @@ -263,9 +263,9 @@ static void output_cursor_render(struct wlr_output_cursor *cursor) { } struct wlr_box output_box; - memset(&output_box, 0, sizeof(output_box)); - wlr_output_effective_resolution(cursor->output, &output_box.width, - &output_box.height); + output_box.x = output_box.y = 0; + output_box.width = cursor->output->width; + output_box.height = cursor->output->height; struct wlr_box cursor_box; output_cursor_get_box(cursor, &cursor_box); @@ -335,12 +335,12 @@ bool wlr_output_cursor_set_image(struct wlr_output_cursor *cursor, if (cursor->output->hardware_cursor == NULL && cursor->output->impl->set_cursor) { - int ok = cursor->output->impl->set_cursor(cursor->output, pixels, - stride, width, height, hotspot_x, hotspot_y, true); - if (ok) { - cursor->output->hardware_cursor = cursor; - return true; - } + // int ok = cursor->output->impl->set_cursor(cursor->output, pixels, + // stride, width, height, hotspot_x, hotspot_y, true); + // if (ok) { + // cursor->output->hardware_cursor = cursor; + // return true; + // } } wlr_log(L_INFO, "Falling back to software cursor"); |