From d9fcdfb676fcec50b0bdf6e57731b511fa922b46 Mon Sep 17 00:00:00 2001 From: Jason Simmons Date: Mon, 12 Mar 2018 11:15:21 -0700 Subject: [PATCH] Enable libtxt as the default text renderer (#4773) --- shell/common/shell.cc | 2 +- shell/common/switches.h | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/shell/common/shell.cc b/shell/common/shell.cc index f32356a4e..14f8fee84 100644 --- a/shell/common/shell.cc +++ b/shell/common/shell.cc @@ -121,7 +121,7 @@ void Shell::InitStandalone(fxl::CommandLine command_line, command_line.HasOption(FlagForSwitch(Switch::EnableSoftwareRendering)); settings.using_blink = - !command_line.HasOption(FlagForSwitch(Switch::EnableTxt)); + command_line.HasOption(FlagForSwitch(Switch::EnableBlink)); settings.endless_trace_buffer = command_line.HasOption(FlagForSwitch(Switch::EndlessTraceBuffer)); diff --git a/shell/common/switches.h b/shell/common/switches.h index 8ee6a93dc..91778a78e 100644 --- a/shell/common/switches.h +++ b/shell/common/switches.h @@ -63,9 +63,9 @@ DEF_SWITCH(SkiaDeterministicRendering, "Skips the call to SkGraphics::Init(), thus avoiding swapping out" "some Skia function pointers based on available CPU features. This" "is used to obtain 100% deterministic behavior in Skia rendering.") -DEF_SWITCH(EnableTxt, - "enable-txt", - "Enable libtxt as the text shaping library instead of Blink.") +DEF_SWITCH(EnableBlink, + "enable-blink", + "Enable Blink as the text shaping library instead of libtxt.") DEF_SWITCH(FLX, "flx", "Specify the FLX path.") DEF_SWITCH(FlutterAssetsDir, "flutter-assets-dir", -- GitLab