diff options
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_vs.c')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_vs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/draw/draw_vs.c b/src/gallium/auxiliary/draw/draw_vs.c index eb7f4e0967c..dc50870b267 100644 --- a/src/gallium/auxiliary/draw/draw_vs.c +++ b/src/gallium/auxiliary/draw/draw_vs.c @@ -149,7 +149,7 @@ draw_vs_init( struct draw_context *draw ) { draw->dump_vs = debug_get_option_gallium_dump_vs(); - if (!draw_get_option_use_llvm()) { + if (!draw->llvm) { draw->vs.tgsi.machine = tgsi_exec_machine_create(); if (!draw->vs.tgsi.machine) return FALSE; @@ -175,7 +175,7 @@ draw_vs_destroy( struct draw_context *draw ) if (draw->vs.emit_cache) translate_cache_destroy(draw->vs.emit_cache); - if (!draw_get_option_use_llvm()) + if (!draw->llvm) tgsi_exec_machine_destroy(draw->vs.tgsi.machine); } |