VkResult
While the core Vulkan API is not designed to capture incorrect usage, some circumstances still require return codes. Commands in Vulkan return their status via return codes that are in one of two categories:
- Successful completion codes are returned when a command needs to communicate success or status information. All successful completion codes are non-negative values.
- Runtime error codes are returned when a command needs to communicate a failure that could only be detected at runtime. All runtime error codes are negative values.
All return codes in Vulkan are reported via VkResult return values. The possible codes are:
typedef enum VkResult {
// Return codes (positive values),
VK_SUCCESS = 0,
VK_NOT_READY = 1,
VK_TIMEOUT = 2,
VK_EVENT_SET = 3,
VK_EVENT_RESET = 4,
VK_INCOMPLETE = 5,
// Error codes (negative values),
VK_ERROR_OUT_OF_HOST_MEMORY = -1,
VK_ERROR_OUT_OF_DEVICE_MEMORY = -2,
VK_ERROR_INITIALIZATION_FAILED = -3,
VK_ERROR_DEVICE_LOST = -4,
VK_ERROR_MEMORY_MAP_FAILED = -5,
VK_ERROR_LAYER_NOT_PRESENT = -6,
VK_ERROR_EXTENSION_NOT_PRESENT = -7,
VK_ERROR_FEATURE_NOT_PRESENT = -8,
VK_ERROR_INCOMPATIBLE_DRIVER = -9,
VK_ERROR_TOO_MANY_OBJECTS = -10,
VK_ERROR_FORMAT_NOT_SUPPORTED = -11,
VK_ERROR_FRAGMENTED_POOL = -12,
VK_ERROR_UNKNOWN = -13,
,
} VkResult;
VK_SUCCESSCommand successfully completedVK_NOT_READYA fence or query has not yet completedVK_TIMEOUTA wait operation has not completed in the specified timeVK_EVENT_SETAn event is signaledVK_EVENT_RESETAn event is unsignaledVK_INCOMPLETEA return array was too small for the resultVK_SUBOPTIMAL_KHRA swapchain no longer matches the surface properties exactly, but can still be used to present to the surface successfully.VK_THREAD_IDLE_KHRA deferred operation is not complete but there is currently no work for this thread to do at the time of this call.VK_THREAD_DONE_KHRA deferred operation is not complete but there is no work remaining to assign to additional threads.VK_OPERATION_DEFERRED_KHRA deferred operation was requested and at least some of the work was deferred.VK_OPERATION_NOT_DEFERRED_KHRA deferred operation was requested and no operations were deferred.VK_PIPELINE_COMPILE_REQUIREDA requested pipeline creation would have required compilation, but the application requested compilation to not be performed.VK_PIPELINE_BINARY_MISSING_KHRThe application attempted to create a pipeline binary by querying an internal cache, but the internal cache entry did not exist.VK_INCOMPATIBLE_SHADER_BINARY_EXTThe provided binary shader code is not compatible with this device.In the initial version of the VK_EXT_shader_object extension, this return code was named
VK_ERROR_INCOMPATIBLE_SHADER_BINARY_EXTand improperly described as an error code. The name has been changed, but the old name is retained as an alias for compatibility with old code.VK_ERROR_OUT_OF_HOST_MEMORYA host memory allocation has failed.VK_ERROR_OUT_OF_DEVICE_MEMORYA device memory allocation has failed.VK_ERROR_INITIALIZATION_FAILEDInitialization of an object could not be completed for implementation-specific reasons.VK_ERROR_DEVICE_LOSTThe logical or physical device has been lost. See Lost DeviceVK_ERROR_MEMORY_MAP_FAILEDMapping of a memory object has failed.VK_ERROR_LAYER_NOT_PRESENTA requested layer is not present or could not be loaded.VK_ERROR_EXTENSION_NOT_PRESENTA requested extension is not supported.VK_ERROR_FEATURE_NOT_PRESENTA requested feature is not supported.VK_ERROR_INCOMPATIBLE_DRIVERThe requested version of Vulkan is not supported by the driver or is otherwise incompatible for implementation-specific reasons.VK_ERROR_TOO_MANY_OBJECTSToo many objects of the type have already been created.VK_ERROR_FORMAT_NOT_SUPPORTEDA requested format is not supported on this device.VK_ERROR_FRAGMENTED_POOLA pool allocation has failed due to fragmentation of the pool’s memory. This must only be returned if no attempt to allocate host or device memory was made to accommodate the new allocation. This should be returned in preference toVK_ERROR_OUT_OF_POOL_MEMORY, but only if the implementation is certain that the pool allocation failure was due to fragmentation.VK_ERROR_SURFACE_LOST_KHRA surface is no longer available.VK_ERROR_NATIVE_WINDOW_IN_USE_KHRThe requested window is already in use by Vulkan or another API in a manner which prevents it from being used again.VK_ERROR_OUT_OF_DATE_KHRA surface has changed in such a way that it is no longer compatible with the swapchain, and further presentation requests using the swapchain will fail. Applications must query the new surface properties and recreate their swapchain if they wish to continue presenting to the surface.VK_ERROR_INCOMPATIBLE_DISPLAY_KHRThe display used by a swapchain does not use the same presentable image layout, or is incompatible in a way that prevents sharing an image.VK_ERROR_INVALID_SHADER_NVOne or more shaders failed to compile or link. More details are reported back to the application via VK_EXT_debug_report if enabled.VK_ERROR_OUT_OF_POOL_MEMORYA pool memory allocation has failed. This must only be returned if no attempt to allocate host or device memory was made to accommodate the new allocation. If the failure was definitely due to fragmentation of the pool,VK_ERROR_FRAGMENTED_POOLshould be returned instead.VK_ERROR_INVALID_EXTERNAL_HANDLEAn external handle is not a valid handle of the specified type.VK_ERROR_FRAGMENTATIONA descriptor pool creation has failed due to fragmentation.VK_ERROR_INVALID_DEVICE_ADDRESS_EXTA buffer creation failed because the requested address is not available.VK_ERROR_INVALID_OPAQUE_CAPTURE_ADDRESSA buffer creation or memory allocation failed because the requested address is not available. A shader group handle assignment failed because the requested shader group handle information is no longer valid.VK_ERROR_FULL_SCREEN_EXCLUSIVE_MODE_LOST_EXTAn operation on a swapchain created withVK_FULL_SCREEN_EXCLUSIVE_APPLICATION_CONTROLLED_EXTfailed as it did not have exclusive full-screen access. This may occur due to implementation-dependent reasons, outside of the application’s control.VK_ERROR_VALIDATION_FAILED_EXTA command failed because invalid usage was detected by the implementation or a validation-layer.VK_ERROR_COMPRESSION_EXHAUSTED_EXTAn image creation failed because internal resources required for compression are exhausted. This must only be returned when fixed-rate compression is requested.VK_ERROR_IMAGE_USAGE_NOT_SUPPORTED_KHRThe requested VkImageUsageFlags are not supported.VK_ERROR_VIDEO_PICTURE_LAYOUT_NOT_SUPPORTED_KHRThe requested video picture layout is not supported.VK_ERROR_VIDEO_PROFILE_OPERATION_NOT_SUPPORTED_KHRA video profile operation specified via VkVideoProfileInfoKHR::videoCodecOperationis not supported.VK_ERROR_VIDEO_PROFILE_FORMAT_NOT_SUPPORTED_KHRFormat parameters in a requested VkVideoProfileInfoKHR chain are not supported.VK_ERROR_VIDEO_PROFILE_CODEC_NOT_SUPPORTED_KHRCodec-specific parameters in a requested VkVideoProfileInfoKHR chain are not supported.VK_ERROR_VIDEO_STD_VERSION_NOT_SUPPORTED_KHRThe specified video Std header version is not supported.VK_ERROR_INVALID_VIDEO_STD_PARAMETERS_KHRThe specified Video Std parameters do not adhere to the syntactic or semantic requirements of the used video compression standard, or values derived from parameters according to the rules defined by the used video compression standard do not adhere to the capabilities of the video compression standard or the implementation.VK_ERROR_NOT_PERMITTEDThe driver implementation has denied a request to acquire a priority above the default priority (VK_QUEUE_GLOBAL_PRIORITY_MEDIUM_EXT) because the application does not have sufficient privileges.VK_ERROR_NOT_ENOUGH_SPACE_KHRThe application did not provide enough space to return all the required data.VK_ERROR_UNKNOWNAn unknown error has occurred; either the application has provided invalid input, or an implementation failure has occurred.
If a command returns a runtime error, unless otherwise specified any output
parameters will have undefined: contents, except that if the output
parameter is a structure with sType and pNext fields, those
fields will be unmodified.
Any structures chained from pNext will also have undefined: contents,
except that sType and pNext will be unmodified.
VK_ERROR_OUT_OF_*_MEMORY errors do not modify any currently existing
Vulkan objects.
Objects that have already been successfully created can still be used by
the application.
As a general rule, Free, Release, and Reset commands do
not return VK_ERROR_OUT_OF_HOST_MEMORY, while any other command with a
return code may return it.
Any exceptions from this rule are described for those commands.
VK_ERROR_UNKNOWN will be returned by an implementation when an
unexpected error occurs that cannot be attributed to valid behavior of the
application and implementation.
Under these conditions, it may be returned from any command returning a
VkResult.
VK_ERROR_UNKNOWN is not expected to ever be returned if the
application behavior is valid, and if the implementation is bug-free.
If VK_ERROR_UNKNOWN is received, the application should be checked
against the latest validation layers to verify correct behavior as much as
possible.
If no issues are identified it could be an implementation issue, and the
implementor should be contacted for support.
Any command returning a VkResult may return
VK_ERROR_VALIDATION_FAILED_EXT
if a violation of valid usage is detected, even though commands do not
explicitly list this as a possible return code.
Performance-critical commands generally do not have return codes.
If a runtime error occurs in such commands, the implementation will defer
reporting the error until a specified point.
For commands that record into command buffers (vkCmd*) runtime errors
are reported by vkEndCommandBuffer.