Re: [Mesa-dev] [PATCH v2 06/20] i965/fs: fix dst stride in IVB/BYT type conversions

2017-01-19 Thread Samuel Iglesias Gonsálvez
On Thu, 2017-01-19 at 15:00 -0800, Francisco Jerez wrote: > Samuel Iglesias Gonsálvez writes: > > > On Wed, 2017-01-18 at 12:44 -0800, Francisco Jerez wrote: > > > Samuel Iglesias Gonsálvez writes: > > > > > > > On Tue, 2017-01-17 at 13:26 -0800,

Re: [Mesa-dev] [PATCH v2 06/20] i965/fs: fix dst stride in IVB/BYT type conversions

2017-01-19 Thread Samuel Iglesias Gonsálvez
On Thu, 2017-01-19 at 11:06 -0800, Matt Turner wrote: > On Thu, Jan 19, 2017 at 4:50 AM, Samuel Iglesias Gonsálvez > wrote: > > As we are blocking the release and there more patches for review, > > another possibility is to land this patch [2] (replacing this > > patch) > >

Re: [Mesa-dev] [PATCH v2 06/20] i965/fs: fix dst stride in IVB/BYT type conversions

2017-01-19 Thread Francisco Jerez
Samuel Iglesias Gonsálvez writes: > On Wed, 2017-01-18 at 12:44 -0800, Francisco Jerez wrote: >> Samuel Iglesias Gonsálvez writes: >> >> > On Tue, 2017-01-17 at 13:26 -0800, Francisco Jerez wrote: >> > > Samuel Iglesias Gonsálvez

Re: [Mesa-dev] [PATCH v2 06/20] i965/fs: fix dst stride in IVB/BYT type conversions

2017-01-19 Thread Matt Turner
On Thu, Jan 19, 2017 at 4:50 AM, Samuel Iglesias Gonsálvez wrote: > As we are blocking the release and there more patches for review, > another possibility is to land this patch [2] (replacing this patch) > and then fix it later to not block Mesa 17.0 release more than

Re: [Mesa-dev] [PATCH v2 06/20] i965/fs: fix dst stride in IVB/BYT type conversions

2017-01-19 Thread Samuel Iglesias Gonsálvez
On Wed, 2017-01-18 at 12:44 -0800, Francisco Jerez wrote: > Samuel Iglesias Gonsálvez writes: > > > On Tue, 2017-01-17 at 13:26 -0800, Francisco Jerez wrote: > > > Samuel Iglesias Gonsálvez writes: > > > > > > > From: "Juan A. Suarez Romero"

Re: [Mesa-dev] [PATCH v2 06/20] i965/fs: fix dst stride in IVB/BYT type conversions

2017-01-18 Thread Francisco Jerez
Samuel Iglesias Gonsálvez writes: > On Tue, 2017-01-17 at 13:26 -0800, Francisco Jerez wrote: >> Samuel Iglesias Gonsálvez writes: >> >> > From: "Juan A. Suarez Romero" >> > >> > When converting a DF to F, we set dst stride to

Re: [Mesa-dev] [PATCH v2 06/20] i965/fs: fix dst stride in IVB/BYT type conversions

2017-01-18 Thread Samuel Iglesias Gonsálvez
On Tue, 2017-01-17 at 13:26 -0800, Francisco Jerez wrote: > Samuel Iglesias Gonsálvez writes: > > > From: "Juan A. Suarez Romero" > > > > When converting a DF to F, we set dst stride to 2, to fulfil > > alignment > > restrictions. > > > > But in

Re: [Mesa-dev] [PATCH v2 06/20] i965/fs: fix dst stride in IVB/BYT type conversions

2017-01-17 Thread Francisco Jerez
Francisco Jerez writes: > Samuel Iglesias Gonsálvez writes: > >> From: "Juan A. Suarez Romero" >> >> When converting a DF to F, we set dst stride to 2, to fulfil alignment >> restrictions. >> >> But in IVB/BYT, this is not

Re: [Mesa-dev] [PATCH v2 06/20] i965/fs: fix dst stride in IVB/BYT type conversions

2017-01-17 Thread Francisco Jerez
Samuel Iglesias Gonsálvez writes: > From: "Juan A. Suarez Romero" > > When converting a DF to F, we set dst stride to 2, to fulfil alignment > restrictions. > > But in IVB/BYT, this is not necessary, as each DF conversion already > writes 2 F, the

[Mesa-dev] [PATCH v2 06/20] i965/fs: fix dst stride in IVB/BYT type conversions

2017-01-17 Thread Samuel Iglesias Gonsálvez
From: "Juan A. Suarez Romero" When converting a DF to F, we set dst stride to 2, to fulfil alignment restrictions. But in IVB/BYT, this is not necessary, as each DF conversion already writes 2 F, the first one the real value, and the second one a 0. That is, IVB/BYT already