blob: 95d2866fdc5e5a2d709d0603c7ed25bb37cf52e6 [file] [log] [blame]
mtkleinac41bac2016-07-08 06:33:16 -07001/*
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 "SkSRGB.h"
9#include "SkTypes.h"
10#include "Test.h"
11#include <math.h>
12
13static uint8_t linear_to_srgb(float l) {
14 return (uint8_t)roundf(sk_linear_to_srgb(Sk4f{l})[0]);
15}
16
17DEF_TEST(sk_linear_to_srgb, r) {
18 // Should map 0 -> 0 and 1 -> 1.
19 REPORTER_ASSERT(r, 0 == linear_to_srgb(0.0f));
20 REPORTER_ASSERT(r, 255 == linear_to_srgb(1.0f));
21
22 // Should be monotonic between 0 and 1.
23 // We don't bother checking denorm values.
24 int tolerated_regressions = 0;
25#if defined(SK_ARM_HAS_NEON)
26 // Values around 0.166016 are usually 72 but drop briefly (41 floats) down to 71.
27 tolerated_regressions = 1;
28#endif
29 uint8_t prev = 0;
30 for (float f = FLT_MIN; f <= 1.0f; ) {
31 uint8_t srgb = linear_to_srgb(f);
32
33 REPORTER_ASSERT(r, srgb >= prev || tolerated_regressions > 0);
34 if (srgb < prev) { tolerated_regressions--; }
35 prev = srgb;
36
37 union { float flt; uint32_t bits; } pun = { f };
38 pun.bits++;
39 f = pun.flt;
40 }
41}