aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/skcms/skcms.h
diff options
context:
space:
mode:
authorGravatar skcms-skia-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com <skcms-skia-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com>2018-05-02 20:11:46 +0000
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-05-02 20:32:48 +0000
commit908ad22437a5926e7f417dfeb4446722c8dd57dc (patch)
treeb31cf9011c4eb4d07002bd73e6d8421b061d9907 /third_party/skcms/skcms.h
parentbaf9e05233fa2c5694cb62c70be76483dd023a7b (diff)
Roll skia/third_party/skcms baef14c..aee343c (1 commits)
https://skia.googlesource.com/skcms.git/+log/baef14c..aee343c 2018-05-02 brianosman@google.com Remove skcms_EnsureUsableAsDestination* The AutoRoll server is located here: https://skcms-skia-roll.skia.org Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_trusty_blink_rel TBR=brianosman@google.com Change-Id: Id25529fc96b68f69dc7baa346d3583710963ddbf Reviewed-on: https://skia-review.googlesource.com/125390 Commit-Queue: skcms-skia-autoroll <skcms-skia-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Reviewed-by: skcms-skia-autoroll <skcms-skia-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com>
Diffstat (limited to 'third_party/skcms/skcms.h')
-rw-r--r--third_party/skcms/skcms.h14
1 files changed, 1 insertions, 13 deletions
diff --git a/third_party/skcms/skcms.h b/third_party/skcms/skcms.h
index 36ac4a0fbc..1cfb5b644b 100644
--- a/third_party/skcms/skcms.h
+++ b/third_party/skcms/skcms.h
@@ -209,18 +209,6 @@ SKCMS_API bool skcms_Transform(const void* src,
const skcms_ICCProfile* dstProfile,
size_t npixels);
-// If profile cannot be used as a destination profile in skcms_Transform(),
-// rewrite it with approximations where reasonable or by pulling from fallback
-// (e.g. skcms_sRGB_profile) where not.
-SKCMS_API void skcms_EnsureUsableAsDestination(skcms_ICCProfile* profile,
- const skcms_ICCProfile* fallback);
-
-// If profile cannot be used as a destination profile with a single parametric transfer function,
-// (ie for rasterization), rewrite it with approximations where reasonable or by pulling from
-// fallback (e.g. skcms_sRGB_profile) where not.
-SKCMS_API void skcms_EnsureUsableAsDestinationWithSingleCurve(skcms_ICCProfile* profile,
- const skcms_ICCProfile* fallback);
-
// If profile can be used as a destination in skcms_Transform, return true. Otherwise, attempt to
// rewrite it with approximations where reasonable. If successful, return true. If no reasonable
// approximation exists, leave the profile unchanged and return false.
@@ -228,7 +216,7 @@ SKCMS_API bool skcms_MakeUsableAsDestination(skcms_ICCProfile* profile);
// If profile can be used as a destination with a single parametric transfer function (ie for
// rasterization), return true. Otherwise, attempt to rewrite it with approximations where
-// reasonable. If successful, return true. If not reasonable approximation exists, leave the
+// reasonable. If successful, return true. If no reasonable approximation exists, leave the
// profile unchanged and return false.
SKCMS_API bool skcms_MakeUsableAsDestinationWithSingleCurve(skcms_ICCProfile* profile);