aboutsummaryrefslogtreecommitdiff
path: root/src/egl.c
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2023-07-22 20:12:41 +0200
committerdec05eba <dec05eba@protonmail.com>2023-07-22 20:12:41 +0200
commit9ca5b8ec3a818454ebb139ae9007184584aa2f5e (patch)
tree352efb7528496b1e68efa1749e44c3c47bfb2631 /src/egl.c
parent4de23c25561bae0026a97f7ed9d3d64f3d558aaa (diff)
Fix cursor offset in kms grab (amd/intel), disable wlroots capture until its fixed
Diffstat (limited to 'src/egl.c')
-rw-r--r--src/egl.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/egl.c b/src/egl.c
index d15a3ea..3bcb6fe 100644
--- a/src/egl.c
+++ b/src/egl.c
@@ -536,7 +536,9 @@ void gsr_egl_unload(gsr_egl *self) {
}
bool gsr_egl_supports_wayland_capture(gsr_egl *self) {
- return !!self->wayland.export_manager && self->wayland.num_outputs > 0;
+ (void)self;
+ return false;
+ //return !!self->wayland.export_manager && self->wayland.num_outputs > 0;
}
bool gsr_egl_start_capture(gsr_egl *self, const char *monitor_to_capture) {