From: Marek Olšák Date: Tue, 8 Mar 2011 07:17:12 +0000 (+0100) Subject: r300g: use pipelined transfers for RGTC textures X-Git-Tag: 062012170305~6737 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6051f26b78917d430e7f4eb9b92b20de17aea4cc;p=profile%2Fivi%2Fmesa.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 30de9ec..0b73162 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) {