projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a485341
)
i965g: init saturate field in fp dst_reg helper
author
Keith Whitwell
<keithw@vmware.com>
Fri, 6 Nov 2009 12:01:11 +0000
(12:01 +0000)
committer
Keith Whitwell
<keithw@vmware.com>
Fri, 6 Nov 2009 12:01:11 +0000
(12:01 +0000)
src/gallium/drivers/i965/brw_wm_fp.c
patch
|
blob
|
history
diff --git
a/src/gallium/drivers/i965/brw_wm_fp.c
b/src/gallium/drivers/i965/brw_wm_fp.c
index 74aa02f19836f5fd79858aad771e48b392b5d140..d27a768a0c50bd210022136abb368c729f8918c3 100644
(file)
--- a/
src/gallium/drivers/i965/brw_wm_fp.c
+++ b/
src/gallium/drivers/i965/brw_wm_fp.c
@@
-223,6
+223,7
@@
static struct brw_fp_dst dst_reg(GLuint file, GLuint idx)
reg.index = idx;
reg.writemask = BRW_WRITEMASK_XYZW;
reg.indirect = 0;
+ reg.saturate = 0;
return reg;
}