Those changes should not have gone to cvs yet.

SVN revision: 8132
This commit is contained in:
rbdpngn 2003-12-16 17:49:45 +00:00 committed by rbdpngn
parent 9fb85c8776
commit 732d2e2836
1 changed files with 0 additions and 18 deletions

View File

@ -569,10 +569,6 @@ evas_common_draw_func_blend_color_get(DATA32 src, RGBA_Image *dst, int pixels)
}
else
{
#ifdef BUILD_ALTIVEC
if (evas_common_cpu_has_feature(CPU_FEATURE_ALTIVEC))
return evas_common_blend_color_rgba_to_rgb_altivec;
#endif
#ifdef BUILD_MMX
if (evas_common_cpu_has_feature(CPU_FEATURE_MMX))
return evas_common_blend_color_rgba_to_rgb_mmx;
@ -580,9 +576,6 @@ evas_common_draw_func_blend_color_get(DATA32 src, RGBA_Image *dst, int pixels)
#ifdef BUILD_C
# ifdef BUILD_MMX
else
# endif
# ifdef BUILD_ALTIVEC
else
# endif
return evas_common_blend_color_rgba_to_rgb_c;
#endif
@ -600,10 +593,6 @@ evas_common_draw_func_blend_color_get(DATA32 src, RGBA_Image *dst, int pixels)
if (evas_common_cpu_has_feature(CPU_FEATURE_SSE) && (pixels > 256 * 256))
return evas_common_copy_color_rgba_to_rgba_sse;
#endif
#ifdef BUILD_ALTIVEC
if (evas_common_cpu_has_feature(CPU_FEATURE_ALTIVEC))
return evas_common_copy_color_rgba_to_rgba_altivec;
#endif
#ifdef BUILD_MMX
# ifdef BUILD_SSE
else
@ -713,16 +702,9 @@ evas_common_draw_func_blend_alpha_get(RGBA_Image *dst)
if (evas_common_cpu_has_feature(CPU_FEATURE_MMX))
return evas_common_blend_alpha_color_rgba_to_rgb_mmx;
#endif
#ifdef BUILD_ALTIVEC
if (evas_common_cpu_has_feature(CPU_FEATURE_ALTIVEC))
return evas_common_blend_alpha_color_rgba_to_rgb_altivec;
#endif
#ifdef BUILD_C
# ifdef BUILD_MMX
else
# endif
# ifdef BUILD_ALTIVEC
else
# endif
return evas_common_blend_alpha_color_rgba_to_rgb_c;
#endif