From 6100c86d5bf4b9891a15458afcfd2f750d839e36 Mon Sep 17 00:00:00 2001 From: Adam Sawicki Date: Mon, 6 Nov 2023 11:00:03 +0100 Subject: [PATCH] GpuMemDumpVis/README.md: Added warning about aliasing not supported Fixes #381 Thanks @alecazam --- tools/GpuMemDumpVis/README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/GpuMemDumpVis/README.md b/tools/GpuMemDumpVis/README.md index 2bc8249..082e8f2 100644 --- a/tools/GpuMemDumpVis/README.md +++ b/tools/GpuMemDumpVis/README.md @@ -43,3 +43,7 @@ You can also use typical options: * ![Image Unknown](README_files/Legend_Image_Unknown.png "Image Unknown") Image with tiling unknown to the allocator (Vulkan). * ![Unknown](README_files/Legend_Unknown.png "Unknown") Allocation of unknown type. * ![Details](README_files/Legend_Details.png "Details") Black bar - one or more allocations of any kind too small to be visualized as filled rectangles. + +## Additional notes + +Warning! Current version of the tool shows incorrect result when allocations alias (overlap) in memory, as it only looks at sizes of the allocations, not their offsets.