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

◆ declared_topology()

std::optional< Portal::Graphics::PrimitiveTopology > MayaFlux::Nodes::Network::AssemblyOperator::declared_topology ( ) const
overridevirtual

Forwards to the first item's own get_primitive_topology().

Reimplemented from MayaFlux::Nodes::Network::GraphicsOperator.

Definition at line 172 of file AssemblyOperator.cpp.

173{
174 if (m_items.empty()) {
175 return std::nullopt;
176 }
177 return m_items[0]->get_primitive_topology();
178}
std::vector< std::shared_ptr< GpuSync::GeometryWriterNode > > m_items

References m_items.