C Specification
The VkDeviceFaultVendorInfoKHR structure is defined as:
// Provided by VK_KHR_device_fault
typedef struct VkDeviceFaultVendorInfoKHR {
char description[VK_MAX_DESCRIPTION_SIZE];
uint64_t vendorFaultCode;
uint64_t vendorFaultData;
} VkDeviceFaultVendorInfoKHR;
// Provided by VK_EXT_device_fault
// Equivalent to VkDeviceFaultVendorInfoKHR
typedef VkDeviceFaultVendorInfoKHR VkDeviceFaultVendorInfoEXT;
Members
-
descriptionis an array of VK_MAX_DESCRIPTION_SIZEcharcontaining a null-terminated UTF-8 string which is a human readable description of the fault. -
vendorFaultCodeis the vendor-specific fault code for this fault. -
vendorFaultDatais the vendor-specific fault data associated with this fault.
Document Notes
For more information, see the Vulkan Specification.
This page is extracted from the Vulkan Specification. Fixes and changes should be made to the Specification, not directly.