Index: src/gpu/effects/GrBezierEffect.cpp |
diff --git a/src/gpu/effects/GrBezierEffect.cpp b/src/gpu/effects/GrBezierEffect.cpp |
index 90b91b0bd2c34cd7fe44a2ef0f5778dcbd1051c5..28afed09e77b5f46b3455aebb17ace12538e615c 100644 |
--- a/src/gpu/effects/GrBezierEffect.cpp |
+++ b/src/gpu/effects/GrBezierEffect.cpp |
@@ -236,9 +236,9 @@ GrGeometryProcessor* GrConicEffect::TestCreate(SkRandom* random, |
do { |
GrPrimitiveEdgeType edgeType = static_cast<GrPrimitiveEdgeType>( |
random->nextULessThan(kGrProcessorEdgeTypeCnt)); |
- gp = GrConicEffect::Create(GrRandomColor(random), GrProcessorUnitTest::TestMatrix(random), |
+ gp = GrConicEffect::Create(GrRandomColor(random), GrTest::TestMatrix(random), |
edgeType, caps, |
- GrProcessorUnitTest::TestMatrix(random)); |
+ GrTest::TestMatrix(random)); |
} while (NULL == gp); |
return gp; |
} |
@@ -458,9 +458,9 @@ GrGeometryProcessor* GrQuadEffect::TestCreate(SkRandom* random, |
GrPrimitiveEdgeType edgeType = static_cast<GrPrimitiveEdgeType>( |
random->nextULessThan(kGrProcessorEdgeTypeCnt)); |
gp = GrQuadEffect::Create(GrRandomColor(random), |
- GrProcessorUnitTest::TestMatrix(random), |
+ GrTest::TestMatrix(random), |
edgeType, caps, |
- GrProcessorUnitTest::TestMatrix(random)); |
+ GrTest::TestMatrix(random)); |
} while (NULL == gp); |
return gp; |
} |
@@ -698,7 +698,7 @@ GrGeometryProcessor* GrCubicEffect::TestCreate(SkRandom* random, |
GrPrimitiveEdgeType edgeType = static_cast<GrPrimitiveEdgeType>( |
random->nextULessThan(kGrProcessorEdgeTypeCnt)); |
gp = GrCubicEffect::Create(GrRandomColor(random), |
- GrProcessorUnitTest::TestMatrix(random), edgeType, caps); |
+ GrTest::TestMatrix(random), edgeType, caps); |
} while (NULL == gp); |
return gp; |
} |