mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-14 05:50:51 +00:00
Do not record ShaderVariableChanges or any results from DXC nop's
This commit is contained in:
@@ -5058,6 +5058,13 @@ bool ThreadState::ExecuteInstruction(DebugAPIWrapper *apiWrapper,
|
||||
case Operation::Load:
|
||||
case Operation::LoadAtomic:
|
||||
{
|
||||
if(DXIL::IsDXCNop(inst))
|
||||
{
|
||||
resultId = DXILDebug::INVALID_ID;
|
||||
result.name.clear();
|
||||
break;
|
||||
}
|
||||
|
||||
// Load(ptr)
|
||||
Id ptrId = GetArgumentId(0);
|
||||
if(ptrId == DXILDebug::INVALID_ID)
|
||||
|
||||
Reference in New Issue
Block a user