mirror of https://github.com/GNOME/gimp.git
really check for CPU_ACCEL_X86_SSE.
2003-10-07 Sven Neumann <sven@gimp.org> * app/composite/gimp-composite-sse2.c (gimp_composite_sse2_init): really check for CPU_ACCEL_X86_SSE. * libgimp/gimp.def: added new symbols.
This commit is contained in:
parent
7ff0b3b80d
commit
6dd668f90a
|
@ -1,3 +1,10 @@
|
|||
2003-10-07 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/composite/gimp-composite-sse2.c (gimp_composite_sse2_init):
|
||||
really check for CPU_ACCEL_X86_SSE.
|
||||
|
||||
* libgimp/gimp.def: added new symbols.
|
||||
|
||||
2003-10-07 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* configure.in: bumped version number to 1.3.22.
|
||||
|
|
|
@ -812,7 +812,7 @@ gimp_composite_sse2_init (void)
|
|||
#if defined(USE_SSE) && defined(ARCH_X86)
|
||||
guint32 cpu = cpu_accel ();
|
||||
|
||||
if (cpu & CPU_ACCEL_X86_SSE || cpu & CPU_ACCEL_X86_MMXEXT)
|
||||
if (cpu & CPU_ACCEL_X86_SSE2)
|
||||
{
|
||||
return (TRUE);
|
||||
}
|
||||
|
|
|
@ -247,6 +247,7 @@ EXPORTS
|
|||
gimp_layer_new
|
||||
gimp_layer_new_from_drawable
|
||||
gimp_layer_resize
|
||||
gimp_layer_resize_to_image_size
|
||||
gimp_layer_scale
|
||||
gimp_layer_set_apply_mask
|
||||
gimp_layer_set_edit_mask
|
||||
|
@ -293,6 +294,7 @@ EXPORTS
|
|||
gimp_path_get_point_at_dist
|
||||
gimp_path_get_points
|
||||
gimp_path_get_tattoo
|
||||
gimp_path_import
|
||||
gimp_path_list
|
||||
gimp_path_set_current
|
||||
gimp_path_set_locked
|
||||
|
|
Loading…
Reference in New Issue