]> git.tdb.fi Git - libs/gl.git/blobdiff - source/backends/vulkan/uniformblock_backend.h
Initial implementation of Vulkan backend
[libs/gl.git] / source / backends / vulkan / uniformblock_backend.h
diff --git a/source/backends/vulkan/uniformblock_backend.h b/source/backends/vulkan/uniformblock_backend.h
new file mode 100644 (file)
index 0000000..47e7a5f
--- /dev/null
@@ -0,0 +1,19 @@
+#ifndef MSP_GL_UNIFORMBLOCK_BACKEND_H_
+#define MSP_GL_UNIFORMBLOCK_BACKEND_H_
+
+namespace Msp {
+namespace GL {
+
+class VulkanUniformBlock
+{
+protected:
+       VulkanUniformBlock(bool) { }
+       ~VulkanUniformBlock() = default;
+};
+
+using UniformBlockBackend = VulkanUniformBlock;
+
+} // namespace GL
+} // namespace Msp
+
+#endif