Module: Mesa
Branch: master
Commit: b21f8e364b997c31ad0b3f97b18c7d87a35642eb
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=b21f8e364b997c31ad0b3f97b18c7d87a35642eb

Author: Brian Paul <[email protected]>
Date:   Tue Mar  5 18:08:50 2013 -0700

llvmpipe: fix incorrect 'j' array index in dummy texture code

Use 0 instead.

Reviewed-by: Roland Scheidegger <[email protected]>

---

 src/gallium/drivers/llvmpipe/lp_setup.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/gallium/drivers/llvmpipe/lp_setup.c 
b/src/gallium/drivers/llvmpipe/lp_setup.c
index 4529775..299fd65 100644
--- a/src/gallium/drivers/llvmpipe/lp_setup.c
+++ b/src/gallium/drivers/llvmpipe/lp_setup.c
@@ -720,9 +720,9 @@ lp_setup_set_fragment_sampler_views(struct lp_setup_context 
*setup,
                jit_tex->depth = 1;
                jit_tex->first_level = 0;
                jit_tex->last_level = 0;
-               jit_tex->mip_offsets[j] = 0;
-               jit_tex->row_stride[j] = 0;
-               jit_tex->img_stride[j] = 0;
+               jit_tex->mip_offsets[0] = 0;
+               jit_tex->row_stride[0] = 0;
+               jit_tex->img_stride[0] = 0;
             }
             else {
                jit_tex->width = res->width0;

_______________________________________________
mesa-commit mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to