Lines Matching refs:fAllocator
17 : fAllocator(VK_NULL_HANDLE) in GrVkAMDMemoryAllocator()
56 vmaCreateAllocator(&info, &fAllocator); in GrVkAMDMemoryAllocator()
60 vmaDestroyAllocator(fAllocator); in ~GrVkAMDMemoryAllocator()
61 fAllocator = VK_NULL_HANDLE; in ~GrVkAMDMemoryAllocator()
84 VkResult result = vmaAllocateMemoryForImage(fAllocator, image, &info, &allocation, nullptr); in allocateMemoryForImage()
139 VkResult result = vmaAllocateMemoryForBuffer(fAllocator, buffer, &info, &allocation, nullptr); in allocateMemoryForBuffer()
144 result = vmaAllocateMemoryForBuffer(fAllocator, buffer, &info, &allocation, nullptr); in allocateMemoryForBuffer()
157 vmaFreeMemory(fAllocator, allocation); in freeMemory()
164 vmaGetAllocationInfo(fAllocator, allocation, &vmaInfo); in getAllocInfo()
167 vmaGetMemoryTypeProperties(fAllocator, vmaInfo.memoryType, &memFlags); in getAllocInfo()
196 vmaGetPhysicalDeviceProperties(fAllocator, &devProps); in getAllocInfo()
206 vmaMapMemory(fAllocator, allocation, &mapPtr); in mapMemory()
212 vmaUnmapMemory(fAllocator, allocation); in unmapMemory()
223 vmaGetPhysicalDeviceProperties(fAllocator, &physDevProps); in flushMappedMemory()
241 vmaGetPhysicalDeviceProperties(fAllocator, &physDevProps); in invalidateMappedMemory()
253 vmaCalculateStats(fAllocator, &stats); in totalUsedMemory()
259 vmaCalculateStats(fAllocator, &stats); in totalAllocatedMemory()