Structures

VkDeviceFaultVendorInfoEXT

Structure specifying vendor-specific fault information

The VkDeviceFaultVendorInfoEXT structure is defined as:

typedef struct VkDeviceFaultVendorInfoEXT {
    char description[VK_MAX_DESCRIPTION_SIZE];
    uint64_t vendorFaultCode;
    uint64_t vendorFaultData;
} 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.