Re: [Mesa-dev] [PATCH] nir: remove wrong assertion in print_var_decl()

2018-07-25 Thread Bas Nieuwenhuizen
On Wed, Jul 25, 2018 at 3:38 PM, Samuel Pitoiset wrote: > > > On 07/25/2018 03:28 PM, Bas Nieuwenhuizen wrote: >> >> On Wed, Jul 25, 2018 at 2:30 PM, Samuel Pitoiset >> wrote: >>> >>> This breaks printing input/output variables with more than >>> 4 components like mat4. >>> >>> Fixes: 1beef89ad8

Re: [Mesa-dev] [PATCH] nir: remove wrong assertion in print_var_decl()

2018-07-25 Thread Samuel Pitoiset
On 07/25/2018 03:28 PM, Bas Nieuwenhuizen wrote: On Wed, Jul 25, 2018 at 2:30 PM, Samuel Pitoiset wrote: This breaks printing input/output variables with more than 4 components like mat4. Fixes: 1beef89ad8 ("nir: prepare for bumping up max components to 16") Signed-off-by: Samuel Pitoiset -

Re: [Mesa-dev] [PATCH] nir: remove wrong assertion in print_var_decl()

2018-07-25 Thread Bas Nieuwenhuizen
On Wed, Jul 25, 2018 at 2:30 PM, Samuel Pitoiset wrote: > This breaks printing input/output variables with more than > 4 components like mat4. > > Fixes: 1beef89ad8 ("nir: prepare for bumping up max components to 16") > Signed-off-by: Samuel Pitoiset > --- > src/compiler/nir/nir_print.c | 1 - >

[Mesa-dev] [PATCH] nir: remove wrong assertion in print_var_decl()

2018-07-25 Thread Samuel Pitoiset
This breaks printing input/output variables with more than 4 components like mat4. Fixes: 1beef89ad8 ("nir: prepare for bumping up max components to 16") Signed-off-by: Samuel Pitoiset --- src/compiler/nir/nir_print.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/compiler/nir/nir_print.