blob: 99835686fad361289061ac40f06c1978992fe2af [file] [log] [blame]
reed3601f282016-02-05 11:18:39 -08001/*
2 * Copyright 2016 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 */
7
8#include "Test.h"
robertphillipsc5035e72016-03-17 06:58:39 -07009#include "SkAutoPixmapStorage.h"
reed3601f282016-02-05 11:18:39 -080010#include "SkColor.h"
11#include "SkHalf.h"
mtkleina525cb12016-02-09 08:18:10 -080012#include "SkOpts.h"
reed3601f282016-02-05 11:18:39 -080013#include "SkPixmap.h"
reeddd9ffea2016-02-18 12:39:14 -080014#include "SkPM4f.h"
mtkleinfff055c2016-02-11 06:30:03 -080015#include "SkRandom.h"
reed3601f282016-02-05 11:18:39 -080016
17static bool eq_within_half_float(float a, float b) {
18 const float kTolerance = 1.0f / (1 << (8 + 10));
19
20 SkHalf ha = SkFloatToHalf(a);
21 SkHalf hb = SkFloatToHalf(b);
22 float a2 = SkHalfToFloat(ha);
23 float b2 = SkHalfToFloat(hb);
24 return fabsf(a2 - b2) <= kTolerance;
25}
26
27static bool eq_within_half_float(const SkPM4f& a, const SkPM4f& b) {
28 for (int i = 0; i < 4; ++i) {
29 if (!eq_within_half_float(a.fVec[i], b.fVec[i])) {
30 return false;
31 }
32 }
33 return true;
34}
35
36DEF_TEST(color_half_float, reporter) {
37 const int w = 100;
38 const int h = 100;
39
40 SkImageInfo info = SkImageInfo::Make(w, h, kRGBA_F16_SkColorType, kPremul_SkAlphaType);
41
42 SkAutoPixmapStorage pm;
43 pm.alloc(info);
44 REPORTER_ASSERT(reporter, pm.getSafeSize() == SkToSizeT(w * h * sizeof(uint64_t)));
45
brianosmane074d1f2016-06-24 06:31:47 -070046 SkColor4f c4 { 1, 0.5f, 0.25f, 0.5f };
reed3601f282016-02-05 11:18:39 -080047 pm.erase(c4);
48
49 SkPM4f origpm4 = c4.premul();
50 for (int y = 0; y < pm.height(); ++y) {
51 for (int x = 0; x < pm.width(); ++x) {
52 SkPM4f pm4 = SkPM4f::FromF16(pm.addrF16(x, y));
53 REPORTER_ASSERT(reporter, eq_within_half_float(origpm4, pm4));
54 }
55 }
56}
mtkleina525cb12016-02-09 08:18:10 -080057
mtklein8ae991e2016-08-22 13:20:18 -070058static bool is_denorm(uint16_t h) {
59 return (h & 0x7fff) < 0x0400;
mtkleinddb64c82016-02-11 12:48:23 -080060}
61
mtklein8ae991e2016-08-22 13:20:18 -070062static bool is_finite(uint16_t h) {
63 return (h & 0x7c00) != 0x7c00;
64}
65
66DEF_TEST(SkHalfToFloat_finite_ftz, r) {
mtklein58e389b2016-07-15 07:00:11 -070067 for (uint32_t h = 0; h <= 0xffff; h++) {
mtklein8ae991e2016-08-22 13:20:18 -070068 if (!is_finite(h)) {
69 // _finite_ftz() only works for values that can be represented as a finite half float.
70 continue;
mtkleinfff055c2016-02-11 06:30:03 -080071 }
mtklein8ae991e2016-08-22 13:20:18 -070072
mtkleina2d2f382016-08-23 08:58:12 -070073 // _finite_ftz() may flush denorms to zero. 0.0f will compare == with both +0.0f and -0.0f.
74 float expected = SkHalfToFloat(h),
75 alternate = is_denorm(h) ? 0.0f : expected;
mtklein8ae991e2016-08-22 13:20:18 -070076
mtkleina2d2f382016-08-23 08:58:12 -070077 float actual = SkHalfToFloat_finite_ftz(h)[0];
78
79 REPORTER_ASSERT(r, actual == expected || actual == alternate);
mtkleinfff055c2016-02-11 06:30:03 -080080 }
81}
82
mtklein8ae991e2016-08-22 13:20:18 -070083DEF_TEST(SkFloatToHalf_finite_ftz, r) {
mtkleinfff055c2016-02-11 06:30:03 -080084#if 0
mtklein58e389b2016-07-15 07:00:11 -070085 for (uint64_t bits = 0; bits <= 0xffffffff; bits++) {
mtkleinfff055c2016-02-11 06:30:03 -080086#else
87 SkRandom rand;
88 for (int i = 0; i < 1000000; i++) {
89 uint32_t bits = rand.nextU();
90#endif
91 float f;
92 memcpy(&f, &bits, 4);
mtklein8ae991e2016-08-22 13:20:18 -070093
94 uint16_t expected = SkFloatToHalf(f);
95 if (!is_finite(expected)) {
96 // _finite_ftz() only works for values that can be represented as a finite half float.
97 continue;
mtkleinfff055c2016-02-11 06:30:03 -080098 }
mtklein8ae991e2016-08-22 13:20:18 -070099
mtkleina2d2f382016-08-23 08:58:12 -0700100 uint16_t alternate = expected;
mtklein8ae991e2016-08-22 13:20:18 -0700101 if (is_denorm(expected)) {
mtkleina2d2f382016-08-23 08:58:12 -0700102 // _finite_ftz() may flush denorms to zero, and happens to keep the sign bit.
103 alternate = signbit(f) ? 0x8000 : 0x0000;
mtklein8ae991e2016-08-22 13:20:18 -0700104 }
105
106 uint16_t actual = SkFloatToHalf_finite_ftz(Sk4f{f})[0];
mtkleina2d2f382016-08-23 08:58:12 -0700107 // _finite_ftz() may truncate instead of rounding, so it may be one too small.
108 REPORTER_ASSERT(r, actual == expected || actual == expected - 1 ||
109 actual == alternate || actual == alternate - 1);
mtkleinfff055c2016-02-11 06:30:03 -0800110 }
111}