blob: 13f48ed5feacd2bcafe3e45b741a1587cc95f024 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001/*
2 * Copyright 2011 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
tfarina@chromium.orge4fafb12013-12-12 21:11:12 +00007
reed@google.com83acbe02011-04-22 19:18:20 +00008#include "SkColor.h"
Cary Clarka4083c92017-09-15 11:59:23 -04009#include "SkColorData.h"
reed@google.com4b163ed2012-08-07 21:35:13 +000010#include "SkMathPriv.h"
tomhudson@google.com13e812c2012-01-18 21:28:01 +000011#include "SkRandom.h"
reed@google.com83acbe02011-04-22 19:18:20 +000012#include "SkUnPreMultiply.h"
tfarina@chromium.org8f6884a2014-01-24 20:56:26 +000013#include "Test.h"
reed@google.com83acbe02011-04-22 19:18:20 +000014
reed@google.com223d81d2012-10-12 14:43:28 +000015#define GetPackedR16As32(packed) (SkGetPackedR16(dc) << (8 - SK_R16_BITS))
16#define GetPackedG16As32(packed) (SkGetPackedG16(dc) << (8 - SK_G16_BITS))
17#define GetPackedB16As32(packed) (SkGetPackedB16(dc) << (8 - SK_B16_BITS))
18
humper@google.com05af1af2013-01-07 16:47:43 +000019static inline void test_premul(skiatest::Reporter* reporter) {
reed@google.com83acbe02011-04-22 19:18:20 +000020 for (int a = 0; a <= 255; a++) {
21 for (int x = 0; x <= 255; x++) {
22 SkColor c0 = SkColorSetARGB(a, x, x, x);
23 SkPMColor p0 = SkPreMultiplyColor(c0);
24
25 SkColor c1 = SkUnPreMultiply::PMColorToColor(p0);
26 SkPMColor p1 = SkPreMultiplyColor(c1);
27
28 // we can't promise that c0 == c1, since c0 -> p0 is a many to one
29 // function, however, we can promise that p0 -> c1 -> p1 : p0 == p1
30 REPORTER_ASSERT(reporter, p0 == p1);
reed@google.com75595d92011-05-03 21:27:49 +000031
32 {
33 int ax = SkMulDiv255Ceiling(x, a);
34 REPORTER_ASSERT(reporter, ax <= a);
35 }
reed@google.com83acbe02011-04-22 19:18:20 +000036 }
37 }
38}
39
tomhudson@google.com13e812c2012-01-18 21:28:01 +000040/**
41 This test fails: SkFourByteInterp does *not* preserve opaque destinations.
42 SkAlpha255To256 implemented as (alpha + 1) is faster than
43 (alpha + (alpha >> 7)), but inaccurate, and Skia intends to phase it out.
44*/
45/*
46static void test_interp(skiatest::Reporter* reporter) {
commit-bot@chromium.orge0e7cfe2013-09-09 20:09:12 +000047 SkRandom r;
tomhudson@google.com13e812c2012-01-18 21:28:01 +000048
49 U8CPU a0 = 0;
50 U8CPU a255 = 255;
51 for (int i = 0; i < 200; i++) {
52 SkColor colorSrc = r.nextU();
53 SkColor colorDst = r.nextU();
54 SkPMColor src = SkPreMultiplyColor(colorSrc);
55 SkPMColor dst = SkPreMultiplyColor(colorDst);
56
57 REPORTER_ASSERT(reporter, SkFourByteInterp(src, dst, a0) == dst);
58 REPORTER_ASSERT(reporter, SkFourByteInterp(src, dst, a255) == src);
59 }
60}
61*/
62
humper@google.com05af1af2013-01-07 16:47:43 +000063static inline void test_fast_interp(skiatest::Reporter* reporter) {
commit-bot@chromium.orge0e7cfe2013-09-09 20:09:12 +000064 SkRandom r;
tomhudson@google.com13e812c2012-01-18 21:28:01 +000065
66 U8CPU a0 = 0;
67 U8CPU a255 = 255;
68 for (int i = 0; i < 200; i++) {
69 SkColor colorSrc = r.nextU();
70 SkColor colorDst = r.nextU();
71 SkPMColor src = SkPreMultiplyColor(colorSrc);
72 SkPMColor dst = SkPreMultiplyColor(colorDst);
73
74 REPORTER_ASSERT(reporter, SkFastFourByteInterp(src, dst, a0) == dst);
75 REPORTER_ASSERT(reporter, SkFastFourByteInterp(src, dst, a255) == src);
76 }
77}
reed@google.com83acbe02011-04-22 19:18:20 +000078
tfarina@chromium.orge4fafb12013-12-12 21:11:12 +000079DEF_TEST(Color, reporter) {
reed@google.com83acbe02011-04-22 19:18:20 +000080 test_premul(reporter);
tomhudson@google.com13e812c2012-01-18 21:28:01 +000081 //test_interp(reporter);
82 test_fast_interp(reporter);
tfarina@chromium.orge4fafb12013-12-12 21:11:12 +000083 //test_565blend();
reed@google.com83acbe02011-04-22 19:18:20 +000084}