Create ColorCorrectionValues.h

Former-commit-id: d765e8c7562d6eac5e03e939bd88c858c50597bb
This commit is contained in:
AEtHeLsYn 2016-03-21 17:08:10 +01:00
parent b46d231f75
commit 0bafc4a3cc
1 changed files with 12 additions and 0 deletions

View File

@ -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;
};