i965/fs: Use MRF0 for the repclear message
authorJason Ekstrand <jason.ekstrand@intel.com>
Sat, 30 Apr 2016 01:40:35 +0000 (18:40 -0700)
committerJason Ekstrand <jason.ekstrand@intel.com>
Sat, 14 May 2016 20:34:33 +0000 (13:34 -0700)
This is what BLORP does.  Making them match cuts down on the noise when
looking at AUB diffs.

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
src/mesa/drivers/dri/i965/brw_fs.cpp

index 1e84b101a8ea4ddbf81d9fe9e17c4ab3b1ac2f9f..2de5533d3e7f5a6670f27639f8236b84ca04a2aa 100644 (file)
@@ -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;