Fix logic surrounding PushDescriptors in Vulkan (#257)

This commit is contained in:
Jonas Henriksson 2024-11-29 00:00:12 +01:00 committed by GitHub
parent baf179efdb
commit 8a2b56cae6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -182,6 +182,16 @@ namespace Ryujinx.Graphics.Vulkan
return false; return false;
} }
} }
//Prevent the sum of descriptors from exceeding MaxPushDescriptors
int totalDescriptors = 0;
foreach (ResourceDescriptor desc in layout.Sets.First().Descriptors)
{
if (!reserved.Contains(desc.Binding))
totalDescriptors += desc.Count;
}
if (totalDescriptors > gd.Capabilities.MaxPushDescriptors)
return false;
return true; return true;
} }