/* Copyright (C) 1997, 1998 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: gsfunc3.h,v 1.2.6.1.2.1 2003/01/17 00:49:02 giles Exp $ */ /* Definitions for LL3 Functions */ #ifndef gsfunc3_INCLUDED # define gsfunc3_INCLUDED #include "gsfunc.h" #include "gsdsrc.h" /* ---------------- Types and structures ---------------- */ /* * Define the Function types. * See gsfunc.h for why gs_function_type_t can't be an enum type. */ enum { function_type_ExponentialInterpolation = 2, function_type_1InputStitching = 3, /* For internal use only */ function_type_ArrayedOutput = -1 }; /* Define Exponential Interpolation functions. */ typedef struct gs_function_ElIn_params_s { gs_function_params_common; const float *C0; /* n, optional */ const float *C1; /* n, optional */ float N; } gs_function_ElIn_params_t; #define private_st_function_ElIn() /* in gsfunc.c */\ gs_private_st_suffix_add2(st_function_ElIn, gs_function_ElIn_t,\ "gs_function_ElIn_t", function_ElIn_enum_ptrs, function_ElIn_reloc_ptrs,\ st_function, params.C0, params.C1) /* Define 1-Input Stitching functions. */ typedef struct gs_function_1ItSg_params_s { gs_function_params_common; int k; const gs_function_t *const *Functions; /* k */ const float *Bounds; /* k - 1 */ const float *Encode; /* 2 x k */ } gs_function_1ItSg_params_t; #define private_st_function_1ItSg() /* in gsfunc.c */\ gs_private_st_suffix_add3(st_function_1ItSg, gs_function_1ItSg_t,\ "gs_function_1ItSg_t", function_1ItSg_enum_ptrs, function_1ItSg_reloc_ptrs,\ st_function, params.Functions, params.Bounds, params.Encode) /* * Define Arrayed Output functions. These consist of n m x 1 functions * whose outputs are assembled into the output of the arrayed function. * We use them to handle certain PostScript constructs that can accept * either a single n-output function or n 1-output functions. * * Note that for this type, and only this type, both Domain and Range * are ignored (0). */ typedef struct gs_function_AdOt_params_s { gs_function_params_common; const gs_function_t *const *Functions; /* n */ } gs_function_AdOt_params_t; #define private_st_function_AdOt() /* in gsfunc.c */\ gs_private_st_suffix_add1(st_function_AdOt, gs_function_AdOt_t,\ "gs_function_AdOt_t", function_AdOt_enum_ptrs, function_AdOt_reloc_ptrs,\ st_function, params.Functions) /* ---------------- Procedures ---------------- */ /* Allocate and initialize functions of specific types. */ int gs_function_ElIn_init(P3(gs_function_t ** ppfn, const gs_function_ElIn_params_t * params, gs_memory_t * mem)); int gs_function_1ItSg_init(P3(gs_function_t ** ppfn, const gs_function_1ItSg_params_t * params, gs_memory_t * mem)); int gs_function_AdOt_init(P3(gs_function_t ** ppfn, const gs_function_AdOt_params_t * params, gs_memory_t * mem)); /* Free parameters of specific types. */ void gs_function_ElIn_free_params(P2(gs_function_ElIn_params_t * params, gs_memory_t * mem)); void gs_function_1ItSg_free_params(P2(gs_function_1ItSg_params_t * params, gs_memory_t * mem)); void gs_function_AdOt_free_params(P2(gs_function_AdOt_params_t * params, gs_memory_t * mem)); #endif /* gsfunc3_INCLUDED */