Relax Vulkan requirements (#4228)
This commit is contained in:
parent
4d2c8e2a44
commit
dca5b14493
8 changed files with 121 additions and 37 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue