diff options
author | Brian Paul <[email protected]> | 2009-01-07 15:06:06 -0700 |
---|---|---|
committer | Alan Hourihane <[email protected]> | 2009-01-09 11:16:37 +0000 |
commit | 5727ed130ef1d3adb87de89ea717e07726131f3e (patch) | |
tree | f2c111448dc9c21cd48969261de11fe8fd48a19b /src/mesa/drivers/dri | |
parent | 735bdcfad82d87f943c6fb40f4534e9125d3c595 (diff) |
i965: init dst reg RelAddr field to zero
Diffstat (limited to 'src/mesa/drivers/dri')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_wm_fp.c | 3 |
1 files changed, 2 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 7f7b957cbe8..cb1e40097bd 100644 --- a/src/mesa/drivers/dri/i965/brw_wm_fp.c +++ b/src/mesa/drivers/dri/i965/brw_wm_fp.c @@ -122,10 +122,11 @@ static struct prog_dst_register dst_reg(GLuint file, GLuint idx) reg.File = file; reg.Index = idx; reg.WriteMask = WRITEMASK_XYZW; + reg.RelAddr = 0; reg.CondMask = 0; reg.CondSwizzle = 0; - reg.pad = 0; reg.CondSrc = 0; + reg.pad = 0; return reg; } |