From 0bafc4a3cc1989a16d789494cd11e6dd74291caf Mon Sep 17 00:00:00 2001 From: AEtHeLsYn Date: Mon, 21 Mar 2016 17:08:10 +0100 Subject: [PATCH] Create ColorCorrectionValues.h Former-commit-id: d765e8c7562d6eac5e03e939bd88c858c50597bb --- src/hyperion-remote/ColorCorrectionValues.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/hyperion-remote/ColorCorrectionValues.h diff --git a/src/hyperion-remote/ColorCorrectionValues.h b/src/hyperion-remote/ColorCorrectionValues.h new file mode 100644 index 00000000..0cd0e911 --- /dev/null +++ b/src/hyperion-remote/ColorCorrectionValues.h @@ -0,0 +1,12 @@ +#pragma once + +/// Simple structure to contain the values of a color transformation +struct ColorCorrectionValues +{ + /// The value for the red color-channel + int valueRed; + /// The value for the green color-channel + int valueGreen; + /// The value for the blue color-channel + int valueBlue; +};