Lines Matching refs:phys_devs
5965 VkResult setup_loader_tramp_phys_devs(struct loader_instance *inst, uint32_t phys_dev_count, VkPhysicalDevice *phys_devs) {
5997 if (inst->phys_devs_tramp[cur_idx]->phys_dev == phys_devs[new_idx]) {
6013 phys_devs[new_idx] = (VkPhysicalDevice)inst->phys_devs_tramp[cur_idx];
6064 new_phys_devs[new_idx]->phys_dev = phys_devs[new_idx];
6068 phys_devs[new_idx] = (VkPhysicalDevice)new_phys_devs[new_idx];
6156 // Look for physical_device in the provided phys_devs list, return true if found and put the index into out_idx, otherwise
6158 bool find_phys_dev(VkPhysicalDevice physical_device, uint32_t phys_devs_count, struct loader_physical_device_term **phys_devs,
6160 if (NULL == phys_devs) return false;
6162 if (NULL != phys_devs[idx] && physical_device == phys_devs[idx]->phys_dev) {