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

◆ is_vertex_data_dirty()

bool MayaFlux::Nodes::Network::PathOperator::is_vertex_data_dirty ( ) const
overridevirtual

Check if geometry changed this frame.

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

Definition at line 160 of file PathOperator.cpp.

161{
162 return std::ranges::any_of(
163 m_paths,
164 [](const auto& group) { return group->needs_gpu_update(); });
165}
std::vector< std::shared_ptr< GpuSync::PathGeneratorNode > > m_paths

References m_paths.