summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/draw/draw_llvm_translate.c
diff options
context:
space:
mode:
authorZack Rusin <zackr@vmware.com>2010-03-30 16:16:36 -0400
committerZack Rusin <zackr@vmware.com>2010-03-30 16:16:36 -0400
commit8bc07fc83e344c9e693bdec4148009320a1731f1 (patch)
tree8aee07e71545aa874cf9a5b11434e74038b95086 /src/gallium/auxiliary/draw/draw_llvm_translate.c
parent6f34339af421d4001dcc01114be462d2ea381f16 (diff)
draw llvm: fix some silly mistakes
the vs_type selection isn't ideal, but for now both llvmpipe's fs and vs do the same thing which is operate on 4xfloat vector as the base type
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_llvm_translate.c')
-rw-r--r--src/gallium/auxiliary/draw/draw_llvm_translate.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/draw/draw_llvm_translate.c b/src/gallium/auxiliary/draw/draw_llvm_translate.c
index 74830f1b46..260568aaa4 100644
--- a/src/gallium/auxiliary/draw/draw_llvm_translate.c
+++ b/src/gallium/auxiliary/draw/draw_llvm_translate.c
@@ -436,7 +436,6 @@ fetch(LLVMBuilderRef builder,
src_tmp = LLVMBuildLoad(builder, src_tmp, "");
- LLVMDumpValue(src_tmp);
/* convert src_tmp to float */
component = func(builder, src_tmp);