aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Vulkan/FramebufferParams.cs
diff options
context:
space:
mode:
authorMary-nyan <mary@mary.zone>2022-12-01 19:11:56 +0100
committerGitHub <noreply@github.com>2022-12-01 19:11:56 +0100
commitce92e8cd043c6beeca6969920bc5e3b8eff5f57a (patch)
tree0c2a8c829f199526eb6c55e4c8af2b6c23d29d0b /Ryujinx.Graphics.Vulkan/FramebufferParams.cs
parent456fc04007b7274f6e75d6348c5a4e955f85b488 (diff)
chore: Update Silk.NET to 2.16.0 (#3953)1.1.407
Diffstat (limited to 'Ryujinx.Graphics.Vulkan/FramebufferParams.cs')
-rw-r--r--Ryujinx.Graphics.Vulkan/FramebufferParams.cs8
1 files changed, 4 insertions, 4 deletions
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);
}
}
}