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
|
/* 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.
*/
/* Definitions and support procedures for higher-level band list commands */
/* Extends (requires) gxcldev.h */
#ifndef gxclpath_INCLUDED
# define gxclpath_INCLUDED
/*
* Define the flags indicating whether a band knows the current values of
* various miscellaneous parameters (pcls->known). The first N flags match
* the mask parameter for cmd_set_misc2 below.
*/
#define cap_join_known (1<<0)
#define cj_ac_sa_known (1<<1)
#define flatness_known (1<<2)
#define line_width_known (1<<3)
#define miter_limit_known (1<<4)
#define op_bm_tk_known (1<<5)
/* segment_notes must fit in the first byte (i.e. be less than 1<<7). */
#define segment_notes_known (1<<6) /* not used in pcls->known */
/* (flags beyond this point require an extra byte) */
#define opacity_alpha_known (1<<7)
#define shape_alpha_known (1<<8)
#define alpha_known (1<<9)
#define misc2_all_known ((1<<10)-1)
/* End of misc2 flags. */
#define fill_adjust_known (1<<10)
#define ctm_known (1<<11)
#define dash_known (1<<12)
#define clip_path_known (1<<13)
#define stroke_all_known ((1<<14)-1)
#define color_space_known (1<<14)
/*#define all_known ((1<<15)-1) */
/* Define the drawing color types for distinguishing different */
/* fill/stroke command variations. */
typedef enum {
cmd_dc_type_pure = 0,
cmd_dc_type_ht = 1,
cmd_dc_type_color = 2
} cmd_dc_type;
/* Extend the command set. See gxcldev.h for more information. */
typedef enum {
cmd_op_misc2 = 0xd0, /* (see below) */
/* obsolete */
/* cmd_opv_set_color = 0xd0, */ /* Used if base values do not fit into 1 bit */
/* #flags,#base[0],...#base[num_comp-1] if flags */
/* colored halftone with base colors a,b,c,d */
cmd_op_fill_rect_hl = 0xd1, /* rect fill with devn color */
cmd_opv_set_fill_adjust = 0xd2, /* adjust_x/y(fixed) */
cmd_opv_set_ctm = 0xd3, /* [per sput/sget_matrix] */
cmd_opv_set_color_space = 0xd4, /* base(4)Indexed?(2)0(2) */
/* [, hival#, table|map] */
/*
* cmd_opv_set_misc2_value is followed by a mask (a variable-length
* integer), and then by parameter values for the parameters selected
* by the mask. See above for the "known" mask values.
*/
/* cap_join: 0(2)cap(3)join(3) */
/* cj_ac_sa: 0(3)curve_join+1(3)acc.curves(1)stroke_adj(1) */
/* flatness: (float) */
/* line width: (float) */
/* miter limit: (float) */
/* op_bm_tk: blend mode(5)text knockout(1)o.p.mode(1)o.p.(1) */
/* segment notes: (byte) */
/* opacity/shape: alpha(float)mask(TBD) */
/* alpha: <<verbatim copy from imager state>> */
cmd_opv_set_misc2 = 0xd5, /* mask#, selected parameters */
cmd_opv_set_dash = 0xd6, /* adapt(1)abs.dot(1)n(6), dot */
/* length(float), offset(float), */
/* n x (float) */
cmd_opv_enable_clip = 0xd7, /* (nothing) */
cmd_opv_disable_clip = 0xd8, /* (nothing) */
cmd_opv_begin_clip = 0xd9, /* (nothing) */
cmd_opv_end_clip = 0xda, /* (nothing) */
cmd_opv_begin_image_rect = 0xdb, /* same as begin_image, followed by */
/* x0#, w-x1#, y0#, h-y1# */
cmd_opv_begin_image = 0xdc, /* image_type_table index, */
/* [per image type] */
cmd_opv_image_data = 0xdd, /* height# (premature EOD if 0), */
/* raster#, <data> */
cmd_opv_image_plane_data = 0xde, /* height# (premature EOD if 0), */
/* flags# (0 = same raster & data_x, */
/* 1 = new raster & data_x, lsb first), */
/* [raster#, [data_x#,]]* <data> */
cmd_opv_extend = 0xdf, /* command, varies */
cmd_op_segment = 0xe0, /* (see below) */
cmd_opv_rmoveto = 0xe0, /* dx%, dy% */
cmd_opv_rlineto = 0xe1, /* dx%, dy% */
cmd_opv_hlineto = 0xe2, /* dx% */
cmd_opv_vlineto = 0xe3, /* dy% */
cmd_opv_rmlineto = 0xe4, /* dx1%,dy1%, dx2%,dy2% */
cmd_opv_rm2lineto = 0xe5, /* dx1%,dy1%, dx2%,dy2%, dx3%,dy3% */
cmd_opv_rm3lineto = 0xe6, /* dx1%,dy1%, dx2%,dy2%, dx3%,dy3%, */
/* [-dx2,-dy2 implicit] */
cmd_opv_rrcurveto = 0xe7, /* dx1%,dy1%, dx2%,dy2%, dx3%,dy3% */
cmd_opv_min_curveto = cmd_opv_rrcurveto,
cmd_opv_hvcurveto = 0xe8, /* dx1%, dx2%,dy2%, dy3% */
cmd_opv_vhcurveto = 0xe9, /* dy1%, dx2%,dy2%, dx3% */
cmd_opv_nrcurveto = 0xea, /* dx2%,dy2%, dx3%,dy3% */
cmd_opv_rncurveto = 0xeb, /* dx1%,dy1%, dx2%,dy2% */
cmd_opv_vqcurveto = 0xec, /* dy1%, dx2%[,dy2=dx2 with sign */
/* of dy1, dx3=dy1 with sign of dx2] */
cmd_opv_hqcurveto = 0xed, /* dx1%, [dx2=dy2 with sign */
/* of dx1,]%dy2, [dy3=dx1 with sign */
/* of dy2] */
cmd_opv_scurveto = 0xee, /* all implicit: previous op must have been */
/* *curveto with one or more of dx/y1/3 = 0. */
/* If h*: -dx3,dy3, -dx2,dy2, -dx1,dy1. */
/* If v*: dx3,-dy3, dx2,-dy2, dx1,-dy1. */
cmd_opv_max_curveto = cmd_opv_scurveto,
cmd_opv_closepath = 0xef, /* (nothing) */
cmd_op_path = 0xf0, /* (see below) */
cmd_opv_fill = 0xf0,
cmd_opv_rgapto = 0xf1, /* dx%, dy% */ /* was cmd_opv_htfill */
cmd_opv_eofill = 0xf3,
/* cmd_opv_hteofill = 0xf4, */ /* obsolete */
/* cmd_opv_coloreofill = 0xf5, */ /* obsolete */
cmd_opv_stroke = 0xf6,
/* cmd_opv_htstroke = 0xf7, */ /* obsolete */
/* cmd_opv_colorstroke = 0xf8, */ /* obsolete */
cmd_opv_polyfill = 0xf9,
/* cmd_opv_htpolyfill = 0xfa, */ /* obsolete */
/* cmd_opv_colorpolyfill = 0xfb */ /* obsolete */
cmd_opv_fill_trapezoid = 0xfc
} gx_cmd_xop;
/* This is usd for cmd_opv_ext_put_drawing_color so that we know if it
is assocated with a tile or not */
typedef enum {
devn_not_tile = 0x00,
devn_tile0 = 0x01,
devn_tile1 = 0x02
} dc_devn_cl_type;
/*
* Further extended command set. This code always occupies a byte, which
* is the second byte of a command whose first byte is cmd_opv_extend.
*/
typedef enum {
cmd_opv_ext_put_params = 0x00, /* serialized parameter list */
cmd_opv_ext_create_compositor = 0x01, /* compositor id,
* serialized compositor */
cmd_opv_ext_put_halftone = 0x02, /* length of entire halftone */
cmd_opv_ext_put_ht_seg = 0x03, /* segment length,
* halftone segment data */
cmd_opv_ext_put_drawing_color = 0x04, /* length, color type id,
* serialized color */
cmd_opv_ext_tile_rect_hl = 0x05, /* Uses devn colors in tiling fill */
cmd_opv_ext_put_tile_devn_color0 = 0x6, /* Devn color0 for tile filling */
cmd_opv_ext_put_tile_devn_color1 = 0x7, /* Devn color1 for tile filling */
cmd_opv_ext_set_color_is_devn = 0x8, /* Used for overload of copy_color_alpha */
cmd_opv_ext_unset_color_is_devn = 0x9 /* Used for overload of copy_color_alpha */
} gx_cmd_ext_op;
#define cmd_segment_op_num_operands_values\
2, 2, 1, 1, 4, 6, 6, 6, 4, 4, 4, 4, 2, 2, 0, 0
#define cmd_misc2_op_name_strings\
"cmd_opv_set_color", "fill_hl_color", \
"set_fill_adjust", "set_ctm",\
"set_color_space", "set_misc2", "set_dash", "enable_clip",\
"disable_clip", "begin_clip", "end_clip", "begin_image_rect",\
"begin_image", "image_data", "image_plane_data", "put_params"
#define cmd_segment_op_name_strings\
"rmoveto", "rlineto", "hlineto", "vlineto",\
"rmlineto", "rm2lineto", "rm3lineto", "rrcurveto",\
"hvcurveto", "vhcurveto", "nrcurveto", "rncurveto",\
"vqcurveto", "hqcurveto", "scurveto", "closepath"
#define cmd_path_op_name_strings\
"fill", "htfill", "colorfill", "eofill",\
"hteofill", "coloreofill", "stroke", "htstroke",\
"colorstroke", "polyfill", "htpolyfill", "colorpolyfill",\
"fill_trapezoid", "?fd?", "?fe?", "?ff?"
/*
* We represent path coordinates as 'fixed' values in a variable-length,
* relative form (s/t = sign, x/y = integer, f/g = fraction):
* 00sxxxxx xfffffff ffffftyy yyyygggg gggggggg
* 01sxxxxx xxxxffff ffffffff
* 10sxxxxx xxxxxxxx xxxxffff ffffffff
* 110sxxxx xxxxxxff
* 111----- (a full-size `fixed' value)
*/
#define is_bits(d, n) !(((d) + ((fixed)1 << ((n) - 1))) & (-(fixed)1 << (n)))
/*
* Maximum size of a halftone segment. This leaves enough headroom to
* accommodate any reasonable requirements of the command buffer.
*/
#define cbuf_ht_seg_max_size (cbuf_size - 32) /* leave some headroom */
/* ---------------- Driver procedures ---------------- */
/* In gxclpath.c */
dev_proc_fill_path(clist_fill_path);
dev_proc_stroke_path(clist_stroke_path);
dev_proc_fill_parallelogram(clist_fill_parallelogram);
dev_proc_fill_triangle(clist_fill_triangle);
/* ---------------- Driver procedure support ---------------- */
/* The procedures and macros defined here are used when writing */
/* (gxclimag.c, gxclpath.c). */
/* Compare and update members of the imager state. */
#define state_neq(member)\
(cdev->imager_state.member != pis->member)
#define state_update(member)\
(cdev->imager_state.member = pis->member)
/* ------ Exported by gxclpath.c ------ */
/* Compute the colors used by a drawing color. */
gx_color_usage_bits cmd_drawing_color_usage(gx_device_clist_writer *cldev,
const gx_drawing_color *pdcolor);
/*
* Compute whether a drawing operation will require the slow (full-pixel)
* RasterOp implementation. If pdcolor is not NULL, it is the texture for
* the RasterOp.
*/
bool cmd_slow_rop(gx_device *dev, gs_logical_operation_t lop,
const gx_drawing_color *pdcolor);
/* Write out the color for filling, stroking, or masking. */
/* Return a cmd_dc_type. */
int cmd_put_drawing_color(gx_device_clist_writer * cldev,
gx_clist_state * pcls,
const gx_drawing_color * pdcolor,
cmd_rects_enum_t *pre, dc_devn_cl_type devn_type);
/* Clear (a) specific 'known' flag(s) for all bands. */
/* We must do this whenever the value of a 'known' parameter changes. */
void cmd_clear_known(gx_device_clist_writer * cldev, uint known);
/* Compute the written CTM length. */
int cmd_write_ctm_return_length(gx_device_clist_writer * cldev, const gs_matrix *m);
int cmd_write_ctm_return_length_nodevice(const gs_matrix *m);
/* Write out CTM. */
int cmd_write_ctm(const gs_matrix *m, byte *dp, int len);
/* Write out values of any unknown parameters. */
#define cmd_do_write_unknown(cldev, pcls, must_know)\
( ~(pcls)->known & (must_know) ?\
cmd_write_unknown(cldev, pcls, must_know) : 0 )
int cmd_write_unknown(gx_device_clist_writer * cldev, gx_clist_state * pcls,
uint must_know);
/* Check whether we need to change the clipping path in the device. */
bool cmd_check_clip_path(gx_device_clist_writer * cldev,
const gx_clip_path * pcpath);
#endif /* gxclpath_INCLUDED */
|