mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
28 lines
No EOL
605 B
C++
28 lines
No EOL
605 B
C++
#pragma once
|
|
|
|
#include <optional>
|
|
#include <unordered_map>
|
|
|
|
#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<std::size_t, vk::UniqueSampler> samplerMap;
|
|
|
|
explicit SamplerCache(vk::Device device);
|
|
|
|
public:
|
|
~SamplerCache() = default;
|
|
|
|
SamplerCache(SamplerCache&&) = default;
|
|
|
|
const vk::Sampler& getSampler(const vk::SamplerCreateInfo& samplerInfo);
|
|
|
|
static std::optional<SamplerCache> create(vk::Device device);
|
|
};
|
|
} // namespace Vulkan
|