Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/evas

Dir     : e17/libs/evas/src/lib/engines/common


Modified Files:
        Makefile.am evas_cpu.c 


Log Message:


yuv pixel import api (well arbitary pixel format import api) for doing media
sreams (video) via image objects

===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/evas/src/lib/engines/common/Makefile.am,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- Makefile.am 30 Dec 2002 00:48:39 -0000      1.2
+++ Makefile.am 10 Dec 2003 01:12:13 -0000      1.3
@@ -31,6 +31,7 @@
 evas_convert_rgb_24.c \
 evas_convert_rgb_32.c \
 evas_convert_rgb_8.c \
+evas_convert_yuv.c \
 evas_cpu.c \
 evas_draw_main.c \
 evas_font_draw.c \
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/evas/src/lib/engines/common/evas_cpu.c,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -3 -r1.15 -r1.16
--- evas_cpu.c  20 Sep 2003 04:48:19 -0000      1.15
+++ evas_cpu.c  10 Dec 2003 01:12:13 -0000      1.16
@@ -15,7 +15,12 @@
    longjmp(detect_buf, 1);
 }
 
-#ifdef __i386__
+#if ( \
+        defined __i386__ || \
+        defined __386__ || \
+        defined __X86__ || \
+        defined _M_IX86 || \
+        defined i386)
 void
 evas_common_cpu_mmx_test(void)
 {
@@ -93,7 +98,12 @@
 
    if (called) return;
    called = 1;
-#ifdef __i386__
+#if ( \
+        defined __i386__ || \
+        defined __386__ || \
+        defined __X86__ || \
+        defined _M_IX86 || \
+        defined i386)
 #ifdef BUILD_MMX
    cpu_feature_mask |= CPU_FEATURE_MMX * 
      evas_common_cpu_feature_test(evas_common_cpu_mmx_test);




-------------------------------------------------------
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
_______________________________________________
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to