MayaFlux 0.2.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 117 of file PathOperator.cpp.

118{
119 if (m_paths.empty() || idx >= m_paths.size()) {
120 return {};
121 }
122 return m_paths[idx]->get_vertex_data();
123}
std::vector< std::shared_ptr< GpuSync::PathGeneratorNode > > m_paths

References m_paths.