0

[viz][fuchsia] Disable OOP-D by default on Fuchsia

VisDisplayCompositor doesn't quite work in the default Fuchsia
configuration just yet, disable by default for now. It appears that GPU
rasterization needs to be enabled by default for OOP-D to work but
that's blocked on other work.

Bug: 861853
Change-Id: Ic4d81c0b6df28ea1f1b48b5d31e3a00aa6db2e7b
Reviewed-on: https://chromium-review.googlesource.com/c/1385206
Reviewed-by: Sergey Ulanov <sergeyu@chromium.org>
Reviewed-by: kylechar <kylechar@chromium.org>
Reviewed-by: Fabrice de Gans-Riberi <fdegans@chromium.org>
Commit-Queue: James Robinson <jamesr@chromium.org>
Cr-Commit-Position: refs/heads/master@{#618059}
This commit is contained in:
James Robinson
2018-12-20 01:20:14 +00:00
committed by Commit Bot
parent 329deba05a
commit ea5fccd162

@ -26,7 +26,7 @@ const base::Feature kEnableSurfaceSynchronization{
// Enables running the display compositor as part of the viz service in the GPU
// process. This is also referred to as out-of-process display compositor
// (OOP-D).
#if defined(OS_CHROMEOS) || defined(OS_ANDROID)
#if defined(OS_CHROMEOS) || defined(OS_ANDROID) || defined(OS_FUCHSIA)
const base::Feature kVizDisplayCompositor{"VizDisplayCompositor",
base::FEATURE_DISABLED_BY_DEFAULT};
#else