diff options
author | Brian Paul <[email protected]> | 2011-09-17 15:55:03 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-09-20 20:17:41 -0600 |
commit | e1d703bec58be011636f73470e2b8a41b1363dc7 (patch) | |
tree | e1f415c14928a92fc14752409bdf5b3631d0f82c /src/mesa/main/texstore.c | |
parent | ae670b58d4e0234c5ee79ba0b074251380897c38 (diff) |
mesa: convert _mesa_unpack_color_span_chan() to ubyte
Diffstat (limited to 'src/mesa/main/texstore.c')
-rw-r--r-- | src/mesa/main/texstore.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/texstore.c b/src/mesa/main/texstore.c index bb4026dcef9..cbed26cd497 100644 --- a/src/mesa/main/texstore.c +++ b/src/mesa/main/texstore.c @@ -604,9 +604,9 @@ _mesa_make_temp_ubyte_image(struct gl_context *ctx, GLuint dims, srcFormat, srcType, img, 0, 0); for (row = 0; row < srcHeight; row++) { - _mesa_unpack_color_span_chan(ctx, srcWidth, logicalBaseFormat, dst, - srcFormat, srcType, src, srcPacking, - transferOps); + _mesa_unpack_color_span_ubyte(ctx, srcWidth, logicalBaseFormat, dst, + srcFormat, srcType, src, srcPacking, + transferOps); dst += srcWidth * components; src += srcStride; } |