From: Jason Ekstrand Date: Sat, 30 Apr 2016 01:40:35 +0000 (-0700) Subject: i965/fs: Use MRF0 for the repclear message X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a0e6e5f21ffea8acb9500ef699b204c557214b75;p=mesa.git 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 --- 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;