diff options
| author | commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-09-09 20:09:12 +0000 |
|---|---|---|
| committer | commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-09-09 20:09:12 +0000 |
| commit | e0e7cfe44bb9d66d76120a79e5275c294bacaa22 (patch) | |
| tree | d3d282beb8e498659f87abafa5a651946eea6ee8 /samplecode/SampleFontCache.cpp | |
| parent | 50b2e33dc6acaed906bfdc89af9b359ea2665c52 (diff) | |
Change old PRG to be SkLCGRandom; change new one to SkRandom
The goal here is to get people to start using the new random number
generator, while leaving the old one in place so we don't have to
rebaseline GMs.
R=reed@google.com, bsalomon@google.com
Author: jvanverth@google.com
Review URL: https://chromiumcodereview.appspot.com/23576015
git-svn-id: http://skia.googlecode.com/svn/trunk@11169 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'samplecode/SampleFontCache.cpp')
| -rw-r--r-- | samplecode/SampleFontCache.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/samplecode/SampleFontCache.cpp b/samplecode/SampleFontCache.cpp index 050867effa..c5f4457729 100644 --- a/samplecode/SampleFontCache.cpp +++ b/samplecode/SampleFontCache.cpp @@ -16,7 +16,7 @@ static void call_measure() { SkPaint paint; uint16_t text[32]; - SkMWCRandom rand; + SkRandom rand; paint.setAntiAlias(true); paint.setTextEncoding(SkPaint::kUTF16_TextEncoding); @@ -35,7 +35,7 @@ static void call_measure() { static void call_draw(SkCanvas* canvas) { SkPaint paint; uint16_t text[32]; - SkMWCRandom rand; + SkRandom rand; paint.setAntiAlias(true); paint.setTextEncoding(SkPaint::kUTF16_TextEncoding); |
