This commit is contained in:
dec05eba 2023-09-08 11:34:14 +02:00
parent e4d094d605
commit bccb5ba8f4

View File

@ -554,11 +554,7 @@ void gsr_egl_unload(gsr_egl *self) {
} }
bool gsr_egl_supports_wayland_capture(gsr_egl *self) { bool gsr_egl_supports_wayland_capture(gsr_egl *self) {
// TODO: wlroots capture is broken right now (black screen) on amd and multiple monitors return !!self->wayland.export_manager && self->wayland.num_outputs > 0;
// so it has to be disabled right now. Find out why it happens and fix it.
(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) { bool gsr_egl_start_capture(gsr_egl *self, const char *monitor_to_capture) {