diff options
author | Vinson Lee <[email protected]> | 2010-07-08 17:54:47 -0700 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2010-07-08 17:54:47 -0700 |
commit | f8f1c629d6b2f86e65c5c0997b140cf8db8f616e (patch) | |
tree | 94d0fcb2a24c3adaeade1da1d25cb74fbdd27a64 /src | |
parent | 41f66915ab3d052e0e2ef06000d6534eb7776ec6 (diff) |
draw: Fix off-by-one error in assert.
textures is an array of size PIPE_MAX_VERTEX_SAMPLERS.
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_llvm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/draw/draw_llvm.c b/src/gallium/auxiliary/draw/draw_llvm.c index facdafcc012..315544d7b87 100644 --- a/src/gallium/auxiliary/draw/draw_llvm.c +++ b/src/gallium/auxiliary/draw/draw_llvm.c @@ -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]; |