]> git.mxchange.org Git - simgear.git/blob - simgear/screen/colors.hxx
don't rely on a compressed scanline being properly closed
[simgear.git] / simgear / screen / colors.hxx
1 // colours.h 
2 //
3 // -- This header file contains color related functions
4 //
5 // Copyright (C) 2003  FlightGear Flight Simulator
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20 //
21 // $Id$
22
23
24 #ifndef _SG_COLORS_HXX
25 #define _SG_COLORS_HXX 1
26
27 #include <math.h>
28
29 #if defined( macintosh )
30 const float system_gamma = 1.4;
31
32 #elif defined (sgi)
33 const float system_gamma = 2.0/1.7;
34
35 #else   // others
36 const float system_gamma = 2.5;
37 #endif
38
39 // simple architecture independant gamma correction function.
40 inline void gamma_correct_rgb(float *color,
41                               float reff = 2.5, float system = system_gamma)
42 {
43     if (reff == system)
44        return;
45
46     float tmp = reff/system;
47     color[0] = pow(color[0], tmp);
48     color[1] = pow(color[1], tmp);
49     color[2] = pow(color[2], tmp);
50 };
51
52 inline void gamma_correct_c(float *color,
53                             float reff = 2.5, float system = system_gamma)
54 {
55    if (reff == system)
56       return;
57
58    *color = pow(*color, reff/system);
59 };
60
61 inline void gamma_restore_rgb(float *color,
62                               float reff = 2.5, float system = system_gamma)
63 {
64     if (reff == system)
65        return;
66
67     float tmp = system/reff;
68     color[0] = pow(color[0], tmp);
69     color[1] = pow(color[1], tmp);
70     color[2] = pow(color[2], tmp);
71 };
72
73 inline void gamma_restore_c(float *color,
74                             float reff = 2.5, float system = system_gamma)
75 {
76    if (reff == system)
77       return;
78
79    *color = pow(*color, system/reff);
80 };
81
82
83 #endif // _SG_COLORS_HXX
84