]> git.tdb.fi Git - libs/gl.git/blobdiff - source/backends/vulkan/camera_backend.cpp
Refactor handling of viewport Y axis
[libs/gl.git] / source / backends / vulkan / camera_backend.cpp
index 9eba4289ce1eb9166569ef1f6e01589c5abb3f99..10e294f7c66d4850886430083633e72d164087e7 100644 (file)
@@ -7,7 +7,6 @@ namespace GL {
 void VulkanCamera::adjust_projection_matrix(Matrix &proj_matrix)
 {
        Matrix adjust;
-       adjust(1, 1) = -1.0f;
        adjust(2, 2) = 0.5f;
        adjust(2, 3) = 0.5f;
        proj_matrix = adjust*proj_matrix;