From d087cfaabf386c462329fb62f54311523a89f106 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 2 Feb 2011 18:11:27 -0700 Subject: 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. --- src/gallium/auxiliary/cso_cache/cso_context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/auxiliary/cso_cache/cso_context.c b/src/gallium/auxiliary/cso_cache/cso_context.c index 58b022d531..b983fa61c1 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; -- cgit v1.2.3