C Specification
The information on a single fault is returned using the VkFaultData
structure.
The VkFaultData structure is defined as:
// Provided by VKSC_VERSION_1_0
typedef struct VkFaultData {
VkStructureType sType;
void* pNext;
VkFaultLevel faultLevel;
VkFaultType faultType;
} VkFaultData;
Members
-
sTypeis a VkStructureType value identifying this structure. -
pNextisNULLor a pointer to a structure extending this structure that provides implementation-specific data on the fault. -
faultLevelis a VkFaultLevel that provides the severity of the fault. -
faultTypeis a VkFaultType that provides the type of the fault.
Description
To retrieve implementation-specific fault data, pNext can point to
one or more implementation-defined fault structures or NULL to not
retrieve implementation-specific data.
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.