summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/draw/draw_llvm.c
diff options
context:
space:
mode:
authorZack Rusin <zackr@vmware.com>2010-03-30 17:21:11 -0400
committerZack Rusin <zackr@vmware.com>2010-03-30 17:21:11 -0400
commitb0f946e90069f34e69a0492caa7a2867ae184e9a (patch)
treef0f2d07e20fbc390fcb30fef69aa13043f89264a /src/gallium/auxiliary/draw/draw_llvm.c
parent8bc07fc83e344c9e693bdec4148009320a1731f1 (diff)
draw llvm: actually set the constant buffers on the context
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_llvm.c')
-rw-r--r--src/gallium/auxiliary/draw/draw_llvm.c2
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 cd183d5087..1127d5417e 100644
--- a/src/gallium/auxiliary/draw/draw_llvm.c
+++ b/src/gallium/auxiliary/draw/draw_llvm.c
@@ -110,7 +110,7 @@ init_globals(struct draw_llvm *llvm)
LP_CHECK_STRUCT_SIZE(struct draw_jit_context,
llvm->target, context_type);
- LLVMAddTypeName(llvm->module, "context", context_type);
+ LLVMAddTypeName(llvm->module, "draw_jit_context", context_type);
llvm->context_ptr_type = LLVMPointerType(context_type, 0);
}