Mesa (gles3): radeonsi: Enable 1D tiling for non-depth resources as well.

Ian Romanick idr at kemper.freedesktop.org
Mon Jan 21 18:39:43 UTC 2013


Module: Mesa
Branch: gles3
Commit: f0ffbbc9fff190f014709bb5c5067bf5faae181e
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=f0ffbbc9fff190f014709bb5c5067bf5faae181e

Author: Michel Dänzer <michel.daenzer at amd.com>
Date:   Thu Jan 17 19:16:49 2013 +0100

radeonsi: Enable 1D tiling for non-depth resources as well.

No piglit regressions anymore thanks to fixes in libdrm_radeon and here.

Reviewed-by: Christian König <christian.koenig at amd.com>
Signed-off-by: Michel Dänzer <michel.daenzer at amd.com>

---

 src/gallium/drivers/radeonsi/r600_texture.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/src/gallium/drivers/radeonsi/r600_texture.c b/src/gallium/drivers/radeonsi/r600_texture.c
index 580af54..4c6ca6e 100644
--- a/src/gallium/drivers/radeonsi/r600_texture.c
+++ b/src/gallium/drivers/radeonsi/r600_texture.c
@@ -522,8 +522,7 @@ struct pipe_resource *si_texture_create(struct pipe_screen *screen,
 	int r;
 
 	if (!(templ->flags & R600_RESOURCE_FLAG_TRANSFER) &&
-	    !(templ->bind & PIPE_BIND_SCANOUT) &&
-	    util_format_is_depth_or_stencil(templ->format)) {
+	    !(templ->bind & PIPE_BIND_SCANOUT)) {
 		if (permit_hardware_blit(screen, templ)) {
 			array_mode = V_009910_ARRAY_1D_TILED_THIN1;
 		}




More information about the mesa-commit mailing list