]> git.tdb.fi Git - libs/gl.git/blob - source/backends/vulkan/camera_backend.h
Initial implementation of Vulkan backend
[libs/gl.git] / source / backends / vulkan / camera_backend.h
1 #ifndef MSP_GL_CAMERA_BACKEND_H_
2 #define MSP_GL_CAMERA_BACKEND_H_
3
4 namespace Msp {
5 namespace GL {
6
7 class Matrix;
8
9 class VulkanCamera
10 {
11 protected:
12         static void adjust_projection_matrix(Matrix &);
13 };
14
15 using CameraBackend = VulkanCamera;
16
17 } // namespace GL
18 } // namespace Msp
19
20 #endif