Commit 2f7830b3 authored by backer@chromium.org's avatar backer@chromium.org

--force-compositing-mode on TOUCH_UI

We've got two texture transport paths that cover a wide range of hardware/driver configurations, so it's time to turn this on by default for TOUCH_UI.

BUG=none
TEST=run with --show-fps-counter on www.google.com to verify that simple pages use WebKit compositor

Review URL: http://codereview.chromium.org/7748040

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98454 0039d316-1c4b-4281-b951-d872f2087c98
parent a4f857f0
......@@ -1799,6 +1799,10 @@ WebPreferences TabContents::GetWebkitPrefs() {
web_prefs.accelerated_compositing_enabled = false;
#endif
#if defined(TOUCH_UI)
web_prefs.force_compositing_mode = true;
#endif
return web_prefs;
}
......
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