Skip to content

Commit

Permalink
Enable libtxt as the default text renderer (#4779)
Browse files Browse the repository at this point in the history
  • Loading branch information
jason-simmons committed Mar 13, 2018
1 parent e44cd55 commit e61bb9a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion shell/common/shell.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down
6 changes: 3 additions & 3 deletions shell/common/switches.h
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit e61bb9a

Please sign in to comment.