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

« back to all changes in this revision

Viewing changes to src/gdevdbit.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:
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: gdevdbit.c 8022 2007-06-05 22:23:38Z giles $ */
 
13
/*$Id: gdevdbit.c 8225 2007-08-31 19:09:47Z leonardo $ */
14
14
/* Default device bitmap copying implementation */
15
15
#include "gx.h"
16
16
#include "gpcheck.h"
319
319
    gx_device_clip cdev;
320
320
 
321
321
    if (pcpath != 0) {
322
 
        gx_make_clip_path_device(&cdev, pcpath);
323
 
        cdev.target = orig_dev;
 
322
        gx_make_clip_device_on_stack(&cdev, pcpath, orig_dev);
324
323
        dev = (gx_device *) & cdev;
325
 
        (*dev_proc(dev, open_device)) (dev);
326
324
    } else
327
325
        dev = orig_dev;
328
326
    if (depth > 1) {