From bee11cdab210c82f463c3503ce1ef52befae21ac Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 21 Sep 2022 11:30:10 -0600 Subject: [PATCH] llvmpipe: asst. clean-ups in lp_bld_alpha.c Signed-off-by: Brian Paul Part-of: --- src/gallium/drivers/llvmpipe/lp_bld_alpha.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/gallium/drivers/llvmpipe/lp_bld_alpha.c b/src/gallium/drivers/llvmpipe/lp_bld_alpha.c index c7ab0168f60..47035b6939b 100644 --- a/src/gallium/drivers/llvmpipe/lp_bld_alpha.c +++ b/src/gallium/drivers/llvmpipe/lp_bld_alpha.c @@ -56,17 +56,16 @@ lp_build_alpha_test(struct gallivm_state *gallivm, boolean do_branch) { struct lp_build_context bld; - LLVMValueRef test; lp_build_context_init(&bld, gallivm, type); /* * Alpha testing needs to be done in the color buffer precision. * - * TODO: Ideally, instead of duplicating the color conversion code, we would do - * alpha testing after converting the output colors, but that's not very - * convenient, because it needs to be done before depth testing. Hopefully - * LLVM will detect and remove the duplicate expression. + * TODO: Ideally, instead of duplicating the color conversion code, we + * would do alpha testing after converting the output colors, but that's + * not very convenient, because it needs to be done before depth testing. + * Hopefully LLVM will detect and remove the duplicate expression. * * FIXME: This should be generalized to formats other than rgba8 variants. */ @@ -84,7 +83,7 @@ lp_build_alpha_test(struct gallivm_state *gallivm, lp_build_context_init(&bld, gallivm, type); } - test = lp_build_cmp(&bld, func, alpha, ref); + LLVMValueRef test = lp_build_cmp(&bld, func, alpha, ref); lp_build_name(test, "alpha_mask");