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
|
/* Copyright (C) 1994 Aladdin Enterprises. All rights reserved.
This file is part of GNU Ghostscript.
GNU Ghostscript is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY. No author or distributor accepts responsibility to
anyone for the consequences of using it or for whether it serves any
particular purpose or works at all, unless he says so in writing. Refer
to the GNU Ghostscript General Public License for full details.
*/
/* gxtmap.h */
/* Definition of transfer mapping function */
/* (also used for black generation and undercolor removal) */
#ifndef gxtmap_INCLUDED
# define gxtmap_INCLUDED
/* Common definition for mapping procedures. */
/* These are used for transfer functions, black generation, */
/* and undercolor removal. */
/* gx_transfer_map should probably be renamed gx_mapping_cache.... */
/* Define an abstract type for a transfer map. */
typedef struct gx_transfer_map_s gx_transfer_map;
/* Define the type of a mapping procedure. */
typedef float (*gs_mapping_proc)(P2(floatp, const gx_transfer_map *));
#endif /* gxtmap_INCLUDED */
|