Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(504)

Unified Diff: include/core/SkColorSpace.h

Issue 2304753002: Add SkColorSpacePrimaries to help with making D50 matrices (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: A few edits Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/core/SkColorSpace.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/core/SkColorSpace.h
diff --git a/include/core/SkColorSpace.h b/include/core/SkColorSpace.h
index 58095775e4b75e2b9f7a12970f173d5d7886a4f7..c4b34e844f538f88db48b14bd06e08ad42a3d56d 100644
--- a/include/core/SkColorSpace.h
+++ b/include/core/SkColorSpace.h
@@ -53,9 +53,42 @@ public:
};
/**
- * Create an SkColorSpace from the src gamma and a transform from src gamut to D50 XYZ.
+ * Contains the coefficients for a common transfer function equation.
+ */
+ struct GammaCoefficients {
+ // Y = (aX + b)^g + c for X >= d
+ // Y = eX + f otherwise
+ float fG;
+ float fA;
+ float fB;
+ float fC;
+ float fD;
+ float fE;
+ float fF;
+ };
+
+ /**
+ * Describes a color gamut with primaries and a white point.
+ */
+ struct Primaries {
+ float fRX, fRY;
+ float fGX, fGY;
+ float fBX, fBY;
+ float fWX, fWY;
+ };
+
+ /**
+ * Create an SkColorSpace from a gamma transfer function and a gamut.
+ *
+ * Gamma can be specified using an enum or the coefficients to an equation.
+ * Gamut can specified using the to D50 matrix transformation or using a set
+ * of primaries and a white point.
+ *
*/
static sk_sp<SkColorSpace> NewRGB(GammaNamed gammaNamed, const SkMatrix44& toXYZD50);
+ static sk_sp<SkColorSpace> NewRGB(const GammaCoefficients& coeffs, const SkMatrix44& toXYZD50);
+ static sk_sp<SkColorSpace> NewRGB(GammaNamed gammaNamed, const Primaries& primaries);
Brian Osman 2016/09/02 15:37:52 I already mentioned this to Matt, but this set of
+ static sk_sp<SkColorSpace> NewRGB(const GammaCoefficients& coeffs, const Primaries& primaries);
/**
* Create a common, named SkColorSpace.
« no previous file with comments | « no previous file | src/core/SkColorSpace.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698