MCPcopy Create free account
hub / github.com/baldurk/renderdoc / AddMessages

Method AddMessages

qrenderdoc/Code/CaptureContext.cpp:1740–1750  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1738}
1739
1740void CaptureContext::AddMessages(const rdcarray<DebugMessage> &msgs)
1741{
1742 m_UnreadMessageCount += msgs.count();
1743 for(const DebugMessage &msg : msgs)
1744 m_DebugMessages.push_back(msg);
1745
1746 if(m_DebugMessageView)
1747 {
1748 GUIInvoke::call(m_DebugMessageView, [this]() { m_DebugMessageView->RefreshMessageList(); });
1749 }
1750}
1751
1752void CaptureContext::ClearMessages()
1753{

Callers

nothing calls this directly

Calls 3

RefreshMessageListMethod · 0.80
countMethod · 0.45
push_backMethod · 0.45

Tested by

no test coverage detected