]> git.tdb.fi Git - libs/gl.git/blobdiff - source/backends/vulkan/camera_backend.h
Initial implementation of Vulkan backend
[libs/gl.git] / source / backends / vulkan / camera_backend.h
diff --git a/source/backends/vulkan/camera_backend.h b/source/backends/vulkan/camera_backend.h
new file mode 100644 (file)
index 0000000..e22fdb5
--- /dev/null
@@ -0,0 +1,20 @@
+#ifndef MSP_GL_CAMERA_BACKEND_H_
+#define MSP_GL_CAMERA_BACKEND_H_
+
+namespace Msp {
+namespace GL {
+
+class Matrix;
+
+class VulkanCamera
+{
+protected:
+       static void adjust_projection_matrix(Matrix &);
+};
+
+using CameraBackend = VulkanCamera;
+
+} // namespace GL
+} // namespace Msp
+
+#endif