diff options
author | 2019-10-15 12:24:12 +0200 | |
---|---|---|
committer | 2020-08-13 11:26:55 +0200 | |
commit | e088156d5b620e5e639580dacf85c6dc13823c74 (patch) | |
tree | 57f5c025e203279944da512166c20bc0521d8ccd /base/gxp1impl.h | |
download | ghostscript-gpl-patches-e088156d5b620e5e639580dacf85c6dc13823c74.tar.gz ghostscript-gpl-patches-e088156d5b620e5e639580dacf85c6dc13823c74.tar.bz2 ghostscript-gpl-patches-e088156d5b620e5e639580dacf85c6dc13823c74.zip |
Import Ghostscript 9.50ghostscript-9.50
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'base/gxp1impl.h')
-rw-r--r-- | base/gxp1impl.h | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/base/gxp1impl.h b/base/gxp1impl.h new file mode 100644 index 00000000..07b3714a --- /dev/null +++ b/base/gxp1impl.h @@ -0,0 +1,46 @@ +/* Copyright (C) 2001-2019 Artifex Software, Inc. + All Rights Reserved. + + This software is provided AS-IS with no warranty, either express or + implied. + + This software is distributed under license and may not be copied, + modified or distributed except as expressly authorized under the terms + of the license contained in the file LICENSE in this distribution. + + Refer to licensing information at http://www.artifex.com or contact + Artifex Software, Inc., 1305 Grant Avenue - Suite 200, Novato, + CA 94945, U.S.A., +1(415)492-9861, for further information. +*/ + + +/* PatternType 1 implementation interface */ +/* Requires gxpcolor.h */ + +#ifndef gxp1impl_INCLUDED +# define gxp1impl_INCLUDED + +#include "gxdevcli.h" +#include "gxdcolor.h" +#include "gxpcolor.h" + +/* + * Declare the filling algorithms implemented in gxp1fill.c. + * We use 'masked_fill_rect' instead of 'masked_fill_rectangle' + * in order to limit identifier lengths to 32 characters. + */ +dev_color_proc_fill_rectangle(gx_dc_pattern_fill_rectangle); +dev_color_proc_fill_rectangle(gx_dc_pure_masked_fill_rect); +dev_color_proc_fill_rectangle(gx_dc_devn_masked_fill_rect); +dev_color_proc_fill_rectangle(gx_dc_binary_masked_fill_rect); +dev_color_proc_fill_rectangle(gx_dc_colored_masked_fill_rect); +dev_color_proc_fill_rectangle(gx_dc_pat_trans_fill_rectangle); + +/* + * Declare the Pattern color mapping procedures exported by gxpcmap.c. + */ +int gx_pattern_load(gx_device_color *, const gs_gstate *, + gx_device *, gs_color_select_t); +pattern_proc_remap_color(gs_pattern1_remap_color); + +#endif /* gxp1impl_INCLUDED */ |