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

◆ get_vertex_data_for_collection()

std::span< const uint8_t > MayaFlux::Nodes::Network::PathOperator::get_vertex_data_for_collection ( uint32_t  idx) const
overridevirtual

Get vertex data for specific collection (if multiple)

Parameters
idxCollection index

Implements MayaFlux::Nodes::Network::GraphicsOperator.

Definition at line 161 of file PathOperator.cpp.

162{
163 if (m_paths.empty() || idx >= m_paths.size()) {
164 return {};
165 }
166 return m_paths[idx]->get_vertex_data();
167}
std::vector< std::shared_ptr< GpuSync::PathGeneratorNode > > m_paths

References m_paths.