From 187954c327d4d8c6fe4d221ed65e9d9a8f55ad5b Mon Sep 17 00:00:00 2001 From: Adam Sawicki Date: Sat, 30 Oct 2021 23:32:57 +0200 Subject: [PATCH] Added mention of virtual allocator to README --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index ee0a550..5edca2c 100644 --- a/README.md +++ b/README.md @@ -61,6 +61,7 @@ Additional features: - Debugging incorrect memory usage: Enable initialization of all allocated memory with a bit pattern to detect usage of uninitialized or freed memory. Enable validation of a magic number before and after every allocation to detect out-of-bounds memory corruption. - Record and replay sequence of calls to library functions to a file to check correctness, measure performance, and gather statistics. - Support for interoperability with OpenGL. +- Virtual allocator: Interface for using core allocation algorithm to allocate any custom data, e.g. pieces of one large buffer. # Prequisites