mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
b0d74b2dd8
Former-commit-id: 4c944b94cf26720906efa63ea4266064dc092134
31 lines
703 B
C++
31 lines
703 B
C++
#pragma once
|
|
|
|
// STL includes
|
|
#include <string>
|
|
|
|
// Utils includes
|
|
#include <utils/RgbChannelTransform.h>
|
|
#include <utils/HsvTransform.h>
|
|
#include <utils/HslTransform.h>
|
|
|
|
class ColorTransform
|
|
{
|
|
public:
|
|
|
|
/// Unique identifier for this color transform
|
|
std::string _id;
|
|
|
|
/// The RED-Channel (RGB) transform
|
|
RgbChannelTransform _rgbRedTransform;
|
|
/// The GREEN-Channel (RGB) transform
|
|
RgbChannelTransform _rgbGreenTransform;
|
|
/// The BLUE-Channel (RGB) transform
|
|
RgbChannelTransform _rgbBlueTransform;
|
|
|
|
/// The HSV Transform for applying Saturation and Value transforms
|
|
HsvTransform _hsvTransform;
|
|
|
|
/// The HSL Transform for applying Saturation and Value transforms
|
|
HslTransform _hslTransform;
|
|
};
|