From 3e01c3f3baee82524e23107aecb2de4c7ee8b978 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Tue, 24 Jan 2012 11:15:43 -0700 Subject: [PATCH] softpipe: move var initialization to silence warning --- src/gallium/drivers/softpipe/sp_state_derived.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/gallium/drivers/softpipe/sp_state_derived.c b/src/gallium/drivers/softpipe/sp_state_derived.c index 7b2b04e84e9..b9b0f94289f 100644 --- a/src/gallium/drivers/softpipe/sp_state_derived.c +++ b/src/gallium/drivers/softpipe/sp_state_derived.c @@ -88,7 +88,7 @@ softpipe_get_vertex_info(struct softpipe_context *softpipe) vinfo->num_attribs = 0; for (i = 0; i < fsInfo->num_inputs; i++) { int src; - enum interp_mode interp; + enum interp_mode interp = INTERP_LINEAR; switch (fsInfo->input_interpolate[i]) { case TGSI_INTERPOLATE_CONSTANT: @@ -105,7 +105,6 @@ softpipe_get_vertex_info(struct softpipe_context *softpipe) break; default: assert(0); - interp = INTERP_LINEAR; } switch (fsInfo->input_semantic_name[i]) { -- 2.30.2