diff options
author | dec05eba <dec05eba@protonmail.com> | 2023-07-22 20:16:34 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2023-07-22 20:17:29 +0200 |
commit | 9ba96b7205a798d32c2ade05968bc3e1f2ac83f1 (patch) | |
tree | ffbbd9ab7c41142d3779f526f6c8855598896eea /src/egl.c | |
parent | c96f804a6cf20d07f56bf4a923997bf1aa5a9e9b (diff) |
Disable wlroots capture until its fixed
Diffstat (limited to 'src/egl.c')
-rw-r--r-- | src/egl.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -375,5 +375,7 @@ 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; } |