-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathColor.cpp
63 lines (58 loc) · 1.59 KB
/
Color.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
//
// Copyright (C) Wojciech Jarosz <wjarosz@gmail.com>. All rights reserved.
// Use of this source code is governed by a BSD-style license that can
// be found in the LICENSE.txt file.
//
#include "Color.h"
#include "Colorspace.h"
#define COLORSPACE_FUNCTION_WRAPPER(FUNC) \
Color3 Color3::FUNC() const \
{ \
Color3 ret; \
::FUNC(&ret.r, &ret.g, &ret.b, r, g, b); \
return ret; \
} \
COLORSPACE_FUNCTION_WRAPPER(LinearSRGBToXYZ)
COLORSPACE_FUNCTION_WRAPPER(XYZToLinearSRGB)
COLORSPACE_FUNCTION_WRAPPER(LinearAdobeRGBToXYZ)
COLORSPACE_FUNCTION_WRAPPER(XYZToLinearAdobeRGB)
COLORSPACE_FUNCTION_WRAPPER(XYZToLab)
COLORSPACE_FUNCTION_WRAPPER(LabToXYZ)
COLORSPACE_FUNCTION_WRAPPER(XYZToLuv)
COLORSPACE_FUNCTION_WRAPPER(LuvToXYZ)
COLORSPACE_FUNCTION_WRAPPER(RGBToHSV)
COLORSPACE_FUNCTION_WRAPPER(HSVToRGB)
COLORSPACE_FUNCTION_WRAPPER(RGBToHSL)
COLORSPACE_FUNCTION_WRAPPER(HSLToRGB)
Color3 Color3::xyYToXYZ() const
{
Color3 ret;
::xyYToXZ(&ret[0], &ret[2], r, g, b);
ret.g = g;
return ret;
}
Color3 Color3::XYZToxyY() const
{
Color3 ret;
::XYZToxy(&ret[0], &ret[1], r, g, b);
ret.b = b;
return ret;
}
Color3 Color3::HSIAdjust(float h, float s, float i) const
{
Color3 ret(r,g,b);
::HSIAdjust(&ret[0], &ret[1], &ret[2], h, s, i);
return ret;
}
Color3 Color3::HSLAdjust(float h, float s, float l) const
{
Color3 ret(r,g,b);
::HSLAdjust(&ret[0], &ret[1], &ret[2], h, s, l);
return ret;
}
Color3 Color3::convert(EColorSpace dst, EColorSpace src) const
{
Color3 ret;
convertColorSpace(dst, &ret[0], &ret[1], &ret[2], src, r, g, b);
return ret;
}