From f7dcd76c552a4e93a75a3808289de69a997da169 Mon Sep 17 00:00:00 2001 From: Brian Salomon Date: Mon, 30 Jul 2018 14:48:15 -0400 Subject: Remove array of TextureSampler pointers from GrIOResourceProcessor. Instead store sampler count on base class and subclasses implement a virtual to get the ith sampler. Change-Id: I13e2447a6467a09761d8615acb4aa360b87b1476 Reviewed-on: https://skia-review.googlesource.com/141563 Commit-Queue: Brian Salomon Reviewed-by: Robert Phillips --- src/effects/imagefilters/SkLightingImageFilter.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/effects/imagefilters/SkLightingImageFilter.cpp') diff --git a/src/effects/imagefilters/SkLightingImageFilter.cpp b/src/effects/imagefilters/SkLightingImageFilter.cpp index 9a560b4ceb..486a3efd65 100644 --- a/src/effects/imagefilters/SkLightingImageFilter.cpp +++ b/src/effects/imagefilters/SkLightingImageFilter.cpp @@ -613,6 +613,8 @@ protected: bool onIsEqual(const GrFragmentProcessor&) const override; private: + const TextureSampler& onTextureSampler(int) const override { return fTextureSampler; } + GrCoordTransform fCoordTransform; GrTextureDomain fDomain; TextureSampler fTextureSampler; @@ -1696,7 +1698,7 @@ GrLightingEffect::GrLightingEffect(ClassID classID, , fFilterMatrix(matrix) , fBoundaryMode(boundaryMode) { this->addCoordTransform(&fCoordTransform); - this->addTextureSampler(&fTextureSampler); + this->setTextureSamplerCnt(1); } GrLightingEffect::GrLightingEffect(const GrLightingEffect& that) @@ -1709,7 +1711,7 @@ GrLightingEffect::GrLightingEffect(const GrLightingEffect& that) , fFilterMatrix(that.fFilterMatrix) , fBoundaryMode(that.fBoundaryMode) { this->addCoordTransform(&fCoordTransform); - this->addTextureSampler(&fTextureSampler); + this->setTextureSamplerCnt(1); } bool GrLightingEffect::onIsEqual(const GrFragmentProcessor& sBase) const { -- cgit v1.2.3