aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkColorSpace_New.h
diff options
context:
space:
mode:
authorGravatar Mike Klein <mtklein@chromium.org>2017-12-18 14:07:31 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-12-18 19:48:43 +0000
commitf1f1162273b382db99f8609e5bbfff24f5594821 (patch)
treeb14638cf3acb809b5337d1628375bb01f75b4ae0 /src/core/SkColorSpace_New.h
parent95152e1c836e8736704137bcea59ccc23ce90f29 (diff)
remove append_from_srgb()
It's now no different than append(from_srgb). Bug: skia:7419 Change-Id: I97c59b6987f033ec2f1859db40ca3056b87b370a Reviewed-on: https://skia-review.googlesource.com/86741 Reviewed-by: Brian Osman <brianosman@google.com> Commit-Queue: Mike Klein <mtklein@chromium.org>
Diffstat (limited to 'src/core/SkColorSpace_New.h')
-rw-r--r--src/core/SkColorSpace_New.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/SkColorSpace_New.h b/src/core/SkColorSpace_New.h
index 42d5a9e55f..6f26c3bf4b 100644
--- a/src/core/SkColorSpace_New.h
+++ b/src/core/SkColorSpace_New.h
@@ -26,9 +26,9 @@ public:
virtual SkColorSpaceTransferFn parameterize() const = 0;
// Append stages to use this transfer function with SkRasterPipeline-based rendering.
- virtual void linearizeDst(SkRasterPipeline*, SkAlphaType) const = 0;
- virtual void linearizeSrc(SkRasterPipeline*, SkAlphaType) const = 0;
- virtual void encodeSrc(SkRasterPipeline* ) const = 0;
+ virtual void linearizeDst(SkRasterPipeline*) const = 0;
+ virtual void linearizeSrc(SkRasterPipeline*) const = 0;
+ virtual void encodeSrc(SkRasterPipeline*) const = 0;
// TODO: Ganesh hooks.