Index: bench/RegionBench.cpp |
diff --git a/bench/RegionBench.cpp b/bench/RegionBench.cpp |
index 4c2ea6e12419841beb2414cb00f5db2d33ee436a..7a306e97c33c392dc5ac7f62158c630b66ca7efe 100644 |
--- a/bench/RegionBench.cpp |
+++ b/bench/RegionBench.cpp |
@@ -82,7 +82,7 @@ public: |
N = SkBENCHLOOP(2000) |
}; |
- SkIRect randrect(SkMWCRandom& rand) { |
+ SkIRect randrect(SkRandom& rand) { |
int x = rand.nextU() % W; |
int y = rand.nextU() % H; |
int w = rand.nextU() % W; |
@@ -95,7 +95,7 @@ public: |
fName.printf("region_%s_%d", name, count); |
fLoopMul = mul; |
- SkMWCRandom rand; |
+ SkRandom rand; |
for (int i = 0; i < count; i++) { |
fA.op(randrect(rand), SkRegion::kXOR_Op); |
fB.op(randrect(rand), SkRegion::kXOR_Op); |