/* Copyright (C) 2001-2006 Artifex Software, Inc. All Rights Reserved. This software is provided AS-IS with no warranty, either express or implied. This software is distributed under license and may not be copied, modified or distributed except as expressly authorized under the terms of that license. Refer to licensing information at http://www.artifex.com/ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information. */ /* $Id: gxclrect.c 8134 2007-07-17 09:55:56Z leonardo $ */ /* Rectangle-oriented command writing for command list */ #include "gx.h" #include "gserrors.h" #include "gsutil.h" /* for gs_next_ids */ #include "gxdevice.h" #include "gxdevmem.h" /* must precede gxcldev.h */ #include "gxcldev.h" #include "gxclpath.h" /* ---------------- Writing utilities ---------------- */ #define cmd_set_rect(rect)\ ((rect).x = x, (rect).y = y,\ (rect).width = width, (rect).height = height) /* Write a rectangle. */ private int cmd_size_rect(register const gx_cmd_rect * prect) { return cmd_sizew(prect->x) + cmd_sizew(prect->y) + cmd_sizew(prect->width) + cmd_sizew(prect->height); } private byte * cmd_put_rect(register const gx_cmd_rect * prect, register byte * dp) { cmd_putw(prect->x, dp); cmd_putw(prect->y, dp); cmd_putw(prect->width, dp); cmd_putw(prect->height, dp); return dp; } int cmd_write_rect_cmd(gx_device_clist_writer * cldev, gx_clist_state * pcls, int op, int x, int y, int width, int height) { int dx = x - pcls->rect.x; int dy = y - pcls->rect.y; int dwidth = width - pcls->rect.width; int dheight = height - pcls->rect.height; byte *dp; int code; #define check_range_xy(rmin, rmax)\ ((unsigned)(dx - rmin) <= (rmax - rmin) &&\ (unsigned)(dy - rmin) <= (rmax - rmin)) #define check_range_w(rmin, rmax)\ ((unsigned)(dwidth - rmin) <= (rmax - rmin)) #define check_ranges(rmin, rmax)\ (check_range_xy(rmin, rmax) && check_range_w(rmin, rmax) &&\ (unsigned)(dheight - rmin) <= (rmax - rmin)) cmd_set_rect(pcls->rect); if (dheight == 0 && check_range_w(cmd_min_dw_tiny, cmd_max_dw_tiny) && check_range_xy(cmd_min_dxy_tiny, cmd_max_dxy_tiny) ) { byte op_tiny = op + 0x20 + dwidth - cmd_min_dw_tiny; if (dx == width - dwidth && dy == 0) { code = set_cmd_put_op(dp, cldev, pcls, op_tiny + 8, 1); if (code < 0) return code; } else { code = set_cmd_put_op(dp, cldev, pcls, op_tiny, 2); if (code < 0) return code; dp[1] = (dx << 4) + dy - (cmd_min_dxy_tiny * 0x11); } } #define rmin cmd_min_short #define rmax cmd_max_short else if (check_ranges(rmin, rmax)) { int dh = dheight - cmd_min_dxy_tiny; if ((unsigned)dh <= cmd_max_dxy_tiny - cmd_min_dxy_tiny && dh != 0 && dy == 0 ) { op += dh; code = set_cmd_put_op(dp, cldev, pcls, op + 0x10, 3); if (code < 0) return code; if_debug3('L', " rs2:%d,%d,0,%d\n", dx, dwidth, dheight); } else { code = set_cmd_put_op(dp, cldev, pcls, op + 0x10, 5); if (code < 0) return code; if_debug4('L', " rs4:%d,%d,%d,%d\n", dx, dwidth, dy, dheight); dp[3] = dy - rmin; dp[4] = dheight - rmin; } dp[1] = dx - rmin; dp[2] = dwidth - rmin; } #undef rmin #undef rmax else if (dy >= -2 && dy <= 1 && dheight >= -2 && dheight <= 1 && (dy + dheight) != -4 ) { int rcsize = 1 + cmd_sizew(x) + cmd_sizew(width); code = set_cmd_put_op(dp, cldev, pcls, op + ((dy + 2) << 2) + dheight + 2, rcsize); if (code < 0) return code; ++dp; cmd_put2w(x, width, dp); } else { int rcsize = 1 + cmd_size_rect(&pcls->rect); code = set_cmd_put_op(dp, cldev, pcls, op, rcsize); if (code < 0) return code; if_debug5('L', " r%d:%d,%d,%d,%d\n", rcsize - 1, dx, dwidth, dy, dheight); cmd_put_rect(&pcls->rect, dp + 1); } return 0; } private inline byte * cmd_put_frac31_color(gx_device_clist_writer * cldev, const frac31 *c, byte *dp) { int num_components = cldev->color_info.num_components; int j; for (j = 0; j < num_components; j++) dp = cmd_put_frac31(c[j], dp); return dp; } private inline int cmd_size_frac31_color(gx_device_clist_writer * cldev, const frac31 *c) { int j, s = 0; int num_components = cldev->color_info.num_components; for (j = 0; j < num_components; j++) s += cmd_size_frac31(c[j]); return s; } private int cmd_write_trapezoid_cmd(gx_device_clist_writer * cldev, gx_clist_state * pcls, int op, const gs_fixed_edge *left, const gs_fixed_edge *right, fixed ybot, fixed ytop, int options, const gs_fill_attributes *fa, const frac31 *c0, const frac31 *c1, const frac31 *c2, const frac31 *c3) { byte *dp; int rcsize; int code; int colors_mask = 0; rcsize = 1 + cmd_sizew(left->start.x) + cmd_sizew(left->start.y) + cmd_sizew(left->end.x) + cmd_sizew(left->end.y) + cmd_sizew(right->start.x) + cmd_sizew(right->start.y) + cmd_sizew(right->end.x) + cmd_sizew(right->end.y) + cmd_sizew(ybot) + cmd_sizew(ytop) + cmd_sizew(options); if (options & 2) { rcsize += cmd_sizew(fa->clip->p.x) + cmd_sizew(fa->clip->p.y) + cmd_sizew(fa->clip->q.x) + cmd_sizew(fa->clip->q.y); if (c0 != NULL) { colors_mask += 1; rcsize += cmd_size_frac31_color(cldev, c0); } if (c1 != NULL) { colors_mask += 2; rcsize += cmd_size_frac31_color(cldev, c1); } if (c2 != NULL) { colors_mask += 4; rcsize += cmd_size_frac31_color(cldev, c2); } if (c3 != NULL) { colors_mask += 8; rcsize += cmd_size_frac31_color(cldev, c3); } rcsize += cmd_sizew(colors_mask); } code = set_cmd_put_op(dp, cldev, pcls, op, rcsize); if (code < 0) return code; dp++; cmd_putw(left->start.x, dp); cmd_putw(left->start.y, dp); cmd_putw(left->end.x, dp); cmd_putw(left->end.y, dp); cmd_putw(right->start.x, dp); cmd_putw(right->start.y, dp); cmd_putw(right->end.x, dp); cmd_putw(right->end.y, dp); cmd_putw(ybot, dp); cmd_putw(ytop, dp); cmd_putw(options, dp); if_debug6('L', " t%d:%ld,%ld,%ld,%ld %ld\n", rcsize - 1, left->start.x, left->start.y, left->end.x, left->end.y, ybot); if_debug6('L', " t%ld,%ld,%ld,%ld %ld o=%d\n", right->start.x, right->start.y, right->end.x, right->end.y, ytop, options); if (options & 2) { cmd_putw(fa->clip->p.x, dp); cmd_putw(fa->clip->p.y, dp); cmd_putw(fa->clip->q.x, dp); cmd_putw(fa->clip->q.y, dp); cmd_putw(colors_mask, dp); if (c0 != NULL) dp = cmd_put_frac31_color(cldev, c0, dp); if (c1 != NULL) dp = cmd_put_frac31_color(cldev, c1, dp); if (c2 != NULL) dp = cmd_put_frac31_color(cldev, c2, dp); if (c3 != NULL) cmd_put_frac31_color(cldev, c3, dp); } return 0; } /* ---------------- Driver procedures ---------------- */ int clist_fill_rectangle(gx_device * dev, int rx, int ry, int rwidth, int rheight, gx_color_index color) { gx_device_clist_writer * const cdev = &((gx_device_clist *)dev)->writer; int code; cmd_rects_enum_t re; fit_fill(dev, rx, ry, rwidth, rheight); if (cdev->permanent_error < 0) return (cdev->permanent_error); RECT_ENUM_INIT(re, ry, rheight); do { RECT_STEP_INIT(re); re.pcls->colors_used.or |= color; re.pcls->band_complexity.uses_color |= ((color != 0xffffff) && (color != 0)); do { code = cmd_disable_lop(cdev, re.pcls); if (code >= 0 && color != re.pcls->colors[1]) code = cmd_put_color(cdev, re.pcls, &clist_select_color1, color, &re.pcls->colors[1]); if (code >= 0) code = cmd_write_rect_cmd(cdev, re.pcls, cmd_op_fill_rect, rx, re.y, rwidth, re.height); } while (RECT_RECOVER(code)); if (code < 0 && SET_BAND_CODE(code)) goto error_in_rect; re.y += re.height; continue; error_in_rect: if (!(cdev->error_is_retryable && cdev->driver_call_nesting == 0 && SET_BAND_CODE(clist_VMerror_recover_flush(cdev, re.band_code)) >= 0)) return re.band_code; } while (re.y < re.yend); return 0; } private inline int clist_write_fill_trapezoid(gx_device * dev, const gs_fixed_edge *left, const gs_fixed_edge *right, fixed ybot, fixed ytop, int options, const gx_drawing_color *pdcolor, gs_logical_operation_t lop, const gs_fill_attributes *fa, const frac31 *c0, const frac31 *c1, const frac31 *c2, const frac31 *c3) { gx_device_clist_writer * const cdev = &((gx_device_clist *)dev)->writer; int code; cmd_rects_enum_t re; int ry, rheight; bool swap_axes = (options & 1); if (options & 4) { if (swap_axes) { ry = fixed2int(max(min(min(left->start.x, left->end.x), right->start.x), fa->clip->p.x)); rheight = fixed2int_ceiling(min(max(max(left->start.x, left->end.x), right->start.x), fa->clip->q.x)) - ry; } else { ry = fixed2int(max(min(min(left->start.y, left->end.y), right->start.y), fa->clip->p.y)); rheight = fixed2int_ceiling(min(max(max(left->start.y, left->end.y), right->start.y), fa->clip->q.y)) - ry; } } else { /* fixme: this may give a significant overestimation, so the command will be written to many bands. Would like to know a better range by X with computing intersections of sides with ybot, ytop. */ if (swap_axes) { ry = fixed2int(min(left->start.x, left->end.x)); rheight = fixed2int_ceiling(max(right->start.x, right->end.x)) - ry; } else { ry = fixed2int(ybot); rheight = fixed2int_ceiling(ytop) - ry; } } if (cdev->cropping_by_path) { /* Cropping by Y is necessary when the shading path is smaller than shading. In this case the clipping path is written into the path's bands only. Thus bands outside the shading path are not clipped, but the shading may paint into them, so crop them here. */ if (ry < cdev->cropping_min) { rheight = ry + rheight - cdev->cropping_min; ry = cdev->cropping_min; } if (ry + rheight > cdev->cropping_max) rheight = cdev->cropping_max - ry; } fit_fill_y(dev, ry, rheight); fit_fill_h(dev, ry, rheight); if (rheight < 0) return 0; if (cdev->permanent_error < 0) return (cdev->permanent_error); RECT_ENUM_INIT(re, ry, rheight); do { RECT_STEP_INIT(re); do { if (pdcolor != NULL) { code = cmd_put_drawing_color(cdev, re.pcls, pdcolor); if (code < 0) { /* Something went wrong, use the default implementation. */ return gx_default_fill_trapezoid(dev, left, right, ybot, ytop, swap_axes, pdcolor, lop); } code = cmd_update_lop(cdev, re.pcls, lop); } else code = 0; if (code >= 0) { /* Dont't want to shorten the trapezoid by the band boundary, keeping in mind a further optimization with writing same data to all bands. */ code = cmd_write_trapezoid_cmd(cdev, re.pcls, cmd_opv_fill_trapezoid, left, right, ybot, ytop, options, fa, c0, c1, c2, c3); } } while (RECT_RECOVER(code)); if (code < 0 && SET_BAND_CODE(code)) goto error_in_rect; re.y += re.height; continue; error_in_rect: if (!(cdev->error_is_retryable && cdev->driver_call_nesting == 0 && SET_BAND_CODE(clist_VMerror_recover_flush(cdev, re.band_code)) >= 0)) return re.band_code; } while (re.y < re.yend); return 0; } int clist_fill_trapezoid(gx_device * dev, const gs_fixed_edge *left, const gs_fixed_edge *right, fixed ybot, fixed ytop, bool swap_axes, const gx_drawing_color *pdcolor, gs_logical_operation_t lop) { return clist_write_fill_trapezoid(dev, left, right, ybot, ytop, swap_axes, pdcolor, lop, NULL, NULL, NULL, NULL, NULL); } int clist_fill_linear_color_trapezoid(gx_device * dev, const gs_fill_attributes *fa, const gs_fixed_point *p0, const gs_fixed_point *p1, const gs_fixed_point *p2, const gs_fixed_point *p3, const frac31 *c0, const frac31 *c1, const frac31 *c2, const frac31 *c3) { gs_fixed_edge left, right; int code; left.start = *p0; left.end = *p1; right.start = *p2; right.end = *p3; code = clist_write_fill_trapezoid(dev, &left, &right, fa->ystart, fa->yend, fa->swap_axes | 2, NULL, fa->lop, fa, c0, c1, c2, c3); if (code < 0) return code; /* NOTE : The return value 0 for the fill_linear_color_trapezoid method means that the device requests a further decomposition of the trapezoid. Currently we have no interface for checking whether the target device can handle a trapezoid without an attempt to fill it. Therefore the clist writer device must always return 1, and the clist reader must perform a further decomposition if the target device requests it. */ return 1; } int clist_fill_linear_color_triangle(gx_device * dev, const gs_fill_attributes *fa, const gs_fixed_point *p0, const gs_fixed_point *p1, const gs_fixed_point *p2, const frac31 *c0, const frac31 *c1, const frac31 *c2) { gs_fixed_edge left, right; int code; left.start = *p0; left.end = *p1; right.start = *p2; right.end.x = right.end.y = 0; /* unused. */ code = clist_write_fill_trapezoid(dev, &left, &right, fa->ystart, fa->yend, fa->swap_axes | 2 | 4, NULL, fa->lop, fa, c0, c1, c2, NULL); if (code < 0) return code; /* NOTE : The return value 0 for the fill_linear_color_triangle method means that the device requests a further decomposition of the trapezoid. Currently we have no interface for checking whether the target device can handle a trapezoid without an attempt to fill it. Therefore the clist writer device must always return 1, and the clist reader must perform a further decomposition if the target device requests it. */ return 1; } int clist_pattern_manage(gx_device *pdev, gx_bitmap_id id, gs_pattern1_instance_t *pinst, pattern_manage_t function) { if (function == pattern_manage__handles_clip_path) return 1; return gx_default_pattern_manage(pdev, id, pinst, function); } #define dev_proc_pattern_manage(proc)\ dev_t_proc_pattern_manage(proc, gx_device) int clist_strip_tile_rectangle(gx_device * dev, const gx_strip_bitmap * tile, int rx, int ry, int rwidth, int rheight, gx_color_index color0, gx_color_index color1, int px, int py) { gx_device_clist_writer * const cdev = &((gx_device_clist *)dev)->writer; int depth = (color1 == gx_no_color_index && color0 == gx_no_color_index ? dev->color_info.depth : 1); gx_color_index colors_used = (color1 == gx_no_color_index && color0 == gx_no_color_index ? /* We can't know what colors will be used: assume the worst. */ ((gx_color_index)1 << depth) - 1 : (color0 == gx_no_color_index ? 0 : color0) | (color1 == gx_no_color_index ? 0 : color1)); int code; cmd_rects_enum_t re; fit_fill(dev, rx, ry, rwidth, rheight); if (cdev->permanent_error < 0) return (cdev->permanent_error); RECT_ENUM_INIT(re, ry, rheight); do { ulong offset_temp; RECT_STEP_INIT(re); re.pcls->colors_used.or |= colors_used; re.pcls->band_complexity.uses_color |= ((color0 != gx_no_color_index) && (color0 != 0xffffff) && (color0 != 0)) || ((color1 != gx_no_color_index) && (color1 != 0xffffff) && (color1 != 0)); do { code = cmd_disable_lop(cdev, re.pcls); } while (RECT_RECOVER(code)); if (code < 0 && SET_BAND_CODE(code)) goto error_in_rect; if (!cls_has_tile_id(cdev, re.pcls, tile->id, offset_temp)) { code = 0; if (tile->id != gx_no_bitmap_id) { do { code = clist_change_tile(cdev, re.pcls, tile, depth); } while (RECT_RECOVER(code)); if (code < 0 && !(code != gs_error_VMerror || !cdev->error_is_retryable) && SET_BAND_CODE(code)) goto error_in_rect; } if (code < 0) { /* ok if gx_default... does retries internally: */ /* it's self-sufficient */ code = gx_default_strip_tile_rectangle(dev, tile, rx, re.y, rwidth, re.height, color0, color1, px, py); if (code < 0 && SET_BAND_CODE(code)) goto error_in_rect; goto endr; } } do { code = 0; if (color0 != re.pcls->tile_colors[0] || color1 != re.pcls->tile_colors[1]) code = cmd_set_tile_colors(cdev, re.pcls, color0, color1); if (px != re.pcls->tile_phase.x || py != re.pcls->tile_phase.y) { if (code >= 0) code = cmd_set_tile_phase(cdev, re.pcls, px, py); } if (code >= 0) code = cmd_write_rect_cmd(cdev, re.pcls, cmd_op_tile_rect, rx, re.y, rwidth, re.height); } while (RECT_RECOVER(code)); if (code < 0 && SET_BAND_CODE(code)) goto error_in_rect; endr:; re.y += re.height; continue; error_in_rect: if (!(cdev->error_is_retryable && cdev->driver_call_nesting == 0 && SET_BAND_CODE(clist_VMerror_recover_flush(cdev, re.band_code)) >= 0)) return re.band_code; } while (re.y < re.yend); return 0; } int clist_copy_mono(gx_device * dev, const byte * data, int data_x, int raster, gx_bitmap_id id, int rx, int ry, int rwidth, int rheight, gx_color_index color0, gx_color_index color1) { gx_device_clist_writer * const cdev = &((gx_device_clist *)dev)->writer; int y0; gx_bitmap_id orig_id = id; gx_color_index colors_used = (color0 == gx_no_color_index ? 0 : color0) | (color1 == gx_no_color_index ? 0 : color1); bool uses_color = ((color0 != gx_no_color_index) && (color0 != 0xffffff) && (color0 != 0)) || ((color1 != gx_no_color_index) && (color1 != 0xffffff) && (color1 != 0)); cmd_rects_enum_t re; fit_copy(dev, data, data_x, raster, id, rx, ry, rwidth, rheight); y0 = ry; if (cdev->permanent_error < 0) return (cdev->permanent_error); RECT_ENUM_INIT(re, ry, rheight); do { int dx = data_x & 7; int w1 = dx + rwidth; const byte *row = data + (re.y - y0) * raster + (data_x >> 3); int code; RECT_STEP_INIT(re); re.pcls->colors_used.or |= colors_used; re.pcls->band_complexity.uses_color |= uses_color; do { code = cmd_disable_lop(cdev, re.pcls); if (code >= 0) code = cmd_disable_clip(cdev, re.pcls); if (color0 != re.pcls->colors[0] && code >= 0) code = cmd_set_color0(cdev, re.pcls, color0); if (color1 != re.pcls->colors[1] && code >= 0) code = cmd_set_color1(cdev, re.pcls, color1); } while (RECT_RECOVER(code)); if (code < 0 && SET_BAND_CODE(code)) goto error_in_rect; /* Don't bother to check for a possible cache hit: */ /* tile_rectangle and fill_mask handle those cases. */ copy:{ gx_cmd_rect rect; int rsize; byte op = (byte) cmd_op_copy_mono; byte *dp; uint csize; uint compress; int code; rect.x = rx, rect.y = re.y; rect.width = w1, rect.height = re.height; rsize = (dx ? 3 : 1) + cmd_size_rect(&rect); do { code = cmd_put_bits(cdev, re.pcls, row, w1, re.height, raster, rsize, (orig_id == gx_no_bitmap_id ? 1 << cmd_compress_rle : cmd_mask_compress_any), &dp, &csize); } while (RECT_RECOVER(code)); if (code < 0 && !(code == gs_error_limitcheck) && SET_BAND_CODE(code)) goto error_in_rect; compress = (uint)code; if (code < 0) { /* The bitmap was too large; split up the transfer. */ if (re.height > 1) { /* * Split the transfer by reducing the height. * See the comment above FOR_RECTS in gxcldev.h. */ re.height >>= 1; goto copy; } else { /* Split a single (very long) row. */ int w2 = w1 >> 1; ++cdev->driver_call_nesting; { code = clist_copy_mono(dev, row, dx, raster, gx_no_bitmap_id, rx, re.y, w2, 1, color0, color1); if (code >= 0) code = clist_copy_mono(dev, row, dx + w2, raster, gx_no_bitmap_id, rx + w2, re.y, w1 - w2, 1, color0, color1); } --cdev->driver_call_nesting; if (code < 0 && SET_BAND_CODE(code)) goto error_in_rect; continue; } } op += compress; if (dx) { *dp++ = cmd_count_op(cmd_opv_set_misc, 2); *dp++ = cmd_set_misc_data_x + dx; } *dp++ = cmd_count_op(op, csize); cmd_put2w(rx, re.y, dp); cmd_put2w(w1, re.height, dp); re.pcls->rect = rect; } continue; error_in_rect: if (!(cdev->error_is_retryable && cdev->driver_call_nesting == 0 && SET_BAND_CODE(clist_VMerror_recover_flush(cdev, re.band_code)) >= 0)) return re.band_code; re.y -= re.height; } while ((re.y += re.height) < re.yend); return 0; } int clist_copy_color(gx_device * dev, const byte * data, int data_x, int raster, gx_bitmap_id id, int rx, int ry, int rwidth, int rheight) { gx_device_clist_writer * const cdev = &((gx_device_clist *)dev)->writer; int depth = dev->color_info.depth; int y0; int data_x_bit; /* We can't know what colors will be used: assume the worst. */ gx_color_index colors_used = ((gx_color_index)1 << depth) - 1; cmd_rects_enum_t re; fit_copy(dev, data, data_x, raster, id, rx, ry, rwidth, rheight); y0 = ry; data_x_bit = data_x * depth; if (cdev->permanent_error < 0) return (cdev->permanent_error); RECT_ENUM_INIT(re, ry, rheight); do { int dx = (data_x_bit & 7) / depth; int w1 = dx + rwidth; const byte *row = data + (re.y - y0) * raster + (data_x_bit >> 3); int code; RECT_STEP_INIT(re); re.pcls->colors_used.or |= colors_used; re.pcls->band_complexity.uses_color = 1; do { code = cmd_disable_lop(cdev, re.pcls); if (code >= 0) code = cmd_disable_clip(cdev, re.pcls); } while (RECT_RECOVER(code)); if (code < 0 && SET_BAND_CODE(code)) goto error_in_rect; if (re.pcls->color_is_alpha) { byte *dp; do { code = set_cmd_put_op(dp, cdev, re.pcls, cmd_opv_set_copy_color, 1); } while (RECT_RECOVER(code)); if (code < 0 && SET_BAND_CODE(code)) goto error_in_rect; re.pcls->color_is_alpha = 0; } copy:{ gx_cmd_rect rect; int rsize; byte op = (byte) cmd_op_copy_color_alpha; byte *dp; uint csize; uint compress; rect.x = rx, rect.y = re.y; rect.width = w1, rect.height = re.height; rsize = (dx ? 3 : 1) + cmd_size_rect(&rect); do { code = cmd_put_bits(cdev, re.pcls, row, w1 * depth, re.height, raster, rsize, 1 << cmd_compress_rle, &dp, &csize); } while (RECT_RECOVER(code)); if (code < 0 && !(code == gs_error_limitcheck) && SET_BAND_CODE(code)) goto error_in_rect; compress = (uint)code; if (code < 0) { /* The bitmap was too large; split up the transfer. */ if (re.height > 1) { /* Split the transfer by reducing the height. * See the comment above FOR_RECTS in gxcldev.h. */ re.height >>= 1; goto copy; } else { /* Split a single (very long) row. */ int w2 = w1 >> 1; ++cdev->driver_call_nesting; { code = clist_copy_color(dev, row, dx, raster, gx_no_bitmap_id, rx, re.y, w2, 1); if (code >= 0) code = clist_copy_color(dev, row, dx + w2, raster, gx_no_bitmap_id, rx + w2, re.y, w1 - w2, 1); } --cdev->driver_call_nesting; if (code < 0 && SET_BAND_CODE(code)) goto error_in_rect; continue; } } op += compress; if (dx) { *dp++ = cmd_count_op(cmd_opv_set_misc, 2); *dp++ = cmd_set_misc_data_x + dx; } *dp++ = cmd_count_op(op, csize); cmd_put2w(rx, re.y, dp); cmd_put2w(w1, re.height, dp); re.pcls->rect = rect; } continue; error_in_rect: if (!(cdev->error_is_retryable && cdev->driver_call_nesting == 0 && SET_BAND_CODE(clist_VMerror_recover_flush(cdev, re.band_code)) >= 0)) return re.band_code; re.y -= re.height; } while ((re.y += re.height) < re.yend); return 0; } int clist_copy_alpha(gx_device * dev, const byte * data, int data_x, int raster, gx_bitmap_id id, int rx, int ry, int rwidth, int rheight, gx_color_index color, int depth) { gx_device_clist_writer * const cdev = &((gx_device_clist *)dev)->writer; /* I don't like copying the entire body of clist_copy_color */ /* just to change 2 arguments and 1 opcode, */ /* but I don't see any alternative that doesn't require */ /* another level of procedure call even in the common case. */ int log2_depth = ilog2(depth); int y0; int data_x_bit; cmd_rects_enum_t re; /* If the target can't perform copy_alpha, exit now */ if (depth > 1 && (cdev->disable_mask & clist_disable_copy_alpha) != 0) return_error(gs_error_unknownerror); fit_copy(dev, data, data_x, raster, id, rx, ry, rwidth, rheight); y0 = ry; data_x_bit = data_x << log2_depth; if (cdev->permanent_error < 0) return (cdev->permanent_error); RECT_ENUM_INIT(re, ry, rheight); do { int dx = (data_x_bit & 7) >> log2_depth; int w1 = dx + rwidth; const byte *row = data + (re.y - y0) * raster + (data_x_bit >> 3); int code; RECT_STEP_INIT(re); re.pcls->colors_used.or |= color; do { code = cmd_disable_lop(cdev, re.pcls); if (code >= 0) code = cmd_disable_clip(cdev, re.pcls); } while (RECT_RECOVER(code)); if (code < 0 && SET_BAND_CODE(code)) goto error_in_rect; if (!re.pcls->color_is_alpha) { byte *dp; do { code = set_cmd_put_op(dp, cdev, re.pcls, cmd_opv_set_copy_alpha, 1); } while (RECT_RECOVER(code)); if (code < 0 && SET_BAND_CODE(code)) goto error_in_rect; re.pcls->color_is_alpha = 1; } if (color != re.pcls->colors[1]) { do { code = cmd_set_color1(cdev, re.pcls, color); } while (RECT_RECOVER(code)); if (code < 0 && SET_BAND_CODE(code)) goto error_in_rect; } copy:{ gx_cmd_rect rect; int rsize; byte op = (byte) cmd_op_copy_color_alpha; byte *dp; uint csize; uint compress; rect.x = rx, rect.y = re.y; rect.width = w1, rect.height = re.height; rsize = (dx ? 4 : 2) + cmd_size_rect(&rect); do { code = cmd_put_bits(cdev, re.pcls, row, w1 << log2_depth, re.height, raster, rsize, 1 << cmd_compress_rle, &dp, &csize); } while (RECT_RECOVER(code)); if (code < 0 && !(code == gs_error_limitcheck) && SET_BAND_CODE(code)) goto error_in_rect; compress = (uint)code; if (code < 0) { /* The bitmap was too large; split up the transfer. */ if (re.height > 1) { /* Split the transfer by reducing the height. * See the comment above FOR_RECTS in gxcldev.h. */ re.height >>= 1; goto copy; } else { /* Split a single (very long) row. */ int w2 = w1 >> 1; ++cdev->driver_call_nesting; { code = clist_copy_alpha(dev, row, dx, raster, gx_no_bitmap_id, rx, re.y, w2, 1, color, depth); if (code >= 0) code = clist_copy_alpha(dev, row, dx + w2, raster, gx_no_bitmap_id, rx + w2, re.y, w1 - w2, 1, color, depth); } --cdev->driver_call_nesting; if (code < 0 && SET_BAND_CODE(code)) goto error_in_rect; continue; } } op += compress; if (dx) { *dp++ = cmd_count_op(cmd_opv_set_misc, 2); *dp++ = cmd_set_misc_data_x + dx; } *dp++ = cmd_count_op(op, csize); *dp++ = depth; cmd_put2w(rx, re.y, dp); cmd_put2w(w1, re.height, dp); re.pcls->rect = rect; } continue; error_in_rect: if (!(cdev->error_is_retryable && cdev->driver_call_nesting == 0 && SET_BAND_CODE(clist_VMerror_recover_flush(cdev, re.band_code)) >= 0)) return re.band_code; re.y -= re.height; } while ((re.y += re.height) < re.yend); return 0; } int clist_strip_copy_rop(gx_device * dev, const byte * sdata, int sourcex, uint sraster, gx_bitmap_id id, const gx_color_index * scolors, const gx_strip_bitmap * textures, const gx_color_index * tcolors, int rx, int ry, int rwidth, int rheight, int phase_x, int phase_y, gs_logical_operation_t lop) { gx_device_clist_writer * const cdev = &((gx_device_clist *)dev)->writer; gs_rop3_t rop = lop_rop(lop); gx_strip_bitmap tile_with_id; const gx_strip_bitmap *tiles = textures; int y0; /* Compute the set of possible colors that this operation can generate. */ gx_color_index all = ((gx_color_index)1 << dev->color_info.depth) - 1; bool subtractive = dev->color_info.num_components == 4; /****** HACK ******/ gx_color_index S = (scolors ? scolors[0] | scolors[1] : sdata ? all : 0); gx_color_index T = (tcolors ? tcolors[0] | tcolors[1] : textures ? all : 0); gs_rop3_t color_rop = (subtractive ? byte_reverse_bits[rop ^ 0xff] : rop); bool slow_rop; cmd_rects_enum_t re; if (scolors != 0 && scolors[0] != scolors[1]) { fit_fill(dev, rx, ry, rwidth, rheight); } else { fit_copy(dev, sdata, sourcex, sraster, id, rx, ry, rwidth, rheight); } /* * On CMYK devices, RasterOps must be executed with complete pixels * if the operation involves the destination. * This is because the black plane interacts with the other planes * in the conversion between RGB and CMYK. Check for this now. */ { gs_rop3_t rop_used = rop; if (scolors && (scolors[0] == scolors[1])) rop_used = (scolors[0] == gx_device_black(dev) ? rop3_know_S_0(rop_used) : scolors[0] == gx_device_white(dev) ? rop3_know_S_1(rop_used) : rop_used); if (tcolors && (tcolors[0] == tcolors[1])) rop_used = (tcolors[0] == gx_device_black(dev) ? rop3_know_T_0(rop_used) : tcolors[0] == gx_device_white(dev) ? rop3_know_T_1(rop_used) : rop_used); slow_rop = !(rop == rop3_0 || rop == rop3_1 || rop == rop3_S || rop == rop3_T); } y0 = ry; if (cdev->permanent_error < 0) return (cdev->permanent_error); RECT_ENUM_INIT(re, ry, rheight); do { const byte *row = sdata + (re.y - y0) * sraster; gx_color_index D; int code; RECT_STEP_INIT(re); D = re.pcls->colors_used.or; /* Reducing D, S, T to rop_operand (which apparently is 32 bit) appears safe due to 'all' a has smaller snumber of significant bits. */ re.pcls->colors_used.or = ((rop_proc_table[color_rop])((rop_operand)D, (rop_operand)S, (rop_operand)T) & all) | D; re.pcls->colors_used.slow_rop |= slow_rop; re.pcls->band_complexity.nontrivial_rops |= slow_rop; if (rop3_uses_T(rop)) { if (tcolors == 0 || tcolors[0] != tcolors[1]) { ulong offset_temp; if (!cls_has_tile_id(cdev, re.pcls, tiles->id, offset_temp)) { /* Change tile. If there is no id, generate one. */ if (tiles->id == gx_no_bitmap_id) { tile_with_id = *tiles; tile_with_id.id = gs_next_ids(dev->memory, 1); tiles = &tile_with_id; } do { code = clist_change_tile(cdev, re.pcls, tiles, (tcolors != 0 ? 1 : dev->color_info.depth)); } while (RECT_RECOVER(code)); if (code < 0 && !(code == gs_error_limitcheck) && SET_BAND_CODE(code)) goto error_in_rect; if (code < 0) { /* * The error is a limitcheck: we have a tile that * is too big to fit in the command reading buffer. * For now, just divide up the transfer into scan * lines. (If a single scan line won't fit, punt.) * Eventually, we'll need a way to transfer the tile * in pieces. */ uint rep_height = tiles->rep_height; gs_id ids; gx_strip_bitmap line_tile; int iy; if (rep_height == 1 || /****** CAN'T HANDLE SHIFT YET ******/ tiles->rep_shift != 0 ) return code; /* * Allocate enough fake IDs, since the inner call on * clist_strip_copy_rop will need them anyway. */ ids = gs_next_ids(dev->memory, min(re.height, rep_height)); line_tile = *tiles; line_tile.size.y = 1; line_tile.rep_height = 1; for (iy = 0; iy < re.height; ++iy) { line_tile.data = tiles->data + line_tile.raster * ((re.y + iy + phase_y) % rep_height); line_tile.id = ids + (iy % rep_height); /* * Note that since we're only transferring * a single scan line, phase_y is irrelevant; * we may as well use the current tile phase * so we don't have to write extra commands. */ ++cdev->driver_call_nesting; { code = clist_strip_copy_rop(dev, (sdata == 0 ? 0 : row + iy * sraster), sourcex, sraster, gx_no_bitmap_id, scolors, &line_tile, tcolors, rx, re.y + iy, rwidth, 1, phase_x, re.pcls->tile_phase.y, lop); } --cdev->driver_call_nesting; if (code < 0 && SET_BAND_CODE(code)) goto error_in_rect; } continue; } if (phase_x != re.pcls->tile_phase.x || phase_y != re.pcls->tile_phase.y ) { do { code = cmd_set_tile_phase(cdev, re.pcls, phase_x, phase_y); } while (RECT_RECOVER(code)); if (code < 0 && SET_BAND_CODE(code)) goto error_in_rect; } } } /* Set the tile colors. */ do { code = (tcolors != 0 ? cmd_set_tile_colors(cdev, re.pcls, tcolors[0], tcolors[1]) : cmd_set_tile_colors(cdev, re.pcls, gx_no_color_index, gx_no_color_index)); } while (RECT_RECOVER(code)); if (code < 0 && SET_BAND_CODE(code)) goto error_in_rect; } do { code = 0; if (lop != re.pcls->lop) code = cmd_set_lop(cdev, re.pcls, lop); if (code >= 0) code = cmd_enable_lop(cdev, re.pcls); } while (RECT_RECOVER(code)); if (code < 0 && SET_BAND_CODE(code)) goto error_in_rect; /* Set lop_enabled to -1 so that fill_rectangle / copy_* */ /* won't attempt to set it to 0. */ re.pcls->lop_enabled = -1; ++cdev->driver_call_nesting; { if (scolors != 0) { if (scolors[0] == scolors[1]) code = clist_fill_rectangle(dev, rx, re.y, rwidth, re.height, scolors[1]); else code = clist_copy_mono(dev, row, sourcex, sraster, id, rx, re.y, rwidth, re.height, scolors[0], scolors[1]); } else code = clist_copy_color(dev, row, sourcex, sraster, id, rx, re.y, rwidth, re.height); } --cdev->driver_call_nesting; re.pcls->lop_enabled = 1; if (code < 0 && SET_BAND_CODE(code)) goto error_in_rect; continue; error_in_rect: if (!(cdev->error_is_retryable && cdev->driver_call_nesting == 0 && SET_BAND_CODE(clist_VMerror_recover_flush(cdev, re.band_code)) >= 0)) return re.band_code; re.y -= re.height; } while ((re.y += re.height) < re.yend); return 0; }