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.
|
|
|
|
*/
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/codec/SkCodec.h"
|
|
|
|
#include "include/core/SkColorSpace.h"
|
|
|
|
#include "include/core/SkData.h"
|
|
|
|
#include "include/core/SkImageInfo.h"
|
|
|
|
#include "include/core/SkRefCnt.h"
|
|
|
|
#include "include/core/SkStream.h"
|
|
|
|
#include "include/core/SkTypes.h"
|
2019-04-29 14:28:22 +00:00
|
|
|
#include "include/third_party/skcms/skcms.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "src/core/SkColorSpacePriv.h"
|
|
|
|
#include "tests/Test.h"
|
|
|
|
#include "tools/Resources.h"
|
2018-09-19 15:31:27 +00:00
|
|
|
|
|
|
|
#include "png.h"
|
2018-04-27 16:03:51 +00:00
|
|
|
|
2019-05-06 21:17:19 +00:00
|
|
|
#include <string.h>
|
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[],
|
2019-01-22 15:03:29 +00:00
|
|
|
bool expectSRGB = false) {
|
2016-05-17 16:31:20 +00:00
|
|
|
|
2016-08-24 14:36:06 +00:00
|
|
|
REPORTER_ASSERT(r, nullptr != space);
|
2019-01-22 15:03:29 +00:00
|
|
|
REPORTER_ASSERT(r, expectSRGB == space->gammaCloseToSRGB());
|
2016-05-17 16:31:20 +00:00
|
|
|
|
2019-01-04 22:03:00 +00:00
|
|
|
skcms_Matrix3x3 mat;
|
2018-10-03 21:00:41 +00:00
|
|
|
space->toXYZD50(&mat);
|
2016-09-09 17:36:17 +00:00
|
|
|
const float* ref[3] = { red, green, blue };
|
2016-05-03 19:13:21 +00:00
|
|
|
for (int i = 0; i < 3; ++i) {
|
2019-01-04 22:03:00 +00:00
|
|
|
REPORTER_ASSERT(r, almost_equal(ref[i][0], mat.vals[0][i]));
|
|
|
|
REPORTER_ASSERT(r, almost_equal(ref[i][1], mat.vals[1][i]));
|
|
|
|
REPORTER_ASSERT(r, almost_equal(ref[i][2], mat.vals[2][i]));
|
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[],
|
2019-01-22 15:03:29 +00:00
|
|
|
bool expectSRGB = false) {
|
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
|
|
|
|
2018-10-03 19:47:00 +00:00
|
|
|
auto colorSpace = codec->getInfo().refColorSpace();
|
2019-01-22 15:03:29 +00:00
|
|
|
test_space(r, colorSpace.get(), red, green, blue, expectSRGB);
|
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_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) {
|
2019-01-22 15:03:29 +00:00
|
|
|
test_space(r, sk_srgb_singleton(), g_sRGB_R, g_sRGB_G, g_sRGB_B, true);
|
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)
|
2019-01-22 15:03:29 +00:00
|
|
|
test_path(r, "images/color_wheel_with_profile.png", g_sRGB_R, g_sRGB_G, g_sRGB_B, true);
|
2016-08-24 14:36:06 +00:00
|
|
|
#endif
|
2016-03-21 15:04:40 +00:00
|
|
|
|
2019-01-04 22:03:00 +00:00
|
|
|
const float red[] = { 0.385117f, 0.716904f, 0.0970612f };
|
2016-05-03 19:13:21 +00:00
|
|
|
const float green[] = { 0.143051f, 0.0606079f, 0.713913f };
|
2019-01-04 22:03:00 +00:00
|
|
|
const float blue[] = { 0.436035f, 0.222488f, 0.013916f };
|
2019-01-22 15:03:29 +00:00
|
|
|
test_path(r, "images/icc-v2-gbr.jpg", red, green, blue);
|
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",
|
2019-01-22 15:03:29 +00:00
|
|
|
red, green, blue);
|
2017-12-08 15:21:31 +00:00
|
|
|
test_path(r, "images/webp-color-profile-lossless.webp",
|
2019-01-22 15:03:29 +00:00
|
|
|
red, green, blue);
|
2017-12-08 15:21:31 +00:00
|
|
|
test_path(r, "images/webp-color-profile-lossy.webp",
|
2019-01-22 15:03:29 +00:00
|
|
|
red, green, blue);
|
2017-12-08 15:21:31 +00:00
|
|
|
test_path(r, "images/webp-color-profile-lossy-alpha.webp",
|
2019-01-22 15:03:29 +00:00
|
|
|
red, green, blue);
|
2016-03-21 15:04:40 +00:00
|
|
|
}
|
2016-05-03 21:24:47 +00:00
|
|
|
|
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
|
|
|
|
2019-02-21 21:13:05 +00:00
|
|
|
if (isNamed) {
|
|
|
|
REPORTER_ASSERT(r, space.get() == newSpace1.get());
|
|
|
|
REPORTER_ASSERT(r, space.get() == newSpace2.get());
|
|
|
|
} else {
|
|
|
|
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
|
|
|
|
2019-01-04 22:03:00 +00:00
|
|
|
skcms_TransferFunction fn;
|
|
|
|
fn.a = 1.0f;
|
|
|
|
fn.b = 0.0f;
|
|
|
|
fn.c = 1.0f;
|
|
|
|
fn.d = 0.5f;
|
|
|
|
fn.e = 0.0f;
|
|
|
|
fn.f = 0.0f;
|
|
|
|
fn.g = 1.0f;
|
|
|
|
skcms_Matrix3x3 toXYZ = {{
|
|
|
|
{ 1, 0, 0 },
|
|
|
|
{ 0, 1, 0 },
|
|
|
|
{ 0, 0, 1 },
|
|
|
|
}};
|
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
|
|
|
|
2019-01-04 22:03:00 +00:00
|
|
|
skcms_TransferFunction fn;
|
|
|
|
fn.a = 1.0f;
|
|
|
|
fn.b = 0.0f;
|
|
|
|
fn.c = 1.0f;
|
|
|
|
fn.d = 0.5f;
|
|
|
|
fn.e = 0.0f;
|
|
|
|
fn.f = 0.0f;
|
|
|
|
fn.g = 1.0f;
|
|
|
|
skcms_Matrix3x3 toXYZ = {{
|
|
|
|
{ 1, 0, 0 },
|
|
|
|
{ 0, 1, 0 },
|
|
|
|
{ 0, 0, 1 },
|
|
|
|
}};
|
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
|
|
|
|
2019-01-04 22:03:00 +00:00
|
|
|
static inline bool matrix_almost_equal(const skcms_Matrix3x3& a, const skcms_Matrix3x3& b) {
|
|
|
|
for (int r = 0; r < 3; ++r) {
|
|
|
|
for (int c = 0; c < 3; ++c) {
|
|
|
|
if (!almost_equal(a.vals[r][c], b.vals[r][c])) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
2016-10-28 18:45:03 +00:00
|
|
|
}
|
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,
|
2019-01-04 22:03:00 +00:00
|
|
|
const skcms_Matrix3x3& reference) {
|
|
|
|
skcms_Matrix3x3 toXYZ;
|
2016-10-11 16:41:16 +00:00
|
|
|
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)
|
2019-01-04 22:03:00 +00:00
|
|
|
skcms_Matrix3x3 srgbToXYZ;
|
|
|
|
bool result = skcms_PrimariesToXYZD50(
|
|
|
|
0.64f, 0.33f,
|
|
|
|
0.30f, 0.60f,
|
|
|
|
0.15f, 0.06f,
|
|
|
|
0.3127f, 0.3290f,
|
|
|
|
&srgbToXYZ);
|
2016-10-28 18:45:03 +00:00
|
|
|
REPORTER_ASSERT(r, result);
|
2016-10-11 16:41:16 +00:00
|
|
|
|
2019-01-04 22:03:00 +00:00
|
|
|
sk_sp<SkColorSpace> space = SkColorSpace::MakeRGB(SkNamedTransferFn::kSRGB, 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;
|
2019-01-04 22:03:00 +00:00
|
|
|
skcms_Matrix3x3 proToXYZ = {{
|
|
|
|
{ 0.7976749f, 0.1351917f, 0.0313534f },
|
|
|
|
{ 0.2880402f, 0.7118741f, 0.0000857f },
|
|
|
|
{ 0.0000000f, 0.0000000f, 0.8252100f },
|
|
|
|
}};
|
2016-10-28 18:45:03 +00:00
|
|
|
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;
|
2019-01-04 22:03:00 +00:00
|
|
|
skcms_Matrix3x3 ntscToXYZ = {{
|
|
|
|
{ 0.6343706f, 0.1852204f, 0.1446290f },
|
|
|
|
{ 0.3109496f, 0.5915984f, 0.0974520f },
|
|
|
|
{ -0.0011817f, 0.0555518f, 0.7708399f }
|
|
|
|
}};
|
2016-10-28 18:45:03 +00:00
|
|
|
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;
|
2020-01-16 17:11:06 +00:00
|
|
|
space = SkColorSpace::MakeRGB(SkNamedTransferFn::kSRGB, SkNamedGamut::kDisplayP3);
|
2019-01-04 22:03:00 +00:00
|
|
|
skcms_Matrix3x3 reference;
|
2017-02-07 18:56:11 +00:00
|
|
|
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;
|
2019-01-04 22:03:00 +00:00
|
|
|
space = SkColorSpace::MakeRGB(SkNamedTransferFn::kSRGB, SkNamedGamut::kRec2020);
|
2017-02-07 18:56:11 +00:00
|
|
|
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
|
|
|
|
2019-01-04 22:03:00 +00:00
|
|
|
skcms_TransferFunction fn;
|
|
|
|
fn.a = 1.0f;
|
|
|
|
fn.b = 0.0f;
|
|
|
|
fn.c = 0.0f;
|
|
|
|
fn.d = 0.0f;
|
|
|
|
fn.e = 0.0f;
|
|
|
|
fn.f = 0.0f;
|
|
|
|
fn.g = 3.0f;
|
2017-01-04 16:05:05 +00:00
|
|
|
|
2019-01-04 22:03:00 +00:00
|
|
|
sk_sp<SkColorSpace> strange = SkColorSpace::MakeRGB(fn, SkNamedGamut::kSRGB);
|
2017-01-04 16:05:05 +00:00
|
|
|
|
2017-12-12 19:09:31 +00:00
|
|
|
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();
|
|
|
|
|
2019-01-04 22:03:00 +00:00
|
|
|
skcms_TransferFunction fn;
|
|
|
|
fn.a = 1.0f;
|
|
|
|
fn.b = 0.0f;
|
|
|
|
fn.c = 0.0f;
|
|
|
|
fn.d = 0.0f;
|
|
|
|
fn.e = 0.0f;
|
|
|
|
fn.f = 0.0f;
|
|
|
|
fn.g = 2.2f;
|
|
|
|
sk_sp<SkColorSpace> twoDotTwo = SkColorSpace::MakeRGB(fn, SkNamedGamut::kSRGB);
|
2017-03-06 16:11:23 +00:00
|
|
|
|
|
|
|
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());
|
|
|
|
}
|
2018-08-29 15:24:43 +00:00
|
|
|
|
|
|
|
DEF_TEST(ColorSpace_skcms_sRGB_exact, r) {
|
|
|
|
skcms_ICCProfile profile;
|
|
|
|
sk_srgb_singleton()->toProfile(&profile);
|
|
|
|
|
|
|
|
REPORTER_ASSERT(r, 0 == memcmp(&profile, skcms_sRGB_profile(), sizeof(skcms_ICCProfile)));
|
|
|
|
}
|
2019-10-28 19:50:44 +00:00
|
|
|
|
|
|
|
DEF_TEST(ColorSpace_classifyUnderflow, r) {
|
|
|
|
// crbug.com/1016183
|
|
|
|
skcms_TransferFunction fn;
|
|
|
|
fn.a = 1.0f;
|
|
|
|
fn.b = 0.0f;
|
|
|
|
fn.c = 0.0f;
|
|
|
|
fn.d = 0.0f;
|
|
|
|
fn.e = 0.0f;
|
|
|
|
fn.f = 0.0f;
|
|
|
|
fn.g = INT_MIN;
|
|
|
|
sk_sp<SkColorSpace> bad = SkColorSpace::MakeRGB(fn, SkNamedGamut::kSRGB);
|
|
|
|
REPORTER_ASSERT(r, bad == nullptr);
|
|
|
|
}
|
2020-08-13 18:08:29 +00:00
|
|
|
|
|
|
|
DEF_TEST(ColorSpace_equiv, r) {
|
|
|
|
skcms_TransferFunction tf = SkNamedTransferFn::kSRGB;
|
|
|
|
skcms_Matrix3x3 gamut = SkNamedGamut::kSRGB;
|
|
|
|
|
|
|
|
// Previously a NaN anywhere in the tf or gamut would trip up Equals(),
|
|
|
|
// making us think we'd hit a hash collision where we hadn't.
|
|
|
|
gamut.vals[1][1] = SK_FloatNaN;
|
|
|
|
|
|
|
|
// There's a quick pointer comparison in SkColorSpace::Equals() we want to get past.
|
|
|
|
sk_sp<SkColorSpace> x = SkColorSpace::MakeRGB(tf, gamut),
|
|
|
|
y = SkColorSpace::MakeRGB(tf, gamut);
|
|
|
|
REPORTER_ASSERT(r, x && y);
|
|
|
|
REPORTER_ASSERT(r, x.get() != y.get());
|
|
|
|
|
|
|
|
// Most important to test in debug mode that we don't SkASSERT().
|
|
|
|
REPORTER_ASSERT(r, SkColorSpace::Equals(x.get(), y.get()));
|
|
|
|
}
|