Re: [Mesa-dev] [PATCH] anv: fix enumeration of properties

2016-11-23 Thread Emil Velikov
On 23 November 2016 at 07:51, Iago Toral wrote: > Hey Emil, > > On Thu, 2016-10-06 at 14:12 +0100, Emil Velikov wrote: >> From: Emil Velikov >> >> Driver should enumerate only up-to min2(num_available, num_requested) >> properties and return VK_INCOMPLETE if the # of requested props is >> smaller

Re: [Mesa-dev] [PATCH] anv: fix enumeration of properties

2016-11-22 Thread Iago Toral
Hey Emil, On Thu, 2016-10-06 at 14:12 +0100, Emil Velikov wrote: > From: Emil Velikov > > Driver should enumerate only up-to min2(num_available, num_requested) > properties and return VK_INCOMPLETE if the # of requested props is > smaller than the ones available. > > Presently we assert out in

Re: [Mesa-dev] [PATCH] anv: fix enumeration of properties

2016-11-10 Thread Jason Ekstrand
On Thu, Oct 6, 2016 at 6:12 AM, Emil Velikov wrote: > From: Emil Velikov > > Driver should enumerate only up-to min2(num_available, num_requested) > properties and return VK_INCOMPLETE if the # of requested props is > smaller than the ones available. > Thanks for fixing this! > Presently we a

Re: [Mesa-dev] [PATCH] anv: fix enumeration of properties

2016-10-14 Thread Eric Engestrom
On Thursday, 2016-10-06 14:12:27 +0100, Emil Velikov wrote: > From: Emil Velikov > > Driver should enumerate only up-to min2(num_available, num_requested) > properties and return VK_INCOMPLETE if the # of requested props is > smaller than the ones available. > > Presently we assert out in such c

Re: [Mesa-dev] [PATCH] anv: fix enumeration of properties

2016-10-14 Thread Emil Velikov
On 6 October 2016 at 14:12, Emil Velikov wrote: > From: Emil Velikov > > Driver should enumerate only up-to min2(num_available, num_requested) > properties and return VK_INCOMPLETE if the # of requested props is > smaller than the ones available. > > Presently we assert out in such cases. > > Ins