mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
13 lines
299 B
C
13 lines
299 B
C
#pragma once
|
|
|
|
/// Simple structure to contain the values of a color transformation
|
|
struct ColorTransformValues
|
|
{
|
|
/// The value for the red color-channel
|
|
double valueRed;
|
|
/// The value for the green color-channel
|
|
double valueGreen;
|
|
/// The value for the blue color-channel
|
|
double valueBlue;
|
|
};
|