Home
last modified time | relevance | path

Searched refs:allocationCreateInfo (Results 1 – 2 of 2) sorted by relevance

/external/angle/third_party/vulkan_memory_allocator/docs/
DRecording file format.md115 - allocationCreateInfo.flags : uint32
116 - allocationCreateInfo.usage : uint32
117 - allocationCreateInfo.requiredFlags : uint32
118 - allocationCreateInfo.preferredFlags : uint32
119 - allocationCreateInfo.memoryTypeBits : uint32
120 - allocationCreateInfo.pool : pointer
122 - allocationCreateInfo.pUserData : string (may contain additional commas)
143 - allocationCreateInfo.flags : uint32
144 - allocationCreateInfo.usage : uint32
145 - allocationCreateInfo.requiredFlags : uint32
[all …]
/external/angle/src/libANGLE/renderer/vulkan/
Dvk_mem_alloc_wrapper.cpp90 VmaAllocationCreateInfo allocationCreateInfo = {}; in CreateBuffer() local
91 allocationCreateInfo.requiredFlags = requiredFlags; in CreateBuffer()
92 allocationCreateInfo.preferredFlags = preferredFlags; in CreateBuffer()
93 allocationCreateInfo.flags = (persistentlyMappedBuffers) ? VMA_ALLOCATION_CREATE_MAPPED_BIT : 0; in CreateBuffer()
96 result = vmaCreateBuffer(allocator, pBufferCreateInfo, &allocationCreateInfo, pBuffer, in CreateBuffer()
110 VmaAllocationCreateInfo allocationCreateInfo = {}; in FindMemoryTypeIndexForBufferInfo() local
111 allocationCreateInfo.requiredFlags = requiredFlags; in FindMemoryTypeIndexForBufferInfo()
112 allocationCreateInfo.preferredFlags = preferredFlags; in FindMemoryTypeIndexForBufferInfo()
113 allocationCreateInfo.flags = (persistentlyMappedBuffers) ? VMA_ALLOCATION_CREATE_MAPPED_BIT : 0; in FindMemoryTypeIndexForBufferInfo()
115 return vmaFindMemoryTypeIndexForBufferInfo(allocator, pBufferCreateInfo, &allocationCreateInfo, in FindMemoryTypeIndexForBufferInfo()