mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 20:05:58 +01:00
Merge pull request #710 from emersion/dont-move-hidden-cursors
output: don't move hidden cursors
This commit is contained in:
commit
7cdad5cde4
2 changed files with 76 additions and 76 deletions
|
@ -544,10 +544,10 @@ static bool wlr_drm_connector_set_cursor(struct wlr_output *output,
|
||||||
if (!crtc) {
|
if (!crtc) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
struct wlr_drm_plane *plane = crtc->cursor;
|
|
||||||
|
|
||||||
// We don't have a real cursor plane, so we make a fake one
|
struct wlr_drm_plane *plane = crtc->cursor;
|
||||||
if (!plane) {
|
if (!plane) {
|
||||||
|
// We don't have a real cursor plane, so we make a fake one
|
||||||
plane = calloc(1, sizeof(*plane));
|
plane = calloc(1, sizeof(*plane));
|
||||||
if (!plane) {
|
if (!plane) {
|
||||||
wlr_log_errno(L_ERROR, "Allocation failed");
|
wlr_log_errno(L_ERROR, "Allocation failed");
|
||||||
|
@ -556,16 +556,6 @@ static bool wlr_drm_connector_set_cursor(struct wlr_output *output,
|
||||||
crtc->cursor = plane;
|
crtc->cursor = plane;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!buf && update_pixels) {
|
|
||||||
// Hide the cursor
|
|
||||||
plane->cursor_enabled = false;
|
|
||||||
if (!drm->session->active) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return drm->iface->crtc_set_cursor(drm, crtc, NULL);
|
|
||||||
}
|
|
||||||
plane->cursor_enabled = true;
|
|
||||||
|
|
||||||
if (!plane->surf.gbm) {
|
if (!plane->surf.gbm) {
|
||||||
int ret;
|
int ret;
|
||||||
uint64_t w, h;
|
uint64_t w, h;
|
||||||
|
@ -607,10 +597,7 @@ static bool wlr_drm_connector_set_cursor(struct wlr_output *output,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
struct wlr_box hotspot = {
|
struct wlr_box hotspot = { .x = hotspot_x, .y = hotspot_y };
|
||||||
.x = hotspot_x,
|
|
||||||
.y = hotspot_y,
|
|
||||||
};
|
|
||||||
enum wl_output_transform transform =
|
enum wl_output_transform transform =
|
||||||
wlr_output_transform_invert(output->transform);
|
wlr_output_transform_invert(output->transform);
|
||||||
wlr_box_transform(&hotspot, transform,
|
wlr_box_transform(&hotspot, transform,
|
||||||
|
@ -620,16 +607,19 @@ static bool wlr_drm_connector_set_cursor(struct wlr_output *output,
|
||||||
|
|
||||||
if (!update_pixels) {
|
if (!update_pixels) {
|
||||||
// Only update the cursor hotspot
|
// Only update the cursor hotspot
|
||||||
|
wlr_output_update_needs_swap(output);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct gbm_bo *bo = plane->cursor_bo;
|
plane->cursor_enabled = buf != NULL;
|
||||||
uint32_t bo_width = gbm_bo_get_width(bo);
|
|
||||||
uint32_t bo_height = gbm_bo_get_height(bo);
|
if (buf != NULL) {
|
||||||
|
uint32_t bo_width = gbm_bo_get_width(plane->cursor_bo);
|
||||||
|
uint32_t bo_height = gbm_bo_get_height(plane->cursor_bo);
|
||||||
|
|
||||||
uint32_t bo_stride;
|
uint32_t bo_stride;
|
||||||
void *bo_data;
|
void *bo_data;
|
||||||
|
if (!gbm_bo_map(plane->cursor_bo, 0, 0, bo_width, bo_height,
|
||||||
if (!gbm_bo_map(bo, 0, 0, bo_width, bo_height,
|
|
||||||
GBM_BO_TRANSFER_WRITE, &bo_stride, &bo_data)) {
|
GBM_BO_TRANSFER_WRITE, &bo_stride, &bo_data)) {
|
||||||
wlr_log_errno(L_ERROR, "Unable to map buffer");
|
wlr_log_errno(L_ERROR, "Unable to map buffer");
|
||||||
return false;
|
return false;
|
||||||
|
@ -657,12 +647,14 @@ static bool wlr_drm_connector_set_cursor(struct wlr_output *output,
|
||||||
|
|
||||||
wlr_drm_surface_swap_buffers(&plane->surf, NULL);
|
wlr_drm_surface_swap_buffers(&plane->surf, NULL);
|
||||||
|
|
||||||
gbm_bo_unmap(bo, bo_data);
|
gbm_bo_unmap(plane->cursor_bo, bo_data);
|
||||||
|
|
||||||
if (!drm->session->active) {
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!drm->session->active) {
|
||||||
|
return true; // will be committed when session is resumed
|
||||||
|
}
|
||||||
|
|
||||||
|
struct gbm_bo *bo = plane->cursor_enabled ? plane->cursor_bo : NULL;
|
||||||
bool ok = drm->iface->crtc_set_cursor(drm, crtc, bo);
|
bool ok = drm->iface->crtc_set_cursor(drm, crtc, bo);
|
||||||
if (ok) {
|
if (ok) {
|
||||||
wlr_output_update_needs_swap(output);
|
wlr_output_update_needs_swap(output);
|
||||||
|
@ -697,7 +689,7 @@ static bool wlr_drm_connector_move_cursor(struct wlr_output *output,
|
||||||
conn->cursor_y = box.y;
|
conn->cursor_y = box.y;
|
||||||
|
|
||||||
if (!drm->session->active) {
|
if (!drm->session->active) {
|
||||||
return true;
|
return true; // will be committed when session is resumed
|
||||||
}
|
}
|
||||||
|
|
||||||
bool ok = drm->iface->crtc_move_cursor(drm, conn->crtc, box.x, box.y);
|
bool ok = drm->iface->crtc_move_cursor(drm, conn->crtc, box.x, box.y);
|
||||||
|
|
|
@ -669,6 +669,31 @@ static void output_cursor_reset(struct wlr_output_cursor *cursor) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void output_cursor_update_visible(struct wlr_output_cursor *cursor) {
|
||||||
|
struct wlr_box output_box;
|
||||||
|
output_box.x = output_box.y = 0;
|
||||||
|
wlr_output_transformed_resolution(cursor->output, &output_box.width,
|
||||||
|
&output_box.height);
|
||||||
|
|
||||||
|
struct wlr_box cursor_box;
|
||||||
|
output_cursor_get_box(cursor, &cursor_box);
|
||||||
|
|
||||||
|
struct wlr_box intersection;
|
||||||
|
bool visible =
|
||||||
|
wlr_box_intersection(&output_box, &cursor_box, &intersection);
|
||||||
|
|
||||||
|
if (cursor->surface != NULL) {
|
||||||
|
if (cursor->visible && !visible) {
|
||||||
|
wlr_surface_send_leave(cursor->surface, cursor->output);
|
||||||
|
}
|
||||||
|
if (!cursor->visible && visible) {
|
||||||
|
wlr_surface_send_enter(cursor->surface, cursor->output);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
cursor->visible = visible;
|
||||||
|
}
|
||||||
|
|
||||||
bool wlr_output_cursor_set_image(struct wlr_output_cursor *cursor,
|
bool wlr_output_cursor_set_image(struct wlr_output_cursor *cursor,
|
||||||
const uint8_t *pixels, int32_t stride, uint32_t width, uint32_t height,
|
const uint8_t *pixels, int32_t stride, uint32_t width, uint32_t height,
|
||||||
int32_t hotspot_x, int32_t hotspot_y) {
|
int32_t hotspot_x, int32_t hotspot_y) {
|
||||||
|
@ -682,6 +707,7 @@ bool wlr_output_cursor_set_image(struct wlr_output_cursor *cursor,
|
||||||
cursor->height = height;
|
cursor->height = height;
|
||||||
cursor->hotspot_x = hotspot_x;
|
cursor->hotspot_x = hotspot_x;
|
||||||
cursor->hotspot_y = hotspot_y;
|
cursor->hotspot_y = hotspot_y;
|
||||||
|
output_cursor_update_visible(cursor);
|
||||||
|
|
||||||
struct wlr_output_cursor *hwcur = cursor->output->hardware_cursor;
|
struct wlr_output_cursor *hwcur = cursor->output->hardware_cursor;
|
||||||
if (cursor->output->impl->set_cursor && (hwcur == NULL || hwcur == cursor)) {
|
if (cursor->output->impl->set_cursor && (hwcur == NULL || hwcur == cursor)) {
|
||||||
|
@ -716,31 +742,6 @@ bool wlr_output_cursor_set_image(struct wlr_output_cursor *cursor,
|
||||||
stride, width, height, pixels);
|
stride, width, height, pixels);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void output_cursor_update_visible(struct wlr_output_cursor *cursor) {
|
|
||||||
struct wlr_box output_box;
|
|
||||||
output_box.x = output_box.y = 0;
|
|
||||||
wlr_output_transformed_resolution(cursor->output, &output_box.width,
|
|
||||||
&output_box.height);
|
|
||||||
|
|
||||||
struct wlr_box cursor_box;
|
|
||||||
output_cursor_get_box(cursor, &cursor_box);
|
|
||||||
|
|
||||||
struct wlr_box intersection;
|
|
||||||
bool visible =
|
|
||||||
wlr_box_intersection(&output_box, &cursor_box, &intersection);
|
|
||||||
|
|
||||||
if (cursor->surface != NULL) {
|
|
||||||
if (cursor->visible && !visible) {
|
|
||||||
wlr_surface_send_leave(cursor->surface, cursor->output);
|
|
||||||
}
|
|
||||||
if (!cursor->visible && visible) {
|
|
||||||
wlr_surface_send_enter(cursor->surface, cursor->output);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
cursor->visible = visible;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void output_cursor_commit(struct wlr_output_cursor *cursor) {
|
static void output_cursor_commit(struct wlr_output_cursor *cursor) {
|
||||||
if (cursor->output->hardware_cursor != cursor) {
|
if (cursor->output->hardware_cursor != cursor) {
|
||||||
output_cursor_damage_whole(cursor);
|
output_cursor_damage_whole(cursor);
|
||||||
|
@ -846,12 +847,18 @@ bool wlr_output_cursor_move(struct wlr_output_cursor *cursor,
|
||||||
output_cursor_damage_whole(cursor);
|
output_cursor_damage_whole(cursor);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool was_visible = cursor->visible;
|
||||||
x *= cursor->output->scale;
|
x *= cursor->output->scale;
|
||||||
y *= cursor->output->scale;
|
y *= cursor->output->scale;
|
||||||
cursor->x = x;
|
cursor->x = x;
|
||||||
cursor->y = y;
|
cursor->y = y;
|
||||||
output_cursor_update_visible(cursor);
|
output_cursor_update_visible(cursor);
|
||||||
|
|
||||||
|
if (!was_visible && !cursor->visible) {
|
||||||
|
// Cursor is still hidden, do nothing
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
if (cursor->output->hardware_cursor != cursor) {
|
if (cursor->output->hardware_cursor != cursor) {
|
||||||
output_cursor_damage_whole(cursor);
|
output_cursor_damage_whole(cursor);
|
||||||
return true;
|
return true;
|
||||||
|
@ -876,6 +883,7 @@ struct wlr_output_cursor *wlr_output_cursor_create(struct wlr_output *output) {
|
||||||
wl_list_init(&cursor->surface_destroy.link);
|
wl_list_init(&cursor->surface_destroy.link);
|
||||||
cursor->surface_destroy.notify = output_cursor_handle_destroy;
|
cursor->surface_destroy.notify = output_cursor_handle_destroy;
|
||||||
wl_list_insert(&output->cursors, &cursor->link);
|
wl_list_insert(&output->cursors, &cursor->link);
|
||||||
|
cursor->visible = true; // default position is at (0, 0)
|
||||||
return cursor;
|
return cursor;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue