Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/evas

Dir     : e17/libs/evas/src/modules/engines/software_16


Modified Files:
        evas_engine.c 


Log Message:


adrunko's precise event patch


===================================================================
RCS file: /cvs/e/e17/libs/evas/src/modules/engines/software_16/evas_engine.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- evas_engine.c       12 Jul 2007 21:51:36 -0000      1.6
+++ evas_engine.c       23 Jul 2007 14:22:57 -0000      1.7
@@ -416,6 +416,17 @@
    return image;
 }
 
+static void
+eng_image_stride_get(void *data, void *image, int *stride)
+{
+   Soft16_Image *im;
+
+   if (stride) *stride = 0;
+   if (!image) return;
+   im = image;
+   if (stride) *stride = im->stride;
+}
+
 static void *
 eng_image_dirty_region(void *data, void *image, int x, int y, int w, int h)
 {
@@ -726,6 +737,7 @@
      eng_image_free,
      eng_image_size_get,
      eng_image_size_set,
+     eng_image_stride_get,
      eng_image_dirty_region,
      eng_image_data_get,
      eng_image_data_put,



-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to