Lines Matching refs:fAllocator
96 : fAllocator(allocator) in GrVkAMDMemoryAllocator()
101 vmaDestroyAllocator(fAllocator); in ~GrVkAMDMemoryAllocator()
102 fAllocator = VK_NULL_HANDLE; in ~GrVkAMDMemoryAllocator()
130 VkResult result = vmaAllocateMemoryForImage(fAllocator, image, &info, &allocation, nullptr); in allocateImageMemory()
199 VkResult result = vmaAllocateMemoryForBuffer(fAllocator, buffer, &info, &allocation, nullptr); in allocateBufferMemory()
210 vmaFreeMemory(fAllocator, allocation); in freeMemory()
217 vmaGetAllocationInfo(fAllocator, allocation, &vmaInfo); in getAllocInfo()
220 vmaGetMemoryTypeProperties(fAllocator, vmaInfo.memoryType, &memFlags); in getAllocInfo()
240 return vmaMapMemory(fAllocator, allocation, data); in mapMemory()
246 vmaUnmapMemory(fAllocator, allocation); in unmapMemory()
253 return vmaFlushAllocation(fAllocator, allocation, offset, size); in flushMemory()
260 return vmaInvalidateAllocation(fAllocator, allocation, offset, size); in invalidateMemory()
265 vmaCalculateStats(fAllocator, &stats); in totalUsedMemory()
271 vmaCalculateStats(fAllocator, &stats); in totalAllocatedMemory()