skia2/tests/HSVRoundTripTest.cpp
Cary Clark 6cdb7d3a4c prepare to remove obsolete macros
SkColorSetARGBMacro and SkColorSetARGBInline
are macros which will be deleted. Replace them
with a standard equivalent.

R=scroggo@google.com
Bug: skia:6898
Change-Id: I16e010776e991c19a375d0686ecd1b1cc4c59a9b
Reviewed-on: https://skia-review.googlesource.com/123501
Auto-Submit: Cary Clark <caryclark@skia.org>
Commit-Queue: Leon Scroggins <scroggo@google.com>
Reviewed-by: Leon Scroggins <scroggo@google.com>
2018-04-24 19:19:01 +00:00

31 lines
925 B
C++

/*
* Copyright 2017 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "Test.h"
#include "SkColor.h"
DEF_TEST(ColorToHSVRoundTrip, reporter) {
SkScalar hsv[3];
for (U8CPU r = 0; r <= 255; r++) {
for (U8CPU g = 0; g <= 255; g++) {
for (U8CPU b = 0; b <= 255; b++) {
SkColor color = SkColorSetRGB(r, g, b);
SkColorToHSV(color, hsv);
SkColor result = SkHSVToColor(0xFF, hsv);
if (result != color) {
ERRORF(reporter, "HSV roundtrip mismatch!\n"
"\toriginal: %X\n"
"\tHSV: %f, %f, %f\n"
"\tresult: %X\n",
color, hsv[0], hsv[1], hsv[2], result);
}
}
}
}
}