hyperion.ng/src/hyperion-remote/ColorTransformValues.h

13 lines
299 B
C
Raw Normal View History

#pragma once
/// Simple structure to contain the values of a color transformation
struct ColorTransformValues
{
2013-09-09 22:35:28 +02:00
/// The value for the red color-channel
double valueRed;
2013-09-09 22:35:28 +02:00
/// The value for the green color-channel
double valueGreen;
2013-09-09 22:35:28 +02:00
/// The value for the blue color-channel
double valueBlue;
};