/* Copyright (C) 1994, 1996, 1999 artofcode LLC. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA, 02111-1307. */ /*$Id: icolor.h,v 1.2.6.1.2.1 2003/01/17 00:49:04 giles Exp $ */ /* Declarations for transfer function & similar cache remapping */ #ifndef icolor_INCLUDED # define icolor_INCLUDED /* * Define the number of stack slots needed for zcolor_remap_one. * The client is responsible for doing check_e/ostack or the equivalent * before calling zcolor_remap_one. */ extern const int zcolor_remap_one_ostack; extern const int zcolor_remap_one_estack; /* * Schedule the sampling and reloading of a cache. Note that if * zcolor_remap_one recognize the procedure as being of a special form, it * may not schedule anything, but it still returns o_push_estack. (This is * a change as of release 5.95; formerly, it returned 0 in this case.) */ int zcolor_remap_one(P5(i_ctx_t *, const ref *, gx_transfer_map *, const gs_state *, op_proc_t)); /* Reload a cache with entries in [0..1] after sampling. */ int zcolor_remap_one_finish(P1(i_ctx_t *)); /* Reload a cache with entries in [-1..1] after sampling. */ int zcolor_remap_one_signed_finish(P1(i_ctx_t *)); /* Recompute the effective transfer functions and invalidate the current */ /* color after cache reloading. */ int zcolor_reset_transfer(P1(i_ctx_t *)); /* Invalidate the current color after cache reloading. */ int zcolor_remap_color(P1(i_ctx_t *)); #endif /* icolor_INCLUDED */