summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/nv30
diff options
context:
space:
mode:
authorYounes Manton <younes.m@gmail.com>2009-02-06 14:33:49 -0500
committerYounes Manton <younes.m@gmail.com>2009-02-06 14:33:49 -0500
commit5c8c728afe0e2a8e8819097ae1c2f3c738d9397b (patch)
tree55ca9bd19724531c0db47fb5b6794366e6eb2e62 /src/gallium/drivers/nv30
parente6372853c221a5d64494ce75a6a323c479c55a86 (diff)
nouveau: Frontbuffer pitch needs to be set.
Diffstat (limited to 'src/gallium/drivers/nv30')
-rw-r--r--src/gallium/drivers/nv30/nv30_miptree.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/nv30/nv30_miptree.c b/src/gallium/drivers/nv30/nv30_miptree.c
index 5458f834aa..23f8829321 100644
--- a/src/gallium/drivers/nv30/nv30_miptree.c
+++ b/src/gallium/drivers/nv30/nv30_miptree.c
@@ -123,6 +123,7 @@ nv30_miptree_blanket(struct pipe_screen *pscreen, const struct pipe_texture *pt,
mt->base = *pt;
mt->base.refcount = 1;
mt->base.screen = pscreen;
+ mt->level[0].pitch = stride[0];
mt->level[0].image_offset = CALLOC(1, sizeof(unsigned));
pipe_buffer_reference(pscreen, &mt->buffer, pb);