summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/cso_cache
diff options
context:
space:
mode:
authorRoland Scheidegger <sroland@vmware.com>2010-03-09 19:05:32 +0100
committerRoland Scheidegger <sroland@vmware.com>2010-03-09 20:33:21 +0100
commit0d6b0b0d9d5257cc8fb95786b6cd77d088bdb35e (patch)
tree1d959de38b732fdd11f4a1397b9e94aa11323044 /src/gallium/auxiliary/cso_cache
parentbf50d40f1ba68a0f19ca06196af99c01efce1e76 (diff)
cso: don't forget to release vertex elements state
Diffstat (limited to 'src/gallium/auxiliary/cso_cache')
-rw-r--r--src/gallium/auxiliary/cso_cache/cso_context.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/cso_cache/cso_context.c b/src/gallium/auxiliary/cso_cache/cso_context.c
index f8cb01467c..6500891a10 100644
--- a/src/gallium/auxiliary/cso_cache/cso_context.c
+++ b/src/gallium/auxiliary/cso_cache/cso_context.c
@@ -289,6 +289,7 @@ void cso_release_all( struct cso_context *ctx )
ctx->pipe->bind_depth_stencil_alpha_state( ctx->pipe, NULL );
ctx->pipe->bind_fs_state( ctx->pipe, NULL );
ctx->pipe->bind_vs_state( ctx->pipe, NULL );
+ ctx->pipe->bind_vertex_elements_state( ctx->pipe, NULL );
}
for (i = 0; i < PIPE_MAX_SAMPLERS; i++) {