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

◆ update_vertex()

void MayaFlux::Nodes::GpuSync::GeometryLeafNode::update_vertex ( size_t  index,
const Vertex vertex 
)

Definition at line 77 of file GeometryLeafNode.cpp.

78{
79 if (index >= m_items.size()) {
81 "GeometryLeafNode: vertex index {} out of range (count: {})", index, m_items.size());
82 return;
83 }
84 m_items[index] = vertex;
85 m_geometry_dirty = true;
86}
#define MF_WARN(comp, ctx,...)
uint32_t index
Definition VKDevice.cpp:142
@ NodeProcessing
Node graph processing (Nodes::NodeGraphManager)
@ Nodes
DSP Generator and Filter Nodes, graph pipeline, node management.

References index, m_geometry_dirty, m_items, MF_WARN, MayaFlux::Journal::NodeProcessing, and MayaFlux::Journal::Nodes.