aboutsummaryrefslogtreecommitdiffhomepage
path: root/gn
diff options
context:
space:
mode:
authorGravatar Jim Van Verth <jvanverth@google.com>2017-01-16 13:03:37 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-01-16 18:40:59 +0000
commit2103cf0ff09763aeaa35508734f765aec9b75665 (patch)
tree444b8499ced29fa07554ea14f0f1fb30afb509e7 /gn
parentac04fef619ad3939a25e66bdaef6f6b1e7f5ca50 (diff)
Split ShadowMaskFilter into separate ambient and spot mask filters
This does not change the public API. BUG=skia:6119 Change-Id: Ibdcd2f8611bc2eec332d8a65e5d51246b89a0a90 Reviewed-on: https://skia-review.googlesource.com/7083 Commit-Queue: Jim Van Verth <jvanverth@google.com> Reviewed-by: Jim Van Verth <jvanverth@google.com> Reviewed-by: Robert Phillips <robertphillips@google.com>
Diffstat (limited to 'gn')
-rw-r--r--gn/core.gni1
-rw-r--r--gn/effects.gni7
2 files changed, 6 insertions, 2 deletions
diff --git a/gn/core.gni b/gn/core.gni
index 432526364e..e3ace0285a 100644
--- a/gn/core.gni
+++ b/gn/core.gni
@@ -457,6 +457,7 @@ skia_core_sources = [
"$_include/private/SkOnce.h",
"$_include/private/SkRecords.h",
"$_include/private/SkSemaphore.h",
+ "$_include/private/SkShadowFlags.h",
"$_include/private/SkShadowParams.h",
"$_include/private/SkSpinlock.h",
"$_include/private/SkTemplates.h",
diff --git a/gn/effects.gni b/gn/effects.gni
index b8bc2b16cc..b1a49c502f 100644
--- a/gn/effects.gni
+++ b/gn/effects.gni
@@ -58,8 +58,6 @@ skia_effects_sources = [
"$_src/effects/SkPerlinNoiseShader.cpp",
"$_src/effects/SkPictureImageFilter.cpp",
"$_src/effects/SkRRectsGaussianEdgeMaskFilter.cpp",
- "$_src/effects/SkShadowMaskFilter.cpp",
- "$_src/effects/SkShadowMaskFilter.h",
"$_src/effects/SkTableColorFilter.cpp",
"$_src/effects/SkTableMaskFilter.cpp",
"$_src/effects/SkTileImageFilter.cpp",
@@ -87,6 +85,11 @@ skia_effects_sources = [
"$_src/effects/gradients/SkSweepGradient.cpp",
"$_src/effects/gradients/SkSweepGradient.h",
+ "$_src/effects/shadows/SkAmbientShadowMaskFilter.cpp",
+ "$_src/effects/shadows/SkAmbientShadowMaskFilter.h",
+ "$_src/effects/shadows/SkSpotShadowMaskFilter.cpp",
+ "$_src/effects/shadows/SkSpotShadowMaskFilter.h",
+
"$_include/effects/Sk1DPathEffect.h",
"$_include/effects/Sk2DPathEffect.h",
"$_include/effects/SkAlphaThresholdFilter.h",