~ubuntu-branches/ubuntu/hardy/ghostscript/hardy

« back to all changes in this revision

Viewing changes to src/gdevpdft.c

  • Committer: Bazaar Package Importer
  • Author(s): Till Kamppeter
  • Date: 2007-11-22 12:17:43 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20071122121743-cd70s3ypq0r243mp
Tags: 8.61.dfsg.1-0ubtuntu1
* New upstream release
  o Final 8.61 release
* debian/patches/09_ijs_krgb_support.dpatch: Adapted to upstream changes.
* debian/rules: Updated CUPS-related variables for "make install" calls.
* debian/rules: Remove /usr/include/ghostscript from the ghostscript
  package, they go into lings-dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
   San Rafael, CA  94903, U.S.A., +1(415)492-9861, for further information.
12
12
*/
13
13
 
14
 
/* $Id: gdevpdft.c 8022 2007-06-05 22:23:38Z giles $ */
 
14
/* $Id: gdevpdft.c 8250 2007-09-25 13:31:24Z giles $ */
15
15
/* transparency processing for PDF-writing driver */
16
16
#include "gx.h"
17
17
#include "string_.h"
23
23
#include "gdevpdfg.h"
24
24
#include "gdevpdfo.h"
25
25
 
26
 
private int
 
26
static int
27
27
pdf_make_soft_mask_dict(gx_device_pdf * pdev, const gs_pdf14trans_params_t * pparams)
28
28
{
29
29
    pdf_resource_t *pres_soft_mask_dict = 0;
69
69
 
70
70
}
71
71
 
72
 
private int
 
72
static int
73
73
pdf_make_group_dict(gx_device_pdf * pdev, const gs_pdf14trans_params_t * pparams,
74
74
                            const gs_imager_state * pis, cos_dict_t **pdict)
75
75
{
119
119
    return 0;
120
120
}
121
121
 
122
 
private int
 
122
static int
123
123
pdf_make_form_dict(gx_device_pdf * pdev, const gs_pdf14trans_params_t * pparams,
124
124
                            const gs_imager_state * pis, 
125
125
                            const cos_dict_t *group_dict, cos_dict_t *form_dict)
158
158
    return cos_dict_put_c_key_object(form_dict, "/Group", (cos_object_t *)group_dict);
159
159
}
160
160
 
161
 
private int 
 
161
static int 
162
162
pdf_begin_transparency_group(gs_imager_state * pis, gx_device_pdf * pdev,
163
163
                                const gs_pdf14trans_params_t * pparams)
164
164
{
206
206
    return 0;
207
207
}
208
208
 
209
 
private int 
 
209
static int 
210
210
pdf_end_transparency_group(gs_imager_state * pis, gx_device_pdf * pdev)
211
211
{
212
212
    int bottom = (pdev->ResourcesBeforeUsage ? 1 : 0);
238
238
    }
239
239
}
240
240
 
241
 
private int 
 
241
static int 
242
242
pdf_begin_transparency_mask(gs_imager_state * pis, gx_device_pdf * pdev,
243
243
                                const gs_pdf14trans_params_t * pparams)
244
244
{
284
284
    }
285
285
}
286
286
 
287
 
private int 
 
287
static int 
288
288
pdf_end_transparency_mask(gs_imager_state * pis, gx_device_pdf * pdev,
289
289
                                const gs_pdf14trans_params_t * pparams)
290
290
{
316
316
    return 0;
317
317
}
318
318
 
319
 
private int
 
319
static int
320
320
pdf_set_blend_params(gs_imager_state * pis, gx_device_pdf * dev,
321
321
                                const gs_pdf14trans_params_t * pparams)
322
322
{