Lines Matching defs:inheritance
865 const VkCommandBufferInheritanceInfo *inheritance =
879 VK_FROM_HANDLE(vk_render_pass, render_pass, inheritance->renderPass);
881 assert(inheritance->subpass < render_pass->subpass_count);
882 return &render_pass->subpasses[inheritance->subpass].inheritance_info;
885 return vk_find_struct_const(inheritance->pNext,
912 const VkCommandBufferInheritanceInfo *inheritance =
915 VK_FROM_HANDLE(vk_render_pass, pass, inheritance->renderPass);
919 assert(inheritance->subpass < pass->subpass_count);
920 const struct vk_subpass *subpass = &pass->subpasses[inheritance->subpass];
922 VK_FROM_HANDLE(vk_framebuffer, fb, inheritance->framebuffer);