From: Corbin Simpson Date: Fri, 13 Feb 2009 00:52:15 +0000 (-0800) Subject: r300-gallium: Fix typo in texture buffer size request. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=08e324fff3b295bfd5b176ed1242ad838c6d5f25;p=mesa.git r300-gallium: Fix typo in texture buffer size request. --- diff --git a/src/gallium/drivers/r300/r300_texture.c b/src/gallium/drivers/r300/r300_texture.c index ff812c09f80..bd35e089f98 100644 --- a/src/gallium/drivers/r300/r300_texture.c +++ b/src/gallium/drivers/r300/r300_texture.c @@ -72,7 +72,7 @@ static struct pipe_texture* r300_setup_miptree(tex); - tex->buffer = screen->buffer_create(screen, 63, + tex->buffer = screen->buffer_create(screen, 64, PIPE_BUFFER_USAGE_PIXEL, tex->size);