X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Fbackends%2Fvulkan%2Fcamera_backend.cpp;fp=source%2Fbackends%2Fvulkan%2Fcamera_backend.cpp;h=0000000000000000000000000000000000000000;hb=acd7bb6e23e2aff9934ecf32852c62ba72c13574;hp=10e294f7c66d4850886430083633e72d164087e7;hpb=6211e1556df8345ad1c4e7edbd635bccdd7f54f0;p=libs%2Fgl.git diff --git a/source/backends/vulkan/camera_backend.cpp b/source/backends/vulkan/camera_backend.cpp deleted file mode 100644 index 10e294f7..00000000 --- a/source/backends/vulkan/camera_backend.cpp +++ /dev/null @@ -1,16 +0,0 @@ -#include "camera_backend.h" -#include "matrix.h" - -namespace Msp { -namespace GL { - -void VulkanCamera::adjust_projection_matrix(Matrix &proj_matrix) -{ - Matrix adjust; - adjust(2, 2) = 0.5f; - adjust(2, 3) = 0.5f; - proj_matrix = adjust*proj_matrix; -} - -} // namespace GL -} // namespace Msp