Enlightenment CVS committal Author : doursse Project : e17 Module : libs/evas
Dir : e17/libs/evas/src/lib/engines/common Modified Files: Makefile.am evas_blend_main.c evas_draw.h evas_font_draw.c evas_gradient_main.c evas_line_main.c evas_op_add_main_.c evas_op_copy_main_.c evas_polygon_main.c evas_rectangle_main.c evas_scale_sample.c evas_scale_smooth.c Added Files: evas_blend.h evas_blend_private.h Log Message: * move blend functions declaration to their own header files * add vim header =================================================================== RCS file: /cvs/e/e17/libs/evas/src/lib/engines/common/Makefile.am,v retrieving revision 1.36 retrieving revision 1.37 diff -u -3 -r1.36 -r1.37 --- Makefile.am 21 Jul 2008 15:52:08 -0000 1.36 +++ Makefile.am 21 Jul 2008 16:10:48 -0000 1.37 @@ -62,6 +62,8 @@ evas_pipe.c EXTRA_DIST = \ +evas_blend.h \ +evas_blend_private.h \ evas_convert_color.h \ evas_convert_colorspace.h \ evas_convert_gry_1.h \ =================================================================== RCS file: /cvs/e/e17/libs/evas/src/lib/engines/common/evas_blend_main.c,v retrieving revision 1.14 retrieving revision 1.15 diff -u -3 -r1.14 -r1.15 --- evas_blend_main.c 19 Jul 2008 17:40:51 -0000 1.14 +++ evas_blend_main.c 21 Jul 2008 16:10:48 -0000 1.15 @@ -1,4 +1,9 @@ +/* + * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2 + */ + #include "evas_common.h" +#include "evas_blend_private.h" #if defined BUILD_MMX || defined BUILD_SSE #include "evas_mmx.h" =================================================================== RCS file: /cvs/e/e17/libs/evas/src/lib/engines/common/evas_draw.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -3 -r1.1 -r1.2 --- evas_draw.h 21 Jul 2008 15:52:09 -0000 1.1 +++ evas_draw.h 21 Jul 2008 16:10:48 -0000 1.2 @@ -1,3 +1,7 @@ +/* + * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2 + */ + #ifndef _EVAS_DRAW_H #define _EVAS_DRAW_H =================================================================== RCS file: /cvs/e/e17/libs/evas/src/lib/engines/common/evas_font_draw.c,v retrieving revision 1.38 retrieving revision 1.39 diff -u -3 -r1.38 -r1.39 --- evas_font_draw.c 10 Jul 2008 21:14:44 -0000 1.38 +++ evas_font_draw.c 21 Jul 2008 16:10:48 -0000 1.39 @@ -3,6 +3,7 @@ */ #include "evas_common.h" +#include "evas_blend_private.h" EAPI RGBA_Font_Glyph * evas_common_font_int_cache_glyph_get(RGBA_Font_Int *fi, FT_UInt index) =================================================================== RCS file: /cvs/e/e17/libs/evas/src/lib/engines/common/evas_gradient_main.c,v retrieving revision 1.21 retrieving revision 1.22 diff -u -3 -r1.21 -r1.22 --- evas_gradient_main.c 19 Jul 2008 17:13:42 -0000 1.21 +++ evas_gradient_main.c 21 Jul 2008 16:10:48 -0000 1.22 @@ -5,9 +5,7 @@ #include <math.h> #include "evas_common.h" -#include "evas_convert_main.h" -#include "evas_convert_color.h" -#include "evas_scale_span.h" +#include "evas_blend_private.h" #include "evas_gradient_private.h" =================================================================== RCS file: /cvs/e/e17/libs/evas/src/lib/engines/common/evas_line_main.c,v retrieving revision 1.22 retrieving revision 1.23 diff -u -3 -r1.22 -r1.23 --- evas_line_main.c 19 Jul 2008 18:05:54 -0000 1.22 +++ evas_line_main.c 21 Jul 2008 16:10:48 -0000 1.23 @@ -3,6 +3,7 @@ */ #include "evas_common.h" +#include "evas_blend_private.h" static void =================================================================== RCS file: /cvs/e/e17/libs/evas/src/lib/engines/common/evas_op_add_main_.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -3 -r1.4 -r1.5 --- evas_op_add_main_.c 19 Jul 2008 17:40:51 -0000 1.4 +++ evas_op_add_main_.c 21 Jul 2008 16:10:48 -0000 1.5 @@ -1,3 +1,7 @@ +/* + * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2 + */ + #include "evas_common.h" static RGBA_Gfx_Func op_add_span_funcs[SP_LAST][SM_LAST][SC_LAST][DP_LAST][CPU_LAST]; =================================================================== RCS file: /cvs/e/e17/libs/evas/src/lib/engines/common/evas_op_copy_main_.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -3 -r1.5 -r1.6 --- evas_op_copy_main_.c 19 Jul 2008 17:40:51 -0000 1.5 +++ evas_op_copy_main_.c 21 Jul 2008 16:10:48 -0000 1.6 @@ -1,4 +1,9 @@ +/* + * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2 + */ + #include "evas_common.h" +#include "evas_blend_private.h" static RGBA_Gfx_Func op_copy_span_funcs[SP_LAST][SM_LAST][SC_LAST][DP_LAST][CPU_LAST]; static RGBA_Gfx_Pt_Func op_copy_pt_funcs[SP_LAST][SM_LAST][SC_LAST][DP_LAST][CPU_LAST]; =================================================================== RCS file: /cvs/e/e17/libs/evas/src/lib/engines/common/evas_polygon_main.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -3 -r1.9 -r1.10 --- evas_polygon_main.c 19 Jul 2008 18:05:54 -0000 1.9 +++ evas_polygon_main.c 21 Jul 2008 16:10:48 -0000 1.10 @@ -5,6 +5,7 @@ #include <math.h> #include "evas_common.h" +#include "evas_blend_private.h" typedef struct _RGBA_Span RGBA_Span; typedef struct _RGBA_Edge RGBA_Edge; =================================================================== RCS file: /cvs/e/e17/libs/evas/src/lib/engines/common/evas_rectangle_main.c,v retrieving revision 1.10 retrieving revision 1.11 diff -u -3 -r1.10 -r1.11 --- evas_rectangle_main.c 19 Jul 2008 18:05:54 -0000 1.10 +++ evas_rectangle_main.c 21 Jul 2008 16:10:48 -0000 1.11 @@ -3,6 +3,7 @@ */ #include "evas_common.h" +#include "evas_blend_private.h" static void rectangle_draw_internal(RGBA_Image *dst, RGBA_Draw_Context *dc, int x, int y, int w, int h); =================================================================== RCS file: /cvs/e/e17/libs/evas/src/lib/engines/common/evas_scale_sample.c,v retrieving revision 1.14 retrieving revision 1.15 diff -u -3 -r1.14 -r1.15 --- evas_scale_sample.c 19 Jul 2008 17:40:51 -0000 1.14 +++ evas_scale_sample.c 21 Jul 2008 16:10:48 -0000 1.15 @@ -3,6 +3,7 @@ */ #include "evas_common.h" +#include "evas_blend_private.h" void scale_rgba_in_to_out_clip_sample_internal(RGBA_Image *src, RGBA_Image *dst, RGBA_Draw_Context *dc, int src_region_x, int src_region_y, int src_region_w, int src_region_h, int dst_region_x, int dst_region_y, int dst_region_w, int dst_region_h); =================================================================== RCS file: /cvs/e/e17/libs/evas/src/lib/engines/common/evas_scale_smooth.c,v retrieving revision 1.18 retrieving revision 1.19 diff -u -3 -r1.18 -r1.19 --- evas_scale_smooth.c 11 Jul 2008 06:36:30 -0000 1.18 +++ evas_scale_smooth.c 21 Jul 2008 16:10:48 -0000 1.19 @@ -4,6 +4,7 @@ #include "evas_common.h" #include "evas_scale_smooth.h" +#include "evas_blend_private.h" static DATA32 **scale_calc_y_points(DATA32 *src, int sw, int sh, int dh); ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs