Commit af6472a5 authored by epenner@chromium.org's avatar epenner@chromium.org

CC: Disable AA on Android.

It's not looking like we can fix all the regressions
in M29, so this disables it for beta. We can re-enable
if we get all the relevant patches into the branch.

BUG=256474

Review URL: https://chromiumcodereview.appspot.com/19460019

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@213362 0039d316-1c4b-4281-b951-d872f2087c98
parent 35c0f98c
...@@ -75,6 +75,10 @@ void SetContentCommandLineFlags(int max_render_process_count, ...@@ -75,6 +75,10 @@ void SetContentCommandLineFlags(int max_render_process_count,
// Disable <canvas> path antialiasing. // Disable <canvas> path antialiasing.
parsed_command_line->AppendSwitch(switches::kDisable2dCanvasAntialiasing); parsed_command_line->AppendSwitch(switches::kDisable2dCanvasAntialiasing);
// Disable anti-aliasing.
parsed_command_line->AppendSwitch(
cc::switches::kDisableCompositedAntialiasing);
if (!plugin_descriptor.empty()) { if (!plugin_descriptor.empty()) {
parsed_command_line->AppendSwitchNative( parsed_command_line->AppendSwitchNative(
switches::kRegisterPepperPlugins, plugin_descriptor); switches::kRegisterPepperPlugins, plugin_descriptor);
......
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