OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2013 Google Inc. | 2 * Copyright 2013 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 "SkFontMgr.h" | 10 #include "SkFontMgr.h" |
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
181 } | 181 } |
182 } | 182 } |
183 | 183 |
184 void onDraw(SkCanvas* canvas) override { | 184 void onDraw(SkCanvas* canvas) override { |
185 SkPaint paint; | 185 SkPaint paint; |
186 paint.setAntiAlias(true); | 186 paint.setAntiAlias(true); |
187 paint.setLCDRenderText(true); | 187 paint.setLCDRenderText(true); |
188 paint.setSubpixelText(true); | 188 paint.setSubpixelText(true); |
189 paint.setTextSize(17); | 189 paint.setTextSize(17); |
190 | 190 |
191 static const char* gNames[] = { | 191 const char* gNames[] = { |
192 "Helvetica Neue", "Arial" | 192 "Helvetica Neue", "Arial" |
193 }; | 193 }; |
194 | 194 |
195 SkAutoTUnref<SkFontStyleSet> fset; | 195 SkAutoTUnref<SkFontStyleSet> fset; |
196 for (size_t i = 0; i < SK_ARRAY_COUNT(gNames); ++i) { | 196 for (size_t i = 0; i < SK_ARRAY_COUNT(gNames); ++i) { |
197 fset.reset(fFM->matchFamily(gNames[i])); | 197 fset.reset(fFM->matchFamily(gNames[i])); |
198 if (fset->count() > 0) { | 198 if (fset->count() > 0) { |
199 break; | 199 break; |
200 } | 200 } |
201 } | 201 } |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
302 | 302 |
303 DEF_GM(return new FontMgrGM;) | 303 DEF_GM(return new FontMgrGM;) |
304 DEF_GM(return new FontMgrMatchGM;) | 304 DEF_GM(return new FontMgrMatchGM;) |
305 DEF_GM(return new FontMgrBoundsGM(1.0, 0);) | 305 DEF_GM(return new FontMgrBoundsGM(1.0, 0);) |
306 DEF_GM(return new FontMgrBoundsGM(0.75, 0);) | 306 DEF_GM(return new FontMgrBoundsGM(0.75, 0);) |
307 DEF_GM(return new FontMgrBoundsGM(1.0, -0.25);) | 307 DEF_GM(return new FontMgrBoundsGM(1.0, -0.25);) |
308 | 308 |
309 #ifdef SK_BUILD_FOR_WIN | 309 #ifdef SK_BUILD_FOR_WIN |
310 DEF_GM(return new FontMgrGM(SkFontMgr_New_DirectWrite());) | 310 DEF_GM(return new FontMgrGM(SkFontMgr_New_DirectWrite());) |
311 #endif | 311 #endif |
OLD | NEW |