softpipe: Use alignment of 64 instead of 16 for buffer allocation
[mesa.git] / src / gallium / drivers / softpipe / sp_texture.c
index 13231593e16f9c189dfab8b8e564c9f57f2410e2..dc89d0665c3f72ea755538bc3507289a6a028837 100644 (file)
@@ -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;