1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932
|
/* Copyright (C) 2001-2012 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 the license contained in the file LICENSE in this distribution.
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.
*/
/* Implementation of (path-based) clipping */
#include "gx.h"
#include "gxdevice.h"
#include "gxclip.h"
#include "gxpath.h"
#include "gxcpath.h"
#include "gzcpath.h"
/* Define whether to look for vertical clipping regions. */
#define CHECK_VERTICAL_CLIPPING
/* ------ Rectangle list clipper ------ */
/* Device for clipping with a region. */
/* We forward non-drawing operations, but we must be sure to intercept */
/* all drawing operations. */
static dev_proc_open_device(clip_open);
static dev_proc_fill_rectangle(clip_fill_rectangle);
static dev_proc_fill_rectangle_hl_color(clip_fill_rectangle_hl_color);
static dev_proc_copy_mono(clip_copy_mono);
static dev_proc_copy_planes(clip_copy_planes);
static dev_proc_copy_color(clip_copy_color);
static dev_proc_copy_alpha(clip_copy_alpha);
static dev_proc_copy_alpha_hl_color(clip_copy_alpha_hl_color);
static dev_proc_fill_mask(clip_fill_mask);
static dev_proc_strip_tile_rectangle(clip_strip_tile_rectangle);
static dev_proc_strip_tile_rect_devn(clip_strip_tile_rect_devn);
static dev_proc_strip_copy_rop(clip_strip_copy_rop);
static dev_proc_strip_copy_rop2(clip_strip_copy_rop2);
static dev_proc_get_clipping_box(clip_get_clipping_box);
static dev_proc_get_bits_rectangle(clip_get_bits_rectangle);
static dev_proc_fill_path(clip_fill_path);
/* The device descriptor. */
static const gx_device_clip gs_clip_device =
{std_device_std_body(gx_device_clip, 0, "clipper",
0, 0, 1, 1),
{clip_open,
gx_forward_get_initial_matrix,
gx_default_sync_output,
gx_default_output_page,
gx_default_close_device,
gx_forward_map_rgb_color,
gx_forward_map_color_rgb,
clip_fill_rectangle,
gx_default_tile_rectangle,
clip_copy_mono,
clip_copy_color,
gx_default_draw_line,
gx_default_get_bits,
gx_forward_get_params,
gx_forward_put_params,
gx_forward_map_cmyk_color,
gx_forward_get_xfont_procs,
gx_forward_get_xfont_device,
gx_forward_map_rgb_alpha_color,
gx_forward_get_page_device,
gx_forward_get_alpha_bits,
clip_copy_alpha,
gx_forward_get_band,
gx_default_copy_rop,
clip_fill_path,
gx_default_stroke_path,
clip_fill_mask,
gx_default_fill_trapezoid,
gx_default_fill_parallelogram,
gx_default_fill_triangle,
gx_default_draw_thin_line,
gx_default_begin_image,
gx_default_image_data,
gx_default_end_image,
clip_strip_tile_rectangle,
clip_strip_copy_rop,
clip_get_clipping_box,
gx_default_begin_typed_image,
clip_get_bits_rectangle,
gx_forward_map_color_rgb_alpha,
gx_forward_create_compositor,
gx_forward_get_hardware_params,
gx_default_text_begin,
gx_default_finish_copydevice,
NULL, /* begin_transparency_group */
NULL, /* end_transparency_group */
NULL, /* begin_transparency_mask */
NULL, /* end_transparency_mask */
NULL, /* discard_transparency_layer */
gx_forward_get_color_mapping_procs,
gx_forward_get_color_comp_index,
gx_forward_encode_color,
gx_forward_decode_color,
NULL,
clip_fill_rectangle_hl_color,
gx_forward_include_color_space,
gx_default_fill_linear_color_scanline,
gx_default_fill_linear_color_trapezoid,
gx_default_fill_linear_color_triangle,
gx_forward_update_spot_equivalent_colors,
gx_forward_ret_devn_params,
gx_forward_fillpage,
NULL, /* push_transparency_state */
NULL, /* pop_transparency_state */
NULL, /* put_image */
gx_forward_dev_spec_op,
clip_copy_planes, /* copy planes */
gx_forward_get_profile,
gx_forward_set_graphics_type_tag,
clip_strip_copy_rop2,
clip_strip_tile_rect_devn,
clip_copy_alpha_hl_color
}
};
/* Make a clipping device. */
void
gx_make_clip_device_on_stack(gx_device_clip * dev, const gx_clip_path *pcpath, gx_device *target)
{
gx_device_init((gx_device *)dev, (const gx_device *)&gs_clip_device, NULL, true);
dev->list = *gx_cpath_list(pcpath);
dev->translation.x = 0;
dev->translation.y = 0;
dev->HWResolution[0] = target->HWResolution[0];
dev->HWResolution[1] = target->HWResolution[1];
dev->sgr = target->sgr;
dev->target = target;
dev->graphics_type_tag = target->graphics_type_tag; /* initialize to same as target */
/* There is no finalization for device on stack so no rc increment */
(*dev_proc(dev, open_device)) ((gx_device *)dev);
}
gx_device *
gx_make_clip_device_on_stack_if_needed(gx_device_clip * dev, const gx_clip_path *pcpath, gx_device *target, gs_fixed_rect *rect)
{
/* Reduce area if possible */
if (rect->p.x < pcpath->outer_box.p.x)
rect->p.x = pcpath->outer_box.p.x;
if (rect->q.x > pcpath->outer_box.q.x)
rect->q.x = pcpath->outer_box.q.x;
if (rect->p.y < pcpath->outer_box.p.y)
rect->p.y = pcpath->outer_box.p.y;
if (rect->q.y > pcpath->outer_box.q.y)
rect->q.y = pcpath->outer_box.q.y;
if (pcpath->inner_box.p.x <= rect->p.x && pcpath->inner_box.p.y <= rect->p.y &&
pcpath->inner_box.q.x >= rect->q.x && pcpath->inner_box.q.y >= rect->q.y)
{
/* Area is trivially included. No need for clip. */
return target;
}
else
{
/* Check for area being trivially clipped away. */
if (rect->p.x >= rect->q.x || rect->p.y >= rect->q.y)
return NULL;
}
gx_device_init((gx_device *)dev, (const gx_device *)&gs_clip_device, NULL, true);
dev->list = *gx_cpath_list(pcpath);
dev->translation.x = 0;
dev->translation.y = 0;
dev->HWResolution[0] = target->HWResolution[0];
dev->HWResolution[1] = target->HWResolution[1];
dev->sgr = target->sgr;
dev->target = target;
dev->graphics_type_tag = target->graphics_type_tag; /* initialize to same as target */
/* There is no finalization for device on stack so no rc increment */
(*dev_proc(dev, open_device)) ((gx_device *)dev);
return (gx_device *)dev;
}
void
gx_make_clip_device_in_heap(gx_device_clip * dev, const gx_clip_path *pcpath, gx_device *target,
gs_memory_t *mem)
{
gx_device_init((gx_device *)dev, (const gx_device *)&gs_clip_device, mem, true);
dev->list = *gx_cpath_list(pcpath);
dev->translation.x = 0;
dev->translation.y = 0;
dev->HWResolution[0] = target->HWResolution[0];
dev->HWResolution[1] = target->HWResolution[1];
dev->sgr = target->sgr;
gx_device_set_target((gx_device_forward *)dev, target);
gx_device_retain((gx_device *)dev, true); /* will free explicitly */
(*dev_proc(dev, open_device)) ((gx_device *)dev);
}
/* Define debugging statistics for the clipping loops. */
#ifdef DEBUG
struct stats_clip_s {
long
loops, out, in_y, in, in1, down, up, x, no_x;
} stats_clip;
static const uint clip_interval = 10000;
# define INCR(v) (++(stats_clip.v))
# define INCR_THEN(v, e) (INCR(v), (e))
#else
# define INCR(v) DO_NOTHING
# define INCR_THEN(v, e) (e)
#endif
/*
* Enumerate the rectangles of the x,w,y,h argument that fall within
* the clipping region.
*/
static int
clip_enumerate_rest(gx_device_clip * rdev,
int x, int y, int xe, int ye,
int (*process)(clip_callback_data_t * pccd,
int xc, int yc, int xec, int yec),
clip_callback_data_t * pccd)
{
gx_clip_rect *rptr = rdev->current; /* const within algorithm */
int yc;
int code;
#ifdef DEBUG
if (INCR(loops) % clip_interval == 0 && gs_debug_c('q')) {
dprintf5("[q]loops=%ld out=%ld in_y=%ld in=%ld in1=%ld\n",
stats_clip.loops, stats_clip.out, stats_clip.in,
stats_clip.in_y, stats_clip.in1);
dprintf4("[q] down=%ld up=%ld x=%ld no_x=%ld\n",
stats_clip.down, stats_clip.up, stats_clip.x,
stats_clip.no_x);
}
#endif
pccd->x = x, pccd->y = y;
pccd->w = xe - x, pccd->h = ye - y;
/*
* Warp the cursor forward or backward to the first rectangle row
* that could include a given y value. Assumes rptr is set, and
* updates it. Specifically, after this loop, either rptr == 0 (if
* the y value is greater than all y values in the list), or y <
* rptr->ymax and either rptr->prev == 0 or y >= rptr->prev->ymax.
* Note that y <= rptr->ymin is possible.
*
* In the first case below, the while loop is safe because if there
* is more than one rectangle, there is a 'stopper' at the end of
* the list.
*/
if (y >= rptr->ymax) {
if ((rptr = rptr->next) != 0)
while (INCR_THEN(up, y >= rptr->ymax))
rptr = rptr->next;
} else
while (rptr->prev != 0 && y < rptr->prev->ymax)
INCR_THEN(down, rptr = rptr->prev);
if (rptr == 0 || (yc = rptr->ymin) >= ye) {
INCR(out);
if (rdev->list.count > 1)
rdev->current =
(rptr != 0 ? rptr :
y >= rdev->current->ymax ? rdev->list.tail :
rdev->list.head);
return 0;
}
rdev->current = rptr;
if (yc < y)
yc = y;
do {
const int ymax = rptr->ymax;
int yec = min(ymax, ye);
if_debug2('Q', "[Q]yc=%d yec=%d\n", yc, yec);
do {
int xc = rptr->xmin;
int xec = rptr->xmax;
if (xc < x)
xc = x;
if (xec > xe)
xec = xe;
if (xec > xc) {
clip_rect_print('Q', "match", rptr);
if_debug2('Q', "[Q]xc=%d xec=%d\n", xc, xec);
INCR(x);
/*
* Conditionally look ahead to detect unclipped vertical strips. This is
* really only valuable for 90 degree rotated images or (nearly-)vertical
* lines with convex clipping regions; if we ever change images to use
* source buffering and destination-oriented enumeration, we could probably
* take out the code here with no adverse effects.
*/
#ifdef CHECK_VERTICAL_CLIPPING
if (xec - xc == pccd->w) { /* full width */
/* Look ahead for a vertical swath. */
while ((rptr = rptr->next) != 0 &&
rptr->ymin == yec &&
rptr->ymax <= ye &&
rptr->xmin <= x &&
rptr->xmax >= xe
)
yec = rptr->ymax;
} else
rptr = rptr->next;
#else
rptr = rptr->next;
#endif
code = process(pccd, xc, yc, xec, yec);
if (code < 0)
return code;
} else {
INCR_THEN(no_x, rptr = rptr->next);
}
if (rptr == 0)
return 0;
}
while (rptr->ymax == ymax);
} while ((yc = rptr->ymin) < ye);
return 0;
}
static int
clip_enumerate(gx_device_clip * rdev, int x, int y, int w, int h,
int (*process)(clip_callback_data_t * pccd,
int xc, int yc, int xec, int yec),
clip_callback_data_t * pccd)
{
int xe, ye;
const gx_clip_rect *rptr = rdev->current;
if (w <= 0 || h <= 0)
return 0;
pccd->tdev = rdev->target;
x += rdev->translation.x;
xe = x + w;
y += rdev->translation.y;
ye = y + h;
/* Check for the region being entirely within the current rectangle. */
if (y >= rptr->ymin && ye <= rptr->ymax &&
x >= rptr->xmin && xe <= rptr->xmax
) {
pccd->x = x, pccd->y = y, pccd->w = w, pccd->h = h;
return INCR_THEN(in, process(pccd, x, y, xe, ye));
}
return clip_enumerate_rest(rdev, x, y, xe, ye, process, pccd);
}
/* Open a clipping device */
static int
clip_open(gx_device * dev)
{
gx_device_clip *const rdev = (gx_device_clip *) dev;
gx_device *tdev = rdev->target;
/* Initialize the cursor. */
rdev->current =
(rdev->list.head == 0 ? &rdev->list.single : rdev->list.head);
rdev->color_info = tdev->color_info;
rdev->cached_colors = tdev->cached_colors;
rdev->width = tdev->width;
rdev->height = tdev->height;
gx_device_copy_color_procs(dev, tdev);
rdev->clipping_box_set = false;
rdev->memory = tdev->memory;
return 0;
}
/* Fill a rectangle */
int
clip_call_fill_rectangle(clip_callback_data_t * pccd, int xc, int yc, int xec, int yec)
{
return (*dev_proc(pccd->tdev, fill_rectangle))
(pccd->tdev, xc, yc, xec - xc, yec - yc, pccd->color[0]);
}
static int
clip_fill_rectangle(gx_device * dev, int x, int y, int w, int h,
gx_color_index color)
{
gx_device_clip *rdev = (gx_device_clip *) dev;
clip_callback_data_t ccdata;
/* We handle the fastest cases in-line here. */
gx_device *tdev = rdev->target;
/*const*/ gx_clip_rect *rptr = rdev->current;
int xe, ye;
if (w <= 0 || h <= 0)
return 0;
x += rdev->translation.x;
xe = x + w;
y += rdev->translation.y;
ye = y + h;
/* We open-code the most common cases here. */
if ((y >= rptr->ymin && ye <= rptr->ymax) ||
((rptr = rptr->next) != 0 &&
y >= rptr->ymin && ye <= rptr->ymax)
) {
rdev->current = rptr; /* may be redundant, but awkward to avoid */
INCR(in_y);
if (x >= rptr->xmin && xe <= rptr->xmax) {
INCR(in);
return dev_proc(tdev, fill_rectangle)(tdev, x, y, w, h, color);
}
else if ((rptr->prev == 0 || rptr->prev->ymax != rptr->ymax) &&
(rptr->next == 0 || rptr->next->ymax != rptr->ymax)
) {
INCR(in1);
if (x < rptr->xmin)
x = rptr->xmin;
if (xe > rptr->xmax)
xe = rptr->xmax;
return
(x >= xe ? 0 :
dev_proc(tdev, fill_rectangle)(tdev, x, y, xe - x, h, color));
}
}
ccdata.tdev = tdev;
ccdata.color[0] = color;
return clip_enumerate_rest(rdev, x, y, xe, ye,
clip_call_fill_rectangle, &ccdata);
}
int
clip_call_fill_rectangle_hl_color(clip_callback_data_t * pccd, int xc, int yc,
int xec, int yec)
{
gs_fixed_rect rect;
rect.p.x = xc;
rect.p.y = yc;
rect.q.x = xec;
rect.q.y = yec;
return (*dev_proc(pccd->tdev, fill_rectangle_hl_color))
(pccd->tdev, &rect, pccd->pis, pccd->pdcolor, pccd->pcpath);
}
static int
clip_fill_rectangle_hl_color(gx_device *dev, const gs_fixed_rect *rect,
const gs_imager_state *pis, const gx_drawing_color *pdcolor,
const gx_clip_path *pcpath)
{
gx_device_clip *rdev = (gx_device_clip *) dev;
clip_callback_data_t ccdata;
gx_device *tdev = rdev->target;
gx_clip_rect *rptr = rdev->current;
int xe, ye;
int w, h, x, y;
gs_fixed_rect newrect;
x = rect->p.x;
y = rect->p.y;
w = rect->q.x - rect->p.x;
h = rect->q.y - rect->p.y;
if (w <= 0 || h <= 0)
return 0;
x += rdev->translation.x;
xe = x + w;
y += rdev->translation.y;
ye = y + h;
/* We open-code the most common cases here. */
if ((y >= rptr->ymin && ye <= rptr->ymax) ||
((rptr = rptr->next) != 0 &&
y >= rptr->ymin && ye <= rptr->ymax)
) {
rdev->current = rptr; /* may be redundant, but awkward to avoid */
INCR(in_y);
if (x >= rptr->xmin && xe <= rptr->xmax) {
INCR(in);
newrect.p.x = x;
newrect.p.y = y;
newrect.q.x = x + w;
newrect.q.y = y + h;
return dev_proc(tdev, fill_rectangle_hl_color)(tdev, &newrect, pis,
pdcolor, pcpath);
}
else if ((rptr->prev == 0 || rptr->prev->ymax != rptr->ymax) &&
(rptr->next == 0 || rptr->next->ymax != rptr->ymax)
) {
INCR(in1);
if (x < rptr->xmin)
x = rptr->xmin;
if (xe > rptr->xmax)
xe = rptr->xmax;
if (x >= xe)
return 0;
else {
newrect.p.x = x;
newrect.p.y = y;
newrect.q.x = xe;
newrect.q.y = y + h;
return dev_proc(tdev, fill_rectangle_hl_color)(tdev, &newrect, pis,
pdcolor, pcpath);
}
}
}
ccdata.tdev = tdev;
ccdata.pdcolor = pdcolor;
ccdata.pis = pis;
ccdata.pcpath = pcpath;
return clip_enumerate_rest(rdev, x, y, xe, ye,
clip_call_fill_rectangle_hl_color, &ccdata);
}
/* Copy a monochrome rectangle */
int
clip_call_copy_mono(clip_callback_data_t * pccd, int xc, int yc, int xec, int yec)
{
return (*dev_proc(pccd->tdev, copy_mono))
(pccd->tdev, pccd->data + (yc - pccd->y) * pccd->raster,
pccd->sourcex + xc - pccd->x, pccd->raster, gx_no_bitmap_id,
xc, yc, xec - xc, yec - yc, pccd->color[0], pccd->color[1]);
}
static int
clip_copy_mono(gx_device * dev,
const byte * data, int sourcex, int raster, gx_bitmap_id id,
int x, int y, int w, int h,
gx_color_index color0, gx_color_index color1)
{
gx_device_clip *rdev = (gx_device_clip *) dev;
clip_callback_data_t ccdata;
/* We handle the fastest case in-line here. */
gx_device *tdev = rdev->target;
const gx_clip_rect *rptr = rdev->current;
int xe, ye;
if (w <= 0 || h <= 0)
return 0;
x += rdev->translation.x;
xe = x + w;
y += rdev->translation.y;
ye = y + h;
if (y >= rptr->ymin && ye <= rptr->ymax) {
INCR(in_y);
if (x >= rptr->xmin && xe <= rptr->xmax) {
INCR(in);
return dev_proc(tdev, copy_mono)
(tdev, data, sourcex, raster, id, x, y, w, h, color0, color1);
}
}
ccdata.tdev = tdev;
ccdata.data = data, ccdata.sourcex = sourcex, ccdata.raster = raster;
ccdata.color[0] = color0, ccdata.color[1] = color1;
return clip_enumerate_rest(rdev, x, y, xe, ye,
clip_call_copy_mono, &ccdata);
}
/* Copy a plane */
int
clip_call_copy_planes(clip_callback_data_t * pccd, int xc, int yc, int xec, int yec)
{
return (*dev_proc(pccd->tdev, copy_planes))
(pccd->tdev, pccd->data + (yc - pccd->y) * pccd->raster,
pccd->sourcex + xc - pccd->x, pccd->raster, gx_no_bitmap_id,
xc, yc, xec - xc, yec - yc, pccd->plane_height);
}
static int
clip_copy_planes(gx_device * dev,
const byte * data, int sourcex, int raster, gx_bitmap_id id,
int x, int y, int w, int h, int plane_height)
{
gx_device_clip *rdev = (gx_device_clip *) dev;
clip_callback_data_t ccdata;
/* We handle the fastest case in-line here. */
gx_device *tdev = rdev->target;
const gx_clip_rect *rptr = rdev->current;
int xe, ye;
if (w <= 0 || h <= 0)
return 0;
x += rdev->translation.x;
xe = x + w;
y += rdev->translation.y;
ye = y + h;
if (y >= rptr->ymin && ye <= rptr->ymax) {
INCR(in_y);
if (x >= rptr->xmin && xe <= rptr->xmax) {
INCR(in);
return dev_proc(tdev, copy_planes)
(tdev, data, sourcex, raster, id, x, y, w, h, plane_height);
}
}
ccdata.tdev = tdev;
ccdata.data = data, ccdata.sourcex = sourcex, ccdata.raster = raster;
ccdata.plane_height = plane_height;
return clip_enumerate_rest(rdev, x, y, xe, ye,
clip_call_copy_planes, &ccdata);
}
/* Copy a color rectangle */
int
clip_call_copy_color(clip_callback_data_t * pccd, int xc, int yc, int xec, int yec)
{
return (*dev_proc(pccd->tdev, copy_color))
(pccd->tdev, pccd->data + (yc - pccd->y) * pccd->raster,
pccd->sourcex + xc - pccd->x, pccd->raster, gx_no_bitmap_id,
xc, yc, xec - xc, yec - yc);
}
static int
clip_copy_color(gx_device * dev,
const byte * data, int sourcex, int raster, gx_bitmap_id id,
int x, int y, int w, int h)
{
gx_device_clip *rdev = (gx_device_clip *) dev;
clip_callback_data_t ccdata;
ccdata.data = data, ccdata.sourcex = sourcex, ccdata.raster = raster;
return clip_enumerate(rdev, x, y, w, h, clip_call_copy_color, &ccdata);
}
/* Copy a rectangle with alpha */
int
clip_call_copy_alpha(clip_callback_data_t * pccd, int xc, int yc, int xec, int yec)
{
return (*dev_proc(pccd->tdev, copy_alpha))
(pccd->tdev, pccd->data + (yc - pccd->y) * pccd->raster,
pccd->sourcex + xc - pccd->x, pccd->raster, gx_no_bitmap_id,
xc, yc, xec - xc, yec - yc, pccd->color[0], pccd->depth);
}
static int
clip_copy_alpha(gx_device * dev,
const byte * data, int sourcex, int raster, gx_bitmap_id id,
int x, int y, int w, int h,
gx_color_index color, int depth)
{
gx_device_clip *rdev = (gx_device_clip *) dev;
clip_callback_data_t ccdata;
ccdata.data = data, ccdata.sourcex = sourcex, ccdata.raster = raster;
ccdata.color[0] = color, ccdata.depth = depth;
return clip_enumerate(rdev, x, y, w, h, clip_call_copy_alpha, &ccdata);
}
int
clip_call_copy_alpha_hl_color(clip_callback_data_t * pccd, int xc, int yc,
int xec, int yec)
{
return (*dev_proc(pccd->tdev, copy_alpha_hl_color))
(pccd->tdev, pccd->data + (yc - pccd->y) * pccd->raster,
pccd->sourcex + xc - pccd->x, pccd->raster, gx_no_bitmap_id,
xc, yc, xec - xc, yec - yc, pccd->pdcolor, pccd->depth);
}
static int
clip_copy_alpha_hl_color(gx_device * dev,
const byte * data, int sourcex, int raster, gx_bitmap_id id,
int x, int y, int w, int h,
const gx_drawing_color *pdcolor, int depth)
{
gx_device_clip *rdev = (gx_device_clip *) dev;
clip_callback_data_t ccdata;
ccdata.data = data, ccdata.sourcex = sourcex, ccdata.raster = raster;
ccdata.pdcolor = pdcolor, ccdata.depth = depth;
return clip_enumerate(rdev, x, y, w, h, clip_call_copy_alpha_hl_color, &ccdata);
}
/* Fill a region defined by a mask. */
int
clip_call_fill_mask(clip_callback_data_t * pccd, int xc, int yc, int xec, int yec)
{
return (*dev_proc(pccd->tdev, fill_mask))
(pccd->tdev, pccd->data + (yc - pccd->y) * pccd->raster,
pccd->sourcex + xc - pccd->x, pccd->raster, gx_no_bitmap_id,
xc, yc, xec - xc, yec - yc, pccd->pdcolor, pccd->depth,
pccd->lop, NULL);
}
static int
clip_fill_mask(gx_device * dev,
const byte * data, int sourcex, int raster, gx_bitmap_id id,
int x, int y, int w, int h,
const gx_drawing_color * pdcolor, int depth,
gs_logical_operation_t lop, const gx_clip_path * pcpath)
{
gx_device_clip *rdev = (gx_device_clip *) dev;
clip_callback_data_t ccdata;
if (pcpath != 0)
return gx_default_fill_mask(dev, data, sourcex, raster, id,
x, y, w, h, pdcolor, depth, lop,
pcpath);
ccdata.data = data, ccdata.sourcex = sourcex, ccdata.raster = raster;
ccdata.pdcolor = pdcolor, ccdata.depth = depth, ccdata.lop = lop;
return clip_enumerate(rdev, x, y, w, h, clip_call_fill_mask, &ccdata);
}
/* Strip-tile a rectangle with devn colors. */
int
clip_call_strip_tile_rect_devn(clip_callback_data_t * pccd, int xc, int yc, int xec, int yec)
{
return (*dev_proc(pccd->tdev, strip_tile_rect_devn))
(pccd->tdev, pccd->tiles, xc, yc, xec - xc, yec - yc,
pccd->pdc[0], pccd->pdc[1], pccd->phase.x, pccd->phase.y);
}
static int
clip_strip_tile_rect_devn(gx_device * dev, const gx_strip_bitmap * tiles,
int x, int y, int w, int h,
const gx_drawing_color *pdcolor0,
const gx_drawing_color *pdcolor1, int phase_x,
int phase_y)
{
gx_device_clip *rdev = (gx_device_clip *) dev;
clip_callback_data_t ccdata;
ccdata.tiles = tiles;
ccdata.pdc[0] = pdcolor0;
ccdata.pdc[1] = pdcolor1;
ccdata.phase.x = phase_x, ccdata.phase.y = phase_y;
return clip_enumerate(rdev, x, y, w, h, clip_call_strip_tile_rect_devn, &ccdata);
}
/* Strip-tile a rectangle. */
int
clip_call_strip_tile_rectangle(clip_callback_data_t * pccd, int xc, int yc, int xec, int yec)
{
return (*dev_proc(pccd->tdev, strip_tile_rectangle))
(pccd->tdev, pccd->tiles, xc, yc, xec - xc, yec - yc,
pccd->color[0], pccd->color[1], pccd->phase.x, pccd->phase.y);
}
static int
clip_strip_tile_rectangle(gx_device * dev, const gx_strip_bitmap * tiles,
int x, int y, int w, int h,
gx_color_index color0, gx_color_index color1, int phase_x, int phase_y)
{
gx_device_clip *rdev = (gx_device_clip *) dev;
clip_callback_data_t ccdata;
ccdata.tiles = tiles;
ccdata.color[0] = color0, ccdata.color[1] = color1;
ccdata.phase.x = phase_x, ccdata.phase.y = phase_y;
return clip_enumerate(rdev, x, y, w, h, clip_call_strip_tile_rectangle, &ccdata);
}
/* Copy a rectangle with RasterOp and strip texture. */
int
clip_call_strip_copy_rop(clip_callback_data_t * pccd, int xc, int yc, int xec, int yec)
{
return (*dev_proc(pccd->tdev, strip_copy_rop))
(pccd->tdev, pccd->data + (yc - pccd->y) * pccd->raster,
pccd->sourcex + xc - pccd->x, pccd->raster, gx_no_bitmap_id,
pccd->scolors, pccd->textures, pccd->tcolors,
xc, yc, xec - xc, yec - yc, pccd->phase.x, pccd->phase.y,
pccd->lop);
}
static int
clip_strip_copy_rop(gx_device * dev,
const byte * sdata, int sourcex, uint raster, gx_bitmap_id id,
const gx_color_index * scolors,
const gx_strip_bitmap * textures, const gx_color_index * tcolors,
int x, int y, int w, int h,
int phase_x, int phase_y, gs_logical_operation_t lop)
{
gx_device_clip *rdev = (gx_device_clip *) dev;
clip_callback_data_t ccdata;
ccdata.data = sdata, ccdata.sourcex = sourcex, ccdata.raster = raster;
ccdata.scolors = scolors, ccdata.textures = textures,
ccdata.tcolors = tcolors;
ccdata.phase.x = phase_x, ccdata.phase.y = phase_y, ccdata.lop = lop;
return clip_enumerate(rdev, x, y, w, h, clip_call_strip_copy_rop, &ccdata);
}
/* Copy a rectangle with RasterOp and strip texture. */
int
clip_call_strip_copy_rop2(clip_callback_data_t * pccd, int xc, int yc, int xec, int yec)
{
return (*dev_proc(pccd->tdev, strip_copy_rop2))
(pccd->tdev, pccd->data + (yc - pccd->y) * pccd->raster,
pccd->sourcex + xc - pccd->x, pccd->raster, gx_no_bitmap_id,
pccd->scolors, pccd->textures, pccd->tcolors,
xc, yc, xec - xc, yec - yc, pccd->phase.x, pccd->phase.y,
pccd->lop, pccd->plane_height);
}
static int
clip_strip_copy_rop2(gx_device * dev,
const byte * sdata, int sourcex, uint raster, gx_bitmap_id id,
const gx_color_index * scolors,
const gx_strip_bitmap * textures, const gx_color_index * tcolors,
int x, int y, int w, int h,
int phase_x, int phase_y, gs_logical_operation_t lop,
uint planar_height)
{
gx_device_clip *rdev = (gx_device_clip *) dev;
clip_callback_data_t ccdata;
ccdata.data = sdata, ccdata.sourcex = sourcex, ccdata.raster = raster;
ccdata.scolors = scolors, ccdata.textures = textures,
ccdata.tcolors = tcolors;
ccdata.phase.x = phase_x, ccdata.phase.y = phase_y, ccdata.lop = lop;
ccdata.plane_height = planar_height;
return clip_enumerate(rdev, x, y, w, h, clip_call_strip_copy_rop2, &ccdata);
}
/* Get the (outer) clipping box, in client coordinates. */
static void
clip_get_clipping_box(gx_device * dev, gs_fixed_rect * pbox)
{
gx_device_clip *const rdev = (gx_device_clip *) dev;
if (!rdev->clipping_box_set) {
gx_device *tdev = rdev->target;
gs_fixed_rect tbox;
(*dev_proc(tdev, get_clipping_box)) (tdev, &tbox);
if (rdev->list.count != 0) {
gs_fixed_rect cbox;
if (rdev->list.count == 1) {
cbox.p.x = int2fixed(rdev->list.single.xmin);
cbox.p.y = int2fixed(rdev->list.single.ymin);
cbox.q.x = int2fixed(rdev->list.single.xmax);
cbox.q.y = int2fixed(rdev->list.single.ymax);
} else {
/* The head and tail elements are dummies.... */
cbox.p.x = int2fixed(rdev->list.xmin);
cbox.p.y = int2fixed(rdev->list.head->next->ymin);
cbox.q.x = int2fixed(rdev->list.xmax);
cbox.q.y = int2fixed(rdev->list.tail->prev->ymax);
}
rect_intersect(tbox, cbox);
}
if (rdev->translation.x | rdev->translation.y) {
fixed tx = int2fixed(rdev->translation.x),
ty = int2fixed(rdev->translation.y);
if (tbox.p.x != min_fixed)
tbox.p.x -= tx;
if (tbox.p.y != min_fixed)
tbox.p.y -= ty;
if (tbox.q.x != max_fixed)
tbox.q.x -= tx;
if (tbox.q.y != max_fixed)
tbox.q.y -= ty;
}
rdev->clipping_box = tbox;
rdev->clipping_box_set = true;
}
*pbox = rdev->clipping_box;
}
/* Get bits back from the device. */
static int
clip_get_bits_rectangle(gx_device * dev, const gs_int_rect * prect,
gs_get_bits_params_t * params, gs_int_rect ** unread)
{
gx_device_clip *rdev = (gx_device_clip *) dev;
gx_device *tdev = rdev->target;
int tx = rdev->translation.x, ty = rdev->translation.y;
gs_int_rect rect;
int code;
rect.p.x = prect->p.x - tx, rect.p.y = prect->p.y - ty;
rect.q.x = prect->q.x - tx, rect.q.y = prect->q.y - ty;
code = (*dev_proc(tdev, get_bits_rectangle))
(tdev, &rect, params, unread);
if (code > 0) {
/* Adjust unread rectangle coordinates */
gs_int_rect *list = *unread;
int i;
for (i = 0; i < code; ++list, ++i) {
list->p.x += tx, list->p.y += ty;
list->q.x += tx, list->q.y += ty;
}
}
return code;
}
static int
clip_call_fill_path(clip_callback_data_t * pccd, int xc, int yc, int xec, int yec)
{
gx_device *tdev = pccd->tdev;
dev_proc_fill_path((*proc));
int code;
gx_clip_path cpath_intersection;
gx_clip_path *pcpath = pccd->pcpath;
if (pcpath != NULL) {
gx_path rect_path;
code = gx_cpath_init_local_shared(&cpath_intersection, pcpath, pccd->ppath->memory);
if (code < 0)
return code;
gx_path_init_local(&rect_path, pccd->ppath->memory);
gx_path_add_rectangle(&rect_path, int2fixed(xc), int2fixed(yc), int2fixed(xec), int2fixed(yec));
code = gx_cpath_intersect(&cpath_intersection, &rect_path,
gx_rule_winding_number, pccd->pis);
gx_path_free(&rect_path, "clip_call_fill_path");
} else {
gs_fixed_rect clip_box;
clip_box.p.x = int2fixed(xc);
clip_box.p.y = int2fixed(yc);
clip_box.q.x = int2fixed(xec);
clip_box.q.y = int2fixed(yec);
gx_cpath_init_local(&cpath_intersection, pccd->ppath->memory);
code = gx_cpath_from_rectangle(&cpath_intersection, &clip_box);
}
if (code < 0)
return code;
proc = dev_proc(tdev, fill_path);
if (proc == NULL)
proc = gx_default_fill_path;
code = (*proc)(pccd->tdev, pccd->pis, pccd->ppath, pccd->params,
pccd->pdcolor, &cpath_intersection);
gx_cpath_free(&cpath_intersection, "clip_call_fill_path");
return code;
}
static int
clip_fill_path(gx_device * dev, const gs_imager_state * pis,
gx_path * ppath, const gx_fill_params * params,
const gx_drawing_color * pdcolor,
const gx_clip_path * pcpath)
{
gx_device_clip *rdev = (gx_device_clip *) dev;
clip_callback_data_t ccdata;
gs_fixed_rect box;
ccdata.pis = pis;
ccdata.ppath = ppath;
ccdata.params = params;
ccdata.pdcolor = pdcolor;
ccdata.pcpath = pcpath;
clip_get_clipping_box(dev, &box);
return clip_enumerate(rdev,
fixed2int(box.p.x),
fixed2int(box.p.y),
fixed2int(box.q.x - box.p.x),
fixed2int(box.q.y - box.p.y),
clip_call_fill_path, &ccdata);
}
|