From 714561987e264c5f3e9fb01d9ebbf545225b35b7 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Sat, 14 Sep 2024 01:57:00 +0200 Subject: Properly damage if moving cursor Only damage if cursor is inside the target area --- src/capture/kms.c | 2 +- src/capture/xcomposite.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/capture') diff --git a/src/capture/kms.c b/src/capture/kms.c index 9ba4bd2..9287a8b 100644 --- a/src/capture/kms.c +++ b/src/capture/kms.c @@ -203,7 +203,7 @@ static void gsr_capture_kms_on_event(gsr_capture *cap, gsr_egl *egl) { return; XEvent *xev = gsr_egl_get_event_data(egl); - gsr_cursor_update(&self->x11_cursor, xev); + gsr_cursor_on_event(&self->x11_cursor, xev); } static float monitor_rotation_to_radians(gsr_monitor_rotation rot) { diff --git a/src/capture/xcomposite.c b/src/capture/xcomposite.c index e99cabf..1b6021b 100644 --- a/src/capture/xcomposite.c +++ b/src/capture/xcomposite.c @@ -230,7 +230,7 @@ static void gsr_capture_xcomposite_on_event(gsr_capture *cap, gsr_egl *egl) { } } - gsr_cursor_update(&self->cursor, xev); + gsr_cursor_on_event(&self->cursor, xev); } static bool gsr_capture_xcomposite_should_stop(gsr_capture *cap, bool *err) { -- cgit v1.2.3