Mesa (master): draw: Fix io_ptr/num_prims name in IR.

Jose Fonseca jrfonseca at kemper.freedesktop.org
Tue May 14 14:36:40 UTC 2013


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

Author: José Fonseca <jfonseca at vmware.com>
Date:   Tue May 14 14:18:42 2013 +0100

draw: Fix io_ptr/num_prims name in IR.

Trivial.

---

 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 d2821a1..8e2ab1e 100644
--- a/src/gallium/auxiliary/draw/draw_llvm.c
+++ b/src/gallium/auxiliary/draw/draw_llvm.c
@@ -1973,7 +1973,7 @@ draw_gs_llvm_generate(struct draw_llvm *llvm,
    lp_build_name(context_ptr, "context");
    lp_build_name(input_array, "input");
    lp_build_name(io_ptr, "io");
-   lp_build_name(io_ptr, "num_prims");
+   lp_build_name(num_prims, "num_prims");
    lp_build_name(system_values.instance_id, "instance_id");
    lp_build_name(prim_id_ptr, "prim_id_ptr");
 




More information about the mesa-commit mailing list