summaryrefslogtreecommitdiff
path: root/src/gallium
diff options
context:
space:
mode:
authorBen Skeggs <bskeggs@redhat.com>2013-11-12 17:58:18 +1000
committerBen Skeggs <bskeggs@redhat.com>2013-11-13 08:09:29 +1000
commitc944bde5bee6097fd42eed23d293e021df76f6d7 (patch)
treec8fef1a2c72b1269403dede4ac64f77ef00c2527 /src/gallium
parent99d447cc5dafa3a36b970068961989cced62e3b6 (diff)
nvc0: release 3d bufctx after drawing
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'src/gallium')
-rw-r--r--src/gallium/drivers/nouveau/nvc0/nvc0_vbo.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/nouveau/nvc0/nvc0_vbo.c b/src/gallium/drivers/nouveau/nvc0/nvc0_vbo.c
index c4bc7dc693b..490d16eda03 100644
--- a/src/gallium/drivers/nouveau/nvc0/nvc0_vbo.c
+++ b/src/gallium/drivers/nouveau/nvc0/nvc0_vbo.c
@@ -832,6 +832,7 @@ nvc0_draw_vbo(struct pipe_context *pipe, const struct pipe_draw_info *info)
if (nvc0->state.vbo_mode) {
nvc0_push_vbo(nvc0, info);
push->kick_notify = nvc0_default_kick_notify;
+ nouveau_pushbuf_bufctx(push, NULL);
return;
}
@@ -888,4 +889,6 @@ nvc0_draw_vbo(struct pipe_context *pipe, const struct pipe_draw_info *info)
push->kick_notify = nvc0_default_kick_notify;
nvc0_release_user_vbufs(nvc0);
+
+ nouveau_pushbuf_bufctx(push, NULL);
}