mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
* Add Temperature adjustment * Add Temperature adjustment - add missing cmake updates * Add missing ENABLE_MDNS guards * Reapply temperature on JSONAPI * Integrate color temperature into RGB transformations * Fix imagestream update * fix cast * Cleanups * Windows Fix * Fix inner loop * Simplify * Reapply default temperature setting * Fix adjustments calculation * Updates
12 lines
471 B
C++
12 lines
471 B
C++
// Local includes
|
|
#include <utils/ColorRgb.h>
|
|
|
|
const ColorRgb ColorRgb::BLACK = { 0, 0, 0 };
|
|
const ColorRgb ColorRgb::RED = { 255, 0, 0 };
|
|
const ColorRgb ColorRgb::GREEN = { 0, 255, 0 };
|
|
const ColorRgb ColorRgb::BLUE = { 0, 0, 255 };
|
|
const ColorRgb ColorRgb::YELLOW = { 255, 255, 0 };
|
|
const ColorRgb ColorRgb::WHITE = { 255, 255, 255 };
|
|
const ColorRgb ColorRgb::CYAN = { 0, 255, 255 };
|
|
const ColorRgb ColorRgb::MAGENTA= { 255, 0, 255 };
|