Re: [Mesa-dev] [PATCH] glsl: inspect interfaces in contains_foo()

2016-10-27 Thread Nicolai Hähnle
On 25.10.2016 17:53, Juan A. Suarez Romero wrote: When checking if a type contains doubles, integers, samples, etc. we check if the current type is a record or array, but not if it is an interface. This commit also inspects if the type is an interface. It fixes

Re: [Mesa-dev] [PATCH] glsl: inspect interfaces in contains_foo()

2016-10-26 Thread Timothy Arceri
On Tue, 2016-10-25 at 17:53 +0200, Juan A. Suarez Romero wrote: > When checking if a type contains doubles, integers, samples, etc. we > check if the current type is a record or array, but not if it is an > interface. > > This commit also inspects if the type is an interface. > > It fixes

[Mesa-dev] [PATCH] glsl: inspect interfaces in contains_foo()

2016-10-25 Thread Juan A. Suarez Romero
When checking if a type contains doubles, integers, samples, etc. we check if the current type is a record or array, but not if it is an interface. This commit also inspects if the type is an interface. It fixes

[Mesa-dev] [PATCH] glsl: inspect interfaces in contains_foo()

2016-10-25 Thread Juan A. Suarez Romero
When checking if a type contains doubles, integers, samples, etc. we check if the current type is a record or array, but not if it is an interface. This commit also inspects if the type is an interface. It fixes