Re: [Mesa-dev] [PATCH] glsl/linker: specify proper direction in location aliasing error

2019-01-08 Thread Iago Toral
Reviewed-by: Iago Toral Quiroga On Mon, 2019-01-07 at 16:11 +0200, Andres Gomez wrote: > The check for location aliasing was always asuming output variables > but this validation is also called for input variables. > > Fixes: e2abb75b0e4 ("glsl/linker: validate explicit locations for SSO >

Re: [Mesa-dev] [PATCH] glsl/linker: specify proper direction in location aliasing error

2019-01-07 Thread Timothy Arceri
Reviewed-by: Timothy Arceri On 8/1/19 1:11 am, Andres Gomez wrote: The check for location aliasing was always asuming output variables but this validation is also called for input variables. Fixes: e2abb75b0e4 ("glsl/linker: validate explicit locations for SSO programs") Cc: Iago Toral

[Mesa-dev] [PATCH] glsl/linker: specify proper direction in location aliasing error

2019-01-07 Thread Andres Gomez
The check for location aliasing was always asuming output variables but this validation is also called for input variables. Fixes: e2abb75b0e4 ("glsl/linker: validate explicit locations for SSO programs") Cc: Iago Toral Quiroga Signed-off-by: Andres Gomez ---