1 --- goom/src/plugin_info.c 2005-02-07 14:46:41.000000000 +0100
2 +++ goom.new/src/plugin_info.c 2011-01-23 15:37:37.524184437 +0100
4 /* p->methods.create_output_with_brightness = create_output_with_brightness;*/
8 if (cpuFlavour & CPU_OPTION_XMMX) {
10 printf ("Extented MMX detected. Using the fastest methods !\n");
12 p->methods.draw_line = draw_line_mmx;
13 p->methods.zoom_filter = zoom_filter_xmmx;
15 - else if (cpuFlavour & CPU_OPTION_MMX) {
17 + if (cpuFlavour & CPU_OPTION_MMX) {
19 printf ("MMX detected. Using fast methods !\n");
21 --- goom/src/xmmx.c.no-xmmx 2005-02-07 14:46:41.000000000 +0100
22 +++ goom/src/xmmx.c 2018-05-18 15:04:47.031571100 +0200
23 @@ -26,6 +26,7 @@ int xmmx_supported (void) {
24 return (mm_support()&0x8)>>3;
28 void zoom_filter_xmmx (int prevX, int prevY,
29 Pixel *expix1, Pixel *expix2,
30 int *lbruS, int *lbruD, int buffratio,
31 @@ -389,5 +390,5 @@ void draw_line_xmmx (Pixel *data, int x1
33 __asm__ __volatile__ ("femms\n");