From 82b9789f17303b2ba2fb59d20c27a3ef2d1990ba Mon Sep 17 00:00:00 2001 From: Iago Toral Quiroga Date: Thu, 8 Oct 2020 09:12:23 +0200 Subject: [PATCH] v3dv: drop a couple of obsolete comments We only expose a coherent memory heap, so invalidation and flushing are always no-ops for us. Part-of: --- src/broadcom/vulkan/v3dv_device.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/broadcom/vulkan/v3dv_device.c b/src/broadcom/vulkan/v3dv_device.c index cb246d5ada2..a6751fc4925 100644 --- a/src/broadcom/vulkan/v3dv_device.c +++ b/src/broadcom/vulkan/v3dv_device.c @@ -1762,9 +1762,6 @@ v3dv_FlushMappedMemoryRanges(VkDevice _device, uint32_t memoryRangeCount, const VkMappedMemoryRange *pMemoryRanges) { - /* FIXME: stub (although note that both radv and tu just returns success - * here. Pending further research) - */ return VK_SUCCESS; } @@ -1773,9 +1770,6 @@ v3dv_InvalidateMappedMemoryRanges(VkDevice _device, uint32_t memoryRangeCount, const VkMappedMemoryRange *pMemoryRanges) { - /* FIXME: stub (although note that both radv and tu just returns success - * here. Pending further research) - */ return VK_SUCCESS; }