mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-26 15:49:50 -06:00
Merge pull request #4483 from stenzek/vulkan-gs-uid-assert
Vulkan: Fix assertion triggering when geometry shaders are unsupported
This commit is contained in:
@ -172,7 +172,7 @@ bool StateTracker::PrecachePipelineUID(const SerializedPipelineUID& uid)
|
|||||||
WARN_LOG(VIDEO, "Failed to get vertex shader from cached UID.");
|
WARN_LOG(VIDEO, "Failed to get vertex shader from cached UID.");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (!uid.gs_uid.GetUidData()->IsPassthrough())
|
if (g_vulkan_context->SupportsGeometryShaders() && !uid.gs_uid.GetUidData()->IsPassthrough())
|
||||||
{
|
{
|
||||||
pinfo.gs = g_object_cache->GetGeometryShaderForUid(uid.gs_uid);
|
pinfo.gs = g_object_cache->GetGeometryShaderForUid(uid.gs_uid);
|
||||||
if (pinfo.gs == VK_NULL_HANDLE)
|
if (pinfo.gs == VK_NULL_HANDLE)
|
||||||
|
Reference in New Issue
Block a user