From ba56c1d3b3cf9639d0679732d7b5a6eef853636f Mon Sep 17 00:00:00 2001 From: sunshineinabox Date: Sun, 26 May 2024 18:44:53 -0700 Subject: [PATCH] Missed line --- src/Ryujinx.Graphics.Vulkan/PipelineState.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/Ryujinx.Graphics.Vulkan/PipelineState.cs b/src/Ryujinx.Graphics.Vulkan/PipelineState.cs index 087ddda16..0e471f162 100644 --- a/src/Ryujinx.Graphics.Vulkan/PipelineState.cs +++ b/src/Ryujinx.Graphics.Vulkan/PipelineState.cs @@ -460,7 +460,6 @@ namespace Ryujinx.Graphics.Vulkan rasterizationState.LineWidth = 1.0f; } - if (!supportsExtDynamicState2) { rasterizationState.DepthBiasEnable = DepthBiasEnable; @@ -552,10 +551,6 @@ namespace Ryujinx.Graphics.Vulkan } } - // AMD has a bug where it enables logical operations even for float formats, - // so we need to force disable them here. - bool logicOpEnable = LogicOpEnable && (gd.Vendor != Vendor.Amd || Internal.LogicOpsAllowed); - var colorBlendState = new PipelineColorBlendStateCreateInfo { SType = StructureType.PipelineColorBlendStateCreateInfo,