From 6e132e9fd73cdb12eb233a4304ec64c2ab6c386f Mon Sep 17 00:00:00 2001 From: sunshineinabox Date: Fri, 13 Sep 2024 15:28:21 -0700 Subject: [PATCH] Style correction --- src/Ryujinx.Graphics.Vulkan/PipelineState.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Ryujinx.Graphics.Vulkan/PipelineState.cs b/src/Ryujinx.Graphics.Vulkan/PipelineState.cs index 647b77c20..1e12dead6 100644 --- a/src/Ryujinx.Graphics.Vulkan/PipelineState.cs +++ b/src/Ryujinx.Graphics.Vulkan/PipelineState.cs @@ -493,11 +493,10 @@ namespace Ryujinx.Graphics.Vulkan { SType = StructureType.PipelineRasterizationStateCreateInfo, DepthClampEnable = DepthClampEnable, + // When widelines feature is not supported it must be 1.0f, this will be ignored if Line Width dynamic state is supported + LineWidth = 1.0f, }; - // When widelines feature is not supported it must be 1.0f, this will be ignored if Line Width dynamic state is supported - rasterizationState.LineWidth = 1.0f; - var viewportState = new PipelineViewportStateCreateInfo { SType = StructureType.PipelineViewportStateCreateInfo,