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

◆ destroy_sampler()

void MayaFlux::Core::BackendResourceManager::destroy_sampler ( vk::Sampler  sampler)

Destroy sampler.

Definition at line 757 of file BackendResoureManager.cpp.

758{
759 if (!sampler) {
760 return;
761 }
762
763 for (auto it = m_sampler_cache.begin(); it != m_sampler_cache.end(); ++it) {
764 if (it->second == sampler) {
765 m_sampler_cache.erase(it);
766 break;
767 }
768 }
769
770 m_context.get_device().destroySampler(sampler);
771
773 "Destroyed sampler");
774}
#define MF_DEBUG(comp, ctx,...)
std::unordered_map< size_t, vk::Sampler > m_sampler_cache
vk::Device get_device() const
Get logical device.
Definition VKContext.hpp:49
@ GraphicsBackend
Graphics/visual rendering backend (Vulkan, OpenGL)
@ Core
Core engine, backend, subsystems.

References MayaFlux::Journal::Core, MayaFlux::Core::VKContext::get_device(), MayaFlux::Journal::GraphicsBackend, m_context, m_sampler_cache, and MF_DEBUG.

+ Here is the call graph for this function: