2011-07-28 14:26:00 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2011 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
2013-12-12 21:11:12 +00:00
|
|
|
|
2011-04-22 19:18:20 +00:00
|
|
|
#include "SkColor.h"
|
2012-01-18 21:28:01 +00:00
|
|
|
#include "SkColorPriv.h"
|
2012-08-07 21:35:13 +00:00
|
|
|
#include "SkMathPriv.h"
|
2012-01-18 21:28:01 +00:00
|
|
|
#include "SkRandom.h"
|
2011-04-22 19:18:20 +00:00
|
|
|
#include "SkUnPreMultiply.h"
|
2014-01-24 20:56:26 +00:00
|
|
|
#include "Test.h"
|
2011-04-22 19:18:20 +00:00
|
|
|
|
2012-10-12 14:43:28 +00:00
|
|
|
#define GetPackedR16As32(packed) (SkGetPackedR16(dc) << (8 - SK_R16_BITS))
|
|
|
|
#define GetPackedG16As32(packed) (SkGetPackedG16(dc) << (8 - SK_G16_BITS))
|
|
|
|
#define GetPackedB16As32(packed) (SkGetPackedB16(dc) << (8 - SK_B16_BITS))
|
|
|
|
|
2013-01-07 16:47:43 +00:00
|
|
|
static inline void test_premul(skiatest::Reporter* reporter) {
|
2011-04-22 19:18:20 +00:00
|
|
|
for (int a = 0; a <= 255; a++) {
|
|
|
|
for (int x = 0; x <= 255; x++) {
|
|
|
|
SkColor c0 = SkColorSetARGB(a, x, x, x);
|
|
|
|
SkPMColor p0 = SkPreMultiplyColor(c0);
|
|
|
|
|
|
|
|
SkColor c1 = SkUnPreMultiply::PMColorToColor(p0);
|
|
|
|
SkPMColor p1 = SkPreMultiplyColor(c1);
|
|
|
|
|
|
|
|
// we can't promise that c0 == c1, since c0 -> p0 is a many to one
|
|
|
|
// function, however, we can promise that p0 -> c1 -> p1 : p0 == p1
|
|
|
|
REPORTER_ASSERT(reporter, p0 == p1);
|
2011-05-03 21:27:49 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
int ax = SkMulDiv255Ceiling(x, a);
|
|
|
|
REPORTER_ASSERT(reporter, ax <= a);
|
|
|
|
}
|
2011-04-22 19:18:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-18 21:28:01 +00:00
|
|
|
/**
|
|
|
|
This test fails: SkFourByteInterp does *not* preserve opaque destinations.
|
|
|
|
SkAlpha255To256 implemented as (alpha + 1) is faster than
|
|
|
|
(alpha + (alpha >> 7)), but inaccurate, and Skia intends to phase it out.
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
static void test_interp(skiatest::Reporter* reporter) {
|
2013-09-09 20:09:12 +00:00
|
|
|
SkRandom r;
|
2012-01-18 21:28:01 +00:00
|
|
|
|
|
|
|
U8CPU a0 = 0;
|
|
|
|
U8CPU a255 = 255;
|
|
|
|
for (int i = 0; i < 200; i++) {
|
|
|
|
SkColor colorSrc = r.nextU();
|
|
|
|
SkColor colorDst = r.nextU();
|
|
|
|
SkPMColor src = SkPreMultiplyColor(colorSrc);
|
|
|
|
SkPMColor dst = SkPreMultiplyColor(colorDst);
|
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, SkFourByteInterp(src, dst, a0) == dst);
|
|
|
|
REPORTER_ASSERT(reporter, SkFourByteInterp(src, dst, a255) == src);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
2013-01-07 16:47:43 +00:00
|
|
|
static inline void test_fast_interp(skiatest::Reporter* reporter) {
|
2013-09-09 20:09:12 +00:00
|
|
|
SkRandom r;
|
2012-01-18 21:28:01 +00:00
|
|
|
|
|
|
|
U8CPU a0 = 0;
|
|
|
|
U8CPU a255 = 255;
|
|
|
|
for (int i = 0; i < 200; i++) {
|
|
|
|
SkColor colorSrc = r.nextU();
|
|
|
|
SkColor colorDst = r.nextU();
|
|
|
|
SkPMColor src = SkPreMultiplyColor(colorSrc);
|
|
|
|
SkPMColor dst = SkPreMultiplyColor(colorDst);
|
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, SkFastFourByteInterp(src, dst, a0) == dst);
|
|
|
|
REPORTER_ASSERT(reporter, SkFastFourByteInterp(src, dst, a255) == src);
|
|
|
|
}
|
|
|
|
}
|
2011-04-22 19:18:20 +00:00
|
|
|
|
2013-12-12 21:11:12 +00:00
|
|
|
DEF_TEST(Color, reporter) {
|
2011-04-22 19:18:20 +00:00
|
|
|
test_premul(reporter);
|
2012-01-18 21:28:01 +00:00
|
|
|
//test_interp(reporter);
|
|
|
|
test_fast_interp(reporter);
|
2013-12-12 21:11:12 +00:00
|
|
|
//test_565blend();
|
2011-04-22 19:18:20 +00:00
|
|
|
}
|