From: Yusuf Khan Date: Tue, 23 Aug 2022 14:28:39 +0000 (-0500) Subject: nvk: implement GetDeviceMemoryCommitment X-Git-Tag: upstream/23.3.3~4332 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=82712282891fae6fba3c0fc8e41750e1d77d997e;p=platform%2Fupstream%2Fmesa.git nvk: implement GetDeviceMemoryCommitment vulkan spec says: If the memory object is allocated from a heap with the VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT bit set, that object’s backing memory may be provided by the implementation lazily. The actual committed size of the memory may initially be as small as zero (or as large as the requested size), and monotonically increases as additional memory is needed. As far as I can tell we ignore the bit meaning that we allocate the requested size so return that as the size. Signed-off-by: Yusuf Khan Part-of: --- diff --git a/src/nouveau/vulkan/nvk_device_memory.c b/src/nouveau/vulkan/nvk_device_memory.c index b9eceda..40869e5 100644 --- a/src/nouveau/vulkan/nvk_device_memory.c +++ b/src/nouveau/vulkan/nvk_device_memory.c @@ -276,3 +276,13 @@ nvk_InvalidateMappedMemoryRanges( { return VK_SUCCESS; } + +VKAPI_ATTR void VKAPI_CALL nvk_GetDeviceMemoryCommitment( + VkDevice device, + VkDeviceMemory _mem, + VkDeviceSize* pCommittedMemoryInBytes) +{ + VK_FROM_HANDLE(nvk_device_memory, mem, _mem); + + *pCommittedMemoryInBytes = mem->bo->size; +}