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

« back to all changes in this revision

Viewing changes to src/gdevm64.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: gdevm64.c 8022 2007-06-05 22:23:38Z giles $ */
 
13
/*$Id: gdevm64.c 8250 2007-09-25 13:31:24Z giles $ */
14
14
/* 64-bit-per-pixel "memory" (stored bitmap) device */
15
15
#include "memory_.h"
16
16
#include "gx.h"
80
80
#define dest32 ((bits32 *)dest)
81
81
 
82
82
/* Fill a rectangle with a color. */
83
 
private int
 
83
static int
84
84
mem_true64_fill_rectangle(gx_device * dev,
85
85
                          int x, int y, int w, int h, gx_color_index color)
86
86
{
201
201
}
202
202
 
203
203
/* Copy a monochrome bitmap. */
204
 
private int
 
204
static int
205
205
mem_true64_copy_mono(gx_device * dev,
206
206
               const byte * base, int sourcex, int sraster, gx_bitmap_id id,
207
207
        int x, int y, int w, int h, gx_color_index zero, gx_color_index one)
318
318
}
319
319
 
320
320
/* Copy a color bitmap. */
321
 
private int
 
321
static int
322
322
mem_true64_copy_color(gx_device * dev,
323
323
               const byte * base, int sourcex, int sraster, gx_bitmap_id id,
324
324
                      int x, int y, int w, int h)
349
349
                gx_no_strip_copy_rop, mem_word_get_bits_rectangle);
350
350
 
351
351
/* Fill a rectangle with a color. */
352
 
private int
 
352
static int
353
353
mem64_word_fill_rectangle(gx_device * dev, int x, int y, int w, int h,
354
354
                          gx_color_index color)
355
355
{
367
367
}
368
368
 
369
369
/* Copy a bitmap. */
370
 
private int
 
370
static int
371
371
mem64_word_copy_mono(gx_device * dev,
372
372
               const byte * base, int sourcex, int sraster, gx_bitmap_id id,
373
373
        int x, int y, int w, int h, gx_color_index zero, gx_color_index one)
389
389
}
390
390
 
391
391
/* Copy a color bitmap. */
392
 
private int
 
392
static int
393
393
mem64_word_copy_color(gx_device * dev,
394
394
               const byte * base, int sourcex, int sraster, gx_bitmap_id id,
395
395
                      int x, int y, int w, int h)