diff options
Diffstat (limited to 'gs/base/gxcomp.h')
-rw-r--r-- | gs/base/gxcomp.h | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/gs/base/gxcomp.h b/gs/base/gxcomp.h index 8cb8c7f67..fb3c6e069 100644 --- a/gs/base/gxcomp.h +++ b/gs/base/gxcomp.h @@ -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. @@ -46,11 +46,10 @@ #define GX_COMPOSITOR_OVERPRINT 0x02 /* overprint/overprintmode compositor */ #define GX_COMPOSITOR_PDF14_TRANS 0x03 /* PDF 1.4 transparency compositor */ - /* * Define the abstract superclass for all compositing function types. */ - /*typedef struct gs_composite_s gs_composite_t; *//* in gscompt.h */ + /*typedef struct gs_composite_s gs_composite_t; *//* in gscompt.h */ #ifndef gs_imager_state_DEFINED # define gs_imager_state_DEFINED @@ -118,7 +117,7 @@ typedef struct gs_composite_type_procs_s { * Checks whether a next compositor operation closes this one. * Must set the 2nd argument with a pointer to the opening compositor operation. * Return coides : <0 - error, 0 - not closing, - * 1 - closing with annihilation, 2 - execute immediately, + * 1 - closing with annihilation, 2 - execute immediately, * 3 - closing and replacing, 4 - replace one, 5 - drop queue. */ #define composite_is_closing_proc(proc)\ @@ -138,7 +137,7 @@ typedef struct gs_composite_type_procs_s { */ #define composite_clist_write_update(proc)\ int proc(const gs_composite_t * pcte, gx_device * dev, gx_device ** pcdev,\ - gs_imager_state * pis, gs_memory_t * mem) + gs_imager_state * pis, gs_memory_t * mem) composite_clist_write_update((*clist_compositor_write_update)); /* @@ -146,7 +145,7 @@ typedef struct gs_composite_type_procs_s { */ #define composite_clist_read_update(proc)\ int proc(gs_composite_t * pcte, gx_device * cdev, gx_device * tdev,\ - gs_imager_state * pis, gs_memory_t * mem) + gs_imager_state * pis, gs_memory_t * mem) composite_clist_read_update((*clist_compositor_read_update)); /* @@ -196,10 +195,10 @@ composite_get_cropping_proc(gx_default_composite_get_cropping); * structure type is needed for it. */ #define gs_composite_common\ - const gs_composite_type_t *type;\ - gs_id id; /* see gscompt.h */\ - bool idle; /* Doesn't paint anything. */\ - struct gs_composite_s *prev, *next /* Queue links for clist_playback_band. */ + const gs_composite_type_t *type;\ + gs_id id; /* see gscompt.h */\ + bool idle; /* Doesn't paint anything. */\ + struct gs_composite_s *prev, *next /* Queue links for clist_playback_band. */ struct gs_composite_s { gs_composite_common; |