| Index: gm/quadpaths.cpp
|
| diff --git a/gm/quadpaths.cpp b/gm/quadpaths.cpp
|
| index f21fdd98e1496725943cb1da3022cbbcac628373..f2c4cf1fc8f864c850a4995993623d066fa10f86 100644
|
| --- a/gm/quadpaths.cpp
|
| +++ b/gm/quadpaths.cpp
|
| @@ -86,6 +86,7 @@ protected:
|
| SkPaint titlePaint;
|
| titlePaint.setColor(SK_ColorBLACK);
|
| titlePaint.setAntiAlias(true);
|
| + sk_tool_utils::set_portable_typeface(&titlePaint);
|
| titlePaint.setLCDRenderText(true);
|
| titlePaint.setTextSize(15 * SK_Scalar1);
|
| const char title[] = "Quad Drawn Into Rectangle Clips With "
|
| @@ -130,6 +131,7 @@ protected:
|
| SkPaint labelPaint;
|
| labelPaint.setColor(color);
|
| labelPaint.setAntiAlias(true);
|
| + sk_tool_utils::set_portable_typeface(&labelPaint);
|
| labelPaint.setLCDRenderText(true);
|
| labelPaint.setTextSize(10 * SK_Scalar1);
|
| canvas->drawText(gStyles[style].fName,
|
| @@ -233,6 +235,7 @@ protected:
|
| SkPaint titlePaint;
|
| titlePaint.setColor(SK_ColorBLACK);
|
| titlePaint.setAntiAlias(true);
|
| + sk_tool_utils::set_portable_typeface(&titlePaint);
|
| titlePaint.setLCDRenderText(true);
|
| titlePaint.setTextSize(15 * SK_Scalar1);
|
| const char title[] = "Quad Closed Drawn Into Rectangle Clips With "
|
| @@ -277,6 +280,7 @@ protected:
|
| SkPaint labelPaint;
|
| labelPaint.setColor(color);
|
| labelPaint.setAntiAlias(true);
|
| + sk_tool_utils::set_portable_typeface(&labelPaint);
|
| labelPaint.setLCDRenderText(true);
|
| labelPaint.setTextSize(10 * SK_Scalar1);
|
| canvas->drawText(gStyles[style].fName,
|
|
|