mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-29 21:00:47 -07:00
Implement non-MS to MS copies with draws (#3958)
* Implement non-MS to MS copies with draws, simplify MS to non-MS copies and supports any host sample count * Remove unused program
This commit is contained in:
@ -58,7 +58,7 @@ namespace Ryujinx.Graphics.Vulkan
|
||||
attachmentDescs[i] = new AttachmentDescription(
|
||||
0,
|
||||
attachmentFormats[i],
|
||||
TextureStorage.ConvertToSampleCountFlags((uint)state.SamplesCount),
|
||||
TextureStorage.ConvertToSampleCountFlags(gd.Capabilities.SupportedSampleCounts, (uint)state.SamplesCount),
|
||||
AttachmentLoadOp.Load,
|
||||
AttachmentStoreOp.Store,
|
||||
AttachmentLoadOp.Load,
|
||||
|
Reference in New Issue
Block a user