Index: src/gpu/GrPaint.cpp |
diff --git a/src/gpu/GrPaint.cpp b/src/gpu/GrPaint.cpp |
index 4a9f417ff44836967c9cd44351defef5df32b476..6f218a4b0b96dfb2b0ae41c201795808b4acd770 100644 |
--- a/src/gpu/GrPaint.cpp |
+++ b/src/gpu/GrPaint.cpp |
@@ -22,26 +22,24 @@ void GrPaint::setCoverageSetOpXPFactory(SkRegion::Op regionOp, bool invertCovera |
} |
void GrPaint::addColorTextureProcessor(GrTexture* texture, const SkMatrix& matrix) { |
- this->addColorFragmentProcessor(GrSimpleTextureEffect::Create(&fProcDataManager, texture, |
- matrix))->unref(); |
+ this->addColorFragmentProcessor(GrSimpleTextureEffect::Create(texture, matrix))->unref(); |
} |
void GrPaint::addCoverageTextureProcessor(GrTexture* texture, const SkMatrix& matrix) { |
- this->addCoverageFragmentProcessor(GrSimpleTextureEffect::Create(&fProcDataManager, texture, |
- matrix))->unref(); |
+ this->addCoverageFragmentProcessor(GrSimpleTextureEffect::Create(texture, matrix))->unref(); |
} |
void GrPaint::addColorTextureProcessor(GrTexture* texture, |
const SkMatrix& matrix, |
const GrTextureParams& params) { |
- this->addColorFragmentProcessor(GrSimpleTextureEffect::Create(&fProcDataManager, texture, |
+ this->addColorFragmentProcessor(GrSimpleTextureEffect::Create(texture, |
matrix, params))->unref(); |
} |
void GrPaint::addCoverageTextureProcessor(GrTexture* texture, |
const SkMatrix& matrix, |
const GrTextureParams& params) { |
- this->addCoverageFragmentProcessor(GrSimpleTextureEffect::Create(&fProcDataManager, texture, |
+ this->addCoverageFragmentProcessor(GrSimpleTextureEffect::Create(texture, |
matrix, params))->unref(); |
} |