17 lines
647 B
Text
17 lines
647 B
Text
$NetBSD: patch-ab,v 1.3 2001/03/26 23:03:33 skrll Exp $
|
|
|
|
--- get/getx11/in_cmap.c.orig Thu Apr 30 15:17:16 1992
|
|
+++ get/getx11/in_cmap.c
|
|
@@ -70,10 +70,10 @@
|
|
if ( img->sep_colors ||
|
|
(img->img_channels == 1 && img->ncmap == 3 && img->cmlen) )
|
|
/* If using color map directly, apply display gamma, too. */
|
|
- img->in_cmap = buildmap( img_hdr, 3, img->gamma,
|
|
+ img->in_cmap = buildmap( img_hdr, 3, (double) img->gamma,
|
|
display_gamma );
|
|
else
|
|
- img->in_cmap = buildmap( img_hdr, 3, img->gamma, 1.0 );
|
|
+ img->in_cmap = buildmap( img_hdr, 3, (double) img->gamma, 1.0 );
|
|
|
|
for (i = 0; i < 3; i++ ) {
|
|
for (j = 0; j < 256; j++)
|