C Specification
The VkDeviceFaultDebugInfoKHR structure is defined as:
-
sTypeis a VkStructureType value identifying this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
vendorBinarySizeis the size in bytes of a vendor-specific binary crash dump, which may provide additional information when imported into external tools. -
pVendorBinaryDataisNULLor a pointer tovendorBinarySizenumber of bytes of data, which will be populated with a vendor-specific binary crash dump, as described in Vendor Binary Crash Dumps.
// Provided by VK_KHR_device_fault
typedef struct VkDeviceFaultDebugInfoKHR {
VkStructureType sType;
void* pNext;
uint32_t vendorBinarySize;
void* pVendorBinaryData;
} VkDeviceFaultDebugInfoKHR;
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.