summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Mai2023-05-18 18:04:07 -0400
committerGravatar GitHub2023-05-18 18:04:07 -0400
commitf6c55078739920d0f9881bb21262d0067038eab1 (patch)
tree20fe210e3268c63998531ba91e4ac6d0783f9c13 /src
parentMerge pull request #10365 from lat9nq/anv_push_descriptor (diff)
parentrenderer_vulkan: remove wrong constexpr (diff)
downloadyuzu-f6c55078739920d0f9881bb21262d0067038eab1.tar.gz
yuzu-f6c55078739920d0f9881bb21262d0067038eab1.tar.xz
yuzu-f6c55078739920d0f9881bb21262d0067038eab1.zip
Merge pull request #10377 from liamwhite/constexpr
renderer_vulkan: remove wrong constexpr
Diffstat (limited to 'src')
-rw-r--r--src/video_core/renderer_vulkan/vk_swapchain.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/renderer_vulkan/vk_swapchain.cpp b/src/video_core/renderer_vulkan/vk_swapchain.cpp
index 1e80ce463..8c0dec590 100644
--- a/src/video_core/renderer_vulkan/vk_swapchain.cpp
+++ b/src/video_core/renderer_vulkan/vk_swapchain.cpp
@@ -34,8 +34,8 @@ VkSurfaceFormatKHR ChooseSwapSurfaceFormat(vk::Span<VkSurfaceFormatKHR> formats)
34 return found != formats.end() ? *found : formats[0]; 34 return found != formats.end() ? *found : formats[0];
35} 35}
36 36
37static constexpr VkPresentModeKHR ChooseSwapPresentMode(bool has_imm, bool has_mailbox, 37static VkPresentModeKHR ChooseSwapPresentMode(bool has_imm, bool has_mailbox,
38 bool has_fifo_relaxed) { 38 bool has_fifo_relaxed) {
39 // Mailbox doesn't lock the application like FIFO (vsync) 39 // Mailbox doesn't lock the application like FIFO (vsync)
40 // FIFO present mode locks the framerate to the monitor's refresh rate 40 // FIFO present mode locks the framerate to the monitor's refresh rate
41 Settings::VSyncMode setting = [has_imm, has_mailbox]() { 41 Settings::VSyncMode setting = [has_imm, has_mailbox]() {