Merge pull request #4483 from stenzek/vulkan-gs-uid-assert
Vulkan: Fix assertion triggering when geometry shaders are unsupported
This commit is contained in:
commit
0e93bad737
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue