Home
last modified time | relevance | path

Searched refs:host_ptr_info (Results 1 – 4 of 4) sorted by relevance

/third_party/mesa3d/src/vulkan/wsi/
Dwsi_common.c1391 VkImportMemoryHostPointerInfoEXT host_ptr_info; in wsi_create_buffer_image_mem() local
1393 host_ptr_info = (VkImportMemoryHostPointerInfoEXT) { in wsi_create_buffer_image_mem()
1398 __vk_append_struct(&buf_mem_info, &host_ptr_info); in wsi_create_buffer_image_mem()
1622 VkImportMemoryHostPointerInfoEXT host_ptr_info; in wsi_create_cpu_linear_image_mem() local
1624 host_ptr_info = (VkImportMemoryHostPointerInfoEXT) { in wsi_create_cpu_linear_image_mem()
1629 __vk_append_struct(&memory_info, &host_ptr_info); in wsi_create_cpu_linear_image_mem()
/third_party/mesa3d/src/intel/vulkan/
Danv_device.c3823 const VkImportMemoryHostPointerInfoEXT *host_ptr_info = NULL; in anv_AllocateMemory() local
3843 host_ptr_info = (void *)ext; in anv_AllocateMemory()
3892 (host_ptr_info && host_ptr_info->handleType)) { in anv_AllocateMemory()
3965 if (host_ptr_info && host_ptr_info->handleType) { in anv_AllocateMemory()
3966 if (host_ptr_info->handleType == in anv_AllocateMemory()
3972 assert(host_ptr_info->handleType == in anv_AllocateMemory()
3976 host_ptr_info->pHostPointer, in anv_AllocateMemory()
3984 mem->host_ptr = host_ptr_info->pHostPointer; in anv_AllocateMemory()
/third_party/mesa3d/src/gallium/frontends/lavapipe/
Dlvp_device.c1633 const VkImportMemoryHostPointerInfoEXT *host_ptr_info = NULL; in lvp_AllocateMemory() local
1646 host_ptr_info = (VkImportMemoryHostPointerInfoEXT*)ext; in lvp_AllocateMemory()
1647 … assert(host_ptr_info->handleType == VK_EXTERNAL_MEMORY_HANDLE_TYPE_HOST_ALLOCATION_BIT_EXT); in lvp_AllocateMemory()
1679 if (host_ptr_info) { in lvp_AllocateMemory()
1680 mem->pmem = host_ptr_info->pHostPointer; in lvp_AllocateMemory()
/third_party/mesa3d/src/amd/vulkan/
Dradv_device.c5449 const VkImportMemoryHostPointerInfoEXT *host_ptr_info = in radv_alloc_memory() local
5558 } else if (host_ptr_info) { in radv_alloc_memory()
5559 assert(host_ptr_info->handleType == VK_EXTERNAL_MEMORY_HANDLE_TYPE_HOST_ALLOCATION_BIT_EXT); in radv_alloc_memory()
5560 result = device->ws->buffer_from_ptr(device->ws, host_ptr_info->pHostPointer, in radv_alloc_memory()
5565 mem->user_ptr = host_ptr_info->pHostPointer; in radv_alloc_memory()