Re: [Mesa-dev] [PATCH] i965: Drop assert about number of uniforms in ARB handling.

2018-10-15 Thread Jason Ekstrand
Reviewed-by: Jason Ekstrand On Mon, Oct 15, 2018 at 12:49 PM Kenneth Graunke wrote: > My recent prog_to_nir patch started making new sampler uniforms, which > apparently increased the number of parameters. We used to poke at the > one parameter directly, making it important that there was only

[Mesa-dev] [PATCH] i965: Drop assert about number of uniforms in ARB handling.

2018-10-15 Thread Kenneth Graunke
My recent prog_to_nir patch started making new sampler uniforms, which apparently increased the number of parameters. We used to poke at the one parameter directly, making it important that there was only one, but we haven't done that in a while. It should be safe to just delete the assertion. F