Enum
VkTensorViewCreateFlagBitsARM
Bitmask specifying additional parameters of an tensor view
Bits which can be set in VkTensorViewCreateInfoARM::flags,
specifying additional parameters of an tensor, are:
typedef enum VkTensorViewCreateFlagBitsARM {
// Provided by extensions
VK_TENSOR_VIEW_CREATE_DESCRIPTOR_BUFFER_CAPTURE_REPLAY_BIT_ARM = 0x00000001ULL,
} VkTensorViewCreateFlagBitsARM;
pub struct TensorViewCreateFlagBitsARM(u64);
impl TensorViewCreateFlagBitsARM {
pub const DESCRIPTOR_BUFFER_CAPTURE_REPLAY: Self = 0x00000001;
}
VK_TENSOR_VIEW_CREATE_DESCRIPTOR_BUFFER_CAPTURE_REPLAY_BIT_ARMspecifies that the tensor view can be used with descriptor buffers when capturing and replaying (e.g. for trace capture and replay), see VkOpaqueCaptureDescriptorDataCreateInfoEXT for more detail.
Parent
VK_ARM_tensorsType
Enum