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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 | 44 |
45 canvas->drawText(text, len, 0, 0, paint); | 45 canvas->drawText(text, len, 0, 0, paint); |
46 paint.getTextPath(text, len, 0, 0, &path); | 46 paint.getTextPath(text, len, 0, 0, &path); |
47 strokePath(canvas, path); | 47 strokePath(canvas, path); |
48 path.reset(); | 48 path.reset(); |
49 | 49 |
50 SkAutoTArray<SkPoint> pos(len); | 50 SkAutoTArray<SkPoint> pos(len); |
51 SkAutoTArray<SkScalar> widths(len); | 51 SkAutoTArray<SkScalar> widths(len); |
52 paint.getTextWidths(text, len, &widths[0]); | 52 paint.getTextWidths(text, len, &widths[0]); |
53 | 53 |
54 SkRandom rand; | 54 SkLCGRandom rand; |
55 SkScalar x = SkIntToScalar(20); | 55 SkScalar x = SkIntToScalar(20); |
56 SkScalar y = SkIntToScalar(100); | 56 SkScalar y = SkIntToScalar(100); |
57 for (size_t i = 0; i < len; ++i) { | 57 for (size_t i = 0; i < len; ++i) { |
58 pos[i].set(x, y + rand.nextSScalar1() * 24); | 58 pos[i].set(x, y + rand.nextSScalar1() * 24); |
59 x += widths[i]; | 59 x += widths[i]; |
60 } | 60 } |
61 | 61 |
62 canvas->translate(0, SkIntToScalar(64)); | 62 canvas->translate(0, SkIntToScalar(64)); |
63 | 63 |
64 canvas->drawPosText(text, len, &pos[0], paint); | 64 canvas->drawPosText(text, len, &pos[0], paint); |
65 paint.getPosTextPath(text, len, &pos[0], &path); | 65 paint.getPosTextPath(text, len, &pos[0], &path); |
66 strokePath(canvas, path); | 66 strokePath(canvas, path); |
67 } | 67 } |
68 }; | 68 }; |
69 | 69 |
70 ////////////////////////////////////////////////////////////////////////////// | 70 ////////////////////////////////////////////////////////////////////////////// |
71 | 71 |
72 static skiagm::GM* F(void*) { return new GetPosTextPathGM; } | 72 static skiagm::GM* F(void*) { return new GetPosTextPathGM; } |
73 static skiagm::GMRegistry gR(F); | 73 static skiagm::GMRegistry gR(F); |
OLD | NEW |