Lines Matching refs:pBindInfos
2842 …indBufferMemory2(VkDevice device, uint32_t bindInfoCount, const VkBindBufferMemoryInfo *pBindInfos) in vkBindBufferMemory2() argument
2845 device, bindInfoCount, pBindInfos); in vkBindBufferMemory2()
2849 auto extInfo = reinterpret_cast<VkBaseInStructure const *>(pBindInfos[i].pNext); in vkBindBufferMemory2()
2856 if(!vk::Cast(pBindInfos[i].buffer)->canBindToMemory(vk::Cast(pBindInfos[i].memory))) in vkBindBufferMemory2()
2865 vk::Cast(pBindInfos[i].buffer)->bind(vk::Cast(pBindInfos[i].memory), pBindInfos[i].memoryOffset); in vkBindBufferMemory2()
2871 …kBindImageMemory2(VkDevice device, uint32_t bindInfoCount, const VkBindImageMemoryInfo *pBindInfos) in vkBindImageMemory2() argument
2874 device, bindInfoCount, pBindInfos); in vkBindImageMemory2()
2878 if(!vk::Cast(pBindInfos[i].image)->canBindToMemory(vk::Cast(pBindInfos[i].memory))) in vkBindImageMemory2()
2887 vk::DeviceMemory *memory = vk::Cast(pBindInfos[i].memory); in vkBindImageMemory2()
2888 VkDeviceSize offset = pBindInfos[i].memoryOffset; in vkBindImageMemory2()
2890 auto extInfo = reinterpret_cast<VkBaseInStructure const *>(pBindInfos[i].pNext); in vkBindImageMemory2()
2916 vk::Cast(pBindInfos[i].image)->bind(memory, offset); in vkBindImageMemory2()