draw: fix typo in comment
authorBrian Paul <brianp@vmware.com>
Wed, 20 Oct 2010 23:18:40 +0000 (17:18 -0600)
committerBrian Paul <brianp@vmware.com>
Thu, 21 Oct 2010 23:05:35 +0000 (17:05 -0600)
src/gallium/auxiliary/draw/draw_llvm.c

index d808c05..140e596 100644 (file)
@@ -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, "");