aboutsummaryrefslogtreecommitdiffhomepage
path: root/gm/mixedtextblobs.cpp
diff options
context:
space:
mode:
authorGravatar joshualitt <joshualitt@chromium.org>2015-07-24 13:16:24 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-07-24 13:16:24 -0700
commit20dac8856594aa633c8c7562304c865864f666ff (patch)
tree9b60e013198eca0ef0b9550311b6165ad80a7e6a /gm/mixedtextblobs.cpp
parentd18b861061253c8691949379546a7f96c9e251c9 (diff)
mixed text blobs really draws LCD
TBR=bsalomon@google.com BUG=skia: Review URL: https://codereview.chromium.org/1261483002
Diffstat (limited to 'gm/mixedtextblobs.cpp')
-rw-r--r--gm/mixedtextblobs.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/gm/mixedtextblobs.cpp b/gm/mixedtextblobs.cpp
index 32ebdec924..a98f531f21 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);