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

Side by Side Diff: gm/stroketext.cpp

Issue 407183003: add portable and canonical font support for DM (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: add atexit; rename to create_... Created 6 years, 4 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/strokefill.cpp ('k') | gm/texteffects.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 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 } 80 }
81 81
82 virtual SkISize onISize() SK_OVERRIDE { 82 virtual 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 virtual 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 91
91 paint.setTextSize(kBelowThreshold_TextSize); 92 paint.setTextSize(kBelowThreshold_TextSize);
92 draw_text_set(canvas, paint); 93 draw_text_set(canvas, paint);
93 94
94 canvas->translate(600, 0); 95 canvas->translate(600, 0);
95 paint.setTextSize(kAboveThreshold_TextSize); 96 paint.setTextSize(kAboveThreshold_TextSize);
96 draw_text_set(canvas, paint); 97 draw_text_set(canvas, paint);
97 } 98 }
98 99
99 private: 100 private:
100 typedef skiagm::GM INHERITED; 101 typedef skiagm::GM INHERITED;
101 }; 102 };
102 103
103 DEF_GM( return SkNEW(StrokeTextGM); ) 104 DEF_GM( return SkNEW(StrokeTextGM); )
OLDNEW
« no previous file with comments | « gm/strokefill.cpp ('k') | gm/texteffects.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698