Home -> IRenderPassNode -> RemoveChildNodes

Description

The RemoveChildNodes method removes the specified set of IProgramNode objects from the list of child nodes if present.

Usage

void RemoveChildNodes(IProgramNode* const* childNodes, size_t childNodeCount);
void RemoveChildNodes(IProgramNode::unique_ptr const* childNodes, size_t childNodeCount);

Argument list

childNodes [IProgramNode* const* / IProgramNode::unique_ptr const*]
The set of IProgramNode objects to remove from the list of child nodes
childNodeCount [size_t]
The number of IProgramNode entries to read from the childNodes array

See also