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@intel.com>
This commit is contained in:
Siavash Eliasi 2013-11-28 21:10:29 +03:30 committed by Ian Romanick
parent 023a50dd9b
commit e36759a81e
1 changed files with 2 additions and 2 deletions

View 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;