From: Brian Paul Date: Wed, 29 Mar 2000 15:56:53 +0000 (+0000) Subject: added missing GL_INTENSITY case in _mesa_components_in_format() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=070b2644c6d3b0b4c6da64addd85245d730b6240;p=mesa.git added missing GL_INTENSITY case in _mesa_components_in_format() --- diff --git a/src/mesa/main/image.c b/src/mesa/main/image.c index 2d880af1810..e0879be5e3e 100644 --- a/src/mesa/main/image.c +++ b/src/mesa/main/image.c @@ -1,4 +1,4 @@ -/* $Id: image.c,v 1.23 2000/03/21 16:09:37 brianp Exp $ */ +/* $Id: image.c,v 1.24 2000/03/29 15:56:53 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -224,6 +224,7 @@ GLint _mesa_components_in_format( GLenum format ) case GL_BLUE: case GL_ALPHA: case GL_LUMINANCE: + case GL_INTENSITY: return 1; case GL_LUMINANCE_ALPHA: return 2;