Function Prototype
vkBindDataGraphPipelineSessionMemoryARM
Bind device memory to a data graph pipeline session object
To attach memory to a data graph pipeline session object, call:
VkResult vkBindDataGraphPipelineSessionMemoryARM(
VkDevice device,
uint32_t bindInfoCount,
const VkBindDataGraphPipelineSessionMemoryInfoARM* pBindInfos);
pub fn bind_data_graph_pipeline_session_memory_arm(
device: vk::Device,
bind_info_count: u32,
p_bind_infos: *const vk::BindDataGraphPipelineSessionMemoryInfoARM,
) -> vk::Result;
deviceis the logical device that owns the data graph pipeline session and memory.bindInfoCountis the length of thepBindInfosarray.pBindInfosis a pointer to an array of VkBindDataGraphPipelineSessionMemoryInfoARM structures describing graph pipeline sessions and memory to bind.
Valid Usage (Implicit)
VUID-vkBindDataGraphPipelineSessionMemoryARM-device-parameter
device must be a valid VkDevice handle
VUID-vkBindDataGraphPipelineSessionMemoryARM-pBindInfos-parameter
pBindInfos must be a valid pointer to an array of bindInfoCount valid VkBindDataGraphPipelineSessionMemoryInfoARM structures
VUID-vkBindDataGraphPipelineSessionMemoryARM-bindInfoCount-arraylength
bindInfoCount must be greater than 0
Parent
VK_ARM_data_graphType
Function Prototype