Re: [Mesa-dev] [PATCH 1/3] anv: Add anv_outarray

2017-03-13 Thread Chad Versace
On Wed 08 Mar 2017, Chad Versace wrote: > On Mon 06 Mar 2017, Jason Ekstrand wrote: > > On Mon, Mar 6, 2017 at 10:25 AM, Chad Versace > > wrote: > > > > > anv_outarray is a wrapper for a Vulkan output array. A Vulkan output > > > array is one that follows the convention of the parameters to > > >

Re: [Mesa-dev] [PATCH 1/3] anv: Add anv_outarray

2017-03-08 Thread Chad Versace
On Mon 06 Mar 2017, Jason Ekstrand wrote: > On Mon, Mar 6, 2017 at 10:25 AM, Chad Versace > wrote: > > > anv_outarray is a wrapper for a Vulkan output array. A Vulkan output > > array is one that follows the convention of the parameters to > > vkGetPhysicalDeviceQueueFamilyProperties(). > > > > I

Re: [Mesa-dev] [PATCH 1/3] anv: Add anv_outarray

2017-03-06 Thread Jason Ekstrand
On Mon, Mar 6, 2017 at 10:25 AM, Chad Versace wrote: > anv_outarray is a wrapper for a Vulkan output array. A Vulkan output > array is one that follows the convention of the parameters to > vkGetPhysicalDeviceQueueFamilyProperties(). > > In the upcoming dma_buf extensions, anv_outarray will simpl

[Mesa-dev] [PATCH 1/3] anv: Add anv_outarray

2017-03-06 Thread Chad Versace
anv_outarray is a wrapper for a Vulkan output array. A Vulkan output array is one that follows the convention of the parameters to vkGetPhysicalDeviceQueueFamilyProperties(). In the upcoming dma_buf extensions, anv_outarray will simplify the code for querying the DRM format modifiers. --- src/int