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

Side by Side Diff: gm/getpostextpath.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/gammatext.cpp ('k') | gm/glyph_pos.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 2012 Google Inc. 2 * Copyright 2012 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 "SkPaint.h" 10 #include "SkPaint.h"
(...skipping 24 matching lines...) Expand all
35 } 35 }
36 36
37 virtual void onDraw(SkCanvas* canvas) { 37 virtual void onDraw(SkCanvas* canvas) {
38 // explicitly add spaces, to test a prev. bug 38 // explicitly add spaces, to test a prev. bug
39 const char* text = "Ham bur ge fons"; 39 const char* text = "Ham bur ge fons";
40 int len = SkToInt(strlen(text)); 40 int len = SkToInt(strlen(text));
41 SkPath path; 41 SkPath path;
42 42
43 SkPaint paint; 43 SkPaint paint;
44 paint.setAntiAlias(true); 44 paint.setAntiAlias(true);
45 sk_tool_utils::set_portable_typeface(&paint);
45 paint.setTextSize(SkIntToScalar(48)); 46 paint.setTextSize(SkIntToScalar(48));
46 47
47 canvas->translate(SkIntToScalar(10), SkIntToScalar(64)); 48 canvas->translate(SkIntToScalar(10), SkIntToScalar(64));
48 49
49 canvas->drawText(text, len, 0, 0, paint); 50 canvas->drawText(text, len, 0, 0, paint);
50 paint.getTextPath(text, len, 0, 0, &path); 51 paint.getTextPath(text, len, 0, 0, &path);
51 strokePath(canvas, path); 52 strokePath(canvas, path);
52 path.reset(); 53 path.reset();
53 54
54 SkAutoTArray<SkPoint> pos(len); 55 SkAutoTArray<SkPoint> pos(len);
(...skipping 13 matching lines...) Expand all
68 canvas->drawPosText(text, len, &pos[0], paint); 69 canvas->drawPosText(text, len, &pos[0], paint);
69 paint.getPosTextPath(text, len, &pos[0], &path); 70 paint.getPosTextPath(text, len, &pos[0], &path);
70 strokePath(canvas, path); 71 strokePath(canvas, path);
71 } 72 }
72 }; 73 };
73 74
74 ////////////////////////////////////////////////////////////////////////////// 75 //////////////////////////////////////////////////////////////////////////////
75 76
76 static skiagm::GM* F(void*) { return new GetPosTextPathGM; } 77 static skiagm::GM* F(void*) { return new GetPosTextPathGM; }
77 static skiagm::GMRegistry gR(F); 78 static skiagm::GMRegistry gR(F);
OLDNEW
« no previous file with comments | « gm/gammatext.cpp ('k') | gm/glyph_pos.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698