Re: [Mesa-dev] [PATCH v5 00/70] ARB_shader_storage_buffer_object (mesa, i965)

2015-09-25 Thread Ilia Mirkin
On Fri, Sep 25, 2015 at 3:17 AM, Samuel Iglesias Gonsálvez wrote: > On 21/09/15 12:39, Iago Toral wrote: >> Hi Kristian, >> >> On Fri, 2015-09-18 at 16:56 -0700, Kristian Høgsberg wrote: >>> On Thu, Sep 10, 2015 at 03:35:16PM +0200, Iago Toral Quiroga wrote: Hi,

Re: [Mesa-dev] [PATCH v5 00/70] ARB_shader_storage_buffer_object (mesa, i965)

2015-09-25 Thread Samuel Iglesias Gonsálvez
On 21/09/15 12:39, Iago Toral wrote: > Hi Kristian, > > On Fri, 2015-09-18 at 16:56 -0700, Kristian Høgsberg wrote: >> On Thu, Sep 10, 2015 at 03:35:16PM +0200, Iago Toral Quiroga wrote: >>> Hi, >>> >>> this is the latest version of the ARB_shader_storage_buffer_object >>> implementation. A good

Re: [Mesa-dev] [PATCH v5 00/70] ARB_shader_storage_buffer_object (mesa, i965)

2015-09-25 Thread Samuel Iglesias Gonsálvez
On 25/09/15 09:19, Ilia Mirkin wrote: > On Fri, Sep 25, 2015 at 3:17 AM, Samuel Iglesias Gonsálvez > wrote: >> On 21/09/15 12:39, Iago Toral wrote: >>> Hi Kristian, >>> >>> On Fri, 2015-09-18 at 16:56 -0700, Kristian Høgsberg wrote: On Thu, Sep 10, 2015 at 03:35:16PM

Re: [Mesa-dev] [PATCH v5 00/70] ARB_shader_storage_buffer_object (mesa, i965)

2015-09-24 Thread Iago Toral
On Wed, 2015-09-23 at 10:38 -0700, Kristian Høgsberg wrote: > On Wed, Sep 23, 2015 at 12:06 AM, Samuel Iglesias Gonsálvez > wrote: > > > > > > On 19/09/15 01:56, Kristian Høgsberg wrote: > >> On Thu, Sep 10, 2015 at 03:35:16PM +0200, Iago Toral Quiroga wrote: > >>> Hi, > >>>

Re: [Mesa-dev] [PATCH v5 00/70] ARB_shader_storage_buffer_object (mesa, i965)

2015-09-23 Thread Kristian Høgsberg
On Wed, Sep 23, 2015 at 12:06 AM, Samuel Iglesias Gonsálvez wrote: > > > On 19/09/15 01:56, Kristian Høgsberg wrote: >> On Thu, Sep 10, 2015 at 03:35:16PM +0200, Iago Toral Quiroga wrote: >>> Hi, >>> >>> this is the latest version of the ARB_shader_storage_buffer_object >>>

Re: [Mesa-dev] [PATCH v5 00/70] ARB_shader_storage_buffer_object (mesa, i965)

2015-09-23 Thread Samuel Iglesias Gonsálvez
On 19/09/15 01:56, Kristian Høgsberg wrote: > On Thu, Sep 10, 2015 at 03:35:16PM +0200, Iago Toral Quiroga wrote: >> Hi, >> >> this is the latest version of the ARB_shader_storage_buffer_object >> implementation. A good part of the frontend bits for this are already in >> master, but this adds

Re: [Mesa-dev] [PATCH v5 00/70] ARB_shader_storage_buffer_object (mesa, i965)

2015-09-22 Thread Kristian Høgsberg
On Mon, Sep 21, 2015 at 12:39:14PM +0200, Iago Toral wrote: > Hi Kristian, > > On Fri, 2015-09-18 at 16:56 -0700, Kristian Høgsberg wrote: > > On Thu, Sep 10, 2015 at 03:35:16PM +0200, Iago Toral Quiroga wrote: > > > Hi, > > > > > > this is the latest version of the

Re: [Mesa-dev] [PATCH v5 00/70] ARB_shader_storage_buffer_object (mesa, i965)

2015-09-21 Thread Iago Toral
Hi Kristian, On Fri, 2015-09-18 at 16:56 -0700, Kristian Høgsberg wrote: > On Thu, Sep 10, 2015 at 03:35:16PM +0200, Iago Toral Quiroga wrote: > > Hi, > > > > this is the latest version of the ARB_shader_storage_buffer_object > > implementation. A good part of the frontend bits for this are

Re: [Mesa-dev] [PATCH v5 00/70] ARB_shader_storage_buffer_object (mesa, i965)

2015-09-18 Thread Kristian Høgsberg
On Thu, Sep 10, 2015 at 03:35:16PM +0200, Iago Toral Quiroga wrote: > Hi, > > this is the latest version of the ARB_shader_storage_buffer_object > implementation. A good part of the frontend bits for this are already in > master, but this adds some more missing pieces, specifically std430 and >

Re: [Mesa-dev] [PATCH v5 00/70] ARB_shader_storage_buffer_object (mesa, i965)

2015-09-15 Thread Samuel Iglesias Gonsálvez
On 15/09/15 07:10, Samuel Iglesias Gonsálvez wrote: > Hi Mark, > > On 15/09/15 01:14, Mark Janes wrote: >> I tested this series, and found a few issues: >> >> - `make check` fails the dispatch sanity tests in Mesa >> > > I'm going to take a look at this. > Just figured out that I forgot to

Re: [Mesa-dev] [PATCH v5 00/70] ARB_shader_storage_buffer_object (mesa, i965)

2015-09-14 Thread Mark Janes
I tested this series, and found a few issues: - `make check` fails the dispatch sanity tests in Mesa - The branch doesn't rebase cleanly on top of master (this isn't wrong, it just surprised me, since you sent out the series so recently) -

Re: [Mesa-dev] [PATCH v5 00/70] ARB_shader_storage_buffer_object (mesa, i965)

2015-09-14 Thread Samuel Iglesias Gonsálvez
Hi Mark, On 15/09/15 01:14, Mark Janes wrote: > I tested this series, and found a few issues: > > - `make check` fails the dispatch sanity tests in Mesa > I'm going to take a look at this. > - The branch doesn't rebase cleanly on top of master (this isn't wrong, >it just surprised me,

[Mesa-dev] [PATCH v5 00/70] ARB_shader_storage_buffer_object (mesa, i965)

2015-09-10 Thread Iago Toral Quiroga
Hi, this is the latest version of the ARB_shader_storage_buffer_object implementation. A good part of the frontend bits for this are already in master, but this adds some more missing pieces, specifically std430 and memory qualifiers. Additionally, this provides the i965 implementation. Changes