From: Marek Olšák Date: Fri, 20 Feb 2015 19:17:39 +0000 (+0100) Subject: vbo: fix an unitialized-variable warning X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0feb0b73731cebd1513dd7f4e6cdf6de81edb802;p=mesa.git vbo: fix an unitialized-variable warning It looks like a bug to me. Cc: 10.5 10.4 10.3 Reviewed-by: Brian Paul --- diff --git a/src/mesa/vbo/vbo_attrib_tmp.h b/src/mesa/vbo/vbo_attrib_tmp.h index ec66934fc4e..0c44540fc74 100644 --- a/src/mesa/vbo/vbo_attrib_tmp.h +++ b/src/mesa/vbo/vbo_attrib_tmp.h @@ -210,6 +210,7 @@ static inline float conv_i2_to_norm_float(const struct gl_context *ctx, int i2) } \ } else if ((type) == GL_UNSIGNED_INT_10F_11F_11F_REV) { \ float res[4]; \ + res[3] = 1; \ r11g11b10f_to_float3((arg), res); \ ATTR##val##FV((attr), res); \ } else \