diff options
author | Marek Olšák <[email protected]> | 2015-02-20 20:17:39 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2015-02-21 00:16:35 +0100 |
commit | 0feb0b73731cebd1513dd7f4e6cdf6de81edb802 (patch) | |
tree | 452f96cc43af6a89265f084e42402e78d26711ef | |
parent | 41f49a2fd422f698c2edaf71c016f38a925d02fd (diff) |
vbo: fix an unitialized-variable warning
It looks like a bug to me.
Cc: 10.5 10.4 10.3 <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
-rw-r--r-- | src/mesa/vbo/vbo_attrib_tmp.h | 1 |
1 files changed, 1 insertions, 0 deletions
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 \ |