Fixes: 922cd38172b8a2bc286bd "radv: implement out-of-order rasterization when 
it's safe on VI+"
Cc: Samuel Pitoiset <[email protected]>
Signed-off-by: Eric Engestrom <[email protected]>
---
 src/amd/vulkan/radv_pipeline.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/amd/vulkan/radv_pipeline.c b/src/amd/vulkan/radv_pipeline.c
index ccbcbbadd55e672a572a..113622bb0ce1ea0f88f7 100644
--- a/src/amd/vulkan/radv_pipeline.c
+++ b/src/amd/vulkan/radv_pipeline.c
@@ -622,7 +622,7 @@ radv_blend_check_commutativity(struct radv_blend_state 
*blend,
                (1u << VK_BLEND_FACTOR_ONE_MINUS_SRC1_ALPHA);
 
        if (dst == VK_BLEND_FACTOR_ONE &&
-           (src_allowed && (1u << src))) {
+           (src_allowed & (1u << src))) {
                /* Addition is commutative, but floating point addition isn't
                 * associative: subtle changes can be introduced via different
                 * rounding. Be conservative, only enable for min and max.
-- 
Cheers,
  Eric

_______________________________________________
mesa-dev mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/mesa-dev

Reply via email to