diff options
author | Ian Romanick <[email protected]> | 2009-11-17 22:53:06 -0800 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2009-11-17 22:53:06 -0800 |
commit | 70dca0c273d681d004b014dd8d4434be664cb202 (patch) | |
tree | c3784e55dfe2ea994b8f16723480bd8da10d329c /src/mesa/main | |
parent | 89e20ab3aeff37f0eff79ab0c5e73be3d3185ce8 (diff) |
AL1616: Fix cut-and-paste bug
One of the PACK_COLOR_88 cases was left over from copying
_mesa_texstore_al88 to _mesa_texstore_al1616.
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/texstore.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/texstore.c b/src/mesa/main/texstore.c index abb4ed26631..5387eb12837 100644 --- a/src/mesa/main/texstore.c +++ b/src/mesa/main/texstore.c @@ -2198,8 +2198,8 @@ _mesa_texstore_al1616(TEXSTORE_PARAMS) if (dstFormat == MESA_FORMAT_AL1616) { for (col = 0; col < srcWidth; col++) { /* src[0] is luminance, src[1] is alpha */ - dstUI[col] = PACK_COLOR_88( FLOAT_TO_USHORT(src[1]), - FLOAT_TO_USHORT(src[0]) ); + dstUI[col] = PACK_COLOR_1616( FLOAT_TO_USHORT(src[1]), + FLOAT_TO_USHORT(src[0]) ); src += 2; } } |