aboutsummaryrefslogtreecommitdiffhomepage
path: root/gn
diff options
context:
space:
mode:
authorGravatar Ethan Nicholas <ethannicholas@google.com>2017-11-17 13:44:05 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-11-17 20:11:36 +0000
commitbe0a042dcfbc05a10d592521cae9e2ad253c2f78 (patch)
tree4551e7ac5ffb508a601a7f063bc413a396fe7aef /gn
parentb092cea5b17420926557d0e8b8d2df6db894725c (diff)
converted Premul / Unpremul to SkSL
Bug: skia: Change-Id: I4944badbb530e17b9ff7cca389f943e0b5982e01 Reviewed-on: https://skia-review.googlesource.com/72983 Reviewed-by: Brian Osman <brianosman@google.com> Commit-Queue: Ethan Nicholas <ethannicholas@google.com>
Diffstat (limited to 'gn')
-rw-r--r--gn/gpu.gni4
-rw-r--r--gn/sksl.gni2
2 files changed, 6 insertions, 0 deletions
diff --git a/gn/gpu.gni b/gn/gpu.gni
index e283a9f12f..e584bf5187 100644
--- a/gn/gpu.gni
+++ b/gn/gpu.gni
@@ -360,6 +360,8 @@ skia_gpu_sources = [
"$_src/gpu/effects/GrOvalEffect.h",
"$_src/gpu/effects/GrPorterDuffXferProcessor.cpp",
"$_src/gpu/effects/GrPorterDuffXferProcessor.h",
+ "$_src/gpu/effects/GrPremulInputFragmentProcessor.cpp",
+ "$_src/gpu/effects/GrPremulInputFragmentProcessor.h",
"$_src/gpu/effects/GrRectBlurEffect.cpp",
"$_src/gpu/effects/GrRectBlurEffect.h",
"$_src/gpu/effects/GrRRectEffect.cpp",
@@ -373,6 +375,8 @@ skia_gpu_sources = [
"$_src/gpu/effects/GrTextureDomain.cpp",
"$_src/gpu/effects/GrTextureDomain.h",
"$_src/gpu/effects/GrTextureStripAtlas.cpp",
+ "$_src/gpu/effects/GrUnpremulInputFragmentProcessor.cpp",
+ "$_src/gpu/effects/GrUnpremulInputFragmentProcessor.h",
"$_src/gpu/effects/GrXfermodeFragmentProcessor.cpp",
"$_src/gpu/effects/GrXfermodeFragmentProcessor.h",
"$_src/gpu/effects/GrYUVEffect.cpp",
diff --git a/gn/sksl.gni b/gn/sksl.gni
index 6eec537ebe..3bc0a1dd1a 100644
--- a/gn/sksl.gni
+++ b/gn/sksl.gni
@@ -36,7 +36,9 @@ skia_gpu_processor_sources = [
"$_src/gpu/effects/GrDitherEffect.fp",
"$_src/gpu/effects/GrEllipseEffect.fp",
"$_src/gpu/effects/GrLumaColorFilterEffect.fp",
+ "$_src/gpu/effects/GrPremulInputFragmentProcessor.fp",
"$_src/gpu/effects/GrRectBlurEffect.fp",
"$_src/gpu/effects/GrOverdrawFragmentProcessor.fp",
"$_src/gpu/effects/GrSimpleTextureEffect.fp",
+ "$_src/gpu/effects/GrUnpremulInputFragmentProcessor.fp",
]