Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(311)

Side by Side Diff: gm/fontmgr.cpp

Issue 2300623005: Replace a lot of 'static const' with 'constexpr' or 'const'. (Closed)
Patch Set: small msvc concession Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gm/filterfastbounds.cpp ('k') | gm/gammacolorfilter.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « gm/filterfastbounds.cpp ('k') | gm/gammacolorfilter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698