diff options
author | Vinson Lee <[email protected]> | 2009-12-27 17:40:48 -0800 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2009-12-27 17:40:48 -0800 |
commit | 0463ee64e39951257d0bb7c5a9b6c894fe761dd1 (patch) | |
tree | 7a161294cbd72373a00a776c48ede731003a0a8b | |
parent | b0d5e44f243f64caecec66fae3b8dfc1c0107032 (diff) |
tgsi/ureg: Silence uninitialized variable warnings.
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_ureg.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_ureg.c b/src/gallium/auxiliary/tgsi/tgsi_ureg.c index 3f752e9352f..bf39cf54094 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_ureg.c +++ b/src/gallium/auxiliary/tgsi/tgsi_ureg.c @@ -780,8 +780,8 @@ ureg_insn(struct ureg_program *ureg, unsigned i; boolean saturate; boolean predicate; - boolean negate; - unsigned swizzle[4]; + boolean negate = FALSE; + unsigned swizzle[4] = { 0 }; saturate = nr_dst ? dst[0].Saturate : FALSE; predicate = nr_dst ? dst[0].Predicate : FALSE; @@ -827,8 +827,8 @@ ureg_tex_insn(struct ureg_program *ureg, unsigned i; boolean saturate; boolean predicate; - boolean negate; - unsigned swizzle[4]; + boolean negate = FALSE; + unsigned swizzle[4] = { 0 }; saturate = nr_dst ? dst[0].Saturate : FALSE; predicate = nr_dst ? dst[0].Predicate : FALSE; |