mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-05 04:40:11 +01:00
mesa: fix incorrect type in _mesa_texstore_rgba_int16()
This commit is contained in:
parent
b44f9c7e0a
commit
9fc7fa0a4c
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue