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
|
/* Copyright (C) 1996, 1997, 1998, 1999 Aladdin Enterprises. All rights reserved.
This software is licensed to a single customer by Artifex Software Inc.
under the terms of a specific OEM agreement.
*/
/*$RCSfile$ $Revision$ */
/* Null and forwarding device implementation */
#include "gx.h"
#include "gserrors.h"
#include "gxdevice.h"
/* ---------------- Forwarding procedures ---------------- */
/* Additional finalization for forwarding devices. */
private void
gx_device_forward_finalize(gx_device *dev)
{
gx_device *target = ((gx_device_forward *)dev)->target;
((gx_device_forward *)dev)->target = 0;
rc_decrement_only(target, "gx_device_forward_finalize");
}
/* Set the target of a forwarding device. */
void
gx_device_set_target(gx_device_forward *fdev, gx_device *target)
{
/*
* ****** HACK: if this device doesn't have special finalization yet,
* make it decrement the reference count of the target.
*/
if (target && !fdev->finalize)
fdev->finalize = gx_device_forward_finalize;
rc_assign(fdev->target, target, "gx_device_set_target");
}
/* Fill in NULL procedures in a forwarding device procedure record. */
/* We don't fill in: open_device, close_device, or the lowest-level */
/* drawing operations. */
void
gx_device_forward_fill_in_procs(register gx_device_forward * dev)
{
gx_device_set_procs((gx_device *) dev);
/* NOT open_device */
fill_dev_proc(dev, get_initial_matrix, gx_forward_get_initial_matrix);
fill_dev_proc(dev, sync_output, gx_forward_sync_output);
fill_dev_proc(dev, output_page, gx_forward_output_page);
/* NOT close_device */
fill_dev_proc(dev, map_rgb_color, gx_forward_map_rgb_color);
fill_dev_proc(dev, map_color_rgb, gx_forward_map_color_rgb);
/* NOT fill_rectangle */
/* NOT tile_rectangle */
/* NOT copy_mono */
/* NOT copy_color */
/* NOT draw_line (OBSOLETE) */
fill_dev_proc(dev, get_bits, gx_forward_get_bits);
fill_dev_proc(dev, get_params, gx_forward_get_params);
fill_dev_proc(dev, put_params, gx_forward_put_params);
fill_dev_proc(dev, map_cmyk_color, gx_forward_map_cmyk_color);
fill_dev_proc(dev, get_xfont_procs, gx_forward_get_xfont_procs);
fill_dev_proc(dev, get_xfont_device, gx_forward_get_xfont_device);
fill_dev_proc(dev, map_rgb_alpha_color, gx_forward_map_rgb_alpha_color);
fill_dev_proc(dev, get_page_device, gx_forward_get_page_device);
/* NOT get_alpha_bits (OBSOLETE) */
/* NOT copy_alpha */
fill_dev_proc(dev, get_band, gx_forward_get_band);
fill_dev_proc(dev, copy_rop, gx_forward_copy_rop);
fill_dev_proc(dev, fill_path, gx_forward_fill_path);
fill_dev_proc(dev, stroke_path, gx_forward_stroke_path);
fill_dev_proc(dev, fill_mask, gx_forward_fill_mask);
fill_dev_proc(dev, fill_trapezoid, gx_forward_fill_trapezoid);
fill_dev_proc(dev, fill_parallelogram, gx_forward_fill_parallelogram);
fill_dev_proc(dev, fill_triangle, gx_forward_fill_triangle);
fill_dev_proc(dev, draw_thin_line, gx_forward_draw_thin_line);
fill_dev_proc(dev, begin_image, gx_forward_begin_image);
/* NOT image_data (OBSOLETE) */
/* NOT end_image (OBSOLETE) */
/* NOT strip_tile_rectangle */
fill_dev_proc(dev, strip_copy_rop, gx_forward_strip_copy_rop);
fill_dev_proc(dev, get_clipping_box, gx_forward_get_clipping_box);
fill_dev_proc(dev, begin_typed_image, gx_forward_begin_typed_image);
fill_dev_proc(dev, get_bits_rectangle, gx_forward_get_bits_rectangle);
fill_dev_proc(dev, map_color_rgb_alpha, gx_forward_map_color_rgb_alpha);
fill_dev_proc(dev, create_compositor, gx_no_create_compositor);
fill_dev_proc(dev, get_hardware_params, gx_forward_get_hardware_params);
fill_dev_proc(dev, text_begin, gx_forward_text_begin);
gx_device_fill_in_procs((gx_device *) dev);
}
/* Forward the color mapping procedures from a device to its target. */
void
gx_device_forward_color_procs(gx_device_forward * dev)
{
set_dev_proc(dev, map_rgb_color, gx_forward_map_rgb_color);
set_dev_proc(dev, map_color_rgb, gx_forward_map_color_rgb);
set_dev_proc(dev, map_cmyk_color, gx_forward_map_cmyk_color);
set_dev_proc(dev, map_rgb_alpha_color, gx_forward_map_rgb_alpha_color);
set_dev_proc(dev, map_color_rgb_alpha, gx_forward_map_color_rgb_alpha);
}
void
gx_forward_get_initial_matrix(gx_device * dev, gs_matrix * pmat)
{
gx_device_forward * const fdev = (gx_device_forward *)dev;
gx_device *tdev = fdev->target;
if (tdev == 0)
gx_default_get_initial_matrix(dev, pmat);
else
dev_proc(tdev, get_initial_matrix)(tdev, pmat);
}
int
gx_forward_sync_output(gx_device * dev)
{
gx_device_forward * const fdev = (gx_device_forward *)dev;
gx_device *tdev = fdev->target;
return (tdev == 0 ? gx_default_sync_output(dev) :
dev_proc(tdev, sync_output)(tdev));
}
int
gx_forward_output_page(gx_device * dev, int num_copies, int flush)
{
gx_device_forward * const fdev = (gx_device_forward *)dev;
gx_device *tdev = fdev->target;
int code =
(tdev == 0 ? gx_default_output_page(dev, num_copies, flush) :
dev_proc(tdev, output_page)(tdev, num_copies, flush));
if (code >= 0 && tdev != 0)
dev->PageCount = tdev->PageCount;
return code;
}
gx_color_index
gx_forward_map_rgb_color(gx_device * dev, gx_color_value r, gx_color_value g,
gx_color_value b)
{
gx_device_forward * const fdev = (gx_device_forward *)dev;
gx_device *tdev = fdev->target;
return (tdev == 0 ? gx_default_map_rgb_color(dev, r, g, b) :
dev_proc(tdev, map_rgb_color)(tdev, r, g, b));
}
int
gx_forward_map_color_rgb(gx_device * dev, gx_color_index color,
gx_color_value prgb[3])
{
gx_device_forward * const fdev = (gx_device_forward *)dev;
gx_device *tdev = fdev->target;
return (tdev == 0 ? gx_default_map_color_rgb(dev, color, prgb) :
dev_proc(tdev, map_color_rgb)(tdev, color, prgb));
}
int
gx_forward_fill_rectangle(gx_device * dev, int x, int y, int w, int h,
gx_color_index color)
{
gx_device_forward * const fdev = (gx_device_forward *)dev;
gx_device *tdev = fdev->target;
if (tdev == 0)
return_error(gs_error_Fatal);
return dev_proc(tdev, fill_rectangle)(tdev, x, y, w, h, color);
}
int
gx_forward_tile_rectangle(gx_device * dev, const gx_tile_bitmap * tile,
int x, int y, int w, int h, gx_color_index color0,
gx_color_index color1, int px, int py)
{
gx_device_forward * const fdev = (gx_device_forward *)dev;
gx_device *tdev = fdev->target;
dev_proc_tile_rectangle((*proc)) =
(tdev == 0 ? (tdev = dev, gx_default_tile_rectangle) :
dev_proc(tdev, tile_rectangle));
return proc(tdev, tile, x, y, w, h, color0, color1, px, py);
}
int
gx_forward_copy_mono(gx_device * dev, const byte * data,
int dx, int raster, gx_bitmap_id id,
int x, int y, int w, int h,
gx_color_index zero, gx_color_index one)
{
gx_device_forward * const fdev = (gx_device_forward *)dev;
gx_device *tdev = fdev->target;
if (tdev == 0)
return_error(gs_error_Fatal);
return dev_proc(tdev, copy_mono)
(tdev, data, dx, raster, id, x, y, w, h, zero, one);
}
int
gx_forward_copy_color(gx_device * dev, const byte * data,
int dx, int raster, gx_bitmap_id id,
int x, int y, int w, int h)
{
gx_device_forward * const fdev = (gx_device_forward *)dev;
gx_device *tdev = fdev->target;
if (tdev == 0)
return_error(gs_error_Fatal);
return dev_proc(tdev, copy_color)
(tdev, data, dx, raster, id, x, y, w, h);
}
int
gx_forward_get_bits(gx_device * dev, int y, byte * data, byte ** actual_data)
{
gx_device_forward * const fdev = (gx_device_forward *)dev;
gx_device *tdev = fdev->target;
return (tdev == 0 ? gx_default_get_bits(dev, y, data, actual_data) :
dev_proc(tdev, get_bits)(tdev, y, data, actual_data));
}
int
gx_forward_get_params(gx_device * dev, gs_param_list * plist)
{
gx_device_forward * const fdev = (gx_device_forward *)dev;
gx_device *tdev = fdev->target;
return (tdev == 0 ? gx_default_get_params(dev, plist) :
dev_proc(tdev, get_params)(tdev, plist));
}
int
gx_forward_put_params(gx_device * dev, gs_param_list * plist)
{
gx_device_forward * const fdev = (gx_device_forward *)dev;
gx_device *tdev = fdev->target;
int code;
if (tdev == 0)
return gx_default_put_params(dev, plist);
code = dev_proc(tdev, put_params)(tdev, plist);
if (code >= 0)
gx_device_decache_colors(dev);
return code;
}
gx_color_index
gx_forward_map_cmyk_color(gx_device * dev, gx_color_value c, gx_color_value m,
gx_color_value y, gx_color_value k)
{
gx_device_forward * const fdev = (gx_device_forward *)dev;
gx_device *tdev = fdev->target;
return (tdev == 0 ? gx_default_map_cmyk_color(dev, c, m, y, k) :
dev_proc(tdev, map_cmyk_color)(tdev, c, m, y, k));
}
const gx_xfont_procs *
gx_forward_get_xfont_procs(gx_device * dev)
{
gx_device_forward * const fdev = (gx_device_forward *)dev;
gx_device *tdev = fdev->target;
return (tdev == 0 ? gx_default_get_xfont_procs(dev) :
dev_proc(tdev, get_xfont_procs)(tdev));
}
gx_device *
gx_forward_get_xfont_device(gx_device * dev)
{
gx_device_forward * const fdev = (gx_device_forward *)dev;
gx_device *tdev = fdev->target;
return (tdev == 0 ? gx_default_get_xfont_device(dev) :
dev_proc(tdev, get_xfont_device)(tdev));
}
gx_color_index
gx_forward_map_rgb_alpha_color(gx_device * dev, gx_color_value r,
gx_color_value g, gx_color_value b,
gx_color_value alpha)
{
gx_device_forward * const fdev = (gx_device_forward *)dev;
gx_device *tdev = fdev->target;
return (tdev == 0 ?
gx_default_map_rgb_alpha_color(dev, r, g, b, alpha) :
dev_proc(tdev, map_rgb_alpha_color)(tdev, r, g, b, alpha));
}
gx_device *
gx_forward_get_page_device(gx_device * dev)
{
gx_device_forward * const fdev = (gx_device_forward *)dev;
gx_device *tdev = fdev->target;
gx_device *pdev;
if (tdev == 0)
return gx_default_get_page_device(dev);
pdev = dev_proc(tdev, get_page_device)(tdev);
return (pdev == tdev ? dev : pdev);
}
int
gx_forward_get_band(gx_device * dev, int y, int *band_start)
{
gx_device_forward * const fdev = (gx_device_forward *)dev;
gx_device *tdev = fdev->target;
return (tdev == 0 ?
gx_default_get_band(dev, y, band_start) :
dev_proc(tdev, get_band)(tdev, y, band_start));
}
int
gx_forward_copy_rop(gx_device * dev,
const byte * sdata, int sourcex, uint sraster,
gx_bitmap_id id, const gx_color_index * scolors,
const gx_tile_bitmap * texture,
const gx_color_index * tcolors,
int x, int y, int width, int height,
int phase_x, int phase_y, gs_logical_operation_t lop)
{
gx_device_forward * const fdev = (gx_device_forward *)dev;
gx_device *tdev = fdev->target;
dev_proc_copy_rop((*proc)) =
(tdev == 0 ? (tdev = dev, gx_default_copy_rop) :
dev_proc(tdev, copy_rop));
return proc(tdev, sdata, sourcex, sraster, id, scolors,
texture, tcolors, x, y, width, height,
phase_x, phase_y, lop);
}
int
gx_forward_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_forward * const fdev = (gx_device_forward *)dev;
gx_device *tdev = fdev->target;
dev_proc_fill_path((*proc)) =
(tdev == 0 ? (tdev = dev, gx_default_fill_path) :
dev_proc(tdev, fill_path));
return proc(tdev, pis, ppath, params, pdcolor, pcpath);
}
int
gx_forward_stroke_path(gx_device * dev, const gs_imager_state * pis,
gx_path * ppath, const gx_stroke_params * params,
const gx_drawing_color * pdcolor,
const gx_clip_path * pcpath)
{
gx_device_forward * const fdev = (gx_device_forward *)dev;
gx_device *tdev = fdev->target;
dev_proc_stroke_path((*proc)) =
(tdev == 0 ? (tdev = dev, gx_default_stroke_path) :
dev_proc(tdev, stroke_path));
return proc(tdev, pis, ppath, params, pdcolor, pcpath);
}
int
gx_forward_fill_mask(gx_device * dev,
const byte * data, int dx, 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_forward * const fdev = (gx_device_forward *)dev;
gx_device *tdev = fdev->target;
dev_proc_fill_mask((*proc)) =
(tdev == 0 ? (tdev = dev, gx_default_fill_mask) :
dev_proc(tdev, fill_mask));
return proc(tdev, data, dx, raster, id, x, y, w, h, pdcolor, depth,
lop, pcpath);
}
int
gx_forward_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)
{
gx_device_forward * const fdev = (gx_device_forward *)dev;
gx_device *tdev = fdev->target;
dev_proc_fill_trapezoid((*proc)) =
(tdev == 0 ? (tdev = dev, gx_default_fill_trapezoid) :
dev_proc(tdev, fill_trapezoid));
return proc(tdev, left, right, ybot, ytop, swap_axes, pdcolor, lop);
}
int
gx_forward_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_forward * const fdev = (gx_device_forward *)dev;
gx_device *tdev = fdev->target;
dev_proc_fill_parallelogram((*proc)) =
(tdev == 0 ? (tdev = dev, gx_default_fill_parallelogram) :
dev_proc(tdev, fill_parallelogram));
return proc(tdev, px, py, ax, ay, bx, by, pdcolor, lop);
}
int
gx_forward_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_forward * const fdev = (gx_device_forward *)dev;
gx_device *tdev = fdev->target;
dev_proc_fill_triangle((*proc)) =
(tdev == 0 ? (tdev = dev, gx_default_fill_triangle) :
dev_proc(tdev, fill_triangle));
return proc(tdev, px, py, ax, ay, bx, by, pdcolor, lop);
}
int
gx_forward_draw_thin_line(gx_device * dev,
fixed fx0, fixed fy0, fixed fx1, fixed fy1,
const gx_drawing_color * pdcolor, gs_logical_operation_t lop)
{
gx_device_forward * const fdev = (gx_device_forward *)dev;
gx_device *tdev = fdev->target;
dev_proc_draw_thin_line((*proc)) =
(tdev == 0 ? (tdev = dev, gx_default_draw_thin_line) :
dev_proc(tdev, draw_thin_line));
return proc(tdev, fx0, fy0, fx1, fy1, pdcolor, lop);
}
int
gx_forward_begin_image(gx_device * dev,
const gs_imager_state * pis, const gs_image_t * pim,
gs_image_format_t format, 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)
{
gx_device_forward * const fdev = (gx_device_forward *)dev;
gx_device *tdev = fdev->target;
dev_proc_begin_image((*proc)) =
(tdev == 0 ? (tdev = dev, gx_default_begin_image) :
dev_proc(tdev, begin_image));
return proc(tdev, pis, pim, format, prect, pdcolor, pcpath,
memory, pinfo);
}
int
gx_forward_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 px, int py)
{
gx_device_forward * const fdev = (gx_device_forward *)dev;
gx_device *tdev = fdev->target;
dev_proc_strip_tile_rectangle((*proc)) =
(tdev == 0 ? (tdev = dev, gx_default_strip_tile_rectangle) :
dev_proc(tdev, strip_tile_rectangle));
return proc(tdev, tiles, x, y, w, h, color0, color1, px, py);
}
int
gx_forward_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 width, int height,
int phase_x, int phase_y, gs_logical_operation_t lop)
{
gx_device_forward * const fdev = (gx_device_forward *)dev;
gx_device *tdev = fdev->target;
dev_proc_strip_copy_rop((*proc)) =
(tdev == 0 ? (tdev = dev, gx_default_strip_copy_rop) :
dev_proc(tdev, strip_copy_rop));
return proc(tdev, sdata, sourcex, sraster, id, scolors,
textures, tcolors, x, y, width, height,
phase_x, phase_y, lop);
}
void
gx_forward_get_clipping_box(gx_device * dev, gs_fixed_rect * pbox)
{
gx_device_forward * const fdev = (gx_device_forward *)dev;
gx_device *tdev = fdev->target;
if (tdev == 0)
gx_default_get_clipping_box(dev, pbox);
else
dev_proc(tdev, get_clipping_box)(tdev, pbox);
}
int
gx_forward_begin_typed_image(gx_device * dev, const gs_imager_state * pis,
const gs_matrix * pmat,
const gs_image_common_t * pim,
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)
{
gx_device_forward * const fdev = (gx_device_forward *)dev;
gx_device *tdev = fdev->target;
dev_proc_begin_typed_image((*proc)) =
(tdev == 0 ? (tdev = dev, gx_default_begin_typed_image) :
dev_proc(tdev, begin_typed_image));
return proc(tdev, pis, pmat, pim, prect, pdcolor, pcpath,
memory, pinfo);
}
int
gx_forward_get_bits_rectangle(gx_device * dev, const gs_int_rect * prect,
gs_get_bits_params_t * params, gs_int_rect ** unread)
{
gx_device_forward * const fdev = (gx_device_forward *)dev;
gx_device *tdev = fdev->target;
dev_proc_get_bits_rectangle((*proc)) =
(tdev == 0 ? (tdev = dev, gx_default_get_bits_rectangle) :
dev_proc(tdev, get_bits_rectangle));
return proc(tdev, prect, params, unread);
}
int
gx_forward_map_color_rgb_alpha(gx_device * dev, gx_color_index color,
gx_color_value prgba[4])
{
gx_device_forward * const fdev = (gx_device_forward *)dev;
gx_device *tdev = fdev->target;
return (tdev == 0 ? gx_default_map_color_rgb_alpha(dev, color, prgba) :
dev_proc(tdev, map_color_rgb_alpha)(tdev, color, prgba));
}
int
gx_forward_get_hardware_params(gx_device * dev, gs_param_list * plist)
{
gx_device_forward * const fdev = (gx_device_forward *)dev;
gx_device *tdev = fdev->target;
return (tdev == 0 ? gx_default_get_hardware_params(dev, plist) :
dev_proc(tdev, get_hardware_params)(tdev, plist));
}
int
gx_forward_text_begin(gx_device * dev, gs_imager_state * pis,
const gs_text_params_t * text, gs_font * font,
gx_path * path, const gx_device_color * pdcolor,
const gx_clip_path * pcpath, gs_memory_t * memory,
gs_text_enum_t ** ppenum)
{
gx_device_forward * const fdev = (gx_device_forward *)dev;
gx_device *tdev = fdev->target;
dev_proc_text_begin((*proc)) =
(tdev == 0 ? (tdev = dev, gx_default_text_begin) :
dev_proc(tdev, text_begin));
return proc(tdev, pis, text, font, path, pdcolor, pcpath,
memory, ppenum);
}
/* ---------------- The null device(s) ---------------- */
private dev_proc_fill_rectangle(null_fill_rectangle);
private dev_proc_copy_mono(null_copy_mono);
private dev_proc_copy_color(null_copy_color);
private dev_proc_put_params(null_put_params);
private dev_proc_copy_alpha(null_copy_alpha);
private dev_proc_copy_rop(null_copy_rop);
private dev_proc_fill_path(null_fill_path);
private dev_proc_stroke_path(null_stroke_path);
private dev_proc_fill_trapezoid(null_fill_trapezoid);
private dev_proc_fill_parallelogram(null_fill_parallelogram);
private dev_proc_fill_triangle(null_fill_triangle);
private dev_proc_draw_thin_line(null_draw_thin_line);
/* We would like to have null implementations of begin/data/end image, */
/* but we can't do this, because image_data must keep track of the */
/* Y position so it can return 1 when done. */
private dev_proc_strip_copy_rop(null_strip_copy_rop);
#define null_procs(get_page_device) {\
gx_default_open_device,\
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,\
null_fill_rectangle,\
gx_default_tile_rectangle,\
null_copy_mono,\
null_copy_color,\
gx_default_draw_line,\
gx_default_get_bits,\
gx_forward_get_params,\
null_put_params,\
gx_forward_map_cmyk_color,\
gx_forward_get_xfont_procs,\
gx_forward_get_xfont_device,\
gx_forward_map_rgb_alpha_color,\
get_page_device, /* differs */\
gx_default_get_alpha_bits,\
null_copy_alpha,\
gx_forward_get_band,\
null_copy_rop,\
null_fill_path,\
null_stroke_path,\
gx_default_fill_mask,\
null_fill_trapezoid,\
null_fill_parallelogram,\
null_fill_triangle,\
null_draw_thin_line,\
gx_default_begin_image,\
gx_default_image_data,\
gx_default_end_image,\
gx_default_strip_tile_rectangle,\
null_strip_copy_rop,\
gx_default_get_clipping_box,\
gx_default_begin_typed_image,\
gx_default_get_bits_rectangle,\
gx_forward_map_color_rgb_alpha,\
gx_non_imaging_create_compositor,\
gx_forward_get_hardware_params,\
gx_default_text_begin\
}
const gx_device_null gs_null_device = {
std_device_std_body_type_open(gx_device_null, 0, "null", &st_device_null,
0, 0, 72, 72),
null_procs(gx_default_get_page_device /* not a page device */ ),
0 /* target */
};
const gx_device_null gs_nullpage_device = {
std_device_std_body_type_open(gx_device_null, 0, "nullpage", &st_device_null,
72 /*nominal */ , 72 /*nominal */ , 72, 72),
null_procs(gx_page_device_get_page_device /* a page device */ ),
0 /* target */
};
private int
null_fill_rectangle(gx_device * dev, int x, int y, int w, int h,
gx_color_index color)
{
return 0;
}
private int
null_copy_mono(gx_device * dev, const byte * data, int dx, int raster,
gx_bitmap_id id, int x, int y, int w, int h,
gx_color_index zero, gx_color_index one)
{
return 0;
}
private int
null_copy_color(gx_device * dev, const byte * data,
int data_x, int raster, gx_bitmap_id id,
int x, int y, int width, int height)
{
return 0;
}
private int
null_put_params(gx_device * dev, gs_param_list * plist)
{
/*
* If this is not a page device, we must defeat attempts to reset
* the size; otherwise this is equivalent to gx_forward_put_params.
*/
int code = gx_forward_put_params(dev, plist);
if (code < 0 || dev_proc(dev, get_page_device)(dev) == dev)
return code;
dev->width = dev->height = 0;
return code;
}
private int
null_copy_alpha(gx_device * dev, const byte * data, int data_x, int raster,
gx_bitmap_id id, int x, int y, int width, int height,
gx_color_index color, int depth)
{
return 0;
}
private int
null_copy_rop(gx_device * dev,
const byte * sdata, int sourcex, uint sraster, gx_bitmap_id id,
const gx_color_index * scolors,
const gx_tile_bitmap * texture, const gx_color_index * tcolors,
int x, int y, int width, int height,
int phase_x, int phase_y, gs_logical_operation_t lop)
{
return 0;
}
private int
null_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)
{
return 0;
}
private int
null_stroke_path(gx_device * dev, const gs_imager_state * pis,
gx_path * ppath, const gx_stroke_params * params,
const gx_drawing_color * pdcolor, const gx_clip_path * pcpath)
{
return 0;
}
private int
null_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 0;
}
private int
null_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)
{
return 0;
}
private int
null_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)
{
return 0;
}
private int
null_draw_thin_line(gx_device * dev,
fixed fx0, fixed fy0, fixed fx1, fixed fy1,
const gx_drawing_color * pdcolor,
gs_logical_operation_t lop)
{
return 0;
}
private int
null_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 width, int height,
int phase_x, int phase_y, gs_logical_operation_t lop)
{
return 0;
}
|