Mesa (master): draw: fix typo in comment

Brian Paul brianp at kemper.freedesktop.org
Thu Oct 21 23:07:11 UTC 2010


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

Author: Brian Paul <brianp at vmware.com>
Date:   Wed Oct 20 17:18:40 2010 -0600

draw: fix typo in comment

---

 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 d808c05..140e596 100644
--- a/src/gallium/auxiliary/draw/draw_llvm.c
+++ b/src/gallium/auxiliary/draw/draw_llvm.c
@@ -421,7 +421,7 @@ generate_fetch(LLVMBuilderRef builder,
                             "instance_divisor");
    }
 
-   /* limit index to min(inex, vb_max_index) */
+   /* limit index to min(index, vb_max_index) */
    cond = LLVMBuildICmp(builder, LLVMIntULE, index, vb_max_index, "");
    index = LLVMBuildSelect(builder, cond, index, vb_max_index, "");
 




More information about the mesa-commit mailing list