diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2005-04-20 06:16:18 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2005-04-20 06:16:18 +0000 |
commit | 8673c7ec800a8bcc6da14c506081a3cb76e2b8ea (patch) | |
tree | ad3f495c08f0cc331b6958d319f699d021175c19 /print/ghostscript8/files/patch-src:gdevlx50.c | |
parent | 0d9507efb9d902ba8e7fafa90edd7893d2f8db19 (diff) |
Diffstat (limited to 'print/ghostscript8/files/patch-src:gdevlx50.c')
-rw-r--r-- | print/ghostscript8/files/patch-src:gdevlx50.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/print/ghostscript8/files/patch-src:gdevlx50.c b/print/ghostscript8/files/patch-src:gdevlx50.c deleted file mode 100644 index 01ceae208cd3..000000000000 --- a/print/ghostscript8/files/patch-src:gdevlx50.c +++ /dev/null @@ -1,17 +0,0 @@ ---- src/gdevlx50.c.orig Thu May 15 07:38:07 2003 -+++ src/gdevlx50.c Thu May 15 08:02:58 2003 -@@ -2603,9 +2603,12 @@ - - /* Map CMYK to color. */ - private gx_color_index --lx5000_map_cmyk_color(gx_device * dev, gx_color_value cyan, -- gx_color_value magenta, gx_color_value yellow, gx_color_value black) -+lx5000_map_cmyk_color(gx_device * dev, const gx_color_value cv[]) - { -+ gx_color_value cyan = cv[0]; -+ gx_color_value magenta = cv[1]; -+ gx_color_value yellow = cv[2]; -+ gx_color_value black = cv[3]; - int bpc = dev->color_info.depth / 4; - int drop = sizeof(gx_color_value) * 8 - bpc; - gx_color_index color = |