Removed trailing whitespace.
[synfig.git] / synfig-core / trunk / src / synfig / gamma.h
index a15a87c..fd2cfb0 100644 (file)
@@ -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 =============================================================== */