1 /* Copyright (C) 2001-2006 Artifex Software, Inc.
2    All Rights Reserved.
3 
4    This software is provided AS-IS with no warranty, either express or
5    implied.
6 
7    This software is distributed under license and may not be copied, modified
8    or distributed except as expressly authorized under the terms of that
9    license.  Refer to licensing information at http://www.artifex.com/
10    or contact Artifex Software, Inc.,  7 Mt. Lassen Drive - Suite A-134,
11    San Rafael, CA  94903, U.S.A., +1(415)492-9861, for further information.
12 */
13 
14 /* Client color structure definition */
15 
16 /* Simple operators and place holding support for doing conversions on buffers
17    of data.  These functions perform device (non CIE or ICC color conversions)
18    on buffers of data.  Eventually these will be replaced with functions for
19    using the ICC based linked mappings with the external CMS.  */
20 
21 /* This just does planar data for now */
22 void gs_transform_color_buffer_generic(byte *inputbuffer,
23 	    int rowstride, int planestride,
24 	    int input_num_color, gs_int_rect rect,byte *outputbuffer,
25 	    int output_num_color,int num_noncolor_planes);
26