From f786e46cf4fbf50a1cacfb81e22ee155ffe6edd3 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Thu, 12 Mar 2009 19:42:14 -0600 Subject: mesa: added GL_DU8DV8_ATI case in _mesa_components_in_format() This gets hit when glTexSubImage2D() is called with format==GL_DU8DV8_ATI. --- src/mesa/main/image.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mesa/main/image.c b/src/mesa/main/image.c index 5c5f9f6028..804e840820 100644 --- a/src/mesa/main/image.c +++ b/src/mesa/main/image.c @@ -294,6 +294,7 @@ _mesa_components_in_format( GLenum format ) case GL_DEPTH_STENCIL_EXT: return 2; case GL_DUDV_ATI: + case GL_DU8DV8_ATI: return 2; default: return -1; -- cgit v1.2.3