Re: [Mesa-dev] [PATCH 10/14] anv/pass: Store usage in each subpass attachment

2018-02-13 Thread Nanley Chery
On Mon, Feb 05, 2018 at 02:34:59PM -0800, Jason Ekstrand wrote: > This requires us to ditch the VkAttachmentReference struct in favor of > an anv-specific struct. However, we can now easily identify from just > the subpass attachment what kind of an attachment it is. This will make > iteration ov

Re: [Mesa-dev] [PATCH 10/14] anv/pass: Store usage in each subpass attachment

2018-02-13 Thread Nanley Chery
On Tue, Feb 13, 2018 at 03:23:42PM -0800, Jason Ekstrand wrote: > On Tue, Feb 13, 2018 at 3:18 PM, Nanley Chery wrote: > > > On Mon, Feb 05, 2018 at 02:34:59PM -0800, Jason Ekstrand wrote: > > > This requires us to ditch the VkAttachmentReference struct in favor of > > > an anv-specific struct.

Re: [Mesa-dev] [PATCH 10/14] anv/pass: Store usage in each subpass attachment

2018-02-13 Thread Jason Ekstrand
On Tue, Feb 13, 2018 at 3:18 PM, Nanley Chery wrote: > On Mon, Feb 05, 2018 at 02:34:59PM -0800, Jason Ekstrand wrote: > > This requires us to ditch the VkAttachmentReference struct in favor of > > an anv-specific struct. However, we can now easily identify from just > > the subpass attachment w

Re: [Mesa-dev] [PATCH 10/14] anv/pass: Store usage in each subpass attachment

2018-02-13 Thread Nanley Chery
On Mon, Feb 05, 2018 at 02:34:59PM -0800, Jason Ekstrand wrote: > This requires us to ditch the VkAttachmentReference struct in favor of > an anv-specific struct. However, we can now easily identify from just > the subpass attachment what kind of an attachment it is. This will make > iteration ov

[Mesa-dev] [PATCH 10/14] anv/pass: Store usage in each subpass attachment

2018-02-05 Thread Jason Ekstrand
This requires us to ditch the VkAttachmentReference struct in favor of an anv-specific struct. However, we can now easily identify from just the subpass attachment what kind of an attachment it is. This will make iteration over anv_subpass::attachments a little easier in some case. --- src/intel