aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core
diff options
context:
space:
mode:
Diffstat (limited to 'src/core')
-rw-r--r--src/core/SkImageFilter.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/core/SkImageFilter.cpp b/src/core/SkImageFilter.cpp
index cdea2d1ccc..bf34ae3180 100644
--- a/src/core/SkImageFilter.cpp
+++ b/src/core/SkImageFilter.cpp
@@ -368,8 +368,11 @@ sk_sp<SkSpecialImage> SkImageFilter::ImageToColorSpace(SkSpecialImage* src,
// object. If that produces something, then both are tagged, and the source is in a different
// gamut than the dest. There is some overhead to making the xform, but those are cached, and
// if we get one back, that means we're about to use it during the conversion anyway.
- sk_sp<GrColorSpaceXform> colorSpaceXform = GrColorSpaceXform::Make(src->getColorSpace(),
- outProps.colorSpace());
+ //
+ // TODO: Fix this check, to handle wider support of transfer functions, config mismatch, etc.
+ // For now, continue to just check if gamut is different, which may not be sufficient.
+ auto colorSpaceXform = GrColorSpaceXform::MakeGamutXform(src->getColorSpace(),
+ outProps.colorSpace());
if (!colorSpaceXform) {
// No xform needed, just return the original image