Wrong #ifdef test.

This commit is contained in:
David Monniaux 2001-02-11 12:15:42 +00:00
parent e4bb2f938a
commit 0f1e1535aa
2 changed files with 24 additions and 6 deletions

View File

@ -20,6 +20,7 @@
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <glib.h>
@ -155,9 +156,7 @@ static void rotate_pointers (gpointer *p,
/* MMX stuff */
extern gboolean use_mmx;
#define USE_GCC_INTEL_MMX
#ifdef USE_GCC_INTEL_MMX
#ifdef HAVE_ASM_MMX
extern int use_mmx;
#define MMX_PIXEL_OP(x) \
@ -4266,6 +4265,10 @@ shrink_line (gdouble *dest,
register const gdouble inv_step = 1.0 / step;
gdouble position;
fprintf(stderr, "shrink_line bytes=%d old_width=%d width=%d interp=%d "
"step=%f inv_step=%f\n",
bytes, old_width, width, interp, step, inv_step);
for (b = 0; b < bytes; b++)
{
@ -4358,6 +4361,9 @@ scale_region (PixelRegion *srcPR,
width = destPR->w;
height = destPR->h;
fprintf(stderr, "scale_region: (%d x %d) -> (%d x %d)\n",
orig_width, orig_height, width, height);
/* find the ratios of old y to new y */
y_rat = (double) orig_height / (double) height;
@ -4547,6 +4553,9 @@ subsample_region (PixelRegion *srcPR,
width = destPR->w;
height = destPR->h;
fprintf(stderr, "subsample_region: (%d x %d) -> (%d x %d)\n",
orig_width, orig_height, width, height);
/* Some calculations... */
bytes = destPR->bytes;
destwidth = destPR->rowstride;

View File

@ -20,6 +20,7 @@
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <glib.h>
@ -155,9 +156,7 @@ static void rotate_pointers (gpointer *p,
/* MMX stuff */
extern gboolean use_mmx;
#define USE_GCC_INTEL_MMX
#ifdef USE_GCC_INTEL_MMX
#ifdef HAVE_ASM_MMX
extern int use_mmx;
#define MMX_PIXEL_OP(x) \
@ -4266,6 +4265,10 @@ shrink_line (gdouble *dest,
register const gdouble inv_step = 1.0 / step;
gdouble position;
fprintf(stderr, "shrink_line bytes=%d old_width=%d width=%d interp=%d "
"step=%f inv_step=%f\n",
bytes, old_width, width, interp, step, inv_step);
for (b = 0; b < bytes; b++)
{
@ -4358,6 +4361,9 @@ scale_region (PixelRegion *srcPR,
width = destPR->w;
height = destPR->h;
fprintf(stderr, "scale_region: (%d x %d) -> (%d x %d)\n",
orig_width, orig_height, width, height);
/* find the ratios of old y to new y */
y_rat = (double) orig_height / (double) height;
@ -4547,6 +4553,9 @@ subsample_region (PixelRegion *srcPR,
width = destPR->w;
height = destPR->h;
fprintf(stderr, "subsample_region: (%d x %d) -> (%d x %d)\n",
orig_width, orig_height, width, height);
/* Some calculations... */
bytes = destPR->bytes;
destwidth = destPR->rowstride;