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 c696e5b commit 6d652dfCopy full SHA for 6d652df
src/flutter/shell/platform/linux_embedded/flutter_elinux_engine.cc
@@ -42,7 +42,10 @@ FlutterRendererConfig GetRendererConfig() {
42
}
43
return host->view()->ClearCurrent();
44
};
45
- config.open_gl.fbo_reset_after_present = true;
+ // Temporary disabled fbo_reset_after_present to avoid flicker and other
46
+ // rendering issues on some H/W. See
47
+ // https://github.com/sony/flutter-embedded-linux/issues/334
48
+ config.open_gl.fbo_reset_after_present = false;
49
#if defined(USE_OPENGL_DIRTY_REGION_MANAGEMENT)
50
config.open_gl.present_with_info =
51
[](void* user_data, const FlutterPresentInfo* info) -> bool {
0 commit comments