| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #include "gm.h" | 8 #include "gm.h" |
| 9 | 9 |
| 10 #include "Resources.h" | 10 #include "Resources.h" |
| 11 #include "SkBlurMask.h" | 11 #include "SkBlurMask.h" |
| 12 #include "SkBlurMaskFilter.h" | 12 #include "SkBlurMaskFilter.h" |
| 13 #include "SkCanvas.h" | 13 #include "SkCanvas.h" |
| 14 #include "SkGradientShader.h" | 14 #include "SkGradientShader.h" |
| 15 #include "SkImage.h" | 15 #include "SkImage.h" |
| 16 #include "SkRandom.h" | 16 #include "SkRandom.h" |
| 17 #include "SkStream.h" | 17 #include "SkStream.h" |
| 18 #include "SkSurface.h" | 18 #include "SkSurface.h" |
| 19 #include "SkTextBlob.h" | 19 #include "SkTextBlob.h" |
| 20 #include "SkTypeface.h" | 20 #include "SkTypeface.h" |
| 21 | 21 |
| 22 namespace skiagm { | 22 namespace skiagm { |
| 23 class TextBlobMixedSizes : public GM { | 23 class TextBlobMixedSizes : public GM { |
| 24 public: | 24 public: |
| 25 // This gm tests that textblobs of mixed sizes with a large glyph will rende
r properly | 25 // This gm tests that textblobs of mixed sizes with a large glyph will rende
r properly |
| 26 TextBlobMixedSizes(bool useDFT) : fUseDFT(useDFT) {} | 26 TextBlobMixedSizes(bool useDFT) : fUseDFT(useDFT) {} |
| 27 | 27 |
| 28 protected: | 28 protected: |
| 29 void onOnceBeforeDraw() override { | 29 void onOnceBeforeDraw() override { |
| 30 SkAutoTUnref<SkTypeface> typeface(GetResourceAsTypeface("/fonts/HangingS
.ttf")); | 30 sk_sp<SkTypeface> typeface(MakeResourceAsTypeface("/fonts/HangingS.ttf")
); |
| 31 SkTextBlobBuilder builder; | 31 SkTextBlobBuilder builder; |
| 32 | 32 |
| 33 // make textblob. To stress distance fields, we choose sizes appropriat
ely | 33 // make textblob. To stress distance fields, we choose sizes appropriat
ely |
| 34 SkPaint paint; | 34 SkPaint paint; |
| 35 paint.setAntiAlias(true); | 35 paint.setAntiAlias(true); |
| 36 paint.setSubpixelText(true); | 36 paint.setSubpixelText(true); |
| 37 paint.setLCDRenderText(true); | 37 paint.setLCDRenderText(true); |
| 38 paint.setTypeface(typeface); | 38 paint.setTypeface(typeface); |
| 39 | 39 |
| 40 const char* text = "Skia"; | 40 const char* text = "Skia"; |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 typedef GM INHERITED; | 189 typedef GM INHERITED; |
| 190 }; | 190 }; |
| 191 | 191 |
| 192 ////////////////////////////////////////////////////////////////////////////// | 192 ////////////////////////////////////////////////////////////////////////////// |
| 193 | 193 |
| 194 DEF_GM( return new TextBlobMixedSizes(false); ) | 194 DEF_GM( return new TextBlobMixedSizes(false); ) |
| 195 #if SK_SUPPORT_GPU | 195 #if SK_SUPPORT_GPU |
| 196 DEF_GM( return new TextBlobMixedSizes(true); ) | 196 DEF_GM( return new TextBlobMixedSizes(true); ) |
| 197 #endif | 197 #endif |
| 198 } | 198 } |
| OLD | NEW |