Structures
VkTexelBufferDescriptorInfoEXT
Structure describing an image descriptor created from a buffer
VkTexelBufferDescriptorInfoEXT is defined as:
typedef struct VkTexelBufferDescriptorInfoEXT {
VkStructureType sType;
const void* pNext;
VkFormat format;
VkDeviceAddressRangeEXT addressRange;
} VkTexelBufferDescriptorInfoEXT;
pub struct TexelBufferDescriptorInfoEXT {
s_type: vk::StructureType,
p_next: *const c_void,
format: vk::Format,
address_range: vk::DeviceAddressRangeEXT,
}
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.formatis the VkFormat of the descriptor.addressRangeis a VkDeviceAddressRangeEXT defining the range of data backing the descriptor.
Valid Usage (Implicit)
VUID-VkTexelBufferDescriptorInfoEXT-sType-sType
sType must be VK_STRUCTURE_TYPE_TEXEL_BUFFER_DESCRIPTOR_INFO_EXT
VUID-VkTexelBufferDescriptorInfoEXT-pNext-pNext
pNext must be NULL
VUID-VkTexelBufferDescriptorInfoEXT-format-parameter
format must be a valid VkFormat value
Parent
VK_EXT_descriptor_heapType
Structures