From: Laura Ekstrand Date: Mon, 16 Feb 2015 22:29:57 +0000 (-0800) Subject: main: Fixed _mesa_GetCompressedTexImage_sw to copy slices correctly. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=92163482bda87216764edc0beca3ca090678038d;p=mesa.git main: Fixed _mesa_GetCompressedTexImage_sw to copy slices correctly. Previously array textures were not working with GetCompressedTextureImage, leading to failures in the test arb_direct_state_access/getcompressedtextureimage.c. Tested-by: Laura Ekstrand Reviewed-by: Brian Paul Cc: "10.4, 10.5" --- diff --git a/src/mesa/main/texgetimage.c b/src/mesa/main/texgetimage.c index 23cc3f06f07..24df5b6f89d 100644 --- a/src/mesa/main/texgetimage.c +++ b/src/mesa/main/texgetimage.c @@ -742,7 +742,7 @@ _mesa_GetCompressedTexImage_sw(struct gl_context *ctx, GLubyte *src; /* map src texture buffer */ - ctx->Driver.MapTextureImage(ctx, texImage, 0, + ctx->Driver.MapTextureImage(ctx, texImage, slice, 0, 0, texImage->Width, texImage->Height, GL_MAP_READ_BIT, &src, &srcRowStride); @@ -754,7 +754,7 @@ _mesa_GetCompressedTexImage_sw(struct gl_context *ctx, src += srcRowStride; } - ctx->Driver.UnmapTextureImage(ctx, texImage, 0); + ctx->Driver.UnmapTextureImage(ctx, texImage, slice); /* Advance to next slice */ dest += store.TotalBytesPerRow * (store.TotalRowsPerSlice - store.CopyRowsPerSlice);