MayaFlux 0.3.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 842 of file BackendResoureManager.cpp.

843{
844 if (!sampler) {
845 return;
846 }
847
848 for (auto it = m_sampler_cache.begin(); it != m_sampler_cache.end(); ++it) {
849 if (it->second == sampler) {
850 m_sampler_cache.erase(it);
851 break;
852 }
853 }
854
855 m_context.get_device().destroySampler(sampler);
856
858 "Destroyed sampler");
859}
#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: