mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-01 22:58:38 -04:00
Transform cursor hotspot
This commit is contained in:
parent
2e2d63a164
commit
6656e25fd4
2 changed files with 49 additions and 45 deletions
|
|
@ -558,38 +558,6 @@ static bool wlr_drm_connector_set_cursor(struct wlr_output *output,
|
|||
}
|
||||
}
|
||||
|
||||
// TODO: this doesn't belong here
|
||||
// switch (output->transform) {
|
||||
// case WL_OUTPUT_TRANSFORM_90:
|
||||
// output->cursor.hotspot_x = hotspot_x;
|
||||
// output->cursor.hotspot_y = -plane->surf.height + hotspot_y;
|
||||
// break;
|
||||
// case WL_OUTPUT_TRANSFORM_180:
|
||||
// output->cursor.hotspot_x = plane->surf.width - hotspot_x;
|
||||
// output->cursor.hotspot_y = plane->surf.height - hotspot_y;
|
||||
// break;
|
||||
// case WL_OUTPUT_TRANSFORM_270:
|
||||
// output->cursor.hotspot_x = -plane->surf.height + hotspot_x;
|
||||
// output->cursor.hotspot_y = hotspot_y;
|
||||
// break;
|
||||
// case WL_OUTPUT_TRANSFORM_FLIPPED:
|
||||
// output->cursor.hotspot_x = plane->surf.width - hotspot_x;
|
||||
// output->cursor.hotspot_y = hotspot_y;
|
||||
// break;
|
||||
// case WL_OUTPUT_TRANSFORM_FLIPPED_90:
|
||||
// output->cursor.hotspot_x = hotspot_x;
|
||||
// output->cursor.hotspot_y = -hotspot_y;
|
||||
// break;
|
||||
// case WL_OUTPUT_TRANSFORM_FLIPPED_180:
|
||||
// output->cursor.hotspot_x = hotspot_x;
|
||||
// output->cursor.hotspot_y = plane->surf.height - hotspot_y;
|
||||
// break;
|
||||
// case WL_OUTPUT_TRANSFORM_FLIPPED_270:
|
||||
// output->cursor.hotspot_x = -plane->surf.height + hotspot_x;
|
||||
// output->cursor.hotspot_y = plane->surf.width - hotspot_y;
|
||||
// break;
|
||||
// }
|
||||
|
||||
if (!update_pixels) {
|
||||
// Only update the cursor hotspot
|
||||
return true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue