#pragma once #include #include #include "helpers.hpp" #include "vk_api.hpp" namespace Vulkan { // Implements a simple pool of reusable sampler objects class SamplerCache { private: const vk::Device device; std::unordered_map samplerMap; explicit SamplerCache(vk::Device device); public: ~SamplerCache() = default; SamplerCache(SamplerCache&&) = default; const vk::Sampler& getSampler(const vk::SamplerCreateInfo& samplerInfo); static std::optional create(vk::Device device); }; } // namespace Vulkan