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

◆ unbind_buffer()

void MayaFlux::Buffers::ShaderProcessor::unbind_buffer ( const std::string &  descriptor_name)

Unbind a buffer from a descriptor.

Parameters
descriptor_nameLogical name to unbind

Definition at line 161 of file ShaderProcessor.cpp.

162{
163 auto it = m_bound_buffers.find(descriptor_name);
164 if (it != m_bound_buffers.end()) {
165 m_bound_buffers.erase(it);
167 }
168}
std::unordered_map< std::string, std::shared_ptr< VKBuffer > > m_bound_buffers

References m_bound_buffers, and m_needs_descriptor_rebuild.

Referenced by remove_feed(), and MayaFlux::Buffers::DescriptorBindingsProcessor::unbind().

+ Here is the caller graph for this function: