aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/effects/GrRRectBlurEffect.h
diff options
context:
space:
mode:
authorGravatar Robert Phillips <robertphillips@google.com>2018-03-06 09:59:39 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-03-06 16:15:56 +0000
commit8bac928009b8689f082e48ad5bc62f65297b894b (patch)
tree216d5198933d78d0a2563236f74486194c758544 /src/gpu/effects/GrRRectBlurEffect.h
parentba8feb56c301563186852023eb531bb2076eaf9a (diff)
Fix .fp files
This fixes the failures in https://skia-review.googlesource.com/c/skia/+/112262 (Move internal calls from GrContext to GrContextPriv) TBR=egdaniel@google.com Change-Id: I4b7223f6795a50d8c3848992af6d52812b282db9 Reviewed-on: https://skia-review.googlesource.com/112480 Reviewed-by: Robert Phillips <robertphillips@google.com> Commit-Queue: Robert Phillips <robertphillips@google.com>
Diffstat (limited to 'src/gpu/effects/GrRRectBlurEffect.h')
-rw-r--r--src/gpu/effects/GrRRectBlurEffect.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gpu/effects/GrRRectBlurEffect.h b/src/gpu/effects/GrRRectBlurEffect.h
index 4aa0ac19db..1d382a0dfa 100644
--- a/src/gpu/effects/GrRRectBlurEffect.h
+++ b/src/gpu/effects/GrRRectBlurEffect.h
@@ -54,9 +54,9 @@ public:
if (!mask) {
// TODO: this could be approx but the texture coords will need to be updated
sk_sp<GrRenderTargetContext> rtc(
- context->contextPriv().makeDeferredRenderTargetContextWithFallback(
- SkBackingFit::kExact, size.fWidth, size.fHeight, kAlpha_8_GrPixelConfig,
- nullptr));
+ context->contextPriv().makeDeferredRenderTargetContextWithFallback(
+ SkBackingFit::kExact, size.fWidth, size.fHeight, kAlpha_8_GrPixelConfig,
+ nullptr));
if (!rtc) {
return nullptr;
}