Mesa (master): radeonsi: Untiled textures are linear aligned, not linear general.

Michel Dänzer daenzer at kemper.freedesktop.org
Thu Sep 6 13:56:34 UTC 2012


Module: Mesa
Branch: master
Commit: 396af00ffe376bb0ffe8a60960604b733b19f2ca
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=396af00ffe376bb0ffe8a60960604b733b19f2ca

Author: Michel Dänzer <michel.daenzer at amd.com>
Date:   Wed Aug 29 12:11:04 2012 +0200

radeonsi: Untiled textures are linear aligned, not linear general.

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

---

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

diff --git a/src/gallium/drivers/radeonsi/r600_texture.c b/src/gallium/drivers/radeonsi/r600_texture.c
index 5b831fd..0b908c8 100644
--- a/src/gallium/drivers/radeonsi/r600_texture.c
+++ b/src/gallium/drivers/radeonsi/r600_texture.c
@@ -523,7 +523,7 @@ struct pipe_resource *si_texture_create(struct pipe_screen *screen,
 {
 	struct r600_screen *rscreen = (struct r600_screen*)screen;
 	struct radeon_surface surface;
-	unsigned array_mode = 0;
+	unsigned array_mode = V_009910_ARRAY_LINEAR_ALIGNED;
 	int r;
 
 #if 0
@@ -589,7 +589,7 @@ struct pipe_resource *si_texture_from_handle(struct pipe_screen *screen,
 	struct r600_screen *rscreen = (struct r600_screen*)screen;
 	struct pb_buffer *buf = NULL;
 	unsigned stride = 0;
-	unsigned array_mode = 0;
+	unsigned array_mode = V_009910_ARRAY_LINEAR_ALIGNED;
 	enum radeon_bo_layout micro, macro;
 	struct radeon_surface surface;
 	int r;
@@ -614,7 +614,7 @@ struct pipe_resource *si_texture_from_handle(struct pipe_screen *screen,
 	else if (micro == RADEON_LAYOUT_TILED)
 		array_mode = V_009910_ARRAY_1D_TILED_THIN1;
 	else
-		array_mode = 0;
+		array_mode = V_009910_ARRAY_LINEAR_ALIGNED;
 
 	r = r600_init_surface(&surface, templ, array_mode);
 	if (r) {




More information about the mesa-commit mailing list