]> git.tdb.fi Git - libs/gl.git/blob - source/backends/vulkan/uniformblock_backend.h
Initial implementation of Vulkan backend
[libs/gl.git] / source / backends / vulkan / uniformblock_backend.h
1 #ifndef MSP_GL_UNIFORMBLOCK_BACKEND_H_
2 #define MSP_GL_UNIFORMBLOCK_BACKEND_H_
3
4 namespace Msp {
5 namespace GL {
6
7 class VulkanUniformBlock
8 {
9 protected:
10         VulkanUniformBlock(bool) { }
11         ~VulkanUniformBlock() = default;
12 };
13
14 using UniformBlockBackend = VulkanUniformBlock;
15
16 } // namespace GL
17 } // namespace Msp
18
19 #endif