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 SkTextBlobBuilder builder; | 31 SkTextBlobBuilder builder; |
31 | 32 |
32 // make textblob. To stress distance fields, we choose sizes appropriat
ely | 33 // make textblob. To stress distance fields, we choose sizes appropriat
ely |
33 SkPaint paint; | 34 SkPaint paint; |
34 paint.setAntiAlias(true); | 35 paint.setAntiAlias(true); |
35 paint.setSubpixelText(true); | 36 paint.setSubpixelText(true); |
36 paint.setLCDRenderText(true); | 37 paint.setLCDRenderText(true); |
37 paint.setTypeface(MakeResourceAsTypeface("/fonts/HangingS.ttf")); | 38 paint.setTypeface(typeface); |
38 | 39 |
39 const char* text = "Skia"; | 40 const char* text = "Skia"; |
40 | 41 |
41 // extra large | 42 // extra large |
42 paint.setTextSize(262); | 43 paint.setTextSize(262); |
43 | 44 |
44 sk_tool_utils::add_to_text_blob(&builder, text, paint, 0, 0); | 45 sk_tool_utils::add_to_text_blob(&builder, text, paint, 0, 0); |
45 | 46 |
46 // large | 47 // large |
47 SkRect bounds; | 48 SkRect bounds; |
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
188 typedef GM INHERITED; | 189 typedef GM INHERITED; |
189 }; | 190 }; |
190 | 191 |
191 ////////////////////////////////////////////////////////////////////////////// | 192 ////////////////////////////////////////////////////////////////////////////// |
192 | 193 |
193 DEF_GM( return new TextBlobMixedSizes(false); ) | 194 DEF_GM( return new TextBlobMixedSizes(false); ) |
194 #if SK_SUPPORT_GPU | 195 #if SK_SUPPORT_GPU |
195 DEF_GM( return new TextBlobMixedSizes(true); ) | 196 DEF_GM( return new TextBlobMixedSizes(true); ) |
196 #endif | 197 #endif |
197 } | 198 } |
OLD | NEW |