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

◆ unbind_network()

void MayaFlux::Buffers::NetworkGeometryProcessor::unbind_network ( const std::string &  name)

Remove a network binding.

Parameters
nameName of binding to remove

Definition at line 63 of file NetworkGeometryProcessor.cpp.

64{
65 if (m_bindings.erase(name) == 0) {
67 "Attempted to unbind non-existent network '{}'", name);
68 } else {
70 "Unbound network '{}'", name);
71 }
72}
#define MF_WARN(comp, ctx,...)
#define MF_DEBUG(comp, ctx,...)
std::unordered_map< std::string, NetworkBinding > m_bindings
@ BufferProcessing
Buffer processing (Buffers::BufferManager, processing chains)
@ Buffers
Buffers, Managers, processors and processing chains.

References MayaFlux::Journal::BufferProcessing, MayaFlux::Journal::Buffers, m_bindings, MF_DEBUG, and MF_WARN.