mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-09-23 14:15:42 +00:00
Allow grouping auto-passes with multi-draw draws
This commit is contained in:
@@ -317,10 +317,6 @@ bool ReplayController::ContainsMarker(const rdcarray<DrawcallDescription> &draws
|
||||
|
||||
bool ReplayController::PassEquivalent(const DrawcallDescription &a, const DrawcallDescription &b)
|
||||
{
|
||||
// executing command lists can have children
|
||||
if(!a.children.empty() || !b.children.empty())
|
||||
return false;
|
||||
|
||||
// don't group draws and compute executes
|
||||
if((a.flags & DrawFlags::Dispatch) != (b.flags & DrawFlags::Dispatch))
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user