diff options
author | Vinson Lee <vlee@vmware.com> | 2010-11-04 17:39:17 -0700 |
---|---|---|
committer | Vinson Lee <vlee@vmware.com> | 2010-11-04 17:39:17 -0700 |
commit | 03577f8250cc7c8cdbd6ce1e166d9c1315c15280 (patch) | |
tree | 6934db612b5f8756a2ec36dc56c017bfa2db878b | |
parent | eba2ad6de2e4310521befce6aa10e954905af329 (diff) |
i965: Silence uninitialized variable warning.
Silences this GCC warning.
brw_wm_fp.c: In function 'precalc_tex':
brw_wm_fp.c:666: warning: 'tmpcoord.Index' may be used uninitialized in this function
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_wm_fp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_wm_fp.c b/src/mesa/drivers/dri/i965/brw_wm_fp.c index 938fb80857..d69b83653e 100644 --- a/src/mesa/drivers/dri/i965/brw_wm_fp.c +++ b/src/mesa/drivers/dri/i965/brw_wm_fp.c @@ -663,7 +663,7 @@ static void precalc_tex( struct brw_wm_compile *c, const struct prog_instruction *inst ) { struct prog_src_register coord; - struct prog_dst_register tmpcoord; + struct prog_dst_register tmpcoord = { 0 }; const GLuint unit = c->fp->program.Base.SamplerUnits[inst->TexSrcUnit]; assert(unit < BRW_MAX_TEX_UNIT); |