draw: Fix off-by-one error in assert.
authorVinson Lee <vlee@vmware.com>
Fri, 9 Jul 2010 00:54:47 +0000 (17:54 -0700)
committerVinson Lee <vlee@vmware.com>
Fri, 9 Jul 2010 00:54:47 +0000 (17:54 -0700)
textures is an array of size PIPE_MAX_VERTEX_SAMPLERS.

src/gallium/auxiliary/draw/draw_llvm.c

index facdafc..315544d 100644 (file)
@@ -1002,7 +1002,7 @@ draw_llvm_set_mapped_texture(struct draw_context *draw,
    unsigned j;
    struct draw_jit_texture *jit_tex;
 
-   assert(sampler_idx <= PIPE_MAX_VERTEX_SAMPLERS);
+   assert(sampler_idx < PIPE_MAX_VERTEX_SAMPLERS);
 
 
    jit_tex = &draw->llvm->jit_context.textures[sampler_idx];