Searched refs:local_infos (Results 1 - 3 of 3) sorted by relevance
/third_party/mesa3d/src/virtio/vulkan/ |
H A D | vn_buffer.c | 467 VkBindBufferMemoryInfo *local_infos = NULL; in vn_BindBufferMemory2() local 475 if (!local_infos) { in vn_BindBufferMemory2() 476 const size_t size = sizeof(*local_infos) * bindInfoCount; in vn_BindBufferMemory2() 477 local_infos = vk_alloc(alloc, size, VN_DEFAULT_ALIGN, in vn_BindBufferMemory2() 479 if (!local_infos) in vn_BindBufferMemory2() 482 memcpy(local_infos, pBindInfos, size); in vn_BindBufferMemory2() 485 local_infos[i].memory = vn_device_memory_to_handle(mem->base_memory); in vn_BindBufferMemory2() 486 local_infos[i].memoryOffset += mem->base_offset; in vn_BindBufferMemory2() 488 if (local_infos) in vn_BindBufferMemory2() 489 pBindInfos = local_infos; in vn_BindBufferMemory2() [all...] |
H A D | vn_image.c | 449 VkBindImageMemoryInfo *local_infos = NULL; in vn_BindImageMemory2() local 485 if (!local_infos) { in vn_BindImageMemory2() 486 const size_t size = sizeof(*local_infos) * bindInfoCount; in vn_BindImageMemory2() 487 local_infos = vk_alloc(alloc, size, VN_DEFAULT_ALIGN, in vn_BindImageMemory2() 489 if (!local_infos) in vn_BindImageMemory2() 492 memcpy(local_infos, pBindInfos, size); in vn_BindImageMemory2() 499 local_infos[i].memory = vn_device_memory_to_handle( in vn_BindImageMemory2() 501 local_infos[i].memoryOffset += mem->base_offset; in vn_BindImageMemory2() 503 if (local_infos) in vn_BindImageMemory2() 504 pBindInfos = local_infos; in vn_BindImageMemory2() [all...] |
H A D | vn_pipeline.c | 377 VkGraphicsPipelineCreateInfo *local_infos = NULL; in vn_CreateGraphicsPipelines() local 380 dev, createInfoCount, pCreateInfos, alloc, &local_infos); in vn_CreateGraphicsPipelines() 392 if (local_infos) in vn_CreateGraphicsPipelines() 393 vk_free(alloc, local_infos); in vn_CreateGraphicsPipelines() 410 if (local_infos) in vn_CreateGraphicsPipelines() 411 vk_free(alloc, local_infos); in vn_CreateGraphicsPipelines()
|
Completed in 3 milliseconds