Module: Mesa Branch: master Commit: 9cc6b5b043044bc0b74502f3cca03a8423ed25b2 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=9cc6b5b043044bc0b74502f3cca03a8423ed25b2
Author: Marek Olšák <[email protected]> Date: Thu Jul 8 21:36:47 2010 +0200 r300g: fix transfering compressed textures --- src/gallium/drivers/r300/r300_transfer.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/gallium/drivers/r300/r300_transfer.c b/src/gallium/drivers/r300/r300_transfer.c index 02421a5..2eb93e1 100644 --- a/src/gallium/drivers/r300/r300_transfer.c +++ b/src/gallium/drivers/r300/r300_transfer.c @@ -204,7 +204,7 @@ r300_texture_get_transfer(struct pipe_context *ctx, r300_texture_get_stride(r300screen, tex, sr.level); trans->offset = r300_texture_get_offset(tex, sr.level, box->z, sr.face); - if (referenced_cs && (usage & PIPE_TRANSFER_READ)) + if (referenced_cs) ctx->flush(ctx, PIPE_FLUSH_RENDER_CACHE, NULL); return &trans->transfer; } _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
