]> git.tdb.fi Git - libs/gl.git/blob - source/backends/vulkan/texture2dmultisample_backend.cpp
Initial implementation of Vulkan backend
[libs/gl.git] / source / backends / vulkan / texture2dmultisample_backend.cpp
1 #include "texture2dmultisample_backend.h"
2 #include "vulkan.h"
3
4 namespace Msp {
5 namespace GL {
6
7 VulkanTexture2DMultisample::VulkanTexture2DMultisample():
8         Texture(VK_IMAGE_TYPE_2D)
9 {
10         throw std::logic_error("VulkanTexture2DMultisample is unimplemented");
11 }
12
13 size_t VulkanTexture2DMultisample::get_data_size() const
14 {
15         return 0;
16 }
17
18 } // namespace GL
19 } // namespace Msp