From 4e8c47a154276aa58fa7d0a6568e165accc97eeb Mon Sep 17 00:00:00 2001 From: dec05eba Date: Sat, 22 Jul 2023 04:38:08 +0200 Subject: Hide cursor when it's on another display --- src/capture/kms_cuda.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/capture/kms_cuda.c') diff --git a/src/capture/kms_cuda.c b/src/capture/kms_cuda.c index e7a2a1f..d74cbee 100644 --- a/src/capture/kms_cuda.c +++ b/src/capture/kms_cuda.c @@ -236,7 +236,7 @@ static bool gsr_capture_kms_cuda_should_stop(gsr_capture *cap, bool *err) { static gsr_kms_response_fd* find_drm_by_connector_id(gsr_kms_response *kms_response, uint32_t connector_id) { for(int i = 0; i < kms_response->num_fds; ++i) { - if(kms_response->fds[i].connector_id == connector_id) + if(kms_response->fds[i].connector_id == connector_id && !kms_response->fds[i].is_cursor) return &kms_response->fds[i]; } return NULL; @@ -244,7 +244,7 @@ static gsr_kms_response_fd* find_drm_by_connector_id(gsr_kms_response *kms_respo static gsr_kms_response_fd* find_first_combined_drm(gsr_kms_response *kms_response) { for(int i = 0; i < kms_response->num_fds; ++i) { - if(kms_response->fds[i].is_combined_plane) + if(kms_response->fds[i].is_combined_plane && !kms_response->fds[i].is_cursor) return &kms_response->fds[i]; } return NULL; -- cgit v1.2.3