diff options
author | Corbin Simpson <[email protected]> | 2009-02-12 16:52:15 -0800 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2009-02-12 18:09:03 -0800 |
commit | 08e324fff3b295bfd5b176ed1242ad838c6d5f25 (patch) | |
tree | ca4f1a185cbd6b0c504961e63ae8a5f497014613 /src/gallium/drivers/r300 | |
parent | e46dca58b21ad87956b97a08d27bc212e714aa43 (diff) |
r300-gallium: Fix typo in texture buffer size request.
Diffstat (limited to 'src/gallium/drivers/r300')
-rw-r--r-- | src/gallium/drivers/r300/r300_texture.c | 2 |
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 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); |