aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIlia Mirkin <[email protected]>2017-05-20 04:17:22 -0400
committerIlia Mirkin <[email protected]>2017-05-20 04:20:11 -0400
commit85d21863266ce192a3368ef58f5a17a26ef79c3b (patch)
tree93984ce2a265a56a244561d9a6e06cc87a84a9b5
parente781b9e640c7760cb6b255b90ca6d429732f0183 (diff)
nv50: fix vtxbuf cleanup
Use a user-buffer-aware cleanup function. Fixes: c24c3b94ed ("gallium: decrease the size of pipe_vertex_buffer - 24 -> 16 bytes") Signed-off-by: Ilia Mirkin <[email protected]>
-rw-r--r--src/gallium/drivers/nouveau/nv50/nv50_context.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nouveau/nv50/nv50_context.c b/src/gallium/drivers/nouveau/nv50/nv50_context.c
index d2c37ac276d..1ca6a0a178a 100644
--- a/src/gallium/drivers/nouveau/nv50/nv50_context.c
+++ b/src/gallium/drivers/nouveau/nv50/nv50_context.c
@@ -140,7 +140,7 @@ nv50_context_unreference_resources(struct nv50_context *nv50)
assert(nv50->num_vtxbufs <= PIPE_MAX_ATTRIBS);
for (i = 0; i < nv50->num_vtxbufs; ++i)
- pipe_resource_reference(&nv50->vtxbuf[i].buffer.resource, NULL);
+ pipe_vertex_buffer_unreference(&nv50->vtxbuf[i]);
for (s = 0; s < 3; ++s) {
assert(nv50->num_textures[s] <= PIPE_MAX_SAMPLERS);