[gs-cvs] rev 8490 - trunk/gs/src
leonardo at ghostscript.com
leonardo at ghostscript.com
Thu Jan 17 05:50:44 PST 2008
Author: leonardo
Date: 2008-01-17 05:50:43 -0800 (Thu, 17 Jan 2008)
New Revision: 8490
Modified:
trunk/gs/src/gdevp14.c
Log:
Fix (clist interpreter) : Skip idle compositors, step 6.
DETAILS :
Enabling visual trace for buffer backdropping.
EXPECTED DIFFERENCES :
None.
Modified: trunk/gs/src/gdevp14.c
===================================================================
--- trunk/gs/src/gdevp14.c 2008-01-17 13:47:11 UTC (rev 8489)
+++ trunk/gs/src/gdevp14.c 2008-01-17 13:50:43 UTC (rev 8490)
@@ -833,7 +833,7 @@
mask = mask_tr_fn[mask];
tmp = pix_alpha * mask + 0x80;
pix_alpha = (tmp + (tmp >> 8)) >> 8;
- /*vd_pixel(int2fixed(x), int2fixed(y), mask);*/
+ vd_pixel(int2fixed(x), int2fixed(y), mask);
}
if (nos_knockout) {
@@ -875,9 +875,9 @@
nos_ptr[x + num_comp * nos_planestride] = nos_pixel[num_comp];
}
if (maskbuf == NULL) {
- /*vd_pixel(int2fixed(x), int2fixed(y), n_chan == 1 ?
+ vd_pixel(int2fixed(x), int2fixed(y), n_chan == 1 ?
(nos_pixel[0] << 16) + (nos_pixel[0] << 8) + nos_pixel[0] :
- (nos_pixel[0] << 16) + (nos_pixel[1] << 8) + nos_pixel[2]);*/
+ (nos_pixel[0] << 16) + (nos_pixel[1] << 8) + nos_pixel[2]);
}
if (nos_alpha_g_ptr != NULL)
++nos_alpha_g_ptr;
More information about the gs-cvs
mailing list