VKERROROUTOFHOSTMEMORY
VK_ERROR_OUT_OF_HOST_MEMORY is a Vulkan VkResult value indicating that a host (CPU) memory allocation has failed. It is reported when the Vulkan implementation cannot allocate memory from the host to fulfill a request, whether for creating objects, backing resources, or internal driver needs. This error is distinct from VK_ERROR_OUT_OF_DEVICE_MEMORY, which signals a failure to allocate device-local memory on the GPU.
The error can occur during various Vulkan operations that require host-side allocations, such as resource creation
Handling and mitigation focus on managing host memory usage and allocations. If VK_ERROR_OUT_OF_HOST_MEMORY is reported, the
See also VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_MEMORY_MAP_FAILED, and related VkResult codes for memory-related failures.