Index: src/effects/gradients/SkTwoPointConicalGradient_gpu.cpp |
diff --git a/src/effects/gradients/SkTwoPointConicalGradient_gpu.cpp b/src/effects/gradients/SkTwoPointConicalGradient_gpu.cpp |
index eb4fe0a5ed4259c727aeaadc34290fddcf324eb8..0c19cbaf2779f20cf21fc24866584a5dda03e7e1 100644 |
--- a/src/effects/gradients/SkTwoPointConicalGradient_gpu.cpp |
+++ b/src/effects/gradients/SkTwoPointConicalGradient_gpu.cpp |
@@ -209,7 +209,7 @@ const GrFragmentProcessor* Edge2PtConicalEffect::TestCreate(GrProcessorTestData* |
auto shader = SkGradientShader::MakeTwoPointConical(center1, radius1, center2, radius2, |
colors, stops, colorCount, tm); |
const GrFragmentProcessor* fp = shader->asFragmentProcessor(d->fContext, |
- GrTest::TestMatrix(d->fRandom), NULL, kNone_SkFilterQuality); |
+ GrTest::TestMatrix(d->fRandom), NULL, kNone_SkFilterQuality, false); |
GrAlwaysAssert(fp); |
return fp; |
} |
@@ -484,7 +484,7 @@ const GrFragmentProcessor* FocalOutside2PtConicalEffect::TestCreate(GrProcessorT |
auto shader = SkGradientShader::MakeTwoPointConical(center1, radius1, center2, radius2, |
colors, stops, colorCount, tm); |
const GrFragmentProcessor* fp = shader->asFragmentProcessor(d->fContext, |
- GrTest::TestMatrix(d->fRandom), NULL, kNone_SkFilterQuality); |
+ GrTest::TestMatrix(d->fRandom), NULL, kNone_SkFilterQuality, false); |
GrAlwaysAssert(fp); |
return fp; |
} |
@@ -690,7 +690,7 @@ const GrFragmentProcessor* FocalInside2PtConicalEffect::TestCreate(GrProcessorTe |
auto shader = SkGradientShader::MakeTwoPointConical(center1, radius1, center2, radius2, |
colors, stops, colorCount, tm); |
const GrFragmentProcessor* fp = shader->asFragmentProcessor(d->fContext, |
- GrTest::TestMatrix(d->fRandom), NULL, kNone_SkFilterQuality); |
+ GrTest::TestMatrix(d->fRandom), NULL, kNone_SkFilterQuality, false); |
GrAlwaysAssert(fp); |
return fp; |
} |
@@ -936,7 +936,7 @@ const GrFragmentProcessor* CircleInside2PtConicalEffect::TestCreate(GrProcessorT |
auto shader = SkGradientShader::MakeTwoPointConical(center1, radius1, center2, radius2, |
colors, stops, colorCount, tm); |
const GrFragmentProcessor* fp = shader->asFragmentProcessor(d->fContext, |
- GrTest::TestMatrix(d->fRandom), NULL, kNone_SkFilterQuality); |
+ GrTest::TestMatrix(d->fRandom), NULL, kNone_SkFilterQuality, false); |
GrAlwaysAssert(fp); |
return fp; |
} |
@@ -1167,7 +1167,7 @@ const GrFragmentProcessor* CircleOutside2PtConicalEffect::TestCreate(GrProcessor |
auto shader = SkGradientShader::MakeTwoPointConical(center1, radius1, center2, radius2, |
colors, stops, colorCount, tm); |
const GrFragmentProcessor* fp = shader->asFragmentProcessor( |
- d->fContext,GrTest::TestMatrix(d->fRandom), NULL, kNone_SkFilterQuality); |
+ d->fContext,GrTest::TestMatrix(d->fRandom), NULL, kNone_SkFilterQuality, false); |
GrAlwaysAssert(fp); |
return fp; |
} |