You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
vkAcquireNextImageKHR() function accepts timeout value in nano-second unit. But, the timeout value is used as milli-second unit at mainloop_wayland(), mainloop_xcb() function as follow.
result = vkAcquireNextImageKHR(vc->device, vc->swap_chain, 60,
vc->semaphore, VK_NULL_HANDLE, &index);
if (result != VK_SUCCESS)
return;
Such a too short timeout value(60ns) causes program termination when screen lock or some other unstable compositor running.
The text was updated successfully, but these errors were encountered:
vkAcquireNextImageKHR() function accepts timeout value in nano-second unit. But, the timeout value is used as milli-second unit at mainloop_wayland(), mainloop_xcb() function as follow.
Such a too short timeout value(60ns) causes program termination when screen lock or some other unstable compositor running.
The text was updated successfully, but these errors were encountered: