MayaFlux 0.2.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ process()

void MayaFlux::Nodes::Network::TopologyOperator::process ( float  dt)
overridevirtual

Process for one batch cycle.

Parameters
dtTime delta or sample count (operator-specific)

Implements MayaFlux::Nodes::Network::NetworkOperator.

Definition at line 81 of file TopologyOperator.cpp.

82{
83 if (m_topologies.empty()) {
84 return;
85 }
86
87 for (auto& topology : m_topologies) {
88 topology->compute_frame();
89 }
90}
std::vector< std::shared_ptr< GpuSync::TopologyGeneratorNode > > m_topologies

References m_topologies.