~ubuntu-branches/ubuntu/intrepid/ghostscript/intrepid-updates

« back to all changes in this revision

Viewing changes to src/gdevp14.h

  • Committer: Bazaar Package Importer
  • Author(s): Till Kamppeter
  • Date: 2007-08-13 21:49:58 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20070813214958-ro9nbb3fmvzlr7q3
Tags: 8.61.dfsg.1~svn8187-0ubuntu1
New upstream release
o SVN snapshot rev 8187
o CJK patches from Koji Otani to fix several issues with CJK text
(should fix http://bugs.ghostscript.com/show_bug.cgi?id=689304).
These patches were also applied to ESP Ghostscript and having them
in Gutsy's GPL GS will avoide regressions against Feisty's ESP GS.
o Minor bug fixes from upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
   or contact Artifex Software, Inc.,  7 Mt. Lassen Drive - Suite A-134,
11
11
   San Rafael, CA  94903, U.S.A., +1(415)492-9861, for further information.
12
12
*/
13
 
/* $Id: gdevp14.h 8022 2007-06-05 22:23:38Z giles $ */
 
13
/* $Id: gdevp14.h 8170 2007-08-02 08:53:09Z leonardo $ */
14
14
/* Definitions and interface for PDF 1.4 rendering device */
15
15
 
16
16
#ifndef gdevp14_INCLUDED
17
17
#  define gdevp14_INCLUDED
18
18
 
 
19
#include "gxcmap.h"
 
20
 
19
21
typedef enum {
20
22
    PDF14_DeviceGray = 0,
21
23
    PDF14_DeviceRGB = 1,
134
136
    const gx_color_map_procs *(*save_get_cmap_procs)(const gs_imager_state *,
135
137
                                                     const gx_device *);
136
138
    gx_device_color_info saved_target_color_info;
 
139
    dev_proc_encode_color(*saved_target_encode_color);
 
140
    dev_proc_decode_color(*saved_target_decode_color);
 
141
    dev_proc_get_color_mapping_procs(*saved_target_get_color_mapping_procs);
 
142
    dev_proc_get_color_comp_index(*saved_target_get_color_comp_index);
 
143
    dev_proc_encode_color(*my_encode_color);
 
144
    dev_proc_decode_color(*my_decode_color);
 
145
    dev_proc_get_color_mapping_procs(*my_get_color_mapping_procs);
 
146
    dev_proc_get_color_comp_index(*my_get_color_comp_index);
137
147
} pdf14_device_t;
138
148
 
139
149
/*