summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Ekstrand <[email protected]>2016-04-29 18:40:35 -0700
committerJason Ekstrand <[email protected]>2016-05-14 13:34:33 -0700
commita0e6e5f21ffea8acb9500ef699b204c557214b75 (patch)
treee679220ee999aeb68e490dfab5ae2389ec9126cd
parent5a68df87dac0c4206382f9d31046410bad2ce2f1 (diff)
i965/fs: Use MRF0 for the repclear message
This is what BLORP does. Making them match cuts down on the noise when looking at AUB diffs. Reviewed-by: Kenneth Graunke <[email protected]>
-rw-r--r--src/mesa/drivers/dri/i965/brw_fs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp
index 1e84b101a8e..2de5533d3e7 100644
--- a/src/mesa/drivers/dri/i965/brw_fs.cpp
+++ b/src/mesa/drivers/dri/i965/brw_fs.cpp
@@ -2958,7 +2958,7 @@ void
fs_visitor::emit_repclear_shader()
{
brw_wm_prog_key *key = (brw_wm_prog_key*) this->key;
- int base_mrf = 1;
+ int base_mrf = 0;
int color_mrf = base_mrf + 2;
fs_inst *mov;