Mesa (master): softpipe: Use alignment of 64 instead of 16 for buffer allocation

Ian Romanick idr at kemper.freedesktop.org
Wed Jan 29 16:17:33 UTC 2014


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

Author: Siavash Eliasi <siavashserver at gmail.com>
Date:   Thu Nov 28 21:28:29 2013 +0330

softpipe: Use alignment of 64 instead of 16 for buffer allocation

v2: Changed allocation alignment in softpipe_displaytarget_layout.

Reviewed-by: Ian Romanick <ian.d.romanick at intel.com>

---

 src/gallium/drivers/softpipe/sp_texture.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/gallium/drivers/softpipe/sp_texture.c b/src/gallium/drivers/softpipe/sp_texture.c
index 1323159..dc89d06 100644
--- a/src/gallium/drivers/softpipe/sp_texture.c
+++ b/src/gallium/drivers/softpipe/sp_texture.c
@@ -88,7 +88,7 @@ softpipe_resource_layout(struct pipe_screen *screen,
       return FALSE;
 
    if (allocate) {
-      spr->data = align_malloc(buffer_size, 16);
+      spr->data = align_malloc(buffer_size, 64);
       return spr->data != NULL;
    }
    else {
@@ -128,7 +128,7 @@ softpipe_displaytarget_layout(struct pipe_screen *screen,
                                           spr->base.format,
                                           spr->base.width0, 
                                           spr->base.height0,
-                                          16,
+                                          64,
                                           &spr->stride[0] );
 
    return spr->dt != NULL;




More information about the mesa-commit mailing list