summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/image.c
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2012-02-13 07:20:27 -0700
committerBrian Paul <brianp@vmware.com>2012-02-13 08:47:59 -0700
commitdf1cd55ebf362948788c04d2fa7da55c80991605 (patch)
treeb03779684e94b469f52fc5d33994b4ebb9cf19ee /src/mesa/main/image.c
parentd2c54fb5223efee699862bef56177027edc140bc (diff)
downloadexternal_mesa3d-df1cd55ebf362948788c04d2fa7da55c80991605.zip
external_mesa3d-df1cd55ebf362948788c04d2fa7da55c80991605.tar.gz
external_mesa3d-df1cd55ebf362948788c04d2fa7da55c80991605.tar.bz2
mesa: add missing GL_UNSIGNED_INT_10F_11F_11F_REV case
in _mesa_error_check_format_and_type(). Fixes https://bugs.freedesktop.org/show_bug.cgi?id=45967
Diffstat (limited to 'src/mesa/main/image.c')
-rw-r--r--src/mesa/main/image.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mesa/main/image.c b/src/mesa/main/image.c
index 750db94..b6c2645 100644
--- a/src/mesa/main/image.c
+++ b/src/mesa/main/image.c
@@ -428,6 +428,15 @@ _mesa_error_check_format_and_type(const struct gl_context *ctx,
}
return GL_NO_ERROR;
+ case GL_UNSIGNED_INT_10F_11F_11F_REV:
+ if (!ctx->Extensions.EXT_packed_float) {
+ return GL_INVALID_ENUM;
+ }
+ if (format != GL_RGB) {
+ return GL_INVALID_OPERATION;
+ }
+ return GL_NO_ERROR;
+
default:
; /* fall-through */
}