Commit 3b3a5b90 authored by chrishtr@chromium.org's avatar chrishtr@chromium.org

Turn on impl-side painting when --enable-bleeding-edge-rendering-fast-paths is true.

BUG=364934

Review URL: https://codereview.chromium.org/253153002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@267089 0039d316-1c4b-4281-b951-d872f2087c98
parent 2bc19e53
...@@ -200,6 +200,9 @@ bool IsImplSidePaintingEnabled() { ...@@ -200,6 +200,9 @@ bool IsImplSidePaintingEnabled() {
return false; return false;
else if (command_line.HasSwitch(switches::kEnableImplSidePainting)) else if (command_line.HasSwitch(switches::kEnableImplSidePainting))
return true; return true;
else if (command_line.HasSwitch(
switches::kEnableBleedingEdgeRenderingFastPaths))
return true;
return IsThreadedCompositingEnabled(); return IsThreadedCompositingEnabled();
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment