From 7c4208c3a0f48955720f41b3cb320a120c505ba6 Mon Sep 17 00:00:00 2001 From: Zack Rusin Date: Mon, 19 Apr 2010 12:46:08 -0400 Subject: draw llvm: fix constructor mess use just one constructor to figure out whether to use llvm. --- src/gallium/drivers/llvmpipe/lp_context.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src/gallium/drivers') diff --git a/src/gallium/drivers/llvmpipe/lp_context.c b/src/gallium/drivers/llvmpipe/lp_context.c index efdc2450f7..f7cf06d8d4 100644 --- a/src/gallium/drivers/llvmpipe/lp_context.c +++ b/src/gallium/drivers/llvmpipe/lp_context.c @@ -45,10 +45,6 @@ #include "lp_query.h" #include "lp_setup.h" - -#define USE_DRAW_LLVM 1 - - static void llvmpipe_destroy( struct pipe_context *pipe ) { struct llvmpipe_context *llvmpipe = llvmpipe_context( pipe ); @@ -162,11 +158,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(&llvmpipe->pipe); -#else llvmpipe->draw = draw_create(&llvmpipe->pipe); -#endif if (!llvmpipe->draw) goto fail; -- cgit v1.2.3