| Index: tests/GrMemoryPoolTest.cpp
|
| ===================================================================
|
| --- tests/GrMemoryPoolTest.cpp (revision 7902)
|
| +++ tests/GrMemoryPoolTest.cpp (working copy)
|
| @@ -47,7 +47,7 @@
|
|
|
| SK_DECLARE_INST_COUNT_ROOT(A);
|
|
|
| - static A* Create(SkRandom* r);
|
| + static A* Create(SkMWCRandom* r);
|
|
|
| static void SetAllocator(size_t preallocSize, size_t minAllocSize) {
|
| #if SK_ENABLE_INST_COUNT
|
| @@ -160,7 +160,7 @@
|
| typedef A INHERITED;
|
| };
|
|
|
| -A* A::Create(SkRandom* r) {
|
| +A* A::Create(SkMWCRandom* r) {
|
| switch (r->nextRangeU(0, 4)) {
|
| case 0:
|
| return new A;
|
| @@ -201,7 +201,7 @@
|
| // number of iterations
|
| static const int kCheckPeriod = 500;
|
|
|
| - SkRandom r;
|
| + SkMWCRandom r;
|
| for (size_t s = 0; s < SK_ARRAY_COUNT(gSizes); ++s) {
|
| A::SetAllocator(gSizes[s][0], gSizes[s][1]);
|
| for (size_t c = 0; c < SK_ARRAY_COUNT(gCreateFraction); ++c) {
|
|
|