OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2014 Google Inc. | 2 * Copyright 2014 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 #include "SkCanvas.h" | 9 #include "SkCanvas.h" |
10 #include "SkDashPathEffect.h" | 10 #include "SkDashPathEffect.h" |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 // and caching the glyph. This GM wants to ensure that we draw stroking corr
ectly on both | 64 // and caching the glyph. This GM wants to ensure that we draw stroking corr
ectly on both |
65 // sides of this threshold. | 65 // sides of this threshold. |
66 enum { | 66 enum { |
67 kBelowThreshold_TextSize = 255, | 67 kBelowThreshold_TextSize = 255, |
68 kAboveThreshold_TextSize = 257 | 68 kAboveThreshold_TextSize = 257 |
69 }; | 69 }; |
70 public: | 70 public: |
71 StrokeTextGM() {} | 71 StrokeTextGM() {} |
72 | 72 |
73 protected: | 73 protected: |
74 virtual uint32_t onGetFlags() const SK_OVERRIDE { | 74 uint32_t onGetFlags() const SK_OVERRIDE { |
75 return kSkipTiled_Flag; | 75 return kSkipTiled_Flag; |
76 } | 76 } |
77 | 77 |
78 virtual SkString onShortName() SK_OVERRIDE { | 78 SkString onShortName() SK_OVERRIDE { |
79 return SkString("stroketext"); | 79 return SkString("stroketext"); |
80 } | 80 } |
81 | 81 |
82 virtual SkISize onISize() SK_OVERRIDE { | 82 SkISize onISize() SK_OVERRIDE { |
83 return SkISize::Make(1200, 480); | 83 return SkISize::Make(1200, 480); |
84 } | 84 } |
85 | 85 |
86 virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE { | 86 void onDraw(SkCanvas* canvas) SK_OVERRIDE { |
87 if (true) { test_nulldev(canvas); } | 87 if (true) { test_nulldev(canvas); } |
88 SkPaint paint; | 88 SkPaint paint; |
89 paint.setAntiAlias(true); | 89 paint.setAntiAlias(true); |
90 sk_tool_utils::set_portable_typeface(&paint); | 90 sk_tool_utils::set_portable_typeface(&paint); |
91 | 91 |
92 paint.setTextSize(kBelowThreshold_TextSize); | 92 paint.setTextSize(kBelowThreshold_TextSize); |
93 draw_text_set(canvas, paint); | 93 draw_text_set(canvas, paint); |
94 | 94 |
95 canvas->translate(600, 0); | 95 canvas->translate(600, 0); |
96 paint.setTextSize(kAboveThreshold_TextSize); | 96 paint.setTextSize(kAboveThreshold_TextSize); |
97 draw_text_set(canvas, paint); | 97 draw_text_set(canvas, paint); |
98 } | 98 } |
99 | 99 |
100 private: | 100 private: |
101 typedef skiagm::GM INHERITED; | 101 typedef skiagm::GM INHERITED; |
102 }; | 102 }; |
103 | 103 |
104 DEF_GM( return SkNEW(StrokeTextGM); ) | 104 DEF_GM( return SkNEW(StrokeTextGM); ) |
OLD | NEW |