diff options
author | Brian Paul <[email protected]> | 2010-07-01 11:43:18 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-07-01 13:07:07 -0600 |
commit | 1d298a3764cef6a7119524fdc8f3c0d2589d6070 (patch) | |
tree | d3f3615fbd541946a847016d3aaaaa76cf484635 /src/gallium/auxiliary/cso_cache | |
parent | 5b90f83aee89d051983485cdec5b5db2f3659256 (diff) |
gallium/cso: unbind sampler views in cso_release_all()
Diffstat (limited to 'src/gallium/auxiliary/cso_cache')
-rw-r--r-- | src/gallium/auxiliary/cso_cache/cso_context.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/cso_cache/cso_context.c b/src/gallium/auxiliary/cso_cache/cso_context.c index 20a8612dcae..2a85fe365e2 100644 --- a/src/gallium/auxiliary/cso_cache/cso_context.c +++ b/src/gallium/auxiliary/cso_cache/cso_context.c @@ -289,6 +289,8 @@ void cso_release_all( struct cso_context *ctx ) 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 ); + ctx->pipe->set_fragment_sampler_views(ctx->pipe, 0, NULL); + ctx->pipe->set_vertex_sampler_views(ctx->pipe, 0, NULL); } for (i = 0; i < PIPE_MAX_SAMPLERS; i++) { |