Structures

VkSamplerCaptureDescriptorDataInfoEXT

Structure specifying a sampler for descriptor capture

Information about the sampler to get descriptor buffer capture data for is passed in a VkSamplerCaptureDescriptorDataInfoEXT structure:

typedef struct VkSamplerCaptureDescriptorDataInfoEXT {
    VkStructureType sType;
    const void* pNext;
    VkSampler sampler;
} VkSamplerCaptureDescriptorDataInfoEXT;
  • sType is a VkStructureType value identifying this structure.
  • pNext is NULL or a pointer to a structure extending this structure.
  • sampler is the VkSampler handle of the sampler to get opaque capture data for.

Valid Usage

VUID-VkSamplerCaptureDescriptorDataInfoEXT-sampler-08087

sampler must have been created with VK_SAMPLER_CREATE_DESCRIPTOR_BUFFER_CAPTURE_REPLAY_BIT_EXT set in VkSamplerCreateInfo::flags

Valid Usage (Implicit)

VUID-VkSamplerCaptureDescriptorDataInfoEXT-sType-sType

sType must be VK_STRUCTURE_TYPE_SAMPLER_CAPTURE_DESCRIPTOR_DATA_INFO_EXT