Index: src/core/SkColorSpace_A2B0.h |
diff --git a/src/core/SkColorSpace_A2B0.h b/src/core/SkColorSpace_A2B0.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..762a4184fa1ba1b1f80307284e87894b7d35e64f |
--- /dev/null |
+++ b/src/core/SkColorSpace_A2B0.h |
@@ -0,0 +1,106 @@ |
+/* |
+ * Copyright 2016 Google Inc. |
+ * |
+ * Use of this source code is governed by a BSD-style license that can be |
+ * found in the LICENSE file. |
+ */ |
+ |
+#ifndef SkColorSpace_A2B0_DEFINED |
+#define SkColorSpace_A2B0_DEFINED |
+ |
+#include "SkColorSpace_Base.h" |
+ |
+// An alternative SkColorSpace that represents all the color space data that |
+// is stored in an A2B0 ICC tag. This allows us to use alternative processing |
+// color spaces (CIELAB instead of just CIEXYZ), use color-lookup-tables to do |
msarett
2016/10/11 13:40:31
profile connection spaces?
|
+// color space transformations not representable as TRC functions or matrix |
+// operations, as well as have multiple TRC functions. The CLUT also has the |
+// potential to allow conversion from input color spaces with a different |
+// number of channels such as CMYK (4) or GRAY (1), but that is not supported yet. |
+// |
+// Evaluation is done: A-curve => CLUT => M-curve => Matrix => B-curve |
+// |
+// There are also multi-processing-elements in the A2B0 tag which allow you to |
+// combine these 3 primitives (TRC, CLUT, matrix) in any order/quantitiy, |
+// but support for that is not implemented. |
+class SkColorSpace_A2B0 : public SkColorSpace_Base { |
+public: |
+ const SkMatrix44* toXYZD50() const override { |
+ // the matrix specified in A2B0 profiles is not necessarily |
+ // a to-XYZ matrix, as to-Lab is supported as well so returning |
+ // that could be misleading. Additionally, B-curves are applied |
+ // after the matrix is, but a toXYZD50 matrix is the last thing |
+ // applied in order to get into the (XYZ) processing color space. |
+ return nullptr; |
+ } |
+ |
+ const SkMatrix44* fromXYZD50() const override { |
+ // See toXYZD50()'s comment. Also, A2B0 profiles are not supported |
+ // as destination color spaces, so an inverse matrix is never wanted. |
+ return nullptr; |
+ } |
+ |
+ sk_sp<SkColorSpace> makeLinearGammaImpl() override { |
+ // There is no single gamma curve in an A2B0 profile, so this |
+ // operation does not quite make sense. The same applies to |
+ // gammaCloseToSRGBImpl() and gammaIsLinearImpls() |
+ return nullptr; |
+ } |
+ |
+ bool gammaCloseToSRGBImpl() const override { return false; } |
+ |
+ bool gammaIsLinearImpl() const override { return false; } |
+ |
+ |
+ |
+ SkGammaNamed aCurveNamed() const { return fACurveNamed; } |
+ |
+ const SkGammas* aCurve() const { return fACurve.get(); } |
+ |
+ const SkColorLookUpTable* colorLUT() const { return fColorLUT.get(); } |
+ |
+ SkGammaNamed mCurveNamed() const { return fMCurveNamed; } |
+ |
+ const SkGammas* mCurve() const { return fMCurve.get(); } |
+ |
+ const SkMatrix44& matrix() const { return fMatrix; } |
+ |
+ SkGammaNamed bCurveNamed() const { return fBCurveNamed; } |
+ |
+ const SkGammas* bCurve() const { return fBCurve.get(); } |
+ |
+ // the intermediate processing color space that this color space |
msarett
2016/10/11 13:40:31
profile connection space
|
+ // represents the transformation to |
+ enum class PCS : uint8_t { |
+ kLAB, // CIELAB |
+ kXYZ // CIEXYZ |
+ }; |
+ |
+ PCS pcs() const { return fPCS; } |
+ |
+protected: |
+ Type type() const override { return Type::kA2B0; } |
+ |
+private: |
+ SkColorSpace_A2B0(SkGammaNamed aCurveNamed, sk_sp<SkGammas> aCurve, |
+ sk_sp<SkColorLookUpTable> colorLUT, |
+ SkGammaNamed mCurveNamed, sk_sp<SkGammas> mCurve, |
+ const SkMatrix44& matrix, |
+ SkGammaNamed bCurveNamed, sk_sp<SkGammas> bCurve, |
+ PCS pcs, sk_sp<SkData> profileData); |
+ |
+ const SkGammaNamed fACurveNamed; |
+ sk_sp<SkGammas> fACurve; |
+ sk_sp<SkColorLookUpTable> fColorLUT; |
+ const SkGammaNamed fMCurveNamed; |
+ sk_sp<SkGammas> fMCurve; |
+ SkMatrix44 fMatrix; |
+ const SkGammaNamed fBCurveNamed; |
+ sk_sp<SkGammas> fBCurve; |
+ PCS fPCS; |
+ |
+ friend class SkColorSpace; |
+ typedef SkColorSpace_Base INHERITED; |
+}; |
+ |
+#endif |