Re: [Mesa-dev] [PATCH v2 2/8] glsl/linker: refactor link-time validation of output locations

2017-10-25 Thread Iago Toral
On Tue, 2017-10-24 at 23:40 -0400, Ilia Mirkin wrote: > On Tue, Oct 24, 2017 at 5:28 AM, Iago Toral Quiroga m> wrote: > > Move the checks for explicit locations to a separate function. We > > will use this in a follow-up patch to validate locations for > > interface > >

Re: [Mesa-dev] [PATCH v2 2/8] glsl/linker: refactor link-time validation of output locations

2017-10-24 Thread Ilia Mirkin
On Tue, Oct 24, 2017 at 5:28 AM, Iago Toral Quiroga wrote: > Move the checks for explicit locations to a separate function. We > will use this in a follow-up patch to validate locations for interface > variables where we need to validate each interface member rather than > the

[Mesa-dev] [PATCH v2 2/8] glsl/linker: refactor link-time validation of output locations

2017-10-24 Thread Iago Toral Quiroga
Move the checks for explicit locations to a separate function. We will use this in a follow-up patch to validate locations for interface variables where we need to validate each interface member rather than the interface variable itself. Reviewed-by: Timothy Arceri ---