MayaFlux 0.1.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 752 of file BackendResoureManager.cpp.

753{
754 if (!sampler) {
755 return;
756 }
757
758 for (auto it = m_sampler_cache.begin(); it != m_sampler_cache.end(); ++it) {
759 if (it->second == sampler) {
760 m_sampler_cache.erase(it);
761 break;
762 }
763 }
764
765 m_context.get_device().destroySampler(sampler);
766
768 "Destroyed sampler");
769}
#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: