From 6435986d2ac0de25ac9b337576d2210c422aa49d Mon Sep 17 00:00:00 2001 From: Jake Turner Date: Fri, 4 Apr 2025 11:40:24 +0100 Subject: [PATCH] Remove spammy warning about no callstack entry found for instruction --- renderdoc/driver/shaders/dxil/dxil_debug.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/renderdoc/driver/shaders/dxil/dxil_debug.cpp b/renderdoc/driver/shaders/dxil/dxil_debug.cpp index be6db1baf..b1aefd454 100644 --- a/renderdoc/driver/shaders/dxil/dxil_debug.cpp +++ b/renderdoc/driver/shaders/dxil/dxil_debug.cpp @@ -1616,7 +1616,6 @@ void ThreadState::FillCallstack(ShaderDebugState &state) auto it = m_FunctionInfo->callstacks.upper_bound(state.nextInstruction); if(it == m_FunctionInfo->callstacks.end()) { - RDCWARN("No callstack entry found for instruction %u", state.nextInstruction); state.callstack.clear(); state.callstack.push_back(m_FunctionInfo->function->name); return; @@ -1631,7 +1630,6 @@ void ThreadState::FillCallstack(ShaderDebugState &state) } else { - RDCWARN("No callstack entry found for instruction %u", state.nextInstruction); state.callstack.clear(); state.callstack.push_back(m_FunctionInfo->function->name); return;