Re: [Mesa-dev] [PATCH] i965/fs: Fix implied_mrf_writes for scratch writes

2015-05-23 Thread Kenneth Graunke
On Saturday, May 23, 2015 11:57:32 AM Jason Ekstrand wrote: > On Sat, May 23, 2015 at 11:53 AM, Kenneth Graunke > wrote: > > On Tuesday, May 19, 2015 05:37:04 PM Jason Ekstrand wrote: > >> We build the entire message in the generator so all the MRF writes are > >> implied. > >> --- > >> src/mesa

Re: [Mesa-dev] [PATCH] i965/fs: Fix implied_mrf_writes for scratch writes

2015-05-23 Thread Jason Ekstrand
On Sat, May 23, 2015 at 11:53 AM, Kenneth Graunke wrote: > On Tuesday, May 19, 2015 05:37:04 PM Jason Ekstrand wrote: >> We build the entire message in the generator so all the MRF writes are >> implied. >> --- >> src/mesa/drivers/dri/i965/brw_fs.cpp | 2 +- >> 1 file changed, 1 insertion(+), 1 d

Re: [Mesa-dev] [PATCH] i965/fs: Fix implied_mrf_writes for scratch writes

2015-05-23 Thread Kenneth Graunke
On Tuesday, May 19, 2015 05:37:04 PM Jason Ekstrand wrote: > We build the entire message in the generator so all the MRF writes are > implied. > --- > src/mesa/drivers/dri/i965/brw_fs.cpp | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp

[Mesa-dev] [PATCH] i965/fs: Fix implied_mrf_writes for scratch writes

2015-05-19 Thread Jason Ekstrand
We build the entire message in the generator so all the MRF writes are implied. --- src/mesa/drivers/dri/i965/brw_fs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp index 9b3186b..42a0d78 100644 --