Enlightenment CVS committal

Author  : titan
Project : e17
Module  : apps/ephoto

Dir     : e17/apps/ephoto/src/bin


Modified Files:
        ephoto_imaging.c 


Log Message:
Work on sepia a little more.

===================================================================
RCS file: /cvs/e/e17/apps/ephoto/src/bin/ephoto_imaging.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -3 -r1.14 -r1.15
--- ephoto_imaging.c    24 May 2007 19:27:07 -0000      1.14
+++ ephoto_imaging.c    24 May 2007 22:43:03 -0000      1.15
@@ -14,7 +14,7 @@
 #define G_VAL(p) ((unsigned char *)(p))[1]
 #define B_VAL(p) ((unsigned char *)(p))[0]
 
-static unsigned int *set_contrast(unsigned int *data, int ew, int eh, float v);
+//static unsigned int *set_contrast(unsigned int *data, int ew, int eh, float 
v);
 
 static void close_dialog(Ewl_Widget *w, void *event, void *data);
 static void close_progress(Ewl_Widget *w, void *event, void *data);
@@ -23,7 +23,7 @@
 
 static Ewl_Widget *save_win, *qseek;
 
-static unsigned int *set_contrast(unsigned int *data, int ew, int eh, float v)
+/*static unsigned int *set_contrast(unsigned int *data, int ew, int eh, float 
v)
 {
        int i, val;
        unsigned int *p;
@@ -68,7 +68,7 @@
   //              A_VAL(p) = A_CMOD(A_VAL(p));
        }
        return data;
-}
+}*/
 
 unsigned int *flip_horizontal(Ewl_Widget *image)
 {
@@ -369,17 +369,15 @@
 
 unsigned int *sepia_image(Ewl_Widget *image)
 {
-       unsigned int *data, *im_data, *im_data_new;
+       unsigned int *im_data, *im_data_new;
        int i, r, g, b, a, ew, eh;
        float h, s, v;
 
-        data = evas_object_image_data_get(EWL_IMAGE(image)->image, FALSE);
+        im_data = evas_object_image_data_get(EWL_IMAGE(image)->image, FALSE);
         evas_object_image_size_get(EWL_IMAGE(image)->image, &ew, &eh);
 
         im_data_new = malloc(sizeof(unsigned int) * ew * eh);
 
-       im_data = set_contrast(data, ew, eh, 2);
-
        for (i = 0; i < (ew * eh); i++)
         {
                 b = (int)((im_data[i]) & 0xff);
@@ -388,7 +386,7 @@
                 a = (int)((im_data[i] >> 24) & 0xff);
 
                 evas_color_rgb_to_hsv(r, g, b, &h, &s, &v);
-                evas_color_hsv_to_rgb(35, s, v, &r, &g, &b);
+               evas_color_hsv_to_rgb(35, s, v, &r, &g, &b);
 
                 im_data_new[i] = (a << 24) | (r << 16) | (g << 8) | b;
         }



-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to