aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/effects/GrSimpleTextureEffect.cpp
diff options
context:
space:
mode:
authorGravatar Robert Phillips <robertphillips@google.com>2017-10-20 15:11:35 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-10-20 20:29:05 +0000
commit2b2936e75c79c61ff04082f5ae7a9738c439caac (patch)
treeefdca053dec922b410dd62206310fbfde95d63f9 /src/gpu/effects/GrSimpleTextureEffect.cpp
parentf04ff7696d34d810a94b7fd98aa0006955f57fc0 (diff)
Make GrRectBlurEffect use bilerp
Bug: skia:7031 Change-Id: I8061f516741bf7efd5020984a5b45a9d57307d43 Reviewed-on: https://skia-review.googlesource.com/62461 Reviewed-by: Greg Daniel <egdaniel@google.com> Commit-Queue: Robert Phillips <robertphillips@google.com>
Diffstat (limited to 'src/gpu/effects/GrSimpleTextureEffect.cpp')
-rw-r--r--src/gpu/effects/GrSimpleTextureEffect.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpu/effects/GrSimpleTextureEffect.cpp b/src/gpu/effects/GrSimpleTextureEffect.cpp
index 595c5e6324..c0dec230f7 100644
--- a/src/gpu/effects/GrSimpleTextureEffect.cpp
+++ b/src/gpu/effects/GrSimpleTextureEffect.cpp
@@ -75,7 +75,7 @@ std::unique_ptr<GrFragmentProcessor> GrSimpleTextureEffect::TestCreate(
: GrSamplerState::Filter::kNearest);
const SkMatrix& matrix = GrTest::TestMatrix(testData->fRandom);
- return GrSimpleTextureEffect::Make(testData->textureProxy(texIdx), matrix);
+ return GrSimpleTextureEffect::Make(testData->textureProxy(texIdx), matrix, params);
}
#endif
#endif