Index: gm/mixedtextblobs.cpp |
diff --git a/gm/mixedtextblobs.cpp b/gm/mixedtextblobs.cpp |
index 681b0b7cb1d0714425602825ffead09917ea8de1..af39abd0f4f749b052654c03e374790449762150 100644 |
--- a/gm/mixedtextblobs.cpp |
+++ b/gm/mixedtextblobs.cpp |
@@ -69,6 +69,7 @@ protected: |
// LCD |
paint.setTextSize(32); |
text = "LCD!!!!!"; |
+ paint.setAntiAlias(true); |
paint.setSubpixelText(true); |
paint.setLCDRenderText(true); |
paint.measureText(text, strlen(text), &bounds); |
@@ -78,6 +79,7 @@ protected: |
// color emoji |
if (fEmojiTypeface) { |
+ paint.setAntiAlias(false); |
paint.setSubpixelText(false); |
paint.setLCDRenderText(false); |
paint.setTypeface(fEmojiTypeface); |