summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/llvmpipe/lp_context.c
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2010-04-07 13:49:29 +0100
committerJosé Fonseca <jfonseca@vmware.com>2010-04-07 13:49:29 +0100
commitda17623c33cddf96c0f63b32e25ebc33b04a2b14 (patch)
tree57582979e00db04df0f90c8911a223b2e2fb2e26 /src/gallium/drivers/llvmpipe/lp_context.c
parent765dc9fc32cf9016473726fbf4827c2aa4cec0b1 (diff)
llvmpipe: Fix USE_DRAW_LLVM build. Use lp_build_engine.
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_context.c')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_context.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_context.c b/src/gallium/drivers/llvmpipe/lp_context.c
index 62d42317d7..d94c2da2ff 100644
--- a/src/gallium/drivers/llvmpipe/lp_context.c
+++ b/src/gallium/drivers/llvmpipe/lp_context.c
@@ -182,7 +182,7 @@ llvmpipe_create_context( struct pipe_screen *screen, void *priv )
* Create drawing context and plug our rendering stage into it.
*/
#if USE_DRAW_LLVM
- llvmpipe->draw = draw_create_with_llvm(llvmscreen->engine);
+ llvmpipe->draw = draw_create_with_llvm();
#else
llvmpipe->draw = draw_create();
#endif