diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2006-03-23 22:24:03 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2006-03-23 22:24:03 +0000 |
commit | 96fe98e1c6bc0301781b0dd7dbfeef3e3f137f43 (patch) | |
tree | 7650cfe102643b74d6ad1d3efe1771281b5e66f0 /print/ghostscript8/files/patch-src:gdevvglb.c | |
parent | 503c7f7052756548d3712a6b0f3fb6d32ddbb8e9 (diff) |
Diffstat (limited to 'print/ghostscript8/files/patch-src:gdevvglb.c')
-rw-r--r-- | print/ghostscript8/files/patch-src:gdevvglb.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/print/ghostscript8/files/patch-src:gdevvglb.c b/print/ghostscript8/files/patch-src:gdevvglb.c deleted file mode 100644 index b21032ce8779..000000000000 --- a/print/ghostscript8/files/patch-src:gdevvglb.c +++ /dev/null @@ -1,18 +0,0 @@ ---- src/gdevvglb.c.orig Fri Feb 22 07:24:52 2002 -+++ src/gdevvglb.c Tue May 20 23:57:29 2003 -@@ -152,10 +152,12 @@ - } - - private gx_color_index --vgalib_map_rgb_color(gx_device * dev, gx_color_value red, -- gx_color_value green, gx_color_value blue) -+vgalib_map_rgb_color(gx_device * dev, const gx_color_value cv[]) - { -- return pc_4bit_map_rgb_color(dev, red, green, blue); -+ gx_color_value red = cv[0]; -+ gx_color_value green = cv[1]; -+ gx_color_value blue = cv[2]; -+ return pc_4bit_map_rgb_color(dev, cv); - } - - private int |