mirror of
https://github.com/cemu-project/Cemu.git
synced 2026-07-09 17:14:47 -06:00
Vulkan: Make vertexPipelineStoresAndAtomics optional
This commit is contained in:
parent
c2e807f8a3
commit
880d2b3bd0
@ -672,7 +672,9 @@ VulkanRenderer::VulkanRenderer() : Renderer(RendererAPI::Vulkan)
|
||||
deviceFeatures.robustBufferAccess = VK_TRUE;
|
||||
}
|
||||
|
||||
deviceFeatures.vertexPipelineStoresAndAtomics = true;
|
||||
deviceFeatures.vertexPipelineStoresAndAtomics = deviceFeatures2.features.vertexPipelineStoresAndAtomics;
|
||||
if (!deviceFeatures.vertexPipelineStoresAndAtomics)
|
||||
cemuLog_log(LogType::Force, "vertexPipelineStoresAndAtomics not supported by the driver. Games which use the streamout feature will not render correctly");
|
||||
|
||||
void* deviceExtensionFeatures = nullptr;
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user