]> git.tdb.fi Git - libs/gl.git/blobdiff - source/backends/opengl/camera_backend.h
Initial implementation of Vulkan backend
[libs/gl.git] / source / backends / opengl / camera_backend.h
diff --git a/source/backends/opengl/camera_backend.h b/source/backends/opengl/camera_backend.h
new file mode 100644 (file)
index 0000000..574919e
--- /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 OpenGLCamera
+{
+protected:
+       static void adjust_projection_matrix(Matrix &) { }
+};
+
+using CameraBackend = OpenGLCamera;
+
+} // namespace GL
+} // namespace Msp
+
+#endif