diff options
author | Connor Abbott <connor.w.abbott@intel.com> | 2015-08-11 16:20:37 -0700 |
---|---|---|
committer | Connor Abbott <connor.w.abbott@intel.com> | 2015-08-14 15:19:50 -0700 |
commit | 7bd71a9599727e248d79a96752e0fc903151ddd1 (patch) | |
tree | ac04af60524c701a2f79267ba4385f554667a43d | |
parent | d0b397014eab93ac3085c4f151cd7711fa839a42 (diff) |
i965/fs: print writemask_all when it's enabledrandom-fp64-fixes
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp index 386e9a269f..5474eac8a2 100644 --- a/src/mesa/drivers/dri/i965/brw_fs.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs.cpp @@ -4641,6 +4641,9 @@ fs_visitor::dump_instruction(backend_instruction *be_inst, FILE *file) fprintf(file, "1sthalf "); } + if (inst->force_writemask_all) + fprintf(file, "WE_all "); + fprintf(file, "\n"); } |