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"
|
2016-05-23 16:29:29 +00:00
|
|
|
#include "SkColorSpace_Base.h"
|
2016-03-04 21:27:35 +00:00
|
|
|
#include "Test.h"
|
|
|
|
|
2016-03-08 01:25:12 +00:00
|
|
|
#include "png.h"
|
|
|
|
|
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);
|
2016-09-07 19:03:53 +00:00
|
|
|
REPORTER_ASSERT(r, expectedGamma == as_CSB(space)->gammaNamed());
|
2016-05-17 16:31:20 +00:00
|
|
|
|
2016-09-28 18:15:27 +00:00
|
|
|
const SkMatrix44& mat = as_CSB(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-09-16 13:24:20 +00:00
|
|
|
SkAutoTDelete<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
|
|
|
|
2016-03-16 20:53:35 +00:00
|
|
|
SkAutoTDelete<SkCodec> codec(SkCodec::NewFromStream(stream.release()));
|
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) {
|
|
|
|
test_space(r, SkColorSpace::NewNamed(SkColorSpace::kSRGB_Named).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)
|
2016-09-09 17:36:17 +00:00
|
|
|
test_path(r, "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 };
|
2016-09-07 19:03:53 +00:00
|
|
|
test_path(r, "icc-v2-gbr.jpg", red, green, blue, k2Dot2Curve_SkGammaNamed);
|
2016-08-24 14:36:06 +00:00
|
|
|
|
|
|
|
test_path(r, "webp-color-profile-crash.webp",
|
2016-09-07 19:03:53 +00:00
|
|
|
red, green, blue, kNonStandard_SkGammaNamed);
|
2016-08-24 14:36:06 +00:00
|
|
|
test_path(r, "webp-color-profile-lossless.webp",
|
2016-09-07 19:03:53 +00:00
|
|
|
red, green, blue, kNonStandard_SkGammaNamed);
|
2016-08-24 14:36:06 +00:00
|
|
|
test_path(r, "webp-color-profile-lossy.webp",
|
2016-09-07 19:03:53 +00:00
|
|
|
red, green, blue, kNonStandard_SkGammaNamed);
|
2016-08-24 14:36:06 +00:00
|
|
|
test_path(r, "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
|
|
|
|
sk_sp<SkColorSpace> namedColorSpace = SkColorSpace::NewNamed(SkColorSpace::kSRGB_Named);
|
|
|
|
|
|
|
|
// 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 =
|
|
|
|
SkColorSpace::NewRGB(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
|
|
|
|
|
|
|
// 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 =
|
|
|
|
SkColorSpace::NewRGB(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
|
|
|
|
sk_sp<SkColorSpace> namedColorSpace = SkColorSpace::NewNamed(SkColorSpace::kSRGBLinear_Named);
|
|
|
|
|
|
|
|
// Create the linear sRGB color space via the sRGB color space's makeLinearGamma()
|
|
|
|
sk_sp<SkColorSpace> viaSrgbColorSpace =
|
2016-10-13 17:45:44 +00:00
|
|
|
as_CSB(SkColorSpace::NewNamed(SkColorSpace::kSRGB_Named))->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 =
|
|
|
|
SkColorSpace::NewRGB(SkColorSpace::kLinear_RenderTargetGamma, srgbToxyzD50);
|
|
|
|
REPORTER_ASSERT(r, rgbColorSpace == namedColorSpace);
|
|
|
|
|
|
|
|
// Change a single value from the sRGB matrix
|
|
|
|
srgbToxyzD50.set(2, 2, 0.5f);
|
|
|
|
sk_sp<SkColorSpace> strangeColorSpace =
|
|
|
|
SkColorSpace::NewRGB(SkColorSpace::kLinear_RenderTargetGamma, srgbToxyzD50);
|
|
|
|
REPORTER_ASSERT(r, strangeColorSpace != namedColorSpace);
|
|
|
|
}
|
|
|
|
|
2016-08-01 21:23:32 +00:00
|
|
|
class ColorSpaceTest {
|
|
|
|
public:
|
|
|
|
static sk_sp<SkData> WriteToICC(SkColorSpace* space) {
|
|
|
|
return as_CSB(space)->writeToICC();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-05-25 15:53:40 +00:00
|
|
|
DEF_TEST(ColorSpaceWriteICC, r) {
|
|
|
|
// Test writing a new ICC profile
|
|
|
|
sk_sp<SkColorSpace> namedColorSpace = SkColorSpace::NewNamed(SkColorSpace::kSRGB_Named);
|
2016-08-01 21:23:32 +00:00
|
|
|
sk_sp<SkData> namedData = ColorSpaceTest::WriteToICC(namedColorSpace.get());
|
2016-05-25 15:53:40 +00:00
|
|
|
sk_sp<SkColorSpace> iccColorSpace = SkColorSpace::NewICC(namedData->data(), namedData->size());
|
2016-09-09 17:36:17 +00:00
|
|
|
test_space(r, iccColorSpace.get(), g_sRGB_R, g_sRGB_G, g_sRGB_B, k2Dot2Curve_SkGammaNamed);
|
2016-06-16 14:37:41 +00:00
|
|
|
// FIXME (msarett): Test disabled. sRGB profiles are written approximately as 2.2f curves.
|
|
|
|
// REPORTER_ASSERT(r, iccColorSpace == namedColorSpace);
|
2016-05-25 15:53:40 +00:00
|
|
|
|
|
|
|
// Test saving the original ICC data
|
|
|
|
sk_sp<SkData> monitorData = SkData::MakeFromFileName(
|
2016-07-29 15:58:33 +00:00
|
|
|
GetResourcePath("icc_profiles/HP_ZR30w.icc").c_str());
|
2016-05-25 15:53:40 +00:00
|
|
|
REPORTER_ASSERT(r, monitorData);
|
|
|
|
if (!monitorData) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
sk_sp<SkColorSpace> monitorSpace = SkColorSpace::NewICC(monitorData->data(),
|
|
|
|
monitorData->size());
|
2016-08-01 21:23:32 +00:00
|
|
|
sk_sp<SkData> newMonitorData = ColorSpaceTest::WriteToICC(monitorSpace.get());
|
2016-05-25 15:53:40 +00:00
|
|
|
sk_sp<SkColorSpace> newMonitorSpace = SkColorSpace::NewICC(newMonitorData->data(),
|
|
|
|
newMonitorData->size());
|
2016-09-28 18:15:27 +00:00
|
|
|
REPORTER_ASSERT(r, as_CSB(monitorSpace)->toXYZD50() == as_CSB(newMonitorSpace)->toXYZD50());
|
2016-09-07 19:03:53 +00:00
|
|
|
REPORTER_ASSERT(r, as_CSB(monitorSpace)->gammaNamed() == as_CSB(newMonitorSpace)->gammaNamed());
|
2016-05-25 15:53:40 +00:00
|
|
|
}
|
2016-06-02 19:40:22 +00:00
|
|
|
|
|
|
|
DEF_TEST(ColorSpace_Named, r) {
|
|
|
|
const struct {
|
|
|
|
SkColorSpace::Named fNamed;
|
2016-09-27 22:11:47 +00:00
|
|
|
SkGammaNamed fExpectedGamma;
|
2016-06-02 19:40:22 +00:00
|
|
|
} recs[] {
|
2016-09-27 22:11:47 +00:00
|
|
|
{ SkColorSpace::kSRGB_Named, kSRGB_SkGammaNamed },
|
|
|
|
{ SkColorSpace::kAdobeRGB_Named, k2Dot2Curve_SkGammaNamed },
|
|
|
|
{ SkColorSpace::kSRGBLinear_Named, kLinear_SkGammaNamed },
|
2016-06-02 19:40:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
for (auto rec : recs) {
|
|
|
|
auto cs = SkColorSpace::NewNamed(rec.fNamed);
|
2016-09-06 17:01:48 +00:00
|
|
|
REPORTER_ASSERT(r, cs);
|
2016-06-02 19:40:22 +00:00
|
|
|
if (cs) {
|
2016-09-27 22:11:47 +00:00
|
|
|
REPORTER_ASSERT(r, rec.fExpectedGamma == as_CSB(cs)->gammaNamed());
|
2016-06-02 19:40:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SkImageInfo info = SkImageInfo::MakeS32(10, 10, kPremul_SkAlphaType);
|
2016-06-21 17:28:14 +00:00
|
|
|
REPORTER_ASSERT(r, info.gammaCloseToSRGB());
|
2016-06-02 19:40:22 +00:00
|
|
|
}
|
2016-06-22 15:18:54 +00:00
|
|
|
|
|
|
|
static void test_serialize(skiatest::Reporter* r, 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) {
|
2016-07-28 17:47:50 +00:00
|
|
|
REPORTER_ASSERT(r, space == newSpace1.get());
|
|
|
|
REPORTER_ASSERT(r, space == newSpace2.get());
|
2016-06-22 15:18:54 +00:00
|
|
|
} else {
|
2016-08-22 19:29:31 +00:00
|
|
|
REPORTER_ASSERT(r, SkColorSpace::Equals(space, newSpace1.get()));
|
|
|
|
REPORTER_ASSERT(r, SkColorSpace::Equals(space, newSpace2.get()));
|
2016-06-22 15:18:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DEF_TEST(ColorSpace_Serialize, r) {
|
|
|
|
test_serialize(r, SkColorSpace::NewNamed(SkColorSpace::kSRGB_Named).get(), true);
|
|
|
|
test_serialize(r, SkColorSpace::NewNamed(SkColorSpace::kAdobeRGB_Named).get(), true);
|
2016-09-27 22:11:47 +00:00
|
|
|
test_serialize(r, SkColorSpace::NewNamed(SkColorSpace::kSRGBLinear_Named).get(), true);
|
2016-06-22 15:18:54 +00:00
|
|
|
|
|
|
|
sk_sp<SkData> monitorData = SkData::MakeFromFileName(
|
2016-07-29 15:58:33 +00:00
|
|
|
GetResourcePath("icc_profiles/HP_ZR30w.icc").c_str());
|
|
|
|
test_serialize(r, SkColorSpace::NewICC(monitorData->data(), monitorData->size()).get(), false);
|
|
|
|
monitorData = SkData::MakeFromFileName( GetResourcePath("icc_profiles/HP_Z32x.icc").c_str());
|
|
|
|
test_serialize(r, SkColorSpace::NewICC(monitorData->data(), monitorData->size()).get(), false);
|
|
|
|
monitorData = SkData::MakeFromFileName(GetResourcePath("icc_profiles/upperLeft.icc").c_str());
|
|
|
|
test_serialize(r, SkColorSpace::NewICC(monitorData->data(), monitorData->size()).get(), false);
|
|
|
|
monitorData = SkData::MakeFromFileName(GetResourcePath("icc_profiles/upperRight.icc").c_str());
|
2016-06-22 15:18:54 +00:00
|
|
|
test_serialize(r, SkColorSpace::NewICC(monitorData->data(), monitorData->size()).get(), false);
|
2016-08-22 19:29:31 +00:00
|
|
|
|
|
|
|
const float gammas[] = { 1.1f, 1.2f, 1.7f, };
|
|
|
|
SkMatrix44 toXYZ(SkMatrix44::kIdentity_Constructor);
|
2016-10-13 22:24:20 +00:00
|
|
|
test_serialize(r, SkColorSpace::NewRGB(gammas, toXYZ).get(), false);
|
2016-10-11 20:57:50 +00:00
|
|
|
|
|
|
|
SkColorSpaceTransferFn fn;
|
|
|
|
fn.fA = 1.0f;
|
|
|
|
fn.fB = 0.0f;
|
|
|
|
fn.fC = 0.0f;
|
|
|
|
fn.fD = 0.5f;
|
|
|
|
fn.fE = 1.0f;
|
|
|
|
fn.fF = 0.0f;
|
|
|
|
fn.fG = 1.0f;
|
|
|
|
test_serialize(r, SkColorSpace::NewRGB(fn, toXYZ).get(), false);
|
2016-06-22 15:18:54 +00:00
|
|
|
}
|
|
|
|
|
2016-08-01 16:43:08 +00:00
|
|
|
DEF_TEST(ColorSpace_Equals, r) {
|
|
|
|
sk_sp<SkColorSpace> srgb = SkColorSpace::NewNamed(SkColorSpace::kSRGB_Named);
|
|
|
|
sk_sp<SkColorSpace> adobe = SkColorSpace::NewNamed(SkColorSpace::kAdobeRGB_Named);
|
|
|
|
sk_sp<SkData> data = SkData::MakeFromFileName(
|
|
|
|
GetResourcePath("icc_profiles/HP_ZR30w.icc").c_str());
|
|
|
|
sk_sp<SkColorSpace> z30 = SkColorSpace::NewICC(data->data(), data->size());
|
|
|
|
data = SkData::MakeFromFileName( GetResourcePath("icc_profiles/HP_Z32x.icc").c_str());
|
|
|
|
sk_sp<SkColorSpace> z32 = SkColorSpace::NewICC(data->data(), data->size());
|
|
|
|
data = SkData::MakeFromFileName(GetResourcePath("icc_profiles/upperLeft.icc").c_str());
|
|
|
|
sk_sp<SkColorSpace> upperLeft = SkColorSpace::NewICC(data->data(), data->size());
|
|
|
|
data = SkData::MakeFromFileName(GetResourcePath("icc_profiles/upperRight.icc").c_str());
|
|
|
|
sk_sp<SkColorSpace> upperRight = SkColorSpace::NewICC(data->data(), data->size());
|
2016-08-22 19:29:31 +00:00
|
|
|
const float gammas1[] = { 1.1f, 1.2f, 1.3f, };
|
|
|
|
const float gammas2[] = { 1.1f, 1.2f, 1.7f, };
|
|
|
|
SkMatrix44 toXYZ(SkMatrix44::kIdentity_Constructor);
|
2016-10-13 22:24:20 +00:00
|
|
|
sk_sp<SkColorSpace> rgb1 = SkColorSpace::NewRGB(gammas1, toXYZ);
|
|
|
|
sk_sp<SkColorSpace> rgb2 = SkColorSpace::NewRGB(gammas2, toXYZ);
|
|
|
|
sk_sp<SkColorSpace> rgb3 = SkColorSpace::NewRGB(gammas1, toXYZ);
|
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;
|
|
|
|
fn.fC = 0.0f;
|
|
|
|
fn.fD = 0.5f;
|
|
|
|
fn.fE = 1.0f;
|
|
|
|
fn.fF = 0.0f;
|
|
|
|
fn.fG = 1.0f;
|
|
|
|
sk_sp<SkColorSpace> rgb4 = SkColorSpace::NewRGB(fn, toXYZ);
|
|
|
|
|
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(adobe.get(), adobe.get()));
|
|
|
|
REPORTER_ASSERT(r, SkColorSpace::Equals(z30.get(), z30.get()));
|
|
|
|
REPORTER_ASSERT(r, SkColorSpace::Equals(z32.get(), z32.get()));
|
|
|
|
REPORTER_ASSERT(r, SkColorSpace::Equals(upperLeft.get(), upperLeft.get()));
|
|
|
|
REPORTER_ASSERT(r, SkColorSpace::Equals(upperRight.get(), upperRight.get()));
|
2016-08-22 19:29:31 +00:00
|
|
|
REPORTER_ASSERT(r, SkColorSpace::Equals(rgb1.get(), rgb1.get()));
|
|
|
|
REPORTER_ASSERT(r, SkColorSpace::Equals(rgb1.get(), rgb3.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(adobe.get(), srgb.get()));
|
|
|
|
REPORTER_ASSERT(r, !SkColorSpace::Equals(z30.get(), srgb.get()));
|
|
|
|
REPORTER_ASSERT(r, !SkColorSpace::Equals(z32.get(), z30.get()));
|
|
|
|
REPORTER_ASSERT(r, !SkColorSpace::Equals(upperLeft.get(), srgb.get()));
|
|
|
|
REPORTER_ASSERT(r, !SkColorSpace::Equals(upperLeft.get(), upperRight.get()));
|
|
|
|
REPORTER_ASSERT(r, !SkColorSpace::Equals(z30.get(), upperRight.get()));
|
|
|
|
REPORTER_ASSERT(r, !SkColorSpace::Equals(upperRight.get(), adobe.get()));
|
2016-08-22 19:29:31 +00:00
|
|
|
REPORTER_ASSERT(r, !SkColorSpace::Equals(rgb1.get(), rgb2.get()));
|
2016-10-11 20:57:50 +00:00
|
|
|
REPORTER_ASSERT(r, !SkColorSpace::Equals(rgb1.get(), rgb4.get()));
|
2016-08-01 16:43:08 +00:00
|
|
|
}
|
2016-10-11 16:41:16 +00:00
|
|
|
|
|
|
|
DEF_TEST(ColorSpace_Primaries, r) {
|
|
|
|
// sRGB primaries
|
|
|
|
SkColorSpacePrimaries primaries;
|
|
|
|
primaries.fRX = 0.64f;
|
|
|
|
primaries.fRY = 0.33f;
|
|
|
|
primaries.fGX = 0.30f;
|
|
|
|
primaries.fGY = 0.60f;
|
|
|
|
primaries.fBX = 0.15f;
|
|
|
|
primaries.fBY = 0.06f;
|
|
|
|
primaries.fWX = 0.3127f;
|
|
|
|
primaries.fWY = 0.3290f;
|
|
|
|
|
|
|
|
SkMatrix44 toXYZ(SkMatrix44::kUninitialized_Constructor);
|
|
|
|
bool result = primaries.toXYZD50(&toXYZ);
|
|
|
|
REPORTER_ASSERT(r, result);
|
|
|
|
|
|
|
|
sk_sp<SkColorSpace> space = SkColorSpace::NewRGB(SkColorSpace::kSRGB_RenderTargetGamma, toXYZ);
|
|
|
|
REPORTER_ASSERT(r, SkColorSpace::NewNamed(SkColorSpace::kSRGB_Named) == space);
|
|
|
|
}
|