aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/skcms
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-04-23 14:41:01 +0000
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-04-23 15:02:06 +0000
commit7230861301380083ae873c83346da605299bad99 (patch)
tree00bb00a2cbd8a96a3f7928fdbee2e8ffacded90c /third_party/skcms
parent122b38560f2f2a876e009485efba318961491699 (diff)
Roll skia/third_party/skcms c4941e8..71966da (1 commits)
https://skia.googlesource.com/skcms.git/+log/c4941e8..71966da 2018-04-23 mtklein@chromium.org fail skcms_Parse() for useless profiles 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. TBR=stani@google.com Change-Id: I8c36fb89675b9b1639a1d494641d8993d3723c93 Reviewed-on: https://skia-review.googlesource.com/122980 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')
-rw-r--r--third_party/skcms/src/ICCProfile.c7
-rwxr-xr-xthird_party/skcms/version.sha12
2 files changed, 7 insertions, 2 deletions
diff --git a/third_party/skcms/src/ICCProfile.c b/third_party/skcms/src/ICCProfile.c
index c9b7065524..4eed21c64e 100644
--- a/third_party/skcms/src/ICCProfile.c
+++ b/third_party/skcms/src/ICCProfile.c
@@ -651,6 +651,11 @@ bool skcms_GetTagBySignature(const skcms_ICCProfile* profile, uint32_t sig, skcm
return false;
}
+static bool usable_as_src(const skcms_ICCProfile* profile) {
+ return profile->has_A2B
+ || (profile->has_trc && profile->has_toXYZD50);
+}
+
bool skcms_Parse(const void* buf, size_t len, skcms_ICCProfile* profile) {
assert(SAFE_SIZEOF(header_Layout) == 132);
@@ -773,7 +778,7 @@ bool skcms_Parse(const void* buf, size_t len, skcms_ICCProfile* profile) {
}
}
- return true;
+ return usable_as_src(profile);
}
const skcms_ICCProfile skcms_sRGB_profile = {
diff --git a/third_party/skcms/version.sha1 b/third_party/skcms/version.sha1
index 0c85a1f7f3..eb875605a8 100755
--- a/third_party/skcms/version.sha1
+++ b/third_party/skcms/version.sha1
@@ -1 +1 @@
-c4941e8c027c3e78ee56785fc1a90d10666671c9 \ No newline at end of file
+71966da6705d6e49b518e56bb829708b797b67b9 \ No newline at end of file