From: Zack Rusin Date: Wed, 6 Feb 2008 11:12:34 +0000 (-0500) Subject: disable llvm for fragment shaders for now X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1712a5380a12fe66fa03a281394abeca034f1a7c;p=mesa.git disable llvm for fragment shaders for now --- diff --git a/src/mesa/pipe/softpipe/sp_state_fs.c b/src/mesa/pipe/softpipe/sp_state_fs.c index 598a70c8279..0b814fc2847 100644 --- a/src/mesa/pipe/softpipe/sp_state_fs.c +++ b/src/mesa/pipe/softpipe/sp_state_fs.c @@ -62,11 +62,15 @@ softpipe_create_fs_state(struct pipe_context *pipe, #ifdef MESA_LLVM state->llvm_prog = 0; + +#if 0 if (!gallivm_global_cpu_engine()) { gallivm_cpu_engine_create(state->llvm_prog); } else gallivm_cpu_jit_compile(gallivm_global_cpu_engine(), state->llvm_prog); +#endif + #elif defined(__i386__) || defined(__386__) if (softpipe->use_sse) { x86_init_func( &state->sse2_program );