[Mesa-dev] [PATCH] main: fix a regression in uniform handling introduced by 87a4bc5
Tapani
tapani.palli at intel.com
Thu Jun 4 05:41:38 PDT 2015
Reviewed-by: Tapani Pälli <tapani.palli at intel.com>
On 06/04/2015 02:19 PM, Martin Peres wrote:
> The comment was accurate but the condition was reversed...
>
> Signed-off-by: Martin Peres <martin.peres at linux.intel.com>
> ---
> src/mesa/program/ir_to_mesa.cpp | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/src/mesa/program/ir_to_mesa.cpp b/src/mesa/program/ir_to_mesa.cpp
> index 50b86ad..514bb93 100644
> --- a/src/mesa/program/ir_to_mesa.cpp
> +++ b/src/mesa/program/ir_to_mesa.cpp
> @@ -2410,7 +2410,7 @@ _mesa_associate_uniform_storage(struct gl_context *ctx,
> &shader_program->UniformStorage[location];
>
> /* Do not associate any uniform storage to built-in uniforms */
> - if (!storage->builtin)
> + if (storage->builtin)
> continue;
>
> if (location != last_location) {
More information about the mesa-dev
mailing list