2016-01-22 09:04:29 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2016 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/core/SkColor.h"
|
|
|
|
#include "tests/Test.h"
|
2016-01-24 03:37:56 +00:00
|
|
|
|
2016-01-22 09:04:29 +00:00
|
|
|
DEF_TEST(SkColor4f_FromColor, reporter) {
|
|
|
|
const struct {
|
|
|
|
SkColor fC;
|
|
|
|
SkColor4f fC4;
|
|
|
|
} recs[] = {
|
2016-06-24 13:31:47 +00:00
|
|
|
{ SK_ColorBLACK, { 0, 0, 0, 1 } },
|
2016-01-22 09:04:29 +00:00
|
|
|
{ SK_ColorWHITE, { 1, 1, 1, 1 } },
|
2016-06-24 13:31:47 +00:00
|
|
|
{ SK_ColorRED, { 1, 0, 0, 1 } },
|
|
|
|
{ SK_ColorGREEN, { 0, 1, 0, 1 } },
|
|
|
|
{ SK_ColorBLUE, { 0, 0, 1, 1 } },
|
2016-01-22 09:04:29 +00:00
|
|
|
{ 0, { 0, 0, 0, 0 } },
|
|
|
|
};
|
|
|
|
|
|
|
|
for (const auto& r : recs) {
|
|
|
|
SkColor4f c4 = SkColor4f::FromColor(r.fC);
|
|
|
|
REPORTER_ASSERT(reporter, c4 == r.fC4);
|
|
|
|
}
|
|
|
|
}
|