From: Marek Olšák Date: Tue, 8 Mar 2011 07:17:12 +0000 (+0100) Subject: r300g: use pipelined transfers for RGTC textures X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6051f26b78917d430e7f4eb9b92b20de17aea4cc;p=mesa.git r300g: use pipelined transfers for RGTC textures --- diff --git a/src/gallium/drivers/r300/r300_transfer.c b/src/gallium/drivers/r300/r300_transfer.c index 30de9ec1e32..0b73162abd9 100644 --- a/src/gallium/drivers/r300/r300_transfer.c +++ b/src/gallium/drivers/r300/r300_transfer.c @@ -100,7 +100,8 @@ r300_texture_get_transfer(struct pipe_context *ctx, } blittable = desc->layout == UTIL_FORMAT_LAYOUT_PLAIN || - desc->layout == UTIL_FORMAT_LAYOUT_S3TC; + desc->layout == UTIL_FORMAT_LAYOUT_S3TC || + desc->layout == UTIL_FORMAT_LAYOUT_RGTC; trans = CALLOC_STRUCT(r300_transfer); if (trans) {