MCPcopy Create free account
hub / github.com/DragonJoker/RenderGraph / getLevel

Method getLevel

source/RenderGraph/DotExport.cpp:425–432  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

423 }
424
425 uint32_t getLevel()const
426 {
427 if ( m_parent )
428 return ( m_parent->m_parent
429 ? 1u + m_parent->getLevel()
430 : m_parent->getLevel() );
431 return 0u;
432 }
433
434 std::stringstream & getStream()const
435 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected