VulkanRenderer: Fix minUniformBufferOffsetAlignment limit

This commit is contained in:
SirLynix
2022-06-28 20:21:33 +02:00
parent 87cb72217e
commit 2e894336e5

View File

@@ -60,6 +60,7 @@ namespace Nz
deviceInfo.limits.maxStorageBufferSize = physDevice.properties.limits.maxStorageBufferRange;
deviceInfo.limits.maxUniformBufferSize = physDevice.properties.limits.maxUniformBufferRange;
deviceInfo.limits.minUniformBufferOffsetAlignment = physDevice.properties.limits.minUniformBufferOffsetAlignment;
switch (physDevice.properties.deviceType)
{