diff options
author | Brian Paul <[email protected]> | 2010-01-04 13:59:43 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-01-04 14:01:19 -0700 |
commit | 82421c549f782cee0d377a064852813117ff6850 (patch) | |
tree | 2343f36578c828c3145b8efca264c3713aef39f3 /src/mesa | |
parent | 01bf004d8bef298298621dc9e13b4119e3ced572 (diff) |
mesa: added GL_DU8DV8_ATI in extract_float_rgba()
Fixes warning seen with Shadowgrounds. See bug 24016.
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/main/image.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/main/image.c b/src/mesa/main/image.c index 139e56a96be..3b685cb9471 100644 --- a/src/mesa/main/image.c +++ b/src/mesa/main/image.c @@ -3228,6 +3228,7 @@ extract_float_rgba(GLuint n, GLfloat rgba[][4], srcFormat == GL_RGBA || srcFormat == GL_BGRA || srcFormat == GL_ABGR_EXT || + srcFormat == GL_DU8DV8_ATI || srcFormat == GL_DUDV_ATI); ASSERT(srcType == GL_UNSIGNED_BYTE || @@ -3343,6 +3344,7 @@ extract_float_rgba(GLuint n, GLfloat rgba[][4], aComp = 0; stride = 4; break; + case GL_DU8DV8_ATI: case GL_DUDV_ATI: redIndex = 0; greenIndex = 1; |