mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-07-08 08:40:55 +00:00
Fix incorrect assert about DXIL result SSA tracking
Assert was changed in 0809a6dd3f when ssaMaxExecPoints was made into an rdcarray
This commit is contained in:
@@ -9136,8 +9136,8 @@ ShaderDebugTrace *Debugger::BeginDebug(uint32_t eventId, const DXBC::DXBCContain
|
||||
}
|
||||
else
|
||||
{
|
||||
// If the result SSA has tracking then that access should be after setting the result
|
||||
RDCASSERT(current.IsAfter(ssaMaxExecPoints[resultId], controlFlow));
|
||||
// If the result SSA has tracking then that access should be after this assignment
|
||||
RDCASSERT(ssaMaxExecPoints[resultId].IsAfter(current, controlFlow));
|
||||
}
|
||||
}
|
||||
// Track maximum execution point when an SSA is referenced as an argument
|
||||
|
||||
Reference in New Issue
Block a user