GS: Fix VK also naming the wrong pipelines

This commit is contained in:
Filoppi 2025-04-16 20:42:39 +03:00 committed by lightningterror
parent 718adda749
commit bb48110f95
1 changed files with 2 additions and 2 deletions

View File

@ -4198,7 +4198,7 @@ bool GSDeviceVK::CompileInterlacePipelines()
if (!m_interlace[i])
return false;
Vulkan::SetObjectName(m_device, m_convert[i], "Interlace pipeline %d", i);
Vulkan::SetObjectName(m_device, m_interlace[i], "Interlace pipeline %d", i);
}
return true;
@ -4250,7 +4250,7 @@ bool GSDeviceVK::CompileMergePipelines()
if (!m_merge[i])
return false;
Vulkan::SetObjectName(m_device, m_convert[i], "Merge pipeline %d", i);
Vulkan::SetObjectName(m_device, m_merge[i], "Merge pipeline %d", i);
}
return true;