Lines Matching refs:item
272 vk_foreach_struct_const(item, pCreateInfo->pNext) {
273 if (item->sType == VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO &&
274 ((VkLayerInstanceCreateInfo *) item)->function == func)
275 return (VkLayerInstanceCreateInfo *) item;
284 vk_foreach_struct_const(item, pCreateInfo->pNext) {
285 if (item->sType == VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO &&
286 ((VkLayerDeviceCreateInfo *) item)->function == func)
287 return (VkLayerDeviceCreateInfo *)item;
298 vk_foreach_struct_const(item, chain) {
299 size_t item_size = vk_structure_type_size(item);
303 memcpy(new_item, item, item_size);