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

Unified Diff: include/core/SkColorSpace.h

Issue 2323003002: Cache the inverse matrix on SkColorSpace. Rename xyz() to toXYZ(). (Closed)
Patch Set: Address feedback 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 045117552626b55373074c6fa3c94d3b02295c9e..4abcdfad6c3f72208a9d6a422c8abd5898357e77 100644
--- a/include/core/SkColorSpace.h
+++ b/include/core/SkColorSpace.h
@@ -66,7 +66,12 @@ public:
/**
* Returns the matrix used to transform src gamut to XYZ D50.
*/
- const SkMatrix44& xyz() const { return fToXYZD50; }
+ const SkMatrix44& toXYZD50() const { return fToXYZD50; }
+
+ /**
+ * DEPRECATED - use toXYZD50 instead
+ */
+ const SkMatrix44& xyz() const { return toXYZD50(); }
msarett 2016/09/08 15:35:21 I think you can go ahead and remove this. Trybot
/**
* Returns true if the color space gamma is near enough to be approximated as sRGB.
« 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