diff options
author | Zack Rusin <[email protected]> | 2010-03-30 17:21:11 -0400 |
---|---|---|
committer | Zack Rusin <[email protected]> | 2010-03-30 17:21:11 -0400 |
commit | b0f946e90069f34e69a0492caa7a2867ae184e9a (patch) | |
tree | f0f2d07e20fbc390fcb30fef69aa13043f89264a /src/gallium/auxiliary/draw/draw_llvm.c | |
parent | 8bc07fc83e344c9e693bdec4148009320a1731f1 (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.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 cd183d5087c..1127d5417e8 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); } |