Remove .gitignore do nothing is ignored.
[synfig.git] / synfig-core / trunk / src / synfig / gamma.h
index a15a87c..0d3da08 100644 (file)
@@ -2,7 +2,7 @@
 /*!    \file gamma.h
 **     \brief Template Header
 **
-**     $Id: gamma.h,v 1.1.1.1 2005/01/04 01:23:14 darco Exp $
+**     $Id$
 **
 **     \legal
 **     Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
@@ -48,7 +48,7 @@ class Gamma
        float gamma_b;
        float black_level;
        float red_blue_level;
-       
+
        unsigned char table_r_U16_to_U8[65536];
        unsigned char table_g_U16_to_U8[65536];
        unsigned char table_b_U16_to_U8[65536];
@@ -56,7 +56,7 @@ class Gamma
        float table_r_U8_to_F32[256];
        float table_g_U8_to_F32[256];
        float table_b_U8_to_F32[256];
-       
+
 public:
        Gamma(float x=1):black_level(0) { set_gamma(x); }
 
@@ -75,11 +75,11 @@ public:
        float get_gamma_b()const { return gamma_b; }
        float get_black_level()const { return black_level; }
        float get_red_blue_level()const { return red_blue_level; }
-       
+
        void refresh_gamma_r();
        void refresh_gamma_g();
        void refresh_gamma_b();
-       
+
        const unsigned char &r_U16_to_U8(int i)const { return table_r_U16_to_U8[i]; }
        const unsigned char &g_U16_to_U8(int i)const { return table_g_U16_to_U8[i]; }
        const unsigned char &b_U16_to_U8(int i)const { return table_b_U16_to_U8[i]; }
@@ -100,7 +100,7 @@ public:
        float g_F32_to_F32(float x)const { return static_cast<float>(pow(x,gamma_g)*(1.0f-black_level)+black_level); }
        float b_F32_to_F32(float x)const { return static_cast<float>(pow(x,gamma_b)*(1.0f-black_level)+black_level); }
 }; // END of class Gamma
-       
+
 }; // END of namespace synfig
 
 /* === E N D =============================================================== */