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

◆ unbind_texture_node()

void MayaFlux::Buffers::TextureBindingsProcessor::unbind_texture_node ( const std::string &  name)

Remove a texture binding.

Parameters
nameName of binding to remove

Definition at line 65 of file TextureBindingsProcessor.cpp.

66{
67 if (m_bindings.erase(name) == 0) {
69 "Attempted to unbind non-existent texture node '{}'", name);
70 } else {
72 "Unbound texture node '{}'", name);
73 }
74}
#define MF_WARN(comp, ctx,...)
#define MF_DEBUG(comp, ctx,...)
std::unordered_map< std::string, TextureBinding > 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.