]> git.tdb.fi Git - libs/gl.git/blob - source/backends/vulkan/sampler_backend.cpp
Initial implementation of Vulkan backend
[libs/gl.git] / source / backends / vulkan / sampler_backend.cpp
1 #include "sampler.h"
2 #include "sampler_backend.h"
3
4 using namespace std;
5
6 namespace Msp {
7 namespace GL {
8
9 VulkanSampler::VulkanSampler()
10 {
11         throw logic_error("VulkanSampler is unimplemented");
12 }
13
14 VulkanSampler::VulkanSampler(VulkanSampler &&other):
15         handle(other.handle)
16 {
17         other.handle = 0;
18 }
19
20 VulkanSampler::~VulkanSampler()
21 { }
22
23 void VulkanSampler::update(unsigned) const
24 { }
25
26 void VulkanSampler::set_debug_name(const string &)
27 { }
28
29 } // namespace GL
30 } // namespace Msp