Lines Matching defs:alloc_info
1151 VkMemoryAllocateInfo alloc_info = {};
1152 alloc_info.sType = VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO;
1153 alloc_info.allocationSize = req.size;
1154 alloc_info.memoryTypeIndex =
1156 VK_CHECK(data->vtable.AllocateMemory(data->device, &alloc_info, NULL, buffer_memory));
1488 VkDescriptorSetAllocateInfo alloc_info = {};
1489 alloc_info.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO;
1490 alloc_info.descriptorPool = data->descriptor_pool;
1491 alloc_info.descriptorSetCount = 1;
1492 alloc_info.pSetLayouts = &data->descriptor_layout;
1494 &alloc_info,