From 77ee438e612f2c8325bceefd4294ebcac535f16a Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Thu, 13 May 2010 13:21:37 -0600 Subject: llvmpipe: silence uninitialized var warnings --- src/gallium/auxiliary/gallivm/lp_bld_sample_soa.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gallium/auxiliary/gallivm/lp_bld_sample_soa.c b/src/gallium/auxiliary/gallivm/lp_bld_sample_soa.c index f9dea306ab..bc7213db8b 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_sample_soa.c +++ b/src/gallium/auxiliary/gallivm/lp_bld_sample_soa.c @@ -918,7 +918,8 @@ lp_build_lod_selector(struct lp_build_sample_context *bld, } else { const int dims = texture_dims(bld->static_state->target); - LLVMValueRef dsdx, dsdy, dtdx, dtdy, drdx, drdy; + LLVMValueRef dsdx, dsdy; + LLVMValueRef dtdx = NULL, dtdy = NULL, drdx = NULL, drdy = NULL; LLVMValueRef rho; /* -- cgit v1.2.3