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

Side by Side Diff: gm/getpostextpath.cpp

Issue 23576015: Change old PRG to be SkLCGRandom; change new one to SkRandom (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Fix some spurious SkMWCRandoms Created 7 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 | Annotate | Revision Log
« no previous file with comments | « gm/emptypath.cpp ('k') | gm/hittestpath.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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
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);
OLDNEW
« no previous file with comments | « gm/emptypath.cpp ('k') | gm/hittestpath.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698