From ce92e8cd043c6beeca6969920bc5e3b8eff5f57a Mon Sep 17 00:00:00 2001 From: Mary-nyan Date: Thu, 1 Dec 2022 19:11:56 +0100 Subject: chore: Update Silk.NET to 2.16.0 (#3953) --- Ryujinx.Graphics.Vulkan/FramebufferParams.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Ryujinx.Graphics.Vulkan/FramebufferParams.cs') diff --git a/Ryujinx.Graphics.Vulkan/FramebufferParams.cs b/Ryujinx.Graphics.Vulkan/FramebufferParams.cs index 0dadbf9c..43ee6f5c 100644 --- a/Ryujinx.Graphics.Vulkan/FramebufferParams.cs +++ b/Ryujinx.Graphics.Vulkan/FramebufferParams.cs @@ -190,14 +190,14 @@ namespace Ryujinx.Graphics.Vulkan for (int index = 0; index < _colors.Length; index++) { _colors[index].Storage.SetModification( - AccessFlags.AccessColorAttachmentWriteBit, - PipelineStageFlags.PipelineStageColorAttachmentOutputBit); + AccessFlags.ColorAttachmentWriteBit, + PipelineStageFlags.ColorAttachmentOutputBit); } } _depthStencil?.Storage.SetModification( - AccessFlags.AccessDepthStencilAttachmentWriteBit, - PipelineStageFlags.PipelineStageColorAttachmentOutputBit); + AccessFlags.DepthStencilAttachmentWriteBit, + PipelineStageFlags.ColorAttachmentOutputBit); } } } -- cgit v1.2.3