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

« back to all changes in this revision

Viewing changes to src/gximono.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: gximono.c 8022 2007-06-05 22:23:38Z giles $ */
 
14
/* $Id: gximono.c 8250 2007-09-25 13:31:24Z giles $ */
15
15
/* General mono-component image rendering */
16
16
#include "gx.h"
17
17
#include "memory_.h"
38
38
/* Check the prototype. */
39
39
iclass_proc(gs_image_class_3_mono);
40
40
 
41
 
private irender_proc(image_render_mono);
 
41
static irender_proc(image_render_mono);
42
42
irender_proc_t
43
43
gs_image_class_3_mono(gx_image_enum * penum)
44
44
{
81
81
 * Separation, Indexed), and color masking. This procedure handles a
82
82
 * single scan line.
83
83
 */
84
 
private int
 
84
static int
85
85
image_render_mono(gx_image_enum * penum, const byte * buffer, int data_x,
86
86
                  uint w, int h, gx_device * dev)
87
87
{