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 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108
|
/* 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.
*/
/* Plane extraction device */
#include "gx.h"
#include "gserrors.h"
#include "gsbitops.h"
#include "gsrop.h" /* for logical op access */
#include "gsstruct.h"
#include "gsutil.h"
#include "gxdcolor.h"
#include "gxcmap.h" /* requires gxdcolor.h */
#include "gxdevice.h"
#include "gxdevmem.h"
#include "gxdither.h"
#include "gxgetbit.h"
#include "gxiparam.h"
#include "gxistate.h"
#include "gdevplnx.h"
/* Define the size of the locally allocated bitmap buffers. */
#define COPY_COLOR_BUF_SIZE 100
#define TILE_RECTANGLE_BUF_SIZE 100
#define COPY_ROP_SOURCE_BUF_SIZE 100
#define COPY_ROP_TEXTURE_BUF_SIZE 100
/* GC procedures */
static
ENUM_PTRS_WITH(device_plane_extract_enum_ptrs, gx_device_plane_extract *edev)
ENUM_PREFIX(st_device_forward, 1);
case 0: ENUM_RETURN(gx_device_enum_ptr(edev->target));
ENUM_PTRS_END
static RELOC_PTRS_WITH(device_plane_extract_reloc_ptrs, gx_device_plane_extract *edev)
{
RELOC_PREFIX(st_device_forward);
edev->plane_dev = gx_device_reloc_ptr(edev->plane_dev, gcst);
}
RELOC_PTRS_END
public_st_device_plane_extract();
/* Driver procedures */
static dev_proc_open_device(plane_open_device);
static dev_proc_fill_rectangle(plane_fill_rectangle);
static dev_proc_copy_mono(plane_copy_mono);
static dev_proc_copy_color(plane_copy_color);
static dev_proc_copy_alpha(plane_copy_alpha);
static dev_proc_fill_path(plane_fill_path);
static dev_proc_stroke_path(plane_stroke_path);
static dev_proc_fill_mask(plane_fill_mask);
static dev_proc_fill_parallelogram(plane_fill_parallelogram);
static dev_proc_fill_triangle(plane_fill_triangle);
static dev_proc_strip_tile_rectangle(plane_strip_tile_rectangle);
static dev_proc_strip_copy_rop(plane_strip_copy_rop);
static dev_proc_begin_typed_image(plane_begin_typed_image);
static dev_proc_get_bits_rectangle(plane_get_bits_rectangle);
/* Device prototype */
static const gx_device_plane_extract gs_plane_extract_device = {
std_device_std_body(gx_device_plane_extract, 0, "plane_extract",
0, 0, 72, 72),
{
plane_open_device,
NULL,
NULL,
NULL,
gx_default_close_device,
NULL,
NULL,
plane_fill_rectangle,
gx_default_tile_rectangle,
plane_copy_mono,
plane_copy_color,
gx_default_draw_line,
gx_default_get_bits,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
plane_copy_alpha,
NULL,
gx_default_copy_rop,
plane_fill_path,
plane_stroke_path,
plane_fill_mask,
gx_default_fill_trapezoid,
plane_fill_parallelogram,
plane_fill_triangle,
gx_default_draw_thin_line,
gx_default_begin_image,
gx_default_image_data,
gx_default_end_image,
plane_strip_tile_rectangle,
plane_strip_copy_rop,
NULL,
plane_begin_typed_image,
plane_get_bits_rectangle,
NULL,
gx_no_create_compositor, /* WRONG */
NULL,
gx_default_text_begin
},
/* device-specific members */
NULL, /* target */
NULL, /* plane_dev */
{ 0 }, /* plane */
0, /* plane_white */
0, /* plane_mask */
0, /* plane_dev_is_memory */
1 /*true*/ /* any_marks */
};
/* ---------------- Utilities ---------------- */
/* Extract the selected plane from a color (gx_color_index). */
#define COLOR_PIXEL(edev, color)\
( ((color) >> (edev)->plane.shift) & (edev)->plane_mask )
/* Do the same if the color might be transparent. */
#define TRANS_COLOR_PIXEL(edev, color)\
((color) == gx_no_color_index ? gx_no_color_index : COLOR_PIXEL(edev, color))
/*
* Reduce the drawing color to one for the selected plane.
* All we care about is whether the drawing operation should be skipped.
*/
typedef enum {
REDUCE_SKIP,
REDUCE_DRAW,
REDUCE_FAILED /* couldn't reduce */
} reduced_color_t;
#define REDUCE_PURE(edev, pixel)\
((pixel) == (edev)->plane_white && !(edev)->any_marks ? REDUCE_SKIP :\
((edev)->any_marks = true, REDUCE_DRAW))
static reduced_color_t
reduce_drawing_color(gx_device_color *ppdc, gx_device_plane_extract *edev,
const gx_drawing_color *pdevc,
gs_logical_operation_t *plop)
{
reduced_color_t reduced;
if (gx_dc_is_pure(pdevc)) {
gx_color_index pixel = COLOR_PIXEL(edev, gx_dc_pure_color(pdevc));
set_nonclient_dev_color(ppdc, pixel);
reduced = REDUCE_PURE(edev, pixel);
} else if (gx_dc_is_binary_halftone(pdevc)) {
gx_color_index pixel0 =
TRANS_COLOR_PIXEL(edev, gx_dc_binary_color0(pdevc));
gx_color_index pixel1 =
TRANS_COLOR_PIXEL(edev, gx_dc_binary_color1(pdevc));
if (pixel0 == pixel1) {
set_nonclient_dev_color(ppdc, pixel0);
reduced = REDUCE_PURE(edev, pixel0);
} else {
*ppdc = *pdevc;
ppdc->colors.binary.color[0] = pixel0;
ppdc->colors.binary.color[1] = pixel1;
edev->any_marks = true;
reduced = REDUCE_DRAW;
}
} else if (color_is_colored_halftone(pdevc)) {
int plane = edev->plane.index;
int i;
*ppdc = *pdevc;
for (i = 0; i < countof(ppdc->colors.colored.c_base); ++i)
if (i != edev->plane.index) {
ppdc->colors.colored.c_base[i] = 0;
ppdc->colors.colored.c_level[i] = 0;
}
ppdc->colors.colored.plane_mask &= 1 << plane;
if (ppdc->colors.colored.c_level[plane] == 0) {
gx_devn_reduce_colored_halftone(ppdc, (gx_device *)edev);
ppdc->colors.pure = COLOR_PIXEL(edev, ppdc->colors.pure);
reduced = REDUCE_PURE(edev, gx_dc_pure_color(ppdc));
} else if (ppdc->colors.colored.alpha != gx_max_color_value)
return REDUCE_FAILED; /* can't reduce */
else {
gx_devn_reduce_colored_halftone(ppdc, (gx_device *)edev);
ppdc->colors.binary.color[0] =
COLOR_PIXEL(edev, ppdc->colors.binary.color[0]);
ppdc->colors.binary.color[1] =
COLOR_PIXEL(edev, ppdc->colors.binary.color[1]);
gx_color_load(ppdc, NULL, (gx_device *)edev);
edev->any_marks = true;
reduced = REDUCE_DRAW;
}
} else
return REDUCE_FAILED; /* can't handle it */
if (*plop & lop_T_transparent) {
/*
* If the logical operation invokes transparency for the texture, we
* must do some extra work, since a color that was originally opaque
* may become transparent (white) if reduced to a single plane. If
* RasterOp transparency were calculated before halftoning, life
* would be easy: we would simply turn off texture transparency in
* the logical operation iff the original (not reduced) color was
* not white. Unfortunately, RasterOp transparency is calculated
* after halftoning. (This is arguably wrong, but it's how we've
* defined it.) Therefore, if transparency is involved with a
* white color or a halftone that can include white, we must keep
* the entire pixel together for the RasterOp.
*/
gx_color_index white = gx_device_white((gx_device *)edev);
/*
* Given that we haven't failed, the only possible colors at this
* point are pure or binary halftone.
*/
if (gx_dc_is_pure(ppdc)) {
if (gx_dc_pure_color(pdevc) != white)
*plop &= ~lop_T_transparent;
else if (!gx_dc_is_pure(pdevc))
return REDUCE_FAILED;
} else {
if (gx_dc_binary_color0(pdevc) != white &&
gx_dc_binary_color1(pdevc) != white) {
*plop &= ~lop_T_transparent;
} else
return REDUCE_FAILED;
}
}
return reduced;
}
/*
* Set up to create the plane-extracted bitmap corresponding to a
* source or halftone pixmap. If the bitmap doesn't fit in the locally
* allocated buffer, we may either do the operation in pieces, or allocate
* a buffer on the heap. The control structure is:
* begin_tiling(&state, ...);
* do {
* extract_partial_tile(&state);
* ... process tile in buffer ...
* } while (next_tile(&state));
* end_tiling(&state);
* If partial_ok is false, there is only a single tile, so the do ... while
* is not used.
*/
typedef struct tiling_state_s {
/* Save the original operands. */
const gx_device_plane_extract *edev;
const byte *data;
int data_x;
uint raster;
int width, height;
int dest_x; /* only for copy_color, defaults to 0 */
/* Define the (aligned) buffer for doing the operation. */
struct tsb_ {
byte *data;
uint size;
uint raster;
bool on_heap;
} buffer;
/* Record the current tile available for processing. */
/* The client may read these out. */
gs_int_point offset;
gs_int_point size;
/* Record private tiling parameters. */
int per_tile_width;
} tiling_state_t;
/*
* Extract the plane's data from one subrectangle of a source tile.
*/
static inline int /* ignore the return value */
extract_partial_tile(const tiling_state_t *pts)
{
const gx_device_plane_extract * const edev = pts->edev;
bits_plane_t dest, source;
dest.data.write = pts->buffer.data + pts->offset.y * pts->buffer.raster;
dest.raster = pts->buffer.raster;
dest.depth = edev->plane.depth;
dest.x = pts->dest_x;
source.data.read = pts->data + pts->offset.y * pts->raster;
source.raster = pts->raster;
source.depth = edev->color_info.depth;
source.x = pts->data_x + pts->offset.x;
bits_extract_plane(&dest, &source, edev->plane.shift,
pts->size.x, pts->size.y);
return 0;
}
/*
* Set up to start (possibly) tiling. Return 0 if the entire tile fit,
* 1 if a partial tile fit, or a negative error code.
*/
static int
begin_tiling(tiling_state_t *pts, gx_device_plane_extract *edev,
const byte *data, int data_x, uint raster, int width, int height,
byte *local_buffer, uint buffer_size, bool partial_ok)
{
uint width_raster =
bitmap_raster(width * edev->plane_dev->color_info.depth);
uint full_size = width_raster * height;
pts->edev = edev;
pts->data = data, pts->data_x = data_x, pts->raster = raster;
pts->width = width, pts->height = height;
pts->dest_x = 0;
if (full_size <= buffer_size) {
pts->buffer.data = local_buffer;
pts->buffer.size = buffer_size;
pts->buffer.raster = width_raster;
pts->buffer.on_heap = false;
pts->size.x = width, pts->size.y = height;
} else if (partial_ok) {
pts->buffer.data = local_buffer;
pts->buffer.size = buffer_size;
pts->buffer.on_heap = false;
if (buffer_size >= width_raster) {
pts->buffer.raster = width_raster;
pts->size.x = width;
pts->size.y = buffer_size / width_raster;
} else {
pts->buffer.raster = buffer_size & -align_bitmap_mod;
pts->size.x =
pts->buffer.raster * (8 / edev->plane_dev->color_info.depth);
pts->size.y = 1;
}
} else {
pts->buffer.data =
gs_alloc_bytes(edev->memory, full_size, "begin_tiling");
if (!pts->buffer.data)
return_error(gs_error_VMerror);
pts->buffer.size = full_size;
pts->buffer.raster = width_raster;
pts->buffer.on_heap = true;
pts->size.x = width, pts->size.y = height;
}
pts->buffer.raster = width_raster;
pts->offset.x = pts->offset.y = 0;
pts->per_tile_width = pts->size.x;
return pts->buffer.size < full_size;
}
/*
* Advance to the next tile. Return true if there are more tiles to do.
*/
static bool
next_tile(tiling_state_t *pts)
{
if ((pts->offset.x += pts->size.x) >= pts->width) {
if ((pts->offset.y += pts->size.y) >= pts->height)
return false;
pts->offset.x = 0;
pts->size.x = pts->per_tile_width;
if (pts->offset.y + pts->size.y >= pts->height)
pts->size.y = pts->height - pts->offset.y;
} else if (pts->offset.x + pts->size.x >= pts->width)
pts->size.x = pts->width - pts->offset.x;
return true;
}
/*
* Finish tiling by freeing the buffer if necessary.
*/
static void
end_tiling(tiling_state_t *pts)
{
if (pts->buffer.on_heap)
gs_free_object(pts->edev->memory, pts->buffer.data, "end_tiling");
}
/* ---------------- Initialization ---------------- */
int
plane_device_init(gx_device_plane_extract *edev, gx_device *target,
gx_device *plane_dev, const gx_render_plane_t *render_plane, bool clear)
{
/* Check for compatibility of the plane specification. */
if (render_plane->depth > plane_dev->color_info.depth)
return_error(gs_error_rangecheck);
gx_device_init((gx_device *)edev,
(const gx_device *)&gs_plane_extract_device,
edev->memory, true);
check_device_separable((gx_device *)edev);
gx_device_forward_fill_in_procs((gx_device_forward *)edev);
gx_device_set_target((gx_device_forward *)edev, target);
gx_device_copy_params((gx_device *)edev, target);
edev->plane_dev = plane_dev;
edev->plane = *render_plane;
plane_open_device((gx_device *)edev);
if (clear) {
dev_proc(plane_dev, fill_rectangle)
(plane_dev, 0, 0, plane_dev->width, plane_dev->height,
edev->plane_white);
edev->any_marks = false;
}
return 0;
}
/* ---------------- Driver procedures ---------------- */
static int
plane_open_device(gx_device *dev)
{
gx_device_plane_extract * const edev = (gx_device_plane_extract *)dev;
gx_device * const plane_dev = edev->plane_dev;
int plane_depth = plane_dev->color_info.depth;
const gx_device_memory * const mdproto =
gdev_mem_device_for_bits(plane_depth);
edev->plane_white = gx_device_white(plane_dev);
edev->plane_mask = (1 << plane_depth) - 1;
edev->plane_dev_is_memory = mdproto != 0 &&
dev_proc(plane_dev, copy_color) == dev_proc(mdproto, copy_color);
/* We don't set or clear any_marks here: see ...init above. */
return 0;
}
static int
plane_fill_rectangle(gx_device *dev,
int x, int y, int w, int h, gx_color_index color)
{
gx_device_plane_extract * const edev = (gx_device_plane_extract *)dev;
gx_device * const plane_dev = edev->plane_dev;
gx_color_index pixel = COLOR_PIXEL(edev, color);
if (pixel != edev->plane_white)
edev->any_marks = true;
else if (!edev->any_marks)
return 0;
return dev_proc(plane_dev, fill_rectangle)
(plane_dev, x, y, w, h, pixel);
}
static int
plane_copy_mono(gx_device *dev,
const byte *data, int data_x, int raster, gx_bitmap_id id,
int x, int y, int w, int h,
gx_color_index color0, gx_color_index color1)
{
gx_device_plane_extract * const edev = (gx_device_plane_extract *)dev;
gx_device * const plane_dev = edev->plane_dev;
gx_color_index pixel0 = TRANS_COLOR_PIXEL(edev, color0);
gx_color_index pixel1 = TRANS_COLOR_PIXEL(edev, color1);
if (pixel0 == pixel1)
return plane_fill_rectangle(dev, x, y, w, h, color0);
if ((pixel0 == edev->plane_white || pixel0 == gx_no_color_index) &&
(pixel1 == edev->plane_white || pixel1 == gx_no_color_index)) {
/* This operation will only write white. */
if (!edev->any_marks)
return 0;
} else
edev->any_marks = true;
return dev_proc(plane_dev, copy_mono)
(plane_dev, data, data_x, raster, id, x, y, w, h, pixel0, pixel1);
}
static int
plane_copy_color(gx_device *dev,
const byte *data, int data_x, int raster, gx_bitmap_id id,
int x, int y, int w, int h)
{
gx_device_plane_extract * const edev = (gx_device_plane_extract *)dev;
gx_device * const plane_dev = edev->plane_dev;
tiling_state_t state;
long buf[COPY_COLOR_BUF_SIZE / sizeof(long)];
int code;
if (edev->plane_dev_is_memory) {
/* Reduce the source directly into the plane device. */
gx_device_memory * const mdev = (gx_device_memory *)plane_dev;
fit_copy(edev, data, data_x, raster, id, x, y, w, h);
code = begin_tiling(&state, edev, data, data_x, raster, w, h,
scan_line_base(mdev, y), max_uint, false);
if (code < 0)
return code;
state.dest_x = x;
state.buffer.raster = mdev->raster;
extract_partial_tile(&state);
end_tiling(&state);
edev->any_marks = true;
return 0;
}
code = begin_tiling(&state, edev, data, data_x, raster,
w, h, (byte *)buf, sizeof(buf), true);
if (code < 0)
return code;
do {
extract_partial_tile(&state);
code = dev_proc(plane_dev, copy_color)
(plane_dev, state.buffer.data, 0, state.buffer.raster,
gx_no_bitmap_id, x + state.offset.x, y + state.offset.y,
state.size.x, state.size.y);
} while (code >= 0 && next_tile(&state));
end_tiling(&state);
edev->any_marks = true;
return code;
}
static int
plane_copy_alpha(gx_device *dev, const byte *data, int data_x,
int raster, gx_bitmap_id id, int x, int y, int w, int h,
gx_color_index color, int depth)
{
gx_device_plane_extract * const edev = (gx_device_plane_extract *)dev;
gx_device * const plane_dev = edev->plane_dev;
gx_color_index pixel = COLOR_PIXEL(edev, color);
if (pixel != edev->plane_white)
edev->any_marks = true;
else if (!edev->any_marks)
return 0;
return dev_proc(plane_dev, copy_alpha)
(plane_dev, data, data_x, raster, id, x, y, w, h, pixel, depth);
}
static int
plane_fill_path(gx_device *dev,
const gs_imager_state *pis, gx_path *ppath,
const gx_fill_params *params,
const gx_drawing_color *pdevc, const gx_clip_path *pcpath)
{
gx_device_plane_extract * const edev = (gx_device_plane_extract *)dev;
gx_device * const plane_dev = edev->plane_dev;
gs_logical_operation_t lop_orig =
gs_current_logical_op((const gs_state *)pis);
gs_logical_operation_t lop = lop_orig;
gx_device_color dcolor;
switch (reduce_drawing_color(&dcolor, edev, pdevc, &lop)) {
case REDUCE_SKIP:
return 0;
case REDUCE_DRAW: {
gs_imager_state lopis;
const gs_imager_state *pis_draw = pis;
if (lop != lop_orig) {
lopis = *pis;
gs_set_logical_op((gs_state *)&lopis, lop);
pis_draw = &lopis;
}
return dev_proc(plane_dev, fill_path)
(plane_dev, pis_draw, ppath, params, &dcolor, pcpath);
}
default /*REDUCE_FAILED*/:
return gx_default_fill_path(dev, pis, ppath, params, pdevc, pcpath);
}
}
static int
plane_stroke_path(gx_device *dev,
const gs_imager_state *pis, gx_path *ppath,
const gx_stroke_params *params,
const gx_drawing_color *pdevc, const gx_clip_path *pcpath)
{
gx_device_plane_extract * const edev = (gx_device_plane_extract *)dev;
gx_device * const plane_dev = edev->plane_dev;
gs_logical_operation_t lop_orig =
gs_current_logical_op((const gs_state *)pis);
gs_logical_operation_t lop = lop_orig;
gx_device_color dcolor;
switch (reduce_drawing_color(&dcolor, edev, pdevc, &lop)) {
case REDUCE_SKIP:
return 0;
case REDUCE_DRAW: {
gs_imager_state lopis;
const gs_imager_state *pis_draw = pis;
if (lop != lop_orig) {
lopis = *pis;
gs_set_logical_op((gs_state *)&lopis, lop);
pis_draw = &lopis;
}
return dev_proc(plane_dev, stroke_path)
(plane_dev, pis_draw, ppath, params, &dcolor, pcpath);
}
default /*REDUCE_FAILED*/:
return gx_default_stroke_path(dev, pis, ppath, params, pdevc, pcpath);
}
}
static int
plane_fill_mask(gx_device *dev,
const byte *data, int data_x, 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_plane_extract * const edev = (gx_device_plane_extract *)dev;
gx_device * const plane_dev = edev->plane_dev;
gx_device_color dcolor;
switch (reduce_drawing_color(&dcolor, edev, pdcolor, &lop)) {
case REDUCE_SKIP:
return 0;
case REDUCE_DRAW:
return dev_proc(plane_dev, fill_mask)
(plane_dev, data, data_x, raster, gx_no_bitmap_id, x, y, w, h,
&dcolor, depth, lop, pcpath);
default /*REDUCE_FAILED*/:
return gx_default_fill_mask(dev, data, data_x, raster, gx_no_bitmap_id,
x, y, w, h, &dcolor, depth, lop, pcpath);
}
}
static int
plane_fill_parallelogram(gx_device * dev,
fixed px, fixed py, fixed ax, fixed ay, fixed bx, fixed by,
const gx_drawing_color * pdcolor, gs_logical_operation_t lop)
{
gx_device_plane_extract * const edev = (gx_device_plane_extract *)dev;
gx_device * const plane_dev = edev->plane_dev;
gx_device_color dcolor;
switch (reduce_drawing_color(&dcolor, edev, pdcolor, &lop)) {
case REDUCE_SKIP:
return 0;
case REDUCE_DRAW:
return dev_proc(plane_dev, fill_parallelogram)
(plane_dev, px, py, ax, ay, bx, by, &dcolor, lop);
default /*REDUCE_FAILED*/:
return gx_default_fill_parallelogram(dev, px, py, ax, ay, bx, by,
pdcolor, lop);
}
}
static int
plane_fill_triangle(gx_device * dev,
fixed px, fixed py, fixed ax, fixed ay, fixed bx, fixed by,
const gx_drawing_color * pdcolor, gs_logical_operation_t lop)
{
gx_device_plane_extract * const edev = (gx_device_plane_extract *)dev;
gx_device * const plane_dev = edev->plane_dev;
gx_device_color dcolor;
switch (reduce_drawing_color(&dcolor, edev, pdcolor, &lop)) {
case REDUCE_SKIP:
return 0;
case REDUCE_DRAW:
return dev_proc(plane_dev, fill_triangle)
(plane_dev, px, py, ax, ay, bx, by, &dcolor, lop);
default /*REDUCE_FAILED*/:
return gx_default_fill_triangle(dev, px, py, ax, ay, bx, by,
pdcolor, lop);
}
}
static int
plane_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_plane_extract * const edev = (gx_device_plane_extract *)dev;
gx_device * const plane_dev = edev->plane_dev;
gx_color_index pixel0 = TRANS_COLOR_PIXEL(edev, color0);
gx_color_index pixel1 = TRANS_COLOR_PIXEL(edev, color1);
if (pixel0 == pixel1) {
if (pixel0 != gx_no_color_index)
return plane_fill_rectangle(dev, x, y, w, h, color0);
/* The tile is a pixmap rather than a bitmap. */
/* We should use the default implementation if it is small.... */
{
gx_strip_bitmap plane_tile;
tiling_state_t state;
long buf[TILE_RECTANGLE_BUF_SIZE / sizeof(long)];
int code = begin_tiling(&state, edev, tiles->data, 0, tiles->raster,
tiles->size.x, tiles->size.y,
(byte *)buf, sizeof(buf), false);
if (code < 0)
return gx_default_strip_tile_rectangle(dev, tiles, x, y, w, h,
color0, color1, phase_x, phase_y);
extract_partial_tile(&state);
plane_tile = *tiles;
plane_tile.data = state.buffer.data;
plane_tile.raster = state.buffer.raster;
plane_tile.id = gx_no_bitmap_id;
code = dev_proc(plane_dev, strip_tile_rectangle)
(plane_dev, &plane_tile, x, y, w, h, pixel0, pixel1,
phase_x, phase_y);
end_tiling(&state);
edev->any_marks = true;
return code;
}
}
if ((pixel0 == edev->plane_white || pixel0 == gx_no_color_index) &&
(pixel1 == edev->plane_white || pixel1 == gx_no_color_index)) {
/* This operation will only write white. */
if (!edev->any_marks)
return 0;
} else
edev->any_marks = true;
return dev_proc(plane_dev, strip_tile_rectangle)
(plane_dev, tiles, x, y, w, h, pixel0, pixel1, phase_x, phase_y);
}
static int
plane_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 x, int y, int w, int h,
int phase_x, int phase_y, gs_logical_operation_t lop)
{
gx_device_plane_extract * const edev = (gx_device_plane_extract *)dev;
gx_device * const plane_dev = edev->plane_dev;
gs_rop3_t rop = lop_rop(lop);
struct crp_ {
gx_color_index pixels[2];
gx_color_index *colors;
tiling_state_t state;
} source, texture;
long sbuf[COPY_ROP_SOURCE_BUF_SIZE / sizeof(long)];
long tbuf[COPY_ROP_TEXTURE_BUF_SIZE / sizeof(long)];
const byte *plane_source;
uint plane_raster = 0xbaadf00d; /* Initialize against indeterminizm. */
gx_strip_bitmap plane_texture;
const gx_strip_bitmap *plane_textures = NULL;
int code;
/* We should do better than this on transparency.... */
if (lop & (lop_S_transparent | lop_T_transparent))
return gx_default_strip_copy_rop(dev, sdata, sourcex, sraster, id,
scolors, textures, tcolors,
x, y, w, h, phase_x, phase_y, lop);
if (!rop3_uses_S(rop)) {
sdata = 0;
source.colors = 0;
} else if (scolors) {
source.pixels[0] = COLOR_PIXEL(edev, scolors[0]);
source.pixels[1] = COLOR_PIXEL(edev, scolors[1]);
if (source.pixels[0] == source.pixels[1])
sdata = 0;
source.colors = source.pixels;
}
else
source.colors = 0;
if (!rop3_uses_T(rop)) {
textures = 0;
texture.colors = 0;
} else if (tcolors) {
texture.pixels[0] = COLOR_PIXEL(edev, tcolors[0]);
texture.pixels[1] = COLOR_PIXEL(edev, tcolors[1]);
if (texture.pixels[0] == texture.pixels[1])
textures = 0;
texture.colors = texture.pixels;
}
else
texture.colors = 0;
if (sdata) {
code = begin_tiling(&source.state, edev, sdata, sourcex, sraster, w, y,
(byte *)sbuf, sizeof(sbuf), true);
if (code < 0)
return gx_default_strip_copy_rop(dev, sdata, sourcex, sraster, id,
scolors, textures, tcolors,
x, y, w, h, phase_x, phase_y, lop);
plane_source = source.state.buffer.data;
plane_raster = source.state.buffer.raster;
} else
plane_source = 0;
if (textures) {
code = begin_tiling(&texture.state, edev, textures->data, 0,
textures->raster, textures->size.x,
textures->size.y, (byte *)tbuf, sizeof(tbuf),
false);
if (code < 0) {
if (plane_source)
end_tiling(&source.state);
return code;
}
plane_texture = *textures;
plane_texture.data = texture.state.buffer.data;
plane_texture.raster = texture.state.buffer.raster;
plane_textures = &plane_texture;
}
if (textures)
extract_partial_tile(&texture.state);
do {
if (sdata)
extract_partial_tile(&source.state);
code = dev_proc(plane_dev, strip_copy_rop)
(plane_dev, plane_source, sourcex, plane_raster, gx_no_bitmap_id,
source.colors, plane_textures, texture.colors,
x, y, w, h, phase_x, phase_y, lop);
} while (code >= 0 && sdata && next_tile(&source.state));
if (textures)
end_tiling(&texture.state);
if (sdata)
end_tiling(&source.state);
return code;
}
/* ---------------- Images ---------------- */
/* Define the state for image rendering. */
typedef struct plane_image_enum_s {
gx_image_enum_common;
gx_image_enum_common_t *info; /* plane device enumerator */
const gs_imager_state *pis; /* original imager state */
gs_imager_state *pis_image; /* modified imager state */
} plane_image_enum_t;
gs_private_st_suffix_add3(st_plane_image_enum, plane_image_enum_t,
"plane_image_enum_t", plane_image_enum_enum_ptrs,
plane_image_enum_reloc_ptrs, st_gx_image_enum_common, info, pis, pis_image);
/*
* Reduce drawing colors returned by color mapping. Note that these
* assume that the call of reduce_drawing_color will not fail:
* plane_begin_typed_image must ensure this.
*
* In the imager state passed to these procedures, the client data is
* the plane_image_enum_t.
*/
static void
plane_cmap_gray(frac gray, gx_device_color * pdc,
const gs_imager_state *pis_image, gx_device *dev, gs_color_select_t select)
{
const plane_image_enum_t *ppie =
(const plane_image_enum_t *)pis_image->client_data;
gx_device_plane_extract * const edev =
(gx_device_plane_extract *)ppie->dev;
gs_logical_operation_t lop = gs_current_logical_op_inline(pis_image);
gx_device_color dcolor;
gx_remap_concrete_gray(gray, &dcolor, ppie->pis,
(gx_device *)edev, select);
reduce_drawing_color(pdc, edev, &dcolor, &lop);
}
static void
plane_cmap_rgb(frac r, frac g, frac b, gx_device_color * pdc,
const gs_imager_state *pis_image, gx_device *dev, gs_color_select_t select)
{
const plane_image_enum_t *ppie =
(const plane_image_enum_t *)pis_image->client_data;
gx_device_plane_extract * const edev =
(gx_device_plane_extract *)ppie->dev;
gs_logical_operation_t lop = gs_current_logical_op_inline(pis_image);
gx_device_color dcolor;
gx_remap_concrete_rgb(r, g, b, &dcolor, ppie->pis,
(gx_device *)edev, select);
reduce_drawing_color(pdc, edev, &dcolor, &lop);
}
static void
plane_cmap_cmyk(frac c, frac m, frac y, frac k, gx_device_color * pdc,
const gs_imager_state *pis_image, gx_device *dev, gs_color_select_t select,
const gs_color_space *source_pcs)
{
const plane_image_enum_t *ppie =
(const plane_image_enum_t *)pis_image->client_data;
gx_device_plane_extract * const edev =
(gx_device_plane_extract *)ppie->dev;
gs_logical_operation_t lop = gs_current_logical_op_inline(pis_image);
gx_device_color dcolor;
gx_remap_concrete_cmyk(c, m, y, k, &dcolor, ppie->pis,
(gx_device *)edev, select, NULL);
reduce_drawing_color(pdc, edev, &dcolor, &lop);
}
static void
plane_cmap_rgb_alpha(frac r, frac g, frac b, frac alpha, gx_device_color * pdc,
const gs_imager_state *pis_image, gx_device *dev, gs_color_select_t select)
{
const plane_image_enum_t *ppie =
(const plane_image_enum_t *)pis_image->client_data;
gx_device_plane_extract * const edev =
(gx_device_plane_extract *)ppie->dev;
gs_logical_operation_t lop = gs_current_logical_op_inline(pis_image);
gx_device_color dcolor;
gx_remap_concrete_rgb_alpha(r, g, b, alpha, &dcolor, ppie->pis,
(gx_device *)edev, select);
reduce_drawing_color(pdc, edev, &dcolor, &lop);
}
static bool
plane_cmap_is_halftoned(const gs_imager_state *pis_image, gx_device *dev)
{
return false;
}
static const gx_color_map_procs plane_color_map_procs = {
plane_cmap_gray, plane_cmap_rgb, plane_cmap_cmyk, plane_cmap_rgb_alpha,
NULL, NULL, plane_cmap_is_halftoned
};
static const gx_color_map_procs *
plane_get_cmap_procs(const gs_imager_state *pis, const gx_device *dev)
{
return &plane_color_map_procs;
}
/* Define the image processing procedures. */
static image_enum_proc_plane_data(plane_image_plane_data);
static image_enum_proc_end_image(plane_image_end_image);
static const gx_image_enum_procs_t plane_image_enum_procs = {
plane_image_plane_data, plane_image_end_image
};
static int
plane_begin_typed_image(gx_device * dev,
const gs_imager_state * pis, const gs_matrix * pmat,
const gs_image_common_t * pic, const gs_int_rect * prect,
const gx_drawing_color * pdcolor, const gx_clip_path * pcpath,
gs_memory_t * memory, gx_image_enum_common_t ** pinfo)
{
/*
* For images, we intercept the imager state's cmap_procs and apply
* reduce_drawing_color to the colors as they are returned to the image
* processing code. For reasons explained above, we can't do this in
* some cases of RasterOp that include transparency.
*/
gx_device_plane_extract * const edev = (gx_device_plane_extract *)dev;
gs_logical_operation_t lop = gs_current_logical_op((const gs_state *)pis);
const gs_pixel_image_t *pim;
plane_image_enum_t *info = 0;
gs_imager_state *pis_image = 0;
gx_device_color dcolor;
bool uses_color = false;
int code;
/* We can only handle a limited set of image types. */
switch (pic->type->index) {
case 1: {
const gs_image1_t * const pim1 = (const gs_image1_t *)pic;
if (pim1->Alpha != gs_image_alpha_none)
goto fail;
uses_color = pim1->ImageMask;
break;
}
case 3:
case 4:
break;
default:
goto fail;
}
pim = (const gs_pixel_image_t *)pic;
if ((lop & lop_S_transparent) ||
((uses_color || pim->CombineWithColor) && (lop & lop_T_transparent))
)
goto fail;
if (uses_color || (pim->CombineWithColor && lop_uses_T(lop))) {
if (reduce_drawing_color(&dcolor, edev, pdcolor, &lop) ==
REDUCE_FAILED)
goto fail;
} else {
/*
* The drawing color won't be used, but if RasterOp is involved,
* it may still be accessed in some anomalous cases.
*/
set_nonclient_dev_color(&dcolor, (gx_color_index)0);
}
info = gs_alloc_struct(memory, plane_image_enum_t, &st_plane_image_enum,
"plane_image_begin_typed(info)");
pis_image = gs_imager_state_copy(pis, memory);
if (pis_image == 0 || info == 0)
goto fail;
*pis_image = *pis;
pis_image->client_data = info;
pis_image->get_cmap_procs = plane_get_cmap_procs;
code = dev_proc(edev->plane_dev, begin_typed_image)
(edev->plane_dev, pis_image, pmat, pic, prect,
&dcolor, pcpath, memory, &info->info);
if (code < 0)
goto fail;
*((gx_image_enum_common_t *)info) = *info->info;
info->procs = &plane_image_enum_procs;
info->dev = (gx_device *)edev;
info->id = gs_next_ids(memory, 1);
info->memory = memory;
info->pis = pis;
info->pis_image = pis_image;
*pinfo = (gx_image_enum_common_t *)info;
return code;
fail:
gs_free_object(memory, pis_image, "plane_image_begin_typed(pis_image)");
gs_free_object(memory, info, "plane_image_begin_typed(info)");
return gx_default_begin_typed_image(dev, pis, pmat, pic, prect,
pdcolor, pcpath, memory, pinfo);
}
static int
plane_image_plane_data(gx_image_enum_common_t * info,
const gx_image_plane_t * planes, int height,
int *rows_used)
{
plane_image_enum_t * const ppie = (plane_image_enum_t *)info;
return gx_image_plane_data_rows(ppie->info, planes, height, rows_used);
}
static int
plane_image_end_image(gx_image_enum_common_t * info, bool draw_last)
{
plane_image_enum_t * const ppie = (plane_image_enum_t *)info;
int code = gx_image_end(ppie->info, draw_last);
gs_free_object(ppie->memory, ppie->pis_image,
"plane_image_end_image(pis_image)");
gx_image_free_enum(&info);
return code;
}
/* ---------------- Reading back bits ---------------- */
static int
plane_get_bits_rectangle(gx_device * dev, const gs_int_rect * prect,
gs_get_bits_params_t * params, gs_int_rect ** unread)
{
gx_device_plane_extract * const edev = (gx_device_plane_extract *)dev;
gx_device * const plane_dev = edev->plane_dev;
int plane_index = edev->plane.index;
gs_get_bits_options_t options = params->options;
gs_get_bits_params_t plane_params;
int plane;
int code;
/*
* The only real option that this device supports is single-plane
* retrieval. However, for the default case of RasterOp, it must be
* able to return chunky pixels in which the other components are
* arbitrary (but might as well be zero).
*/
if ((options & GB_PACKING_PLANAR) && (options & GB_SELECT_PLANES)) {
if (params->data[plane_index] == 0)
return gx_default_get_bits_rectangle(dev, prect, params, unread);
/* If the caller wants any other plane(s), punt. */
for (plane = 0; plane < dev->color_info.num_components; ++plane)
if (plane != plane_index && params->data[plane] != 0)
return gx_default_get_bits_rectangle(dev, prect, params, unread);
/* Pass the request on to the plane device. */
plane_params = *params;
plane_params.options =
(options & ~(GB_PACKING_ALL | GB_SELECT_PLANES)) |
GB_PACKING_CHUNKY;
plane_params.data[0] = params->data[plane_index];
code = dev_proc(plane_dev, get_bits_rectangle)
(plane_dev, prect, &plane_params, unread);
if (code >= 0) {
*params = plane_params;
params->options = (params->options & ~GB_PACKING_ALL) |
(GB_PACKING_PLANAR | GB_SELECT_PLANES);
params->data[plane_index] = params->data[0];
for (plane = 0; plane < dev->color_info.num_components; ++plane)
if (plane != plane_index)
params->data[plane] = 0;
}
} else if (!(~options & (GB_COLORS_NATIVE | GB_ALPHA_NONE |
GB_PACKING_CHUNKY | GB_RETURN_COPY |
GB_ALIGN_STANDARD | GB_OFFSET_0 |
GB_RASTER_STANDARD))) {
/* Expand the plane into chunky pixels. */
bits_plane_t dest, source;
dest.data.write = params->data[0];
dest.raster =
bitmap_raster((prect->q.x - prect->p.x) * dev->color_info.depth);
dest.depth = edev->color_info.depth;
dest.x = 0;
/* not source.data, source.raster, source.x */
source.depth = plane_dev->color_info.depth;
plane_params = *params;
plane_params.options = options &=
(~(GB_COLORS_ALL | GB_ALPHA_ALL | GB_PACKING_ALL |
GB_RETURN_ALL | GB_ALIGN_ALL | GB_OFFSET_ALL | GB_RASTER_ALL) |
GB_COLORS_NATIVE | GB_ALPHA_NONE | GB_PACKING_CHUNKY |
/* Try for a pointer return the first time. */
GB_RETURN_POINTER |
GB_ALIGN_STANDARD |
(GB_OFFSET_0 | GB_OFFSET_ANY) |
(GB_RASTER_STANDARD | GB_RASTER_ANY));
plane_params.raster = gx_device_raster(plane_dev, true);
code = dev_proc(plane_dev, get_bits_rectangle)
(plane_dev, prect, &plane_params, unread);
if (code >= 0) {
/* Success, expand the plane into pixels. */
source.data.read = plane_params.data[0];
source.raster = plane_params.raster;
source.x = params->x_offset;
code = bits_expand_plane(&dest, &source, edev->plane.shift,
prect->q.x - prect->p.x,
prect->q.y - prect->p.y);
}
params->options = (options & ~GB_RETURN_POINTER) | GB_RETURN_COPY;
} else
return gx_default_get_bits_rectangle(dev, prect, params, unread);
return code;
}
|