diff options
author | Glenn Kennard <glenn.kennard@gmail.com> | 2008-03-21 01:49:00 +0100 |
---|---|---|
committer | Glenn Kennard <glenn.kennard@gmail.com> | 2008-03-21 01:49:00 +0100 |
commit | 783f538d4ee8e87bfd911345c903052b29b92338 (patch) | |
tree | 3bb43754e7051d9529311facbb15b559b1d6c76e /raster/archx86.c | |
parent | 81cf682d56185937d83dba5d787b0c72d10f0446 (diff) | |
download | mupdf-783f538d4ee8e87bfd911345c903052b29b92338.tar.xz |
Propagate alpha into rendering routines
I think these need premul, but not certain yet.
Diffstat (limited to 'raster/archx86.c')
-rw-r--r-- | raster/archx86.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/raster/archx86.c b/raster/archx86.c index 089edf02..f797d44b 100644 --- a/raster/archx86.c +++ b/raster/archx86.c @@ -115,8 +115,8 @@ static void img_4o4mmx(FZ_PSRC, FZ_PDST, FZ_PCTM) int fv = v & 0x7fff; int atedge = - iu < 0 | iu >= (srcw - 1) | - iv < 0 | iv >= (srch - 1); + (iu < 0) | (iu >= (srcw - 1)) | + (iv < 0) | (iv >= (srch - 1)); __m64 ms0s1; __m64 ms2s3; |