Home
last modified time | relevance | path

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

/external/angle/src/libANGLE/renderer/vulkan/
Dvk_mem_alloc_wrapper.cpp59 VmaAllocatorCreateInfo allocatorInfo = {}; in InitAllocator() local
60 allocatorInfo.physicalDevice = physicalDevice; in InitAllocator()
61 allocatorInfo.device = device; in InitAllocator()
62 allocatorInfo.instance = instance; in InitAllocator()
63 allocatorInfo.pVulkanFunctions = &funcs; in InitAllocator()
64 allocatorInfo.vulkanApiVersion = apiVersion; in InitAllocator()
65 allocatorInfo.preferredLargeHeapBlockSize = preferredLargeHeapBlockSize; in InitAllocator()
67 return vmaCreateAllocator(&allocatorInfo, pAllocator); in InitAllocator()
/external/vulkan-validation-layers/layers/
Dgpu_validation.cpp195 VmaAllocatorCreateInfo allocatorInfo = {}; in GpuInitializeVma() local
196 allocatorInfo.device = device; in GpuInitializeVma()
197 …ValidationObject *device_object = GetLayerDataPtr(get_dispatch_key(allocatorInfo.device), layer_da… in GpuInitializeVma()
201 allocatorInfo.physicalDevice = core_checks->physical_device; in GpuInitializeVma()
220 allocatorInfo.pVulkanFunctions = &functions; in GpuInitializeVma()
222 return vmaCreateAllocator(&allocatorInfo, &gpu_validation_state->vmaAllocator); in GpuInitializeVma()
/external/angle/third_party/vulkan_memory_allocator/src/VmaReplay/
DVmaReplay.cpp2266 VmaAllocatorCreateInfo allocatorInfo = {}; in InitVulkan() local
2267 allocatorInfo.instance = m_VulkanInstance; in InitVulkan()
2268 allocatorInfo.physicalDevice = m_PhysicalDevice; in InitVulkan()
2269 allocatorInfo.device = m_Device; in InitVulkan()
2270 allocatorInfo.flags = VMA_ALLOCATOR_CREATE_EXTERNALLY_SYNCHRONIZED_BIT; in InitVulkan()
2271 allocatorInfo.pDeviceMemoryCallbacks = &deviceMemoryCallbacks; in InitVulkan()
2272 allocatorInfo.vulkanApiVersion = VULKAN_API_VERSION; in InitVulkan()
2276 allocatorInfo.flags |= VMA_ALLOCATOR_CREATE_EXT_MEMORY_BUDGET_BIT; in InitVulkan()
2279 res = vmaCreateAllocator(&allocatorInfo, &m_Allocator); in InitVulkan()
/external/angle/third_party/vulkan_memory_allocator/src/
DVulkanSample.cpp1576 VmaAllocatorCreateInfo allocatorInfo = {}; in InitializeApplication() local
1577 SetAllocatorCreateInfo(allocatorInfo); in InitializeApplication()
1578 ERR_GUARD_VULKAN( vmaCreateAllocator(&allocatorInfo, &g_hAllocator) ); in InitializeApplication()