summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorbin Simpson <MostAwesomeDude@gmail.com>2009-02-12 16:52:15 -0800
committerCorbin Simpson <MostAwesomeDude@gmail.com>2009-02-12 18:09:03 -0800
commit08e324fff3b295bfd5b176ed1242ad838c6d5f25 (patch)
treeca4f1a185cbd6b0c504961e63ae8a5f497014613
parente46dca58b21ad87956b97a08d27bc212e714aa43 (diff)
r300-gallium: Fix typo in texture buffer size request.
-rw-r--r--src/gallium/drivers/r300/r300_texture.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r300/r300_texture.c b/src/gallium/drivers/r300/r300_texture.c
index ff812c09f8..bd35e089f9 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);