diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2005-12-12 15:27:55 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2005-12-12 15:27:55 +0000 |
commit | 0063084804d62402d80821a86978660663955442 (patch) | |
tree | df0354be06b0ccfdcd38003b14602825913cf4d6 /src/mesa | |
parent | 40332059e4f7b289e5524d10c5565232d27bffbe (diff) |
silence warning, bug 5318
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/main/texenvprogram.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/main/texenvprogram.c b/src/mesa/main/texenvprogram.c index 711464aab2..23d6239fb7 100644 --- a/src/mesa/main/texenvprogram.c +++ b/src/mesa/main/texenvprogram.c @@ -738,6 +738,8 @@ static struct ureg emit_combine( struct texenv_fragment_program *p, struct ureg tmp, half; GLuint i; + tmp = undef; /* silence warning (bug 5318) */ + for (i = 0; i < nr; i++) src[i] = emit_combine_source( p, mask, unit, opt[i].Source, opt[i].Operand ); |