X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fsynfig%2Fgamma.h;h=0d3da089e6bdc4b998f4edf0bae2c918ea24ecb6;hb=9459638ad6797b8139f1e9f0715c96076dbf0890;hp=a15a87cd3061eaced18adf2e331d2b33a1e0416d;hpb=e8a065f2385c219c511b57dac52786120bfa097d;p=synfig.git diff --git a/synfig-core/trunk/src/synfig/gamma.h b/synfig-core/trunk/src/synfig/gamma.h index a15a87c..0d3da08 100644 --- a/synfig-core/trunk/src/synfig/gamma.h +++ b/synfig-core/trunk/src/synfig/gamma.h @@ -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(pow(x,gamma_g)*(1.0f-black_level)+black_level); } float b_F32_to_F32(float x)const { return static_cast(pow(x,gamma_b)*(1.0f-black_level)+black_level); } }; // END of class Gamma - + }; // END of namespace synfig /* === E N D =============================================================== */