Re: [Mesa-dev] [PATCH 27/59] i965/fs: add a stride helper

2016-05-05 Thread Iago Toral
On Thu, 2016-05-05 at 09:15 +0200, Iago Toral wrote: > On Wed, 2016-05-04 at 13:59 -0700, Francisco Jerez wrote: > > Iago Toral writes: > > > > > On Wed, 2016-05-04 at 01:15 -0700, Francisco Jerez wrote: > > >> Iago Toral writes: > > >> > > >> > On Mon,

Re: [Mesa-dev] [PATCH 27/59] i965/fs: add a stride helper

2016-05-05 Thread Iago Toral
On Wed, 2016-05-04 at 13:59 -0700, Francisco Jerez wrote: > Iago Toral writes: > > > On Wed, 2016-05-04 at 01:15 -0700, Francisco Jerez wrote: > >> Iago Toral writes: > >> > >> > On Mon, 2016-05-02 at 18:48 -0700, Francisco Jerez wrote: > >> >> Samuel

Re: [Mesa-dev] [PATCH 27/59] i965/fs: add a stride helper

2016-05-04 Thread Francisco Jerez
Iago Toral writes: > On Wed, 2016-05-04 at 01:15 -0700, Francisco Jerez wrote: >> Iago Toral writes: >> >> > On Mon, 2016-05-02 at 18:48 -0700, Francisco Jerez wrote: >> >> Samuel Iglesias Gonsálvez writes: >> >> >> >> > From:

Re: [Mesa-dev] [PATCH 27/59] i965/fs: add a stride helper

2016-05-04 Thread Iago Toral
On Wed, 2016-05-04 at 01:15 -0700, Francisco Jerez wrote: > Iago Toral writes: > > > On Mon, 2016-05-02 at 18:48 -0700, Francisco Jerez wrote: > >> Samuel Iglesias Gonsálvez writes: > >> > >> > From: Connor Abbott > >> > > >>

Re: [Mesa-dev] [PATCH 27/59] i965/fs: add a stride helper

2016-05-04 Thread Francisco Jerez
Iago Toral writes: > On Mon, 2016-05-02 at 18:48 -0700, Francisco Jerez wrote: >> Samuel Iglesias Gonsálvez writes: >> >> > From: Connor Abbott >> > >> > Similar to retype() and offset(). >> > --- >> >

Re: [Mesa-dev] [PATCH 27/59] i965/fs: add a stride helper

2016-05-04 Thread Iago Toral
On Wed, 2016-05-04 at 09:50 +0200, Iago Toral wrote: > On Mon, 2016-05-02 at 18:48 -0700, Francisco Jerez wrote: > > Samuel Iglesias Gonsálvez writes: > > > > > From: Connor Abbott > > > > > > Similar to retype() and offset(). > > > --- > > >

Re: [Mesa-dev] [PATCH 27/59] i965/fs: add a stride helper

2016-05-04 Thread Iago Toral
On Mon, 2016-05-02 at 18:48 -0700, Francisco Jerez wrote: > Samuel Iglesias Gonsálvez writes: > > > From: Connor Abbott > > > > Similar to retype() and offset(). > > --- > > src/mesa/drivers/dri/i965/brw_ir_fs.h | 8 > > 1 file changed,

Re: [Mesa-dev] [PATCH 27/59] i965/fs: add a stride helper

2016-05-03 Thread Kenneth Graunke
On Monday, May 2, 2016 6:48:18 PM PDT Francisco Jerez wrote: > This only works if reg.stride == 0 or 1, we need to honour the stride of > the original register (e.g. by doing reg.stride *= stride) or you'll end > up taking components not part of the region given as argument. It gets > messy with

Re: [Mesa-dev] [PATCH 27/59] i965/fs: add a stride helper

2016-05-02 Thread Francisco Jerez
Samuel Iglesias Gonsálvez writes: > From: Connor Abbott > > Similar to retype() and offset(). > --- > src/mesa/drivers/dri/i965/brw_ir_fs.h | 8 > 1 file changed, 8 insertions(+) > > diff --git a/src/mesa/drivers/dri/i965/brw_ir_fs.h >

Re: [Mesa-dev] [PATCH 27/59] i965/fs: add a stride helper

2016-05-02 Thread Iago Toral
On Mon, 2016-05-02 at 10:30 +0300, Pohjolainen, Topi wrote: > On Fri, Apr 29, 2016 at 01:29:24PM +0200, Samuel Iglesias Gons?lvez wrote: > > From: Connor Abbott > > > > Similar to retype() and offset(). > > --- > > src/mesa/drivers/dri/i965/brw_ir_fs.h | 8 >

Re: [Mesa-dev] [PATCH 27/59] i965/fs: add a stride helper

2016-05-02 Thread Pohjolainen, Topi
On Fri, Apr 29, 2016 at 01:29:24PM +0200, Samuel Iglesias Gons?lvez wrote: > From: Connor Abbott > > Similar to retype() and offset(). > --- > src/mesa/drivers/dri/i965/brw_ir_fs.h | 8 > 1 file changed, 8 insertions(+) > > diff --git

[Mesa-dev] [PATCH 27/59] i965/fs: add a stride helper

2016-04-29 Thread Samuel Iglesias Gonsálvez
From: Connor Abbott Similar to retype() and offset(). --- src/mesa/drivers/dri/i965/brw_ir_fs.h | 8 1 file changed, 8 insertions(+) diff --git a/src/mesa/drivers/dri/i965/brw_ir_fs.h b/src/mesa/drivers/dri/i965/brw_ir_fs.h index e4f20f4..abda2c3 100644 ---