aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/effects
diff options
context:
space:
mode:
authorGravatar brianosman <brianosman@google.com>2016-07-22 11:04:53 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-07-22 11:04:53 -0700
commit839345d63466a4209a0985654ec033624821fd78 (patch)
tree71590a11b99b3b554a4c80096f36c759b5d68ced /include/effects
parent8a8accbcd1958c1646246b9b994fb47a3b5a6021 (diff)
Bundle SkShader::asFragmentProcessor arguments in a struct
The signature of this thing keeps changing (and is about to change again). This just makes maintenance much easier. BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2175563003 Review-Url: https://codereview.chromium.org/2175563003
Diffstat (limited to 'include/effects')
-rw-r--r--include/effects/SkPerlinNoiseShader.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/effects/SkPerlinNoiseShader.h b/include/effects/SkPerlinNoiseShader.h
index ed706c19e8..60dc53a6a2 100644
--- a/include/effects/SkPerlinNoiseShader.h
+++ b/include/effects/SkPerlinNoiseShader.h
@@ -102,9 +102,7 @@ public:
};
#if SK_SUPPORT_GPU
- sk_sp<GrFragmentProcessor> asFragmentProcessor(GrContext* context, const SkMatrix& viewM,
- const SkMatrix*, SkFilterQuality,
- SkSourceGammaTreatment) const override;
+ sk_sp<GrFragmentProcessor> asFragmentProcessor(const AsFPArgs&) const override;
#endif
SK_TO_STRING_OVERRIDE()