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.cpp120 VmaAllocationCreateInfo allocationCreateInfo = {}; in CreateBuffer() local
121 allocationCreateInfo.requiredFlags = requiredFlags; in CreateBuffer()
122 allocationCreateInfo.preferredFlags = preferredFlags; in CreateBuffer()
123 allocationCreateInfo.flags = (persistentlyMapped) ? VMA_ALLOCATION_CREATE_MAPPED_BIT : 0; in CreateBuffer()
126 result = vmaCreateBuffer(allocator, pBufferCreateInfo, &allocationCreateInfo, pBuffer, in CreateBuffer()
140 VmaAllocationCreateInfo allocationCreateInfo = {}; in FindMemoryTypeIndexForBufferInfo() local
141 allocationCreateInfo.requiredFlags = requiredFlags; in FindMemoryTypeIndexForBufferInfo()
142 allocationCreateInfo.preferredFlags = preferredFlags; in FindMemoryTypeIndexForBufferInfo()
143 allocationCreateInfo.flags = (persistentlyMappedBuffers) ? VMA_ALLOCATION_CREATE_MAPPED_BIT : 0; in FindMemoryTypeIndexForBufferInfo()
145 return vmaFindMemoryTypeIndexForBufferInfo(allocator, pBufferCreateInfo, &allocationCreateInfo, in FindMemoryTypeIndexForBufferInfo()