Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/evas

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


Modified Files:
        evas_gl_common.h evas_gl_gradient.c 


Log Message:


at least use the right fn call names

===================================================================
RCS file: /cvs/e/e17/libs/evas/src/modules/engines/gl_common/evas_gl_common.h,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -3 -r1.10 -r1.11
--- evas_gl_common.h    4 Mar 2007 16:18:06 -0000       1.10
+++ evas_gl_common.h    16 Apr 2007 02:01:11 -0000      1.11
@@ -210,9 +210,9 @@
 void              evas_gl_common_gradient_fill_set(Evas_GL_Gradient *gr, int 
x, int y, int w, int h);
 void              evas_gl_common_gradient_fill_angle_set(Evas_GL_Gradient *gr, 
double angle);
 void              evas_gl_common_gradient_fill_spread_set(Evas_GL_Gradient 
*gr, int spread);
-void              evas_gl_common_gradient_angle_set(Evas_GL_Gradient *gr, 
double angle);
-void              evas_gl_common_gradient_offset_set(Evas_GL_Gradient *gr, 
float offset);
-void              evas_gl_common_gradient_direction_set(Evas_GL_Gradient *gr, 
int direction);
+void              evas_gl_common_gradient_map_angle_set(Evas_GL_Gradient *gr, 
double angle);
+void              evas_gl_common_gradient_map_offset_set(Evas_GL_Gradient *gr, 
float offset);
+void              evas_gl_common_gradient_map_direction_set(Evas_GL_Gradient 
*gr, int direction);
 void              evas_gl_common_gradient_type_set(Evas_GL_Gradient *gr, char 
*name, char *params);
 int               evas_gl_common_gradient_is_opaque(Evas_GL_Context *gc, 
Evas_GL_Gradient *gr, int x, int y, int w, int h);
 int               evas_gl_common_gradient_is_visible(Evas_GL_Context *gc, 
Evas_GL_Gradient *gr, int x, int y, int w, int h);
===================================================================
RCS file: 
/cvs/e/e17/libs/evas/src/modules/engines/gl_common/evas_gl_gradient.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- evas_gl_gradient.c  30 Sep 2006 10:18:34 -0000      1.4
+++ evas_gl_gradient.c  16 Apr 2007 02:01:11 -0000      1.5
@@ -89,26 +89,26 @@
 }
 
 void
-evas_gl_common_gradient_angle_set(Evas_GL_Gradient *gr, double angle)
+evas_gl_common_gradient_map_angle_set(Evas_GL_Gradient *gr, double angle)
 {
    if (!gr) return;
-   evas_common_gradient_angle_set(gr->grad, angle);
+   evas_common_gradient_map_angle_set(gr->grad, angle);
    gr->changed = 1;
 }
 
 void
-evas_gl_common_gradient_offset_set(Evas_GL_Gradient *gr, float offset)
+evas_gl_common_gradient_map_offset_set(Evas_GL_Gradient *gr, float offset)
 {
    if (!gr) return;
-   evas_common_gradient_offset_set(gr->grad, offset);
+   evas_common_gradient_map_offset_set(gr->grad, offset);
    gr->changed = 1;
 }
 
 void
-evas_gl_common_gradient_direction_set(Evas_GL_Gradient *gr, int direction)
+evas_gl_common_gradient_map_direction_set(Evas_GL_Gradient *gr, int direction)
 {
    if (!gr) return;
-   evas_common_gradient_direction_set(gr->grad, direction);
+   evas_common_gradient_map_direction_set(gr->grad, direction);
    gr->changed = 1;
 }
 



-------------------------------------------------------------------------
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