Re: [Mesa-dev] [PATCH] anv: fix bug when using component qualifier in FS outputs

2017-11-14 Thread Samuel Iglesias Gonsálvez
On Wed, 2017-11-08 at 08:19 -0800, Jason Ekstrand wrote: > On Thu, Nov 2, 2017 at 12:28 AM, Samuel Iglesias Gonsálvez < > sigles...@igalia.com> wrote: > > > We can write to the same output but in different components, like > > in this example: > > > > layout(location = 0, component = 0) out

Re: [Mesa-dev] [PATCH] anv: fix bug when using component qualifier in FS outputs

2017-11-08 Thread Jason Ekstrand
On Thu, Nov 2, 2017 at 12:28 AM, Samuel Iglesias Gonsálvez < sigles...@igalia.com> wrote: > We can write to the same output but in different components, like > in this example: > > layout(location = 0, component = 0) out ivec2 dEQP_FragColor_0; > layout(location = 0, component = 2) out ivec2

Re: [Mesa-dev] [PATCH] anv: fix bug when using component qualifier in FS outputs

2017-11-08 Thread Samuel Iglesias Gonsálvez
Gently reminder that this patch is still unreviewed :-) Sam On Thu, 2017-11-02 at 08:28 +0100, Samuel Iglesias Gonsálvez wrote: > We can write to the same output but in different components, like > in this example: > > layout(location = 0, component = 0) out ivec2 dEQP_FragColor_0; >

[Mesa-dev] [PATCH] anv: fix bug when using component qualifier in FS outputs

2017-11-02 Thread Samuel Iglesias Gonsálvez
We can write to the same output but in different components, like in this example: layout(location = 0, component = 0) out ivec2 dEQP_FragColor_0; layout(location = 0, component = 2) out ivec2 dEQP_FragColor_1; Therefore, they are not two different outputs but only one. Fixes: