Re: [Mesa-dev] [PATCH] mesa: only verify that enabled arrays have backing buffers

2016-12-01 Thread Tapani Pälli
On 12/01/2016 12:59 PM, Ilia Mirkin wrote: On Thu, Dec 1, 2016 at 5:50 AM, Tapani Pälli wrote: On 12/01/2016 12:19 PM, Tapani Pälli wrote: On 12/01/2016 12:04 AM, Ilia Mirkin wrote: We were previously also verifying that no backing buffers were available when an array wasn't enabled. T

Re: [Mesa-dev] [PATCH] mesa: only verify that enabled arrays have backing buffers

2016-12-01 Thread Ilia Mirkin
On Thu, Dec 1, 2016 at 5:50 AM, Tapani Pälli wrote: > > > On 12/01/2016 12:19 PM, Tapani Pälli wrote: >> >> >> On 12/01/2016 12:04 AM, Ilia Mirkin wrote: >>> >>> We were previously also verifying that no backing buffers were available >>> when an array wasn't enabled. This is has no basis in the s

Re: [Mesa-dev] [PATCH] mesa: only verify that enabled arrays have backing buffers

2016-12-01 Thread Tapani Pälli
On 12/01/2016 12:19 PM, Tapani Pälli wrote: On 12/01/2016 12:04 AM, Ilia Mirkin wrote: We were previously also verifying that no backing buffers were available when an array wasn't enabled. This is has no basis in the spec, and it causes GLupeN64 to fail as a result. I'm a bit puzzled about

Re: [Mesa-dev] [PATCH] mesa: only verify that enabled arrays have backing buffers

2016-12-01 Thread Tapani Pälli
On 12/01/2016 12:04 AM, Ilia Mirkin wrote: We were previously also verifying that no backing buffers were available when an array wasn't enabled. This is has no basis in the spec, and it causes GLupeN64 to fail as a result. I'm a bit puzzled about the API usage here, is the app attempting to

Re: [Mesa-dev] [PATCH] mesa: only verify that enabled arrays have backing buffers

2016-11-30 Thread Ilia Mirkin
On Wed, Nov 30, 2016 at 5:04 PM, Ilia Mirkin wrote: > We were previously also verifying that no backing buffers were available > when an array wasn't enabled. This is has no basis in the spec, and it > causes GLupeN64 to fail as a result. > > Fixes: c2e146f487 ("mesa: error out in indirect draw wh

[Mesa-dev] [PATCH] mesa: only verify that enabled arrays have backing buffers

2016-11-30 Thread Ilia Mirkin
We were previously also verifying that no backing buffers were available when an array wasn't enabled. This is has no basis in the spec, and it causes GLupeN64 to fail as a result. Fixes: c2e146f487 ("mesa: error out in indirect draw when vertex bindings mismatch") Cc: mesa-sta...@lists.freedeskt