diff options
author | Brian Paul <[email protected]> | 2011-02-02 18:11:27 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-02-02 18:11:30 -0700 |
commit | d087cfaabf386c462329fb62f54311523a89f106 (patch) | |
tree | f14143e30fd3b9223bc0ae18ffb3d6c12a2fccb1 /src/gallium/auxiliary/cso_cache | |
parent | fd1252ab67abb1ea351195e192429f292667a8a2 (diff) |
cso: fix loop bound in cso_set_vertex_samplers()
Before we were looping to nr_samplers, which is the number of fragment
samplers, not vertex samplers.
NOTE: This is a candidate for the 7.9 and 7.10 branches.
Diffstat (limited to 'src/gallium/auxiliary/cso_cache')
-rw-r--r-- | src/gallium/auxiliary/cso_cache/cso_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/cso_cache/cso_context.c b/src/gallium/auxiliary/cso_cache/cso_context.c index 58b022d531d..b983fa61c12 100644 --- a/src/gallium/auxiliary/cso_cache/cso_context.c +++ b/src/gallium/auxiliary/cso_cache/cso_context.c @@ -595,7 +595,7 @@ enum pipe_error cso_set_vertex_samplers(struct cso_context *ctx, error = temp; } - for ( ; i < ctx->nr_samplers; i++) { + for ( ; i < ctx->nr_vertex_samplers; i++) { temp = cso_single_vertex_sampler( ctx, i, NULL ); if (temp != PIPE_OK) error = temp; |