aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Vulkan/FramebufferParams.cs
diff options
context:
space:
mode:
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);
}
}
}