From 070b2644c6d3b0b4c6da64addd85245d730b6240 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 29 Mar 2000 15:56:53 +0000 Subject: added missing GL_INTENSITY case in _mesa_components_in_format() --- src/mesa/main/image.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/mesa') diff --git a/src/mesa/main/image.c b/src/mesa/main/image.c index 2d880af181..e0879be5e3 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; -- cgit v1.2.3