aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Mike Reed <reed@google.com>2018-03-12 11:36:26 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-03-12 15:59:48 +0000
commit554aa6a9e27160bc0a6562c2d93a46325a90978b (patch)
treeee059f122f79e91ac3abf3fcabb39c81d03912d7
parent60ca8675e553ae4cb97d2a449fa92ad3b2bed38e (diff)
update include path for SkBlurMask.h
fixes https://skia-review.googlesource.com/c/skia/+/113463 Bug: skia: Change-Id: I78abc53bd802286e9fc65487551db17a2c737e1a Reviewed-on: https://skia-review.googlesource.com/113715 Reviewed-by: Mike Reed <reed@google.com> Commit-Queue: Mike Reed <reed@google.com>
-rw-r--r--src/gpu/effects/GrRectBlurEffect.fp2
-rw-r--r--src/gpu/effects/GrRectBlurEffect.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/gpu/effects/GrRectBlurEffect.fp b/src/gpu/effects/GrRectBlurEffect.fp
index 3f5501795f..73064e0ff2 100644
--- a/src/gpu/effects/GrRectBlurEffect.fp
+++ b/src/gpu/effects/GrRectBlurEffect.fp
@@ -7,7 +7,7 @@
@header {
#include "GrProxyProvider.h"
- #include "../effects/SkBlurMask.h"
+ #include "SkBlurMask.h"
}
in uniform float4 rect;
diff --git a/src/gpu/effects/GrRectBlurEffect.h b/src/gpu/effects/GrRectBlurEffect.h
index 80c801761a..123c91fba8 100644
--- a/src/gpu/effects/GrRectBlurEffect.h
+++ b/src/gpu/effects/GrRectBlurEffect.h
@@ -11,10 +11,10 @@
#ifndef GrRectBlurEffect_DEFINED
#define GrRectBlurEffect_DEFINED
#include "SkTypes.h"
-#include "SkBlurMask.h"
#if SK_SUPPORT_GPU
#include "GrProxyProvider.h"
+#include "SkBlurMask.h"
#include "GrFragmentProcessor.h"
#include "GrCoordTransform.h"
class GrRectBlurEffect : public GrFragmentProcessor {