Don't attempt to use XFB when multiview is active. Closes #1250

This commit is contained in:
baldurk
2019-02-01 18:32:13 +00:00
parent 86ff87863e
commit b9254af510
+6
View File
@@ -2617,6 +2617,12 @@ void VulkanReplay::FetchTessGSOut(uint32_t eventId)
const DrawcallDescription *drawcall = m_pDriver->GetDrawcall(eventId);
if(!creationInfo.m_RenderPass[state.renderPass].subpasses[state.subpass].multiviews.empty())
{
RDCWARN("Multipass is active for this draw, no GS/Tess mesh output is available");
return;
}
// first try geometry stage
int stageIndex = 3;