Merge branch 'cemu-project:main' into main

This commit is contained in:
Eddy 2026-07-05 11:33:22 +02:00 committed by GitHub
commit 8a077518ed
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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;