summaryrefslogtreecommitdiff
path: root/print/ghostscript-gpl/files/patch-src-gdevl256.c
blob: c00c180f7f1fc24e527400e556adc5b8d4aa44a9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--- src/gdevl256.c.orig	Mon Jun  4 00:54:57 2007
+++ src/gdevl256.c	Mon Jun  4 01:13:56 2007
@@ -143,9 +143,12 @@
 /* for compatibility with the older display modes: */
 /* these are indexed as 0.0.R0.G0.B0.R1.G1.B1. */
 gx_color_index
-lvga256_map_rgb_color(gx_device * dev, gx_color_value r, gx_color_value g,
-		      gx_color_value b)
+lvga256_map_rgb_color(gx_device * dev, const gx_color_value cv[])
 {
+	gx_color_value r = cv[0];
+	gx_color_value g = cv[1];
+	gx_color_value b = cv[2];
+
 #define cv_bits(v,n) (v >> (gx_color_value_bits - n))
     ushort r5 = cv_bits(r, 5), g5 = cv_bits(g, 5), b5 = cv_bits(b, 5);
     static const byte cube_bits[32] =