OLD | NEW |
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 21 matching lines...) Expand all Loading... |
32 } | 32 } |
33 | 33 |
34 void onDraw(SkCanvas* canvas) override { | 34 void onDraw(SkCanvas* canvas) override { |
35 // explicitly add spaces, to test a prev. bug | 35 // explicitly add spaces, to test a prev. bug |
36 const char* text = "Ham bur ge fons"; | 36 const char* text = "Ham bur ge fons"; |
37 int len = SkToInt(strlen(text)); | 37 int len = SkToInt(strlen(text)); |
38 SkPath path; | 38 SkPath path; |
39 | 39 |
40 SkPaint paint; | 40 SkPaint paint; |
41 paint.setAntiAlias(true); | 41 paint.setAntiAlias(true); |
42 sk_tool_utils::set_portable_typeface(&paint); | 42 sk_tool_utils::set_portable_typeface_always(&paint); |
43 paint.setTextSize(SkIntToScalar(48)); | 43 paint.setTextSize(SkIntToScalar(48)); |
44 | 44 |
45 canvas->translate(SkIntToScalar(10), SkIntToScalar(64)); | 45 canvas->translate(SkIntToScalar(10), SkIntToScalar(64)); |
46 | 46 |
47 canvas->drawText(text, len, 0, 0, paint); | 47 canvas->drawText(text, len, 0, 0, paint); |
48 paint.getTextPath(text, len, 0, 0, &path); | 48 paint.getTextPath(text, len, 0, 0, &path); |
49 strokePath(canvas, path); | 49 strokePath(canvas, path); |
50 path.reset(); | 50 path.reset(); |
51 | 51 |
52 SkAutoTArray<SkPoint> pos(len); | 52 SkAutoTArray<SkPoint> pos(len); |
(...skipping 13 matching lines...) Expand all Loading... |
66 canvas->drawPosText(text, len, &pos[0], paint); | 66 canvas->drawPosText(text, len, &pos[0], paint); |
67 paint.getPosTextPath(text, len, &pos[0], &path); | 67 paint.getPosTextPath(text, len, &pos[0], &path); |
68 strokePath(canvas, path); | 68 strokePath(canvas, path); |
69 } | 69 } |
70 }; | 70 }; |
71 | 71 |
72 ////////////////////////////////////////////////////////////////////////////// | 72 ////////////////////////////////////////////////////////////////////////////// |
73 | 73 |
74 static skiagm::GM* F(void*) { return new GetPosTextPathGM; } | 74 static skiagm::GM* F(void*) { return new GetPosTextPathGM; } |
75 static skiagm::GMRegistry gR(F); | 75 static skiagm::GMRegistry gR(F); |
OLD | NEW |