mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-07 14:06:00 +01:00
Fix client cursors hotspot on scaled outputs
This commit is contained in:
parent
c5fa415a03
commit
5dc303fc26
1 changed files with 4 additions and 10 deletions
|
@ -346,12 +346,6 @@ static void output_cursor_render(struct wlr_output_cursor *cursor,
|
||||||
float translate[16];
|
float translate[16];
|
||||||
wlr_matrix_translate(&translate, cursor_box.x, cursor_box.y, 0);
|
wlr_matrix_translate(&translate, cursor_box.x, cursor_box.y, 0);
|
||||||
|
|
||||||
// Assume cursors without a surface are already scaled for the output
|
|
||||||
if (cursor->surface != NULL) {
|
|
||||||
cursor_box.width *= cursor->output->scale;
|
|
||||||
cursor_box.height *= cursor->output->scale;
|
|
||||||
}
|
|
||||||
|
|
||||||
float scale[16];
|
float scale[16];
|
||||||
wlr_matrix_scale(&scale, cursor_box.width, cursor_box.height, 1);
|
wlr_matrix_scale(&scale, cursor_box.width, cursor_box.height, 1);
|
||||||
|
|
||||||
|
@ -546,8 +540,8 @@ static void output_cursor_update_visible(struct wlr_output_cursor *cursor) {
|
||||||
static void output_cursor_commit(struct wlr_output_cursor *cursor) {
|
static void output_cursor_commit(struct wlr_output_cursor *cursor) {
|
||||||
// Some clients commit a cursor surface with a NULL buffer to hide it.
|
// Some clients commit a cursor surface with a NULL buffer to hide it.
|
||||||
cursor->enabled = wlr_surface_has_buffer(cursor->surface);
|
cursor->enabled = wlr_surface_has_buffer(cursor->surface);
|
||||||
cursor->width = cursor->surface->current->width;
|
cursor->width = cursor->surface->current->width * cursor->output->scale;
|
||||||
cursor->height = cursor->surface->current->height;
|
cursor->height = cursor->surface->current->height * cursor->output->scale;
|
||||||
|
|
||||||
if (cursor->output->hardware_cursor != cursor) {
|
if (cursor->output->hardware_cursor != cursor) {
|
||||||
cursor->output->needs_swap = true;
|
cursor->output->needs_swap = true;
|
||||||
|
@ -580,8 +574,8 @@ void wlr_output_cursor_set_surface(struct wlr_output_cursor *cursor,
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
cursor->hotspot_x = hotspot_x;
|
cursor->hotspot_x = hotspot_x * cursor->output->scale;
|
||||||
cursor->hotspot_y = hotspot_y;
|
cursor->hotspot_y = hotspot_y * cursor->output->scale;
|
||||||
|
|
||||||
if (surface && surface == cursor->surface) {
|
if (surface && surface == cursor->surface) {
|
||||||
if (cursor->output->hardware_cursor == cursor &&
|
if (cursor->output->hardware_cursor == cursor &&
|
||||||
|
|
Loading…
Reference in a new issue