diff options
-rw-r--r-- | src/vk/graphics_pipeline.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vk/graphics_pipeline.cpp b/src/vk/graphics_pipeline.cpp index 1c13425..1ba8a12 100644 --- a/src/vk/graphics_pipeline.cpp +++ b/src/vk/graphics_pipeline.cpp @@ -952,7 +952,7 @@ GraphicsPipeline::draw() ubo_view_projection.proj = glm::perspective( glm::radians(45.0f), cg_core.screen_width / static_cast<float>(cg_core.screen_height), - 0.1f, 10.0f); + 0.1f, 100.0f); ubo_view_projection.proj[1][1] *= -1; this->ub_view_projection[image_index].copy_data(&ubo_view_projection); |