Skip to content

Commit dc2d522

Browse files
committed
Remove spammy warning about no callstack entry found for instruction
1 parent 5cb5a29 commit dc2d522

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

renderdoc/driver/shaders/dxil/dxil_debug.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1619,7 +1619,6 @@ void ThreadState::FillCallstack(ShaderDebugState &state)
16191619
auto it = m_FunctionInfo->callstacks.upper_bound(state.nextInstruction);
16201620
if(it == m_FunctionInfo->callstacks.end())
16211621
{
1622-
RDCWARN("No callstack entry found for instruction %u", state.nextInstruction);
16231622
state.callstack.clear();
16241623
state.callstack.push_back(m_FunctionInfo->function->name);
16251624
return;
@@ -1634,7 +1633,6 @@ void ThreadState::FillCallstack(ShaderDebugState &state)
16341633
}
16351634
else
16361635
{
1637-
RDCWARN("No callstack entry found for instruction %u", state.nextInstruction);
16381636
state.callstack.clear();
16391637
state.callstack.push_back(m_FunctionInfo->function->name);
16401638
return;

0 commit comments

Comments
 (0)