diff options
Diffstat (limited to 'gs/base/gxoprect.c')
-rw-r--r-- | gs/base/gxoprect.c | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/gs/base/gxoprect.c b/gs/base/gxoprect.c index 3b5e20359..7c506aa61 100644 --- a/gs/base/gxoprect.c +++ b/gs/base/gxoprect.c @@ -1,6 +1,6 @@ /* Copyright (C) 2001-2006 Artifex Software, Inc. All Rights Reserved. - + This software is provided AS-IS with no warranty, either express or implied. @@ -24,7 +24,6 @@ #include "gxoprect.h" #include "gsbitops.h" - /* * Unpack a scanline for a depth < 8. In this case we know the depth is * divisor of 8 and thus a power of 2, which implies that 8 / depth is @@ -167,7 +166,6 @@ pack_scanline_ge8( } } - /* * Perform the fill rectangle operation for a non-separable color encoding * that requires overprint support. This situation requires that colors be @@ -259,7 +257,7 @@ gx_overprint_generic_fill_rectangle( * * - Data should be returned in the depth of the process color * model. Though this depth could be specified explicitly, there - * is little reason to do so. + * is little reason to do so. * * - Though overprint is much more easily implemented with planar * data, there is no planar version of the copy_color method to @@ -317,7 +315,7 @@ gx_overprint_generic_fill_rectangle( gx_color_index comps; int j; gx_color_value dest_cvals[GX_DEVICE_COLOR_MAX_COMPONENTS]; - + if ((code = dev_proc(tdev, decode_color)(tdev, *cp, dest_cvals)) < 0) break; for (j = 0, comps = drawn_comps; comps != 0; ++j, comps >>= 1) { @@ -345,8 +343,6 @@ gx_overprint_generic_fill_rectangle( return code; } - - /* * Replication of 2 and 4 bit patterns to fill a mem_mono_chunk. */ @@ -404,7 +400,6 @@ replicate_color(int depth, mono_fill_chunk color) return color; } - /* * Perform the fill rectangle operation for a separable color encoding * that requires overprint support. @@ -525,7 +520,6 @@ gx_overprint_sep_fill_rectangle_1( return code; } - int gx_overprint_sep_fill_rectangle_2( gx_device * tdev, @@ -613,4 +607,3 @@ gx_overprint_sep_fill_rectangle_2( return code; } - |