/* Copyright (C) 1998, 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: gscrd.h,v 1.2.6.1.2.1 2003/01/17 00:49:02 giles Exp $ */ /* Interface for CIE color rendering dictionary creation */ #ifndef gscrd_INCLUDED # define gscrd_INCLUDED #include "gscie.h" /* * Allocate and minimally initialize a CRD. Note that this procedure sets * the reference count of the structure to 1, not 0. gs_setcolorrendering * will increment the reference count again, so unless you want the * structure to stay allocated permanently (or until a garbage collection), * you should call rc_decrement(pcrd, "client name") *after* calling * gs_setcolorrendering. */ int gs_cie_render1_build(P3(gs_cie_render ** ppcrd, gs_memory_t * mem, client_name_t cname)); /* * Initialize a CRD given all of the relevant parameters. * Any of the pointers except WhitePoint may be zero, meaning * use the default values. * * The actual point, matrix, range, and procedure values are copied into the * CRD, but only the pointer to the color lookup table * (RenderTable.lookup.table) is copied, not the table itself. * * If pfrom_crd is not NULL, then if the EncodeLMN, EncodeABC, or * RenderTable.T procedures indicate that the values exist only in the * cache, the corresponding values will be copied from pfrom_crd. * Note that NULL values for the individual pointers still represent * default values. */ int gs_cie_render1_init_from(P15(gs_cie_render * pcrd, void *client_data, const gs_cie_render * pfrom_crd, const gs_vector3 * WhitePoint, const gs_vector3 * BlackPoint, const gs_matrix3 * MatrixPQR, const gs_range3 * RangePQR, const gs_cie_transform_proc3 * TransformPQR, const gs_matrix3 * MatrixLMN, const gs_cie_render_proc3 * EncodeLMN, const gs_range3 * RangeLMN, const gs_matrix3 * MatrixABC, const gs_cie_render_proc3 * EncodeABC, const gs_range3 * RangeABC, const gs_cie_render_table_t * RenderTable)); /* * Initialize a CRD without the option of copying cached values. */ int gs_cie_render1_initialize(P14(gs_cie_render * pcrd, void *client_data, const gs_vector3 * WhitePoint, const gs_vector3 * BlackPoint, const gs_matrix3 * MatrixPQR, const gs_range3 * RangePQR, const gs_cie_transform_proc3 * TransformPQR, const gs_matrix3 * MatrixLMN, const gs_cie_render_proc3 * EncodeLMN, const gs_range3 * RangeLMN, const gs_matrix3 * MatrixABC, const gs_cie_render_proc3 * EncodeABC, const gs_range3 * RangeABC, const gs_cie_render_table_t * RenderTable)); /* * Set or access the client_data pointer in a CRD. * The macro is an L-value. */ #define gs_cie_render_client_data(pcrd) ((pcrd)->client_data) #endif /* gscrd_INCLUDED */