MCPcopy Create free account
hub / github.com/FastLED/FastLED / check_hsv_eq

Function check_hsv_eq

tests/fl/gfx/colorutils.cpp:44–48  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

42}
43
44void check_hsv_eq(const CHSV &lhs, const CHSV &rhs) {
45 FL_CHECK_EQ(lhs.hue, rhs.hue);
46 FL_CHECK_EQ(lhs.sat, rhs.sat);
47 FL_CHECK_EQ(lhs.val, rhs.val);
48}
49
50void check_rgb_eq(const CRGB &lhs, const CRGB &rhs) {
51 FL_CHECK_EQ(lhs.red, rhs.red);

Callers 1

FL_TEST_FILEFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected