We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5dab228 commit 2ad0ccfCopy full SHA for 2ad0ccf
src/flutter/shell/platform/linux_embedded/surface/elinux_egl_surface.cc
@@ -31,6 +31,15 @@ bool ELinuxEGLSurface::MakeCurrent() const {
31
<< get_egl_error_cause();
32
return false;
33
}
34
+
35
+#if defined(DISPLAY_BACKEND_TYPE_WAYLAND)
36
+ // Non-blocking when swappipping buffers on Wayland.
37
+ if (eglSwapInterval(display_, 0) != EGL_TRUE) {
38
+ ELINUX_LOG(ERROR) << "Failed to eglSwapInterval(Free): "
39
+ << get_egl_error_cause();
40
+ }
41
+#endif
42
43
return true;
44
45
0 commit comments