diff options
author | gdkchan <gab.dark.100@gmail.com> | 2023-01-13 02:09:48 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-13 06:09:48 +0100 |
commit | dca5b14493e730960ed5cd67906278ecea969b3a (patch) | |
tree | a9f45030868bc8a03453d25b818cef04789fd33f /Ryujinx.Graphics.Vulkan/FramebufferParams.cs | |
parent | 4d2c8e2a442d2859a75c6c9162a192a0a9a221be (diff) |
Relax Vulkan requirements (#4228)1.1.551
Diffstat (limited to 'Ryujinx.Graphics.Vulkan/FramebufferParams.cs')
-rw-r--r-- | Ryujinx.Graphics.Vulkan/FramebufferParams.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Ryujinx.Graphics.Vulkan/FramebufferParams.cs b/Ryujinx.Graphics.Vulkan/FramebufferParams.cs index 751ef5eb..84ac0b05 100644 --- a/Ryujinx.Graphics.Vulkan/FramebufferParams.cs +++ b/Ryujinx.Graphics.Vulkan/FramebufferParams.cs @@ -23,7 +23,7 @@ namespace Ryujinx.Graphics.Vulkan public int[] AttachmentIndices { get; } public int AttachmentsCount { get; } - public int MaxColorAttachmentIndex { get; } + public int MaxColorAttachmentIndex => AttachmentIndices.Length > 0 ? AttachmentIndices[AttachmentIndices.Length - 1] : -1; public bool HasDepthStencil { get; } public int ColorAttachmentsCount => AttachmentsCount - (HasDepthStencil ? 1 : 0); @@ -67,7 +67,6 @@ namespace Ryujinx.Graphics.Vulkan AttachmentSamples = new uint[count]; AttachmentFormats = new VkFormat[count]; AttachmentIndices = new int[count]; - MaxColorAttachmentIndex = colors.Length - 1; uint width = uint.MaxValue; uint height = uint.MaxValue; |