diff --git a/doc/specs/vulkan/chapters/synchronization.txt b/doc/specs/vulkan/chapters/synchronization.txt index fd120cbf..143620e1 100644 --- a/doc/specs/vulkan/chapters/synchronization.txt +++ b/doc/specs/vulkan/chapters/synchronization.txt @@ -1270,7 +1270,7 @@ with the following return codes: | Status | Meaning | ename:VK_SUCCESS | The fence specified by pname:fence is signaled. | ename:VK_NOT_READY | The fence specified by pname:fence is unsignaled. -| ename:VK_DEVICE_LOST | The device has been lost. See <>. +| ename:VK_ERROR_DEVICE_LOST | The device has been lost. See <>. |==== If a <> command is pending @@ -1280,7 +1280,7 @@ of date. If the device has been lost (see <>), fname:vkGetFenceStatus may: return any of the above status codes. If the device has been lost and fname:vkGetFenceStatus is called repeatedly, -it will eventually return either ename:VK_SUCCESS or ename:VK_DEVICE_LOST. +it will eventually return either ename:VK_SUCCESS or ename:VK_ERROR_DEVICE_LOST. include::../validity/protos/vkGetFenceStatus.txt[] -- @@ -1390,7 +1390,7 @@ fname:vkWaitForFences returns ename:VK_SUCCESS. If device loss occurs (see <>) before the timeout has expired, fname:vkWaitForFences must: return in finite time -with either ename:VK_SUCCESS or ename:VK_DEVICE_LOST. +with either ename:VK_SUCCESS or ename:VK_ERROR_DEVICE_LOST. .Note [NOTE]