Cache the inverse matrix on SkColorSpace. Rename xyz() to toXYZ().
BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2323003002 Review-Url: https://codereview.chromium.org/2323003002
This commit is contained in:
parent
f3155ad97c
commit
971cd496b9
@ -66,7 +66,7 @@ public:
|
||||
/**
|
||||
* Returns the matrix used to transform src gamut to XYZ D50.
|
||||
*/
|
||||
const SkMatrix44& xyz() const { return fToXYZD50; }
|
||||
const SkMatrix44& toXYZD50() const { return fToXYZD50; }
|
||||
|
||||
/**
|
||||
* Returns true if the color space gamma is near enough to be approximated as sRGB.
|
||||
|
@ -19,6 +19,7 @@ SkColorSpace_Base::SkColorSpace_Base(SkGammaNamed gammaNamed, const SkMatrix44&
|
||||
, fGammaNamed(gammaNamed)
|
||||
, fGammas(nullptr)
|
||||
, fProfileData(nullptr)
|
||||
, fFromXYZD50(SkMatrix44::kUninitialized_Constructor)
|
||||
{}
|
||||
|
||||
SkColorSpace_Base::SkColorSpace_Base(sk_sp<SkColorLookUpTable> colorLUT, SkGammaNamed gammaNamed,
|
||||
@ -29,6 +30,7 @@ SkColorSpace_Base::SkColorSpace_Base(sk_sp<SkColorLookUpTable> colorLUT, SkGamma
|
||||
, fGammaNamed(gammaNamed)
|
||||
, fGammas(std::move(gammas))
|
||||
, fProfileData(std::move(profileData))
|
||||
, fFromXYZD50(SkMatrix44::kUninitialized_Constructor)
|
||||
{}
|
||||
|
||||
static constexpr float gSRGB_toXYZD50[] {
|
||||
@ -182,6 +184,20 @@ bool SkColorSpace::gammaIsLinear() const {
|
||||
return kLinear_SkGammaNamed == as_CSB(this)->fGammaNamed;
|
||||
}
|
||||
|
||||
const SkMatrix44& SkColorSpace_Base::fromXYZD50() const {
|
||||
fFromXYZOnce([this] {
|
||||
if (!fToXYZD50.invert(&fFromXYZD50)) {
|
||||
// If a client gives us a dst gamut with a transform that we can't invert, we will
|
||||
// simply give them back a transform to sRGB gamut.
|
||||
SkDEBUGFAIL("Non-invertible XYZ matrix, defaulting to sRGB");
|
||||
SkMatrix44 srgbToxyzD50(SkMatrix44::kUninitialized_Constructor);
|
||||
srgbToxyzD50.set3x3RowMajorf(gSRGB_toXYZD50);
|
||||
srgbToxyzD50.invert(&fFromXYZD50);
|
||||
}
|
||||
});
|
||||
return fFromXYZD50;
|
||||
}
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
enum Version {
|
||||
|
@ -446,14 +446,10 @@ static void build_gamma_tables(const T* outGammaTables[3], T* gammaTableStorage,
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
static inline bool compute_gamut_xform(SkMatrix44* srcToDst, const SkMatrix44& srcToXYZ,
|
||||
const SkMatrix44& dstToXYZ) {
|
||||
if (!dstToXYZ.invert(srcToDst)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
srcToDst->postConcat(srcToXYZ);
|
||||
return true;
|
||||
static inline void compute_gamut_xform(SkMatrix44* srcToDst, const SkColorSpace* src,
|
||||
const SkColorSpace* dst) {
|
||||
*srcToDst = as_CSB(dst)->fromXYZD50();
|
||||
srcToDst->postConcat(src->toXYZD50());
|
||||
}
|
||||
|
||||
static inline bool is_almost_identity(const SkMatrix44& srcToDst) {
|
||||
@ -482,11 +478,13 @@ std::unique_ptr<SkColorSpaceXform> SkColorSpaceXform::New(const sk_sp<SkColorSpa
|
||||
if (SkColorSpace::Equals(srcSpace.get(), dstSpace.get())) {
|
||||
srcToDst.setIdentity();
|
||||
csm = kFull_ColorSpaceMatch;
|
||||
} else if (!compute_gamut_xform(&srcToDst, srcSpace->xyz(), dstSpace->xyz())) {
|
||||
return nullptr;
|
||||
} else if (is_almost_identity(srcToDst)) {
|
||||
srcToDst.setIdentity();
|
||||
csm = kGamut_ColorSpaceMatch;
|
||||
} else {
|
||||
compute_gamut_xform(&srcToDst, srcSpace.get(), dstSpace.get());
|
||||
|
||||
if (is_almost_identity(srcToDst)) {
|
||||
srcToDst.setIdentity();
|
||||
csm = kGamut_ColorSpaceMatch;
|
||||
}
|
||||
}
|
||||
|
||||
switch (csm) {
|
||||
|
@ -10,6 +10,7 @@
|
||||
|
||||
#include "SkColorSpace.h"
|
||||
#include "SkData.h"
|
||||
#include "SkOnce.h"
|
||||
#include "SkTemplates.h"
|
||||
|
||||
enum SkGammaNamed : uint8_t {
|
||||
@ -188,6 +189,8 @@ public:
|
||||
|
||||
const SkColorLookUpTable* colorLUT() const { return fColorLUT.get(); }
|
||||
|
||||
const SkMatrix44& fromXYZD50() const;
|
||||
|
||||
private:
|
||||
|
||||
/**
|
||||
@ -211,6 +214,9 @@ private:
|
||||
sk_sp<SkGammas> fGammas;
|
||||
sk_sp<SkData> fProfileData;
|
||||
|
||||
mutable SkMatrix44 fFromXYZD50;
|
||||
mutable SkOnce fFromXYZOnce;
|
||||
|
||||
friend class SkColorSpace;
|
||||
friend class ColorSpaceXformTest;
|
||||
friend class ColorSpaceTest;
|
||||
|
@ -7,6 +7,7 @@
|
||||
|
||||
#include "GrColorSpaceXform.h"
|
||||
#include "SkColorSpace.h"
|
||||
#include "SkColorSpace_Base.h"
|
||||
#include "SkMatrix44.h"
|
||||
|
||||
static inline bool sk_float_almost_equals(float x, float y, float tol) {
|
||||
@ -51,11 +52,8 @@ sk_sp<GrColorSpaceXform> GrColorSpaceXform::Make(SkColorSpace* src, SkColorSpace
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
SkMatrix44 srcToDst(SkMatrix44::kUninitialized_Constructor);
|
||||
if (!dst->xyz().invert(&srcToDst)) {
|
||||
return nullptr;
|
||||
}
|
||||
srcToDst.postConcat(src->xyz());
|
||||
SkMatrix44 srcToDst = as_CSB(dst)->fromXYZD50();
|
||||
srcToDst.postConcat(src->toXYZD50());
|
||||
|
||||
if (matrix_is_almost_identity(srcToDst)) {
|
||||
return nullptr;
|
||||
|
@ -24,7 +24,7 @@ static void test_space(skiatest::Reporter* r, SkColorSpace* space,
|
||||
REPORTER_ASSERT(r, nullptr != space);
|
||||
REPORTER_ASSERT(r, expectedGamma == as_CSB(space)->gammaNamed());
|
||||
|
||||
const SkMatrix44& mat = space->xyz();
|
||||
const SkMatrix44& mat = space->toXYZD50();
|
||||
const float src[] = {
|
||||
1, 0, 0, 1,
|
||||
0, 1, 0, 1,
|
||||
@ -142,7 +142,7 @@ DEF_TEST(ColorSpaceWriteICC, r) {
|
||||
sk_sp<SkData> newMonitorData = ColorSpaceTest::WriteToICC(monitorSpace.get());
|
||||
sk_sp<SkColorSpace> newMonitorSpace = SkColorSpace::NewICC(newMonitorData->data(),
|
||||
newMonitorData->size());
|
||||
REPORTER_ASSERT(r, monitorSpace->xyz() == newMonitorSpace->xyz());
|
||||
REPORTER_ASSERT(r, monitorSpace->toXYZD50() == newMonitorSpace->toXYZD50());
|
||||
REPORTER_ASSERT(r, as_CSB(monitorSpace)->gammaNamed() == as_CSB(newMonitorSpace)->gammaNamed());
|
||||
}
|
||||
|
||||
|
@ -921,7 +921,7 @@ static void test_surface_creation_and_snapshot_with_color_space(
|
||||
|
||||
auto srgbColorSpace = SkColorSpace::NewNamed(SkColorSpace::kSRGB_Named);
|
||||
auto adobeColorSpace = SkColorSpace::NewNamed(SkColorSpace::kAdobeRGB_Named);
|
||||
SkMatrix44 srgbMatrix = srgbColorSpace->xyz();
|
||||
SkMatrix44 srgbMatrix = srgbColorSpace->toXYZD50();
|
||||
const float oddGamma[] = { 2.4f, 2.4f, 2.4f };
|
||||
auto oddColorSpace = SkColorSpace_Base::NewRGB(oddGamma, srgbMatrix);
|
||||
auto linearColorSpace = srgbColorSpace->makeLinearGamma();
|
||||
|
@ -125,8 +125,8 @@ DEF_TEST(ParseConfigs_DefaultConfigs, reporter) {
|
||||
REPORTER_ASSERT(reporter, configs[25]->asConfigGpu()->getColorType() == kRGBA_F16_SkColorType);
|
||||
REPORTER_ASSERT(reporter, configs[25]->asConfigGpu()->getColorSpace());
|
||||
REPORTER_ASSERT(reporter, configs[25]->asConfigGpu()->getColorSpace()->gammaIsLinear());
|
||||
REPORTER_ASSERT(reporter, configs[25]->asConfigGpu()->getColorSpace()->xyz() ==
|
||||
srgbColorSpace->xyz());
|
||||
REPORTER_ASSERT(reporter, configs[25]->asConfigGpu()->getColorSpace()->toXYZD50() ==
|
||||
srgbColorSpace->toXYZD50());
|
||||
REPORTER_ASSERT(reporter, configs[26]->asConfigGpu()->getColorType() == kN32_SkColorType);
|
||||
REPORTER_ASSERT(reporter, configs[26]->asConfigGpu()->getColorSpace() == srgbColorSpace.get());
|
||||
REPORTER_ASSERT(reporter, configs[33]->asConfigGpu()->getContextType() ==
|
||||
|
@ -141,13 +141,13 @@ int main(int argc, char** argv) {
|
||||
// Draw the sRGB gamut if requested.
|
||||
if (FLAGS_sRGB) {
|
||||
sk_sp<SkColorSpace> sRGBSpace = SkColorSpace::NewNamed(SkColorSpace::kSRGB_Named);
|
||||
draw_gamut(&canvas, sRGBSpace->xyz(), "sRGB", 0xFFFF9394, false);
|
||||
draw_gamut(&canvas, sRGBSpace->toXYZD50(), "sRGB", 0xFFFF9394, false);
|
||||
}
|
||||
|
||||
// Draw the Adobe RGB gamut if requested.
|
||||
if (FLAGS_adobeRGB) {
|
||||
sk_sp<SkColorSpace> adobeRGBSpace = SkColorSpace::NewNamed(SkColorSpace::kAdobeRGB_Named);
|
||||
draw_gamut(&canvas, adobeRGBSpace->xyz(), "Adobe RGB", 0xFF31a9e1, false);
|
||||
draw_gamut(&canvas, adobeRGBSpace->toXYZD50(), "Adobe RGB", 0xFF31a9e1, false);
|
||||
}
|
||||
|
||||
// Draw gamut for the input image.
|
||||
@ -156,7 +156,7 @@ int main(int argc, char** argv) {
|
||||
SkDebugf("Image had no embedded color space information. Defaulting to sRGB.\n");
|
||||
colorSpace = SkColorSpace::NewNamed(SkColorSpace::kSRGB_Named);
|
||||
}
|
||||
draw_gamut(&canvas, colorSpace->xyz(), input, 0xFF000000, true);
|
||||
draw_gamut(&canvas, colorSpace->toXYZD50(), input, 0xFF000000, true);
|
||||
|
||||
// Finally, encode the result to the output file.
|
||||
sk_sp<SkData> out(SkImageEncoder::EncodeData(gamut, SkImageEncoder::kPNG_Type, 100));
|
||||
|
Loading…
Reference in New Issue
Block a user