vulkan/wsi/wayland: Remove confusing comment

We do own the lock if there's a timeout, and the code is written with that
in mind - but the comment seems to imply otherwise.

Drop it.

Signed-off-by: Derek Foreman <derek.foreman@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27851>
This commit is contained in:
Derek Foreman
2024-02-13 10:04:52 -06:00
committed by Marge Bot
parent f96d31bc8a
commit fb22b69df3
-1
View File
@@ -1738,7 +1738,6 @@ wsi_wl_swapchain_wait_for_present(struct wsi_swapchain *wsi_chain,
/* Someone else is dispatching events; wait for them to update the chain
* status and wake us up. */
while (chain->present_ids.dispatch_in_progress) {
/* We only own the lock when the wait succeeds. */
err = pthread_cond_timedwait(&chain->present_ids.list_advanced,
&chain->present_ids.lock, &end_time);