llvmpipe: asst. clean-ups in lp_bld_alpha.c
authorBrian Paul <brianp@vmware.com>
Wed, 21 Sep 2022 17:30:10 +0000 (11:30 -0600)
committerMarge Bot <emma+marge@anholt.net>
Tue, 25 Oct 2022 15:27:12 +0000 (15:27 +0000)
Signed-off-by: Brian Paul <brianp@vmware.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19289>

src/gallium/drivers/llvmpipe/lp_bld_alpha.c

index c7ab016..47035b6 100644 (file)
@@ -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");