aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2025-04-05 00:19:57 +0200
committerdec05eba <dec05eba@protonmail.com>2025-04-05 00:19:57 +0200
commit7be4e6b514405e770e2a47cb80b1684c0210d858 (patch)
tree395a547ae10b6f592e3dac6e7443ee09f3a80dbc
parent0a3acd4a63277cbb95dfc9a983e9b8ed5883ab47 (diff)
Only update cursor tracker every 100ms, fix cursor hotspot offset for x11HEAD1.3.2master
-rw-r--r--include/Overlay.hpp1
-rw-r--r--src/Overlay.cpp10
2 files changed, 8 insertions, 3 deletions
diff --git a/include/Overlay.hpp b/include/Overlay.hpp
index 4a9ef98..2aeb3f0 100644
--- a/include/Overlay.hpp
+++ b/include/Overlay.hpp
@@ -210,5 +210,6 @@ namespace gsr {
std::function<void()> on_region_selected;
std::unique_ptr<CursorTracker> cursor_tracker;
+ mgl::Clock cursor_tracker_update_clock;
};
} \ No newline at end of file
diff --git a/src/Overlay.cpp b/src/Overlay.cpp
index 3ae81a5..3d99e46 100644
--- a/src/Overlay.cpp
+++ b/src/Overlay.cpp
@@ -49,6 +49,7 @@ namespace gsr {
static const double replay_saving_notification_timeout_seconds = 0.5;
static const double notification_timeout_seconds = 2.0;
static const double notification_error_timeout_seconds = 5.0;
+ static const double cursor_tracker_update_timeout_sec = 0.1;
static mgl::Texture texture_from_ximage(XImage *img) {
uint8_t *texture_data = (uint8_t*)malloc(img->width * img->height * 3);
@@ -634,8 +635,11 @@ namespace gsr {
if(global_hotkeys_js)
global_hotkeys_js->poll_events();
- if(cursor_tracker)
- cursor_tracker->update();
+ if(cursor_tracker_update_clock.get_elapsed_time_seconds() >= cursor_tracker_update_timeout_sec) {
+ cursor_tracker_update_clock.restart();
+ if(cursor_tracker)
+ cursor_tracker->update();
+ }
handle_keyboard_mapping_event();
region_selector.poll_events();
@@ -958,7 +962,7 @@ namespace gsr {
// The real cursor doesn't move when all devices are grabbed, so we create our own cursor and diplay that while grabbed
cursor_hotspot = {0, 0};
xi_setup_fake_cursor();
- if(cursor_info) {
+ if(cursor_info && gsr_info.system_info.display_server == DisplayServer::WAYLAND) {
win->cursor_position.x += cursor_hotspot.x;
win->cursor_position.y += cursor_hotspot.y;
}