Re: [Mesa-dev] [PATCH 11/14] anv/cmd_buffer: Sync clear values in begin_subpass

2018-02-13 Thread Jason Ekstrand
On Tue, Feb 13, 2018 at 4:35 PM, Nanley Chery wrote: > On Mon, Feb 05, 2018 at 02:35:00PM -0800, Jason Ekstrand wrote: > > This is quite a bit cleaner because we now sync the clear values at the > > same time as we do the fast clear. For loading the clear values into > > the surface state, we no

Re: [Mesa-dev] [PATCH 11/14] anv/cmd_buffer: Sync clear values in begin_subpass

2018-02-13 Thread Nanley Chery
On Mon, Feb 05, 2018 at 02:35:00PM -0800, Jason Ekstrand wrote: > This is quite a bit cleaner because we now sync the clear values at the > same time as we do the fast clear. For loading the clear values into > the surface state, we now do it once when we handle the LOAD_OP_LOAD > instead of every

[Mesa-dev] [PATCH 11/14] anv/cmd_buffer: Sync clear values in begin_subpass

2018-02-05 Thread Jason Ekstrand
This is quite a bit cleaner because we now sync the clear values at the same time as we do the fast clear. For loading the clear values into the surface state, we now do it once when we handle the LOAD_OP_LOAD instead of every subpass. --- src/intel/vulkan/genX_cmd_buffer.c | 148