Vulkan: Fix assertion triggering when geometry shaders are unsupported

Happened when loading the pipeline UID cache.
This commit is contained in:
Stenzek 2016-12-02 17:37:10 +10:00
parent 20676a6640
commit 7b1966a680
1 changed files with 1 additions and 1 deletions

View File

@ -172,7 +172,7 @@ bool StateTracker::PrecachePipelineUID(const SerializedPipelineUID& uid)
WARN_LOG(VIDEO, "Failed to get vertex shader from cached UID.");
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);
if (pinfo.gs == VK_NULL_HANDLE)