commit | 7af8fe55bd9f3310a20667eabb3ad600773e4f01 | [log] [tgz] |
---|---|---|
author | Robert Phillips <robertphillips@google.com> | Thu Feb 14 17:27:00 2019 -0500 |
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | Fri Feb 15 15:19:09 2019 +0000 |
tree | 923f563e8e7bd8e502493fcb2e9ff9ddbc69bb49 | |
parent | f5cdd9b7f8064d0f0446d40eada59e95655a7ca4 [diff] [blame] |
Switch GPU blur code over to using GrRecordingContext This is split out of: https://skia-review.googlesource.com/c/skia/+/191287 (Move DrawingManager to RecordingContext) Change-Id: I305249f1e63bd4720264b0531733a219c79fe10a Reviewed-on: https://skia-review.googlesource.com/c/192686 Auto-Submit: Robert Phillips <robertphillips@google.com> Commit-Queue: Greg Daniel <egdaniel@google.com> Reviewed-by: Greg Daniel <egdaniel@google.com>
diff --git a/src/gpu/effects/GrRRectBlurEffect.cpp b/src/gpu/effects/GrRRectBlurEffect.cpp index e84fae2..6f1f62b 100644 --- a/src/gpu/effects/GrRRectBlurEffect.cpp +++ b/src/gpu/effects/GrRRectBlurEffect.cpp
@@ -10,7 +10,8 @@ **************************************************************************************************/ #include "GrRRectBlurEffect.h" -std::unique_ptr<GrFragmentProcessor> GrRRectBlurEffect::Make(GrContext* context, float sigma, +std::unique_ptr<GrFragmentProcessor> GrRRectBlurEffect::Make(GrRecordingContext* context, + float sigma, float xformedSigma, const SkRRect& srcRRect, const SkRRect& devRRect) {