mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-08-23 06:56:40 +00:00
Don't attempt to use XFB when multiview is active. Closes #1250
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user