From 8236f8aaaad140de47912de3ad76075d2527119d Mon Sep 17 00:00:00 2001 From: Ben Davis Date: Wed, 21 Apr 2021 13:21:31 +0100 Subject: [PATCH] Remove to-do to check if FIFO is ok on Wayland Although Mailbox mode is recommended for use on Wayland, FIFO is required by the Vulkan spec and after investigation our implementation seems to be compliant with the spec. Change-Id: Ib3230e31c4dd516bc40dc50c9e920fb145506145 Signed-off-by: Ben Davis --- wsi/wayland/surface_properties.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wsi/wayland/surface_properties.cpp b/wsi/wayland/surface_properties.cpp index 2a111bd..a1d254c 100644 --- a/wsi/wayland/surface_properties.cpp +++ b/wsi/wayland/surface_properties.cpp @@ -226,7 +226,7 @@ VkResult surface_properties::get_surface_present_modes(VkPhysicalDevice physical { VkResult res = VK_SUCCESS; - /* TODO: Check that FIFO is okay on Wayland */ + static std::array modes = { VK_PRESENT_MODE_FIFO_KHR, VK_PRESENT_MODE_MAILBOX_KHR, -- 2.7.4