Index: tests/BitmapGetColorTest.cpp |
diff --git a/tests/BitmapGetColorTest.cpp b/tests/BitmapGetColorTest.cpp |
index 06e3760245d9619cd09ad5f3dcd1be3ae3fd4798..11c22e6fa3f2baaea8d307b26c2607d29276208c 100644 |
--- a/tests/BitmapGetColorTest.cpp |
+++ b/tests/BitmapGetColorTest.cpp |
@@ -10,11 +10,11 @@ |
#include "SkRect.h" |
#include "SkRandom.h" |
-static int nextRand(SkMWCRandom& rand, int min, int max) { |
+static int nextRand(SkRandom& rand, int min, int max) { |
return min + (int)rand.nextRangeU(0, max - min); |
} |
-static void rand_irect(SkIRect* rect, int W, int H, SkMWCRandom& rand) { |
+static void rand_irect(SkIRect* rect, int W, int H, SkRandom& rand) { |
const int DX = W / 2; |
const int DY = H / 2; |
@@ -57,7 +57,7 @@ static void test_eraserect_A1(skiatest::Reporter* reporter) { |
bm8.setConfig(SkBitmap::kA8_Config, W, H); |
bm8.allocPixels(); |
- SkMWCRandom rand; |
+ SkRandom rand; |
for (int i = 0; i < 10000; ++i) { |
SkIRect area; |
rand_irect(&area, W, H, rand); |