Re: [Mesa-dev] [PATCH 04/11] i965/vec4/nir: vec4 also need to remap vs attributes

2017-01-11 Thread Juan A. Suarez Romero
On Tue, 2017-01-10 at 20:52 -0800, Matt Turner wrote: > On 01/09, Juan A. Suarez Romero wrote: > > From: Alejandro Piñeiro > > > > Doubles need extra space, so we would need to do a remapping for vec4 > > too in order to take that into account. We reuse the already > >

Re: [Mesa-dev] [PATCH 04/11] i965/vec4/nir: vec4 also need to remap vs attributes

2017-01-10 Thread Matt Turner
On 01/09, Juan A. Suarez Romero wrote: From: Alejandro Piñeiro Doubles need extra space, so we would need to do a remapping for vec4 too in order to take that into account. We reuse the already existing remap_vs_attrs, but passing is_scalar, so they could remap

[Mesa-dev] [PATCH 04/11] i965/vec4/nir: vec4 also need to remap vs attributes

2017-01-09 Thread Juan A. Suarez Romero
From: Alejandro Piñeiro Doubles need extra space, so we would need to do a remapping for vec4 too in order to take that into account. We reuse the already existing remap_vs_attrs, but passing is_scalar, so they could remap accordingly. Signed-off-by: Alejandro Piñeiro