From: Corbin Simpson Date: Sun, 8 Feb 2009 10:03:29 +0000 (-0800) Subject: r300: Accidentally removed a pipe_buffer_reference that should be there. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5425c4aa28721072085f128e902f5679ba31a963;p=mesa.git r300: Accidentally removed a pipe_buffer_reference that should be there. --- diff --git a/src/gallium/drivers/r300/r300_texture.c b/src/gallium/drivers/r300/r300_texture.c index 7f57656a78e..ff812c09f80 100644 --- a/src/gallium/drivers/r300/r300_texture.c +++ b/src/gallium/drivers/r300/r300_texture.c @@ -178,6 +178,8 @@ static struct pipe_texture* /* XXX tex->stride = *stride; */ + pipe_buffer_reference(screen, &tex->buffer, buffer); + return (struct pipe_texture*)tex; }