2016-03-04 21:27:35 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2016 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "Resources.h"
|
|
|
|
#include "SkCodec.h"
|
|
|
|
#include "SkColorSpace.h"
|
2017-01-04 15:53:31 +00:00
|
|
|
#include "SkColorSpacePriv.h"
|
2018-04-17 18:14:51 +00:00
|
|
|
#include "SkColorSpace_XYZ.h"
|
|
|
|
#include "SkData.h"
|
|
|
|
#include "SkImageInfo.h"
|
|
|
|
#include "SkMatrix44.h"
|
|
|
|
#include "SkRefCnt.h"
|
|
|
|
#include "SkStream.h"
|
|
|
|
#include "SkTypes.h"
|
2016-03-04 21:27:35 +00:00
|
|
|
#include "Test.h"
|
2016-03-08 01:25:12 +00:00
|
|
|
#include "png.h"
|
2018-05-30 16:57:45 +00:00
|
|
|
#include "../third_party/skcms/skcms.h"
|
2018-04-27 16:03:51 +00:00
|
|
|
|
2018-04-17 18:14:51 +00:00
|
|
|
#include <memory>
|
|
|
|
#include <utility>
|
|
|
|
|
2016-05-03 19:13:21 +00:00
|
|
|
static bool almost_equal(float a, float b) {
|
|
|
|
return SkTAbs(a - b) < 0.001f;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_space(skiatest::Reporter* r, SkColorSpace* space,
|
|
|
|
const float red[], const float green[], const float blue[],
|
2016-09-07 19:03:53 +00:00
|
|
|
const SkGammaNamed expectedGamma) {
|
2016-05-17 16:31:20 +00:00
|
|
|
|
2016-08-24 14:36:06 +00:00
|
|
|
REPORTER_ASSERT(r, nullptr != space);
|
2017-12-12 19:09:31 +00:00
|
|
|
REPORTER_ASSERT(r, expectedGamma == space->gammaNamed());
|
2016-05-17 16:31:20 +00:00
|
|
|
|
2017-12-12 19:09:31 +00:00
|
|
|
const SkMatrix44& mat = *space->toXYZD50();
|
2016-05-03 19:13:21 +00:00
|
|
|
const float src[] = {
|
|
|
|
1, 0, 0, 1,
|
|
|
|
0, 1, 0, 1,
|
|
|
|
0, 0, 1, 1,
|
|
|
|
};
|
2016-09-09 17:36:17 +00:00
|
|
|
const float* ref[3] = { red, green, blue };
|
2016-05-03 19:13:21 +00:00
|
|
|
float dst[4];
|
|
|
|
for (int i = 0; i < 3; ++i) {
|
|
|
|
mat.mapScalars(&src[i*4], dst);
|
2016-09-09 17:36:17 +00:00
|
|
|
REPORTER_ASSERT(r, almost_equal(ref[i][0], dst[0]));
|
|
|
|
REPORTER_ASSERT(r, almost_equal(ref[i][1], dst[1]));
|
|
|
|
REPORTER_ASSERT(r, almost_equal(ref[i][2], dst[2]));
|
2016-05-03 19:13:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-24 14:36:06 +00:00
|
|
|
static void test_path(skiatest::Reporter* r, const char* path,
|
|
|
|
const float red[], const float green[], const float blue[],
|
2016-09-07 19:03:53 +00:00
|
|
|
const SkGammaNamed expectedGamma) {
|
2016-11-03 18:40:50 +00:00
|
|
|
std::unique_ptr<SkStream> stream(GetResourceAsStream(path));
|
2016-03-04 21:27:35 +00:00
|
|
|
REPORTER_ASSERT(r, nullptr != stream);
|
2016-03-26 01:38:09 +00:00
|
|
|
if (!stream) {
|
|
|
|
return;
|
|
|
|
}
|
2016-03-04 21:27:35 +00:00
|
|
|
|
2017-07-23 19:30:02 +00:00
|
|
|
std::unique_ptr<SkCodec> codec(SkCodec::MakeFromStream(std::move(stream)));
|
Revert of Make SkPngCodec decode progressively. (patchset #26 id:520001 of https://codereview.chromium.org/1997703003/ )
Reason for revert:
Still causing problems in Google3, e.g.
https://test.corp.google.com/ui#cl=124138817&flags=CAMQBQ==&id=OCL:124138817:BASE:124139560:1465227435491:219ffbdb&t=//third_party/skia/HEAD:dm
Original issue's description:
> Make SkPngCodec decode progressively.
>
> This is a step towards using SkCodec in Chromium, where progressive
> decoding is necessary.
>
> Switch from using png_read_row (which expects all the data to be
> available) to png_process_data, which uses callbacks when rows are
> available.
>
> Create a new API for SkCodec, which supports progressive decoding and
> scanline decoding. Future changes will switch the other clients off of
> startScanlineDecode and get/skip-Scanlines to the new API.
>
> Remove SkCodec::kNone_ScanlineOrder, which was only used for interlaced
> PNG images. In the new API, interlaced PNG fits kTopDown. Also remove
> updateCurrScanline(), which was only used by the old implementation for
> interlaced PNG.
>
> DMSrcSink:
> - In CodecSrc::kScanline_Mode, use the new method for scanline decoding
> for the supported formats (just PNG and PNG-in-ICO for now).
>
> fuzz.cpp:
> - Remove reference to kNone_ScanlineOrder
>
> SkCodec:
> - Add new APIs:
> - startIncrementalDecode
> - incrementalDecode
> - Remove kNone_SkScanlineOrder and updateCurrScanline()
>
> SkPngCodec:
> - Implement new APIs
> - Switch from sk_read_fn/png_read_row etc to png_process_data
> - Expand AutoCleanPng's role to decode the header and create the
> SkPngCodec
> - Make the interlaced PNG decoder report how many lines were
> initialized during an incomplete decode
> - Make initializeSwizzler return a bool instead of an SkCodec::Result
> (It only returned kSuccess or kInvalidInput anyway)
>
> SkIcoCodec:
> - Implement the new APIs; supported for PNG in ICO
>
> SkSampledCodec:
> - Call the new method for decoding scanlines, and fall back to the old
> method if the new version is unimplemented
> - Remove references to kNone_SkScanlineOrder
>
> tests/CodecPartial:
> - Add a test which decodes part of an image, then finishes the decode,
> and compares it to the straightforward method
>
> tests/CodecTest:
> - Add a test which decodes all scanlines using the new method
> - Repurpose the Codec_stripes test to decode using the new method in
> sections rather than all at once
> - In the method check(), add a parameter for whether the image supports
> the new method of scanline decoding, and be explicit about whether an
> image supports incomplete
> - Test incomplete PNG decodes. We should have been doing it anyway for
> non-interlaced (except for an image that is too small - one row), but
> the new method supports interlaced incomplete as well
> - Make test_invalid_parameters test the new method
> - Add a test to ensure that it's safe to fall back to scanline decoding without
> rewinding
>
> BUG=skia:4211
>
> The new version was generally faster than the old version (but not significantly so).
>
> Some raw performance differences can be found at https://docs.google.com/a/google.com/spreadsheets/d/1Gis3aRCEa72qBNDRMgGDg3jD-pMgO-FXldlNF9ejo4o/
>
> Design doc can be found at https://docs.google.com/a/google.com/document/d/11Mn8-ePDKwVEMCjs3nWwSjxcSpJ_Cu8DF57KNtUmgLM/
>
> GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1997703003
>
> Committed: https://skia.googlesource.com/skia/+/a4b09a117d4d1ba5dda372e6a2323e653766539e
>
> Committed: https://skia.googlesource.com/skia/+/30e78c9737ff4861dc4e3fa1e4cd010680ed6965
>
> Committed: https://skia.googlesource.com/skia/+/6fb2391b2cc83ee2160b4e994faa8128975acc1f
TBR=reed@google.com,msarett@google.com,scroggo@chromium.org
# Not skipping CQ checks because original CL landed more than 1 days ago.
BUG=skia:4211
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2044573002
Review-Url: https://codereview.chromium.org/2044573002
2016-06-06 18:26:17 +00:00
|
|
|
REPORTER_ASSERT(r, nullptr != codec);
|
2016-08-24 14:36:06 +00:00
|
|
|
if (!codec) {
|
|
|
|
return;
|
|
|
|
}
|
2016-03-04 21:27:35 +00:00
|
|
|
|
2016-07-21 18:57:49 +00:00
|
|
|
SkColorSpace* colorSpace = codec->getInfo().colorSpace();
|
2016-08-24 14:36:06 +00:00
|
|
|
test_space(r, colorSpace, red, green, blue, expectedGamma);
|
2016-03-04 21:27:35 +00:00
|
|
|
}
|
2016-03-21 15:04:40 +00:00
|
|
|
|
2016-09-09 17:36:17 +00:00
|
|
|
static constexpr float g_sRGB_XYZ[]{
|
|
|
|
0.4358f, 0.3853f, 0.1430f, // Rx, Gx, Bx
|
|
|
|
0.2224f, 0.7170f, 0.0606f, // Ry, Gy, Gz
|
|
|
|
0.0139f, 0.0971f, 0.7139f, // Rz, Gz, Bz
|
|
|
|
};
|
|
|
|
|
|
|
|
static constexpr float g_sRGB_R[]{ 0.4358f, 0.2224f, 0.0139f };
|
|
|
|
static constexpr float g_sRGB_G[]{ 0.3853f, 0.7170f, 0.0971f };
|
|
|
|
static constexpr float g_sRGB_B[]{ 0.1430f, 0.0606f, 0.7139f };
|
2016-03-21 15:04:40 +00:00
|
|
|
|
2016-08-24 14:36:06 +00:00
|
|
|
DEF_TEST(ColorSpace_sRGB, r) {
|
2017-02-07 18:56:11 +00:00
|
|
|
test_space(r, SkColorSpace::MakeSRGB().get(),
|
2016-09-09 17:36:17 +00:00
|
|
|
g_sRGB_R, g_sRGB_G, g_sRGB_B, kSRGB_SkGammaNamed);
|
2016-03-21 15:04:40 +00:00
|
|
|
|
2016-08-24 14:36:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DEF_TEST(ColorSpaceParseICCProfiles, r) {
|
|
|
|
|
|
|
|
#if (PNG_LIBPNG_VER_MAJOR > 1) || (PNG_LIBPNG_VER_MAJOR == 1 && PNG_LIBPNG_VER_MINOR >= 6)
|
2017-12-08 15:21:31 +00:00
|
|
|
test_path(r, "images/color_wheel_with_profile.png", g_sRGB_R, g_sRGB_G, g_sRGB_B,
|
2016-09-07 19:03:53 +00:00
|
|
|
kSRGB_SkGammaNamed);
|
2016-08-24 14:36:06 +00:00
|
|
|
#endif
|
2016-03-21 15:04:40 +00:00
|
|
|
|
2016-05-03 19:13:21 +00:00
|
|
|
const float red[] = { 0.385117f, 0.716904f, 0.0970612f };
|
|
|
|
const float green[] = { 0.143051f, 0.0606079f, 0.713913f };
|
|
|
|
const float blue[] = { 0.436035f, 0.222488f, 0.013916f };
|
2017-12-08 15:21:31 +00:00
|
|
|
test_path(r, "images/icc-v2-gbr.jpg", red, green, blue, k2Dot2Curve_SkGammaNamed);
|
2016-08-24 14:36:06 +00:00
|
|
|
|
2017-12-08 15:21:31 +00:00
|
|
|
test_path(r, "images/webp-color-profile-crash.webp",
|
2016-09-07 19:03:53 +00:00
|
|
|
red, green, blue, kNonStandard_SkGammaNamed);
|
2017-12-08 15:21:31 +00:00
|
|
|
test_path(r, "images/webp-color-profile-lossless.webp",
|
2016-09-07 19:03:53 +00:00
|
|
|
red, green, blue, kNonStandard_SkGammaNamed);
|
2017-12-08 15:21:31 +00:00
|
|
|
test_path(r, "images/webp-color-profile-lossy.webp",
|
2016-09-07 19:03:53 +00:00
|
|
|
red, green, blue, kNonStandard_SkGammaNamed);
|
2017-12-08 15:21:31 +00:00
|
|
|
test_path(r, "images/webp-color-profile-lossy-alpha.webp",
|
2016-09-07 19:03:53 +00:00
|
|
|
red, green, blue, kNonStandard_SkGammaNamed);
|
2016-03-21 15:04:40 +00:00
|
|
|
}
|
2016-05-03 21:24:47 +00:00
|
|
|
|
|
|
|
DEF_TEST(ColorSpaceSRGBCompare, r) {
|
|
|
|
// Create an sRGB color space by name
|
2017-02-07 18:56:11 +00:00
|
|
|
sk_sp<SkColorSpace> namedColorSpace = SkColorSpace::MakeSRGB();
|
2016-05-03 21:24:47 +00:00
|
|
|
|
|
|
|
// Create an sRGB color space by value
|
|
|
|
SkMatrix44 srgbToxyzD50(SkMatrix44::kUninitialized_Constructor);
|
2016-06-23 19:42:29 +00:00
|
|
|
srgbToxyzD50.set3x3RowMajorf(g_sRGB_XYZ);
|
2016-09-08 01:55:49 +00:00
|
|
|
sk_sp<SkColorSpace> rgbColorSpace =
|
2016-10-24 13:24:02 +00:00
|
|
|
SkColorSpace::MakeRGB(SkColorSpace::kSRGB_RenderTargetGamma, srgbToxyzD50);
|
2016-05-25 15:53:40 +00:00
|
|
|
REPORTER_ASSERT(r, rgbColorSpace == namedColorSpace);
|
2016-05-03 21:24:47 +00:00
|
|
|
|
2017-01-04 15:53:31 +00:00
|
|
|
SkColorSpaceTransferFn srgbFn;
|
|
|
|
srgbFn.fA = (1.0f / 1.055f);
|
|
|
|
srgbFn.fB = (0.055f / 1.055f);
|
|
|
|
srgbFn.fC = (1.0f / 12.92f);
|
|
|
|
srgbFn.fD = 0.04045f;
|
|
|
|
srgbFn.fE = 0.0f;
|
|
|
|
srgbFn.fF = 0.0f;
|
|
|
|
srgbFn.fG = 2.4f;
|
|
|
|
sk_sp<SkColorSpace> rgbColorSpace2 = SkColorSpace::MakeRGB(srgbFn, srgbToxyzD50);
|
|
|
|
REPORTER_ASSERT(r, rgbColorSpace2 == namedColorSpace);
|
|
|
|
|
2016-05-03 21:24:47 +00:00
|
|
|
// Change a single value from the sRGB matrix
|
|
|
|
srgbToxyzD50.set(2, 2, 0.5f);
|
2016-09-08 01:55:49 +00:00
|
|
|
sk_sp<SkColorSpace> strangeColorSpace =
|
2016-10-24 13:24:02 +00:00
|
|
|
SkColorSpace::MakeRGB(SkColorSpace::kSRGB_RenderTargetGamma, srgbToxyzD50);
|
2016-05-03 21:24:47 +00:00
|
|
|
REPORTER_ASSERT(r, strangeColorSpace != namedColorSpace);
|
|
|
|
}
|
2016-05-25 15:53:40 +00:00
|
|
|
|
2016-09-27 22:11:47 +00:00
|
|
|
DEF_TEST(ColorSpaceSRGBLinearCompare, r) {
|
|
|
|
// Create the linear sRGB color space by name
|
2017-02-07 18:56:11 +00:00
|
|
|
sk_sp<SkColorSpace> namedColorSpace = SkColorSpace::MakeSRGBLinear();
|
2016-09-27 22:11:47 +00:00
|
|
|
|
|
|
|
// Create the linear sRGB color space via the sRGB color space's makeLinearGamma()
|
2017-02-07 18:56:11 +00:00
|
|
|
auto srgb = SkColorSpace::MakeSRGB();
|
2016-10-18 17:02:51 +00:00
|
|
|
auto srgbXYZ = static_cast<SkColorSpace_XYZ*>(srgb.get());
|
|
|
|
sk_sp<SkColorSpace> viaSrgbColorSpace = srgbXYZ->makeLinearGamma();
|
2016-09-27 22:11:47 +00:00
|
|
|
REPORTER_ASSERT(r, namedColorSpace == viaSrgbColorSpace);
|
|
|
|
|
|
|
|
// Create a linear sRGB color space by value
|
|
|
|
SkMatrix44 srgbToxyzD50(SkMatrix44::kUninitialized_Constructor);
|
|
|
|
srgbToxyzD50.set3x3RowMajorf(g_sRGB_XYZ);
|
|
|
|
sk_sp<SkColorSpace> rgbColorSpace =
|
2016-10-24 13:24:02 +00:00
|
|
|
SkColorSpace::MakeRGB(SkColorSpace::kLinear_RenderTargetGamma, srgbToxyzD50);
|
2016-09-27 22:11:47 +00:00
|
|
|
REPORTER_ASSERT(r, rgbColorSpace == namedColorSpace);
|
|
|
|
|
2017-01-04 15:53:31 +00:00
|
|
|
SkColorSpaceTransferFn linearExpFn;
|
|
|
|
linearExpFn.fA = 1.0f;
|
|
|
|
linearExpFn.fB = 0.0f;
|
|
|
|
linearExpFn.fC = 0.0f;
|
|
|
|
linearExpFn.fD = 0.0f;
|
|
|
|
linearExpFn.fE = 0.0f;
|
|
|
|
linearExpFn.fF = 0.0f;
|
|
|
|
linearExpFn.fG = 1.0f;
|
|
|
|
sk_sp<SkColorSpace> rgbColorSpace2 = SkColorSpace::MakeRGB(linearExpFn, srgbToxyzD50);
|
|
|
|
REPORTER_ASSERT(r, rgbColorSpace2 == namedColorSpace);
|
|
|
|
|
|
|
|
SkColorSpaceTransferFn linearFn;
|
|
|
|
linearFn.fA = 0.0f;
|
|
|
|
linearFn.fB = 0.0f;
|
|
|
|
linearFn.fC = 1.0f;
|
|
|
|
linearFn.fD = 1.0f;
|
|
|
|
linearFn.fE = 0.0f;
|
|
|
|
linearFn.fF = 0.0f;
|
|
|
|
linearFn.fG = 0.0f;
|
|
|
|
sk_sp<SkColorSpace> rgbColorSpace3 = SkColorSpace::MakeRGB(linearFn, srgbToxyzD50);
|
|
|
|
REPORTER_ASSERT(r, rgbColorSpace3 == namedColorSpace);
|
|
|
|
|
2016-09-27 22:11:47 +00:00
|
|
|
// Change a single value from the sRGB matrix
|
|
|
|
srgbToxyzD50.set(2, 2, 0.5f);
|
|
|
|
sk_sp<SkColorSpace> strangeColorSpace =
|
2016-10-24 13:24:02 +00:00
|
|
|
SkColorSpace::MakeRGB(SkColorSpace::kLinear_RenderTargetGamma, srgbToxyzD50);
|
2016-09-27 22:11:47 +00:00
|
|
|
REPORTER_ASSERT(r, strangeColorSpace != namedColorSpace);
|
|
|
|
}
|
|
|
|
|
2018-05-23 16:43:42 +00:00
|
|
|
static void test_serialize(skiatest::Reporter* r, sk_sp<SkColorSpace> space, bool isNamed) {
|
2016-07-28 17:47:50 +00:00
|
|
|
sk_sp<SkData> data1 = space->serialize();
|
|
|
|
|
|
|
|
size_t bytes = space->writeToMemory(nullptr);
|
|
|
|
sk_sp<SkData> data2 = SkData::MakeUninitialized(bytes);
|
|
|
|
space->writeToMemory(data2->writable_data());
|
|
|
|
|
|
|
|
sk_sp<SkColorSpace> newSpace1 = SkColorSpace::Deserialize(data1->data(), data1->size());
|
|
|
|
sk_sp<SkColorSpace> newSpace2 = SkColorSpace::Deserialize(data2->data(), data2->size());
|
2016-06-22 15:18:54 +00:00
|
|
|
|
|
|
|
if (isNamed) {
|
2018-05-23 16:43:42 +00:00
|
|
|
REPORTER_ASSERT(r, space.get() == newSpace1.get());
|
|
|
|
REPORTER_ASSERT(r, space.get() == newSpace2.get());
|
2016-06-22 15:18:54 +00:00
|
|
|
} else {
|
2018-05-23 16:43:42 +00:00
|
|
|
REPORTER_ASSERT(r, SkColorSpace::Equals(space.get(), newSpace1.get()));
|
|
|
|
REPORTER_ASSERT(r, SkColorSpace::Equals(space.get(), newSpace2.get()));
|
2016-06-22 15:18:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DEF_TEST(ColorSpace_Serialize, r) {
|
2018-05-23 16:43:42 +00:00
|
|
|
test_serialize(r, SkColorSpace::MakeSRGB(), true);
|
|
|
|
test_serialize(r, SkColorSpace::MakeSRGBLinear(), true);
|
|
|
|
|
|
|
|
auto test = [&](const char* path) {
|
|
|
|
sk_sp<SkData> data = GetResourceAsData(path);
|
|
|
|
|
|
|
|
skcms_ICCProfile profile;
|
|
|
|
REPORTER_ASSERT(r, skcms_Parse(data->data(), data->size(), &profile));
|
|
|
|
|
|
|
|
sk_sp<SkColorSpace> space = SkColorSpace::Make(profile);
|
|
|
|
REPORTER_ASSERT(r, space);
|
|
|
|
|
|
|
|
test_serialize(r, space, false);
|
|
|
|
};
|
|
|
|
test("icc_profiles/HP_ZR30w.icc");
|
|
|
|
test("icc_profiles/HP_Z32x.icc");
|
2016-08-22 19:29:31 +00:00
|
|
|
|
2016-10-11 20:57:50 +00:00
|
|
|
SkColorSpaceTransferFn fn;
|
|
|
|
fn.fA = 1.0f;
|
|
|
|
fn.fB = 0.0f;
|
2016-12-19 19:33:35 +00:00
|
|
|
fn.fC = 1.0f;
|
2016-10-11 20:57:50 +00:00
|
|
|
fn.fD = 0.5f;
|
2016-12-19 19:33:35 +00:00
|
|
|
fn.fE = 0.0f;
|
2016-10-11 20:57:50 +00:00
|
|
|
fn.fF = 0.0f;
|
|
|
|
fn.fG = 1.0f;
|
2016-10-28 16:51:08 +00:00
|
|
|
SkMatrix44 toXYZ(SkMatrix44::kIdentity_Constructor);
|
2018-05-23 16:43:42 +00:00
|
|
|
test_serialize(r, SkColorSpace::MakeRGB(fn, toXYZ), false);
|
2016-06-22 15:18:54 +00:00
|
|
|
}
|
|
|
|
|
2016-08-01 16:43:08 +00:00
|
|
|
DEF_TEST(ColorSpace_Equals, r) {
|
2017-02-07 18:56:11 +00:00
|
|
|
sk_sp<SkColorSpace> srgb = SkColorSpace::MakeSRGB();
|
2018-05-23 16:43:42 +00:00
|
|
|
|
|
|
|
auto parse = [&](const char* path) {
|
|
|
|
sk_sp<SkData> data = GetResourceAsData(path);
|
|
|
|
|
|
|
|
skcms_ICCProfile profile;
|
|
|
|
REPORTER_ASSERT(r, skcms_Parse(data->data(), data->size(), &profile));
|
|
|
|
|
|
|
|
sk_sp<SkColorSpace> space = SkColorSpace::Make(profile);
|
|
|
|
REPORTER_ASSERT(r, space);
|
|
|
|
|
|
|
|
return space;
|
|
|
|
};
|
|
|
|
sk_sp<SkColorSpace> z30 = parse("icc_profiles/HP_ZR30w.icc");
|
|
|
|
sk_sp<SkColorSpace> z32 = parse("icc_profiles/HP_Z32x.icc");
|
2016-08-01 16:43:08 +00:00
|
|
|
|
2016-10-11 20:57:50 +00:00
|
|
|
SkColorSpaceTransferFn fn;
|
|
|
|
fn.fA = 1.0f;
|
|
|
|
fn.fB = 0.0f;
|
2016-12-19 19:33:35 +00:00
|
|
|
fn.fC = 1.0f;
|
2016-10-11 20:57:50 +00:00
|
|
|
fn.fD = 0.5f;
|
2016-12-19 19:33:35 +00:00
|
|
|
fn.fE = 0.0f;
|
2016-10-11 20:57:50 +00:00
|
|
|
fn.fF = 0.0f;
|
|
|
|
fn.fG = 1.0f;
|
2016-10-28 16:51:08 +00:00
|
|
|
SkMatrix44 toXYZ(SkMatrix44::kIdentity_Constructor);
|
2016-10-24 13:24:02 +00:00
|
|
|
sk_sp<SkColorSpace> rgb4 = SkColorSpace::MakeRGB(fn, toXYZ);
|
2016-10-11 20:57:50 +00:00
|
|
|
|
2016-08-01 16:43:08 +00:00
|
|
|
REPORTER_ASSERT(r, SkColorSpace::Equals(nullptr, nullptr));
|
|
|
|
REPORTER_ASSERT(r, SkColorSpace::Equals(srgb.get(), srgb.get()));
|
|
|
|
REPORTER_ASSERT(r, SkColorSpace::Equals(z30.get(), z30.get()));
|
|
|
|
REPORTER_ASSERT(r, SkColorSpace::Equals(z32.get(), z32.get()));
|
2016-10-11 20:57:50 +00:00
|
|
|
REPORTER_ASSERT(r, SkColorSpace::Equals(rgb4.get(), rgb4.get()));
|
2016-08-01 16:43:08 +00:00
|
|
|
|
|
|
|
REPORTER_ASSERT(r, !SkColorSpace::Equals(nullptr, srgb.get()));
|
|
|
|
REPORTER_ASSERT(r, !SkColorSpace::Equals(srgb.get(), nullptr));
|
|
|
|
REPORTER_ASSERT(r, !SkColorSpace::Equals(z30.get(), srgb.get()));
|
|
|
|
REPORTER_ASSERT(r, !SkColorSpace::Equals(z32.get(), z30.get()));
|
2016-10-28 16:51:08 +00:00
|
|
|
REPORTER_ASSERT(r, !SkColorSpace::Equals(z30.get(), rgb4.get()));
|
|
|
|
REPORTER_ASSERT(r, !SkColorSpace::Equals(srgb.get(), rgb4.get()));
|
2016-08-01 16:43:08 +00:00
|
|
|
}
|
2016-10-11 16:41:16 +00:00
|
|
|
|
2016-10-28 18:45:03 +00:00
|
|
|
static inline bool matrix_almost_equal(const SkMatrix44& a, const SkMatrix44& b) {
|
|
|
|
return almost_equal(a.get(0, 0), b.get(0, 0)) &&
|
|
|
|
almost_equal(a.get(0, 1), b.get(0, 1)) &&
|
|
|
|
almost_equal(a.get(0, 2), b.get(0, 2)) &&
|
|
|
|
almost_equal(a.get(0, 3), b.get(0, 3)) &&
|
|
|
|
almost_equal(a.get(1, 0), b.get(1, 0)) &&
|
|
|
|
almost_equal(a.get(1, 1), b.get(1, 1)) &&
|
|
|
|
almost_equal(a.get(1, 2), b.get(1, 2)) &&
|
|
|
|
almost_equal(a.get(1, 3), b.get(1, 3)) &&
|
|
|
|
almost_equal(a.get(2, 0), b.get(2, 0)) &&
|
|
|
|
almost_equal(a.get(2, 1), b.get(2, 1)) &&
|
|
|
|
almost_equal(a.get(2, 2), b.get(2, 2)) &&
|
|
|
|
almost_equal(a.get(2, 3), b.get(2, 3)) &&
|
|
|
|
almost_equal(a.get(3, 0), b.get(3, 0)) &&
|
|
|
|
almost_equal(a.get(3, 1), b.get(3, 1)) &&
|
|
|
|
almost_equal(a.get(3, 2), b.get(3, 2)) &&
|
|
|
|
almost_equal(a.get(3, 3), b.get(3, 3));
|
|
|
|
}
|
2016-10-11 16:41:16 +00:00
|
|
|
|
2016-10-28 18:45:03 +00:00
|
|
|
static inline void check_primaries(skiatest::Reporter* r, const SkColorSpacePrimaries& primaries,
|
|
|
|
const SkMatrix44& reference) {
|
2016-10-11 16:41:16 +00:00
|
|
|
SkMatrix44 toXYZ(SkMatrix44::kUninitialized_Constructor);
|
|
|
|
bool result = primaries.toXYZD50(&toXYZ);
|
|
|
|
REPORTER_ASSERT(r, result);
|
2016-10-28 18:45:03 +00:00
|
|
|
REPORTER_ASSERT(r, matrix_almost_equal(toXYZ, reference));
|
|
|
|
}
|
|
|
|
|
|
|
|
DEF_TEST(ColorSpace_Primaries, r) {
|
|
|
|
// sRGB primaries (D65)
|
|
|
|
SkColorSpacePrimaries srgb;
|
|
|
|
srgb.fRX = 0.64f;
|
|
|
|
srgb.fRY = 0.33f;
|
|
|
|
srgb.fGX = 0.30f;
|
|
|
|
srgb.fGY = 0.60f;
|
|
|
|
srgb.fBX = 0.15f;
|
|
|
|
srgb.fBY = 0.06f;
|
|
|
|
srgb.fWX = 0.3127f;
|
|
|
|
srgb.fWY = 0.3290f;
|
|
|
|
SkMatrix44 srgbToXYZ(SkMatrix44::kUninitialized_Constructor);
|
|
|
|
bool result = srgb.toXYZD50(&srgbToXYZ);
|
|
|
|
REPORTER_ASSERT(r, result);
|
2016-10-11 16:41:16 +00:00
|
|
|
|
2016-10-28 18:45:03 +00:00
|
|
|
sk_sp<SkColorSpace> space = SkColorSpace::MakeRGB(SkColorSpace::kSRGB_RenderTargetGamma,
|
|
|
|
srgbToXYZ);
|
2017-02-07 18:56:11 +00:00
|
|
|
REPORTER_ASSERT(r, SkColorSpace::MakeSRGB() == space);
|
2016-10-28 18:45:03 +00:00
|
|
|
|
|
|
|
// ProPhoto (D50)
|
|
|
|
SkColorSpacePrimaries proPhoto;
|
|
|
|
proPhoto.fRX = 0.7347f;
|
|
|
|
proPhoto.fRY = 0.2653f;
|
|
|
|
proPhoto.fGX = 0.1596f;
|
|
|
|
proPhoto.fGY = 0.8404f;
|
|
|
|
proPhoto.fBX = 0.0366f;
|
|
|
|
proPhoto.fBY = 0.0001f;
|
|
|
|
proPhoto.fWX = 0.34567f;
|
|
|
|
proPhoto.fWY = 0.35850f;
|
|
|
|
SkMatrix44 proToXYZ(SkMatrix44::kUninitialized_Constructor);
|
|
|
|
proToXYZ.set3x3(0.7976749f, 0.2880402f, 0.0000000f,
|
|
|
|
0.1351917f, 0.7118741f, 0.0000000f,
|
|
|
|
0.0313534f, 0.0000857f, 0.8252100f);
|
|
|
|
check_primaries(r, proPhoto, proToXYZ);
|
|
|
|
|
|
|
|
// NTSC (C)
|
|
|
|
SkColorSpacePrimaries ntsc;
|
|
|
|
ntsc.fRX = 0.67f;
|
|
|
|
ntsc.fRY = 0.33f;
|
|
|
|
ntsc.fGX = 0.21f;
|
|
|
|
ntsc.fGY = 0.71f;
|
|
|
|
ntsc.fBX = 0.14f;
|
|
|
|
ntsc.fBY = 0.08f;
|
|
|
|
ntsc.fWX = 0.31006f;
|
|
|
|
ntsc.fWY = 0.31616f;
|
|
|
|
SkMatrix44 ntscToXYZ(SkMatrix44::kUninitialized_Constructor);
|
|
|
|
ntscToXYZ.set3x3(0.6343706f, 0.3109496f, -0.0011817f,
|
|
|
|
0.1852204f, 0.5915984f, 0.0555518f,
|
|
|
|
0.1446290f, 0.0974520f, 0.7708399f);
|
|
|
|
check_primaries(r, ntsc, ntscToXYZ);
|
2017-02-07 18:56:11 +00:00
|
|
|
|
|
|
|
// DCI P3 (D65)
|
|
|
|
SkColorSpacePrimaries p3;
|
|
|
|
p3.fRX = 0.680f;
|
|
|
|
p3.fRY = 0.320f;
|
|
|
|
p3.fGX = 0.265f;
|
|
|
|
p3.fGY = 0.690f;
|
|
|
|
p3.fBX = 0.150f;
|
|
|
|
p3.fBY = 0.060f;
|
|
|
|
p3.fWX = 0.3127f;
|
|
|
|
p3.fWY = 0.3290f;
|
|
|
|
space = SkColorSpace::MakeRGB(SkColorSpace::kSRGB_RenderTargetGamma,
|
|
|
|
SkColorSpace::kDCIP3_D65_Gamut);
|
|
|
|
SkMatrix44 reference(SkMatrix44::kUninitialized_Constructor);
|
|
|
|
SkAssertResult(space->toXYZD50(&reference));
|
|
|
|
check_primaries(r, p3, reference);
|
|
|
|
|
|
|
|
// Rec 2020 (D65)
|
|
|
|
SkColorSpacePrimaries rec2020;
|
|
|
|
rec2020.fRX = 0.708f;
|
|
|
|
rec2020.fRY = 0.292f;
|
|
|
|
rec2020.fGX = 0.170f;
|
|
|
|
rec2020.fGY = 0.797f;
|
|
|
|
rec2020.fBX = 0.131f;
|
|
|
|
rec2020.fBY = 0.046f;
|
|
|
|
rec2020.fWX = 0.3127f;
|
|
|
|
rec2020.fWY = 0.3290f;
|
|
|
|
space = SkColorSpace::MakeRGB(SkColorSpace::kSRGB_RenderTargetGamma,
|
|
|
|
SkColorSpace::kRec2020_Gamut);
|
|
|
|
SkAssertResult(space->toXYZD50(&reference));
|
|
|
|
check_primaries(r, rec2020, reference);
|
2016-10-11 16:41:16 +00:00
|
|
|
}
|
2016-10-31 17:41:57 +00:00
|
|
|
|
2017-01-04 16:05:05 +00:00
|
|
|
DEF_TEST(ColorSpace_MatrixHash, r) {
|
2017-02-07 18:56:11 +00:00
|
|
|
sk_sp<SkColorSpace> srgb = SkColorSpace::MakeSRGB();
|
2017-01-04 16:05:05 +00:00
|
|
|
|
|
|
|
SkColorSpaceTransferFn fn;
|
|
|
|
fn.fA = 1.0f;
|
|
|
|
fn.fB = 0.0f;
|
|
|
|
fn.fC = 0.0f;
|
|
|
|
fn.fD = 0.0f;
|
|
|
|
fn.fE = 0.0f;
|
|
|
|
fn.fF = 0.0f;
|
|
|
|
fn.fG = 3.0f;
|
|
|
|
|
|
|
|
SkMatrix44 srgbMat(SkMatrix44::kUninitialized_Constructor);
|
|
|
|
srgbMat.set3x3RowMajorf(gSRGB_toXYZD50);
|
|
|
|
sk_sp<SkColorSpace> strange = SkColorSpace::MakeRGB(fn, srgbMat);
|
|
|
|
|
2017-12-12 19:09:31 +00:00
|
|
|
REPORTER_ASSERT(r, *srgb->toXYZD50() == *strange->toXYZD50());
|
|
|
|
REPORTER_ASSERT(r, srgb->toXYZD50Hash() == strange->toXYZD50Hash());
|
2017-01-04 16:05:05 +00:00
|
|
|
}
|
2017-03-06 16:11:23 +00:00
|
|
|
|
|
|
|
DEF_TEST(ColorSpace_IsSRGB, r) {
|
|
|
|
sk_sp<SkColorSpace> srgb0 = SkColorSpace::MakeSRGB();
|
|
|
|
|
|
|
|
SkColorSpaceTransferFn fn;
|
|
|
|
fn.fA = 1.0f;
|
|
|
|
fn.fB = 0.0f;
|
|
|
|
fn.fC = 0.0f;
|
|
|
|
fn.fD = 0.0f;
|
|
|
|
fn.fE = 0.0f;
|
|
|
|
fn.fF = 0.0f;
|
|
|
|
fn.fG = 2.2f;
|
|
|
|
sk_sp<SkColorSpace> twoDotTwo = SkColorSpace::MakeRGB(fn, SkColorSpace::kSRGB_Gamut);
|
|
|
|
|
|
|
|
REPORTER_ASSERT(r, srgb0->isSRGB());
|
|
|
|
REPORTER_ASSERT(r, !twoDotTwo->isSRGB());
|
|
|
|
}
|
2018-04-27 16:03:51 +00:00
|
|
|
|
|
|
|
DEF_TEST(ColorSpace_skcms_IsSRGB, r) {
|
2018-05-09 19:00:25 +00:00
|
|
|
sk_sp<SkColorSpace> srgb = SkColorSpace::Make(*skcms_sRGB_profile());
|
2018-04-27 16:03:51 +00:00
|
|
|
REPORTER_ASSERT(r, srgb->isSRGB());
|
|
|
|
}
|