From 01429fa46a05cba7d2d11825facd7d8e6117dacd Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 4 Apr 2001 23:22:38 +0000 Subject: GL_INTENSITY case was incorrect in extract_float_rgba() --- src/mesa/main/image.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/mesa/main/image.c b/src/mesa/main/image.c index 8fcb556..4cdfff7 100644 --- a/src/mesa/main/image.c +++ b/src/mesa/main/image.c @@ -1,4 +1,4 @@ -/* $Id: image.c,v 1.58 2001/03/07 05:06:11 brianp Exp $ */ +/* $Id: image.c,v 1.59 2001/04/04 23:22:38 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -2023,8 +2023,7 @@ extract_float_rgba(GLuint n, GLfloat rgba[][4], stride = 2; break; case GL_INTENSITY: - redIndex = 0; - greenIndex = blueIndex = alphaIndex = -1; + redIndex = greenIndex = blueIndex = alphaIndex = 0; stride = 1; break; case GL_RGB: -- cgit v1.1