summaryrefslogtreecommitdiff
path: root/src/mesa/main/texstore.c
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2010-10-28 21:17:42 -0600
committerBrian Paul <brianp@vmware.com>2010-10-28 21:17:42 -0600
commit9fc7fa0a4cbe9dc8faa124744f623491fa754bd7 (patch)
treebf38b522ba70f6c7a648499a63d6c355dba3bf4a /src/mesa/main/texstore.c
parentb44f9c7e0a43e45b59956e7f8fd75a879bd2b1ef (diff)
mesa: fix incorrect type in _mesa_texstore_rgba_int16()
Diffstat (limited to 'src/mesa/main/texstore.c')
-rw-r--r--src/mesa/main/texstore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/texstore.c b/src/mesa/main/texstore.c
index fb34a005b3..ddbabe4b63 100644
--- a/src/mesa/main/texstore.c
+++ b/src/mesa/main/texstore.c
@@ -3350,7 +3350,7 @@ _mesa_texstore_rgba_int16(TEXSTORE_PARAMS)
if (!ctx->_ImageTransferState &&
!srcPacking->SwapBytes &&
baseInternalFormat == srcFormat &&
- srcType == GL_INT) {
+ srcType == GL_SHORT) {
/* simple memcpy path */
memcpy_texture(ctx, dims,
dstFormat, dstAddr, dstXoffset, dstYoffset, dstZoffset,