projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a14ee6b
)
added missing GL_INTENSITY case in _mesa_components_in_format()
author
Brian Paul
<brian.paul@tungstengraphics.com>
Wed, 29 Mar 2000 15:56:53 +0000
(15:56 +0000)
committer
Brian Paul
<brian.paul@tungstengraphics.com>
Wed, 29 Mar 2000 15:56:53 +0000
(15:56 +0000)
src/mesa/main/image.c
patch
|
blob
|
history
diff --git
a/src/mesa/main/image.c
b/src/mesa/main/image.c
index 2d880af18104dc44473236a55852a39c53b4795f..e0879be5e3ec6081458502de526163c093b8ed6a 100644
(file)
--- a/
src/mesa/main/image.c
+++ b/
src/mesa/main/image.c
@@
-1,4
+1,4
@@
-/* $Id: image.c,v 1.2
3 2000/03/21 16:09:37
brianp Exp $ */
+/* $Id: image.c,v 1.2
4 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;