Commit 14b99027 authored by pfeldman@chromium.org's avatar pfeldman@chromium.org

Revert of cc: Enable impl-side painting by default on all platforms where...

Revert of cc: Enable impl-side painting by default on all platforms where threaded compositing is used. (https://codereview.chromium.org/242803007/)

Reason for revert:
This makes DevTools unusable on Linux Aura, see crbug.com/367673.

Original issue's description:
> cc: Enable impl-side painting by default on all platforms where threaded compositing is used.
> 
> BUG=169282
> 
> Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=266471

TBR=piman@chromium.org,vangelis@chromium.org,enne@chromium.org,reveman@chromium.org
NOTREECHECKS=true
NOTRY=true
BUG=169282

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

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@266499 0039d316-1c4b-4281-b951-d872f2087c98
parent c08a03cc
...@@ -181,7 +181,11 @@ bool IsImplSidePaintingEnabled() { ...@@ -181,7 +181,11 @@ bool IsImplSidePaintingEnabled() {
else if (command_line.HasSwitch(switches::kEnableImplSidePainting)) else if (command_line.HasSwitch(switches::kEnableImplSidePainting))
return true; return true;
return IsThreadedCompositingEnabled(); #if defined(OS_ANDROID)
return true;
#else
return false;
#endif
} }
bool IsGpuRasterizationEnabled() { bool IsGpuRasterizationEnabled() {
......
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