From 6ee1560d4d9dd4be080a458683304b31badfed5e Mon Sep 17 00:00:00 2001 From: Adam Sawicki Date: Thu, 8 Feb 2018 14:33:40 +0100 Subject: [PATCH] Fixed typo. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9a90b7a..8657f85 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ Additional features: - Thread-safety: Library is designed to be used by multithreaded code. - Configuration: Fill optional members of CreateInfo structure to provide custom CPU memory allocator and other parameters. - Customization: Predefine appropriate macros to provide your own implementation of all external facilities used by the library, from assert, mutex, and atomic, to vector and linked list. -- Support memory mapping, reference-counted internally. Support for for persistently mapped memory: Just allocate with appropriate flag and you get access to mapped pointer. +- Support memory mapping, reference-counted internally. Support for persistently mapped memory: Just allocate with appropriate flag and you get access to mapped pointer. - Custom memory pools: Create a pool with desired parameters (e.g. fixed or limited maximum size) and allocate memory out of it. - Support for VK_KHR_dedicated_allocation extension: Enable it and it will be used automatically by the library. - Defragmentation: Call one function and let the library move data around to free some memory blocks and make your allocations better compacted.