mirror of
				https://git.tardis.systems/mirrors/yuzu
				synced 2025-11-04 04:34:07 +01:00 
			
		
		
		
	Merge pull request #10377 from liamwhite/constexpr
renderer_vulkan: remove wrong constexpr
This commit is contained in:
		
						commit
						f6c5507873
					
				@ -34,8 +34,8 @@ VkSurfaceFormatKHR ChooseSwapSurfaceFormat(vk::Span<VkSurfaceFormatKHR> formats)
 | 
			
		||||
    return found != formats.end() ? *found : formats[0];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static constexpr VkPresentModeKHR ChooseSwapPresentMode(bool has_imm, bool has_mailbox,
 | 
			
		||||
                                                        bool has_fifo_relaxed) {
 | 
			
		||||
static VkPresentModeKHR ChooseSwapPresentMode(bool has_imm, bool has_mailbox,
 | 
			
		||||
                                              bool has_fifo_relaxed) {
 | 
			
		||||
    // Mailbox doesn't lock the application like FIFO (vsync)
 | 
			
		||||
    // FIFO present mode locks the framerate to the monitor's refresh rate
 | 
			
		||||
    Settings::VSyncMode setting = [has_imm, has_mailbox]() {
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user