[Mesa-dev] [PATCH V2 05/17] i915: Modified i915_buffer_create to use memory allocation alignment of 64 instead of 16.

Stéphane Marchesin marcheu at chromium.org
Mon Dec 2 19:06:08 PST 2013


5 and 6 look good. One nitpick, please prefix the i915g changes with
"i915g" instead of "i915" so it's obvious which driver is being
changed from just looking at a git log.

Stéphane


On Thu, Nov 28, 2013 at 12:56 AM, Siavash Eliasi
<siavashserver at gmail.com> wrote:
> ---
>  src/gallium/drivers/i915/i915_resource_buffer.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/src/gallium/drivers/i915/i915_resource_buffer.c b/src/gallium/drivers/i915/i915_resource_buffer.c
> index 80ec43a..fd29524 100644
> --- a/src/gallium/drivers/i915/i915_resource_buffer.c
> +++ b/src/gallium/drivers/i915/i915_resource_buffer.c
> @@ -135,7 +135,7 @@ i915_buffer_create(struct pipe_screen *screen,
>     buf->b.vtbl = &i915_buffer_vtbl;
>     pipe_reference_init(&buf->b.b.reference, 1);
>     buf->b.b.screen = screen;
> -   buf->data = align_malloc(template->width0, 16);
> +   buf->data = align_malloc(template->width0, 64);
>     buf->free_on_destroy = TRUE;
>
>     if (!buf->data)
> --
> 1.8.4.2
>
> _______________________________________________
> mesa-dev mailing list
> mesa-dev at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/mesa-dev


More information about the mesa-dev mailing list