C Specification

The VkDeviceFaultDebugInfoKHR structure is defined as:

  • sType is a VkStructureType value identifying this structure.

  • pNext is NULL or a pointer to a structure extending this structure.

  • vendorBinarySize is the size in bytes of a vendor-specific binary crash dump, which may provide additional information when imported into external tools.

  • pVendorBinaryData is NULL or a pointer to vendorBinarySize number 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;

Members

Description

Valid Usage (Implicit)

See Also

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.

Copyright 2014-2026 The Khronos Group Inc.

SPDX-License-Identifier: CC-BY-4.0