diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2005-01-21 15:36:45 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2005-01-21 15:36:45 +0000 |
commit | 7011c19a8c96a2f8fb7c04d61cb28cdc507584a6 (patch) | |
tree | 22c0efaf2b6bb5b461389f9bac9542c7e3a5909a /print/ghostscript8/files/patch-src:gdevvglb.c | |
parent | Now buildable on 4.x, still broken on >= 5.x. (diff) |
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_11_0'.release/4.11.0
Notes
Notes:
svn path=/head/; revision=127022
svn path=/tags/RELEASE_4_11_0/; revision=127023; tag=release/4.11.0
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 |