]> git.tdb.fi Git - libs/gl.git/blob - source/backends/vulkan/texturecube_backend.cpp
Initial implementation of Vulkan backend
[libs/gl.git] / source / backends / vulkan / texturecube_backend.cpp
1 #include "texturecube_backend.h"
2 #include "vulkan.h"
3
4 using namespace std;
5
6 namespace Msp {
7 namespace GL {
8
9 VulkanTextureCube::VulkanTextureCube():
10         Texture(VK_IMAGE_VIEW_TYPE_CUBE)
11 {
12         throw std::logic_error("VulkanTextureCube is unimplemented");
13 }
14
15 void VulkanTextureCube::sub_image(unsigned, unsigned, int, int, unsigned, unsigned, const void *)
16 {
17 }
18
19 size_t VulkanTextureCube::get_data_size() const
20 {
21         return 0;
22 }
23
24 } // namespace GL
25 } // namespace Msp