Structures

VkDeviceFaultVendorInfoKHR

Structure specifying vendor-specific fault information

The VkDeviceFaultVendorInfoKHR structure is defined as:

typedef struct VkDeviceFaultVendorInfoKHR {
    char description[VK_MAX_DESCRIPTION_SIZE];
    uint64_t vendorFaultCode;
    uint64_t vendorFaultData;
} VkDeviceFaultVendorInfoKHR;
typedef VkDeviceFaultVendorInfoKHR VkDeviceFaultVendorInfoEXT;
  • description is an array of VK_MAX_DESCRIPTION_SIZE char containing a null-terminated UTF-8 string which is a human readable description of the fault.
  • vendorFaultCode is the vendor-specific fault code for this fault.
  • vendorFaultData is the vendor-specific fault data associated with this fault.