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

Method GraphNode

source/RenderGraph/GraphNode.cpp:15–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13 //*********************************************************************************************
14
15 GraphNode::GraphNode( GraphNode && rhs )noexcept
16 : kind{ rhs.kind }
17 , id{ rhs.id }
18 , name{ std::move( rhs.name ) }
19 , group{ rhs.group }
20 , prev{ std::move( rhs.prev ) }
21 {
22 rhs.kind = Kind::Undefined;
23 rhs.id = 0u;
24 }
25
26 GraphNode::GraphNode( Kind pkind
27 , uint32_t pid

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected