-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
3rdparty: Update D3D12 memory allocator
Updates D3D12 memory allocator to latest master commit.
- Loading branch information
1 parent
ec9bc59
commit 1561e07
Showing
4 changed files
with
1,353 additions
and
542 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,23 @@ | ||
# 1.0.0</b> (2019-09-02) | ||
# 2.0.1 (2022-04-05) | ||
|
||
A maintenance release with some bug fixes and improvements. There are no changes in the library API. | ||
|
||
- Fixed an assert failing when detailed JSON dump was made while a custom pool was present with specified string name (#36, thanks @rbertin-aso). | ||
- Fixed image height calculation in JSON dump visualization tool "GpuMemDumpVis.py" (#37, thanks @rbertin-aso). | ||
- Added JSON Schema for JSON dump format - see file "tools\GpuMemDumpVis\GpuMemDump.schema.json". | ||
- Added documentation section "Resource reference counting". | ||
|
||
# 2.0.0 (2022-03-25) | ||
|
||
So much has changed since the first release that it doesn’t make much sense to compare the differences. Here are the most important features that the library now provides: | ||
|
||
- Powerful custom pools, which give an opportunity to not only keep certain resources together, reserve some minimum or limit the maximum amount of memory they can take, but also to pass additional allocation parameters unavailable to simple allocations. Among them, probably the most interesting is `POOL_DESC::HeapProperties`, which allows you to specify parameters of a custom memory type, which may be useful on UMA platforms. Committed allocations can now also be created in custom pools. | ||
- The API for statistics and budget has been redesigned - see structures `Statistics`, `Budget`, `DetailedStatistics`, `TotalStatistics`. | ||
- The library exposes its core allocation algorithm via the “virtual allocator” interface. This can be used to allocate pieces of custom memory or whatever you like, even something completely unrelated to graphics. | ||
- The allocation algorithm has been replaced with the new, more efficient TLSF. | ||
- Added support for defragmentation. | ||
- Objects of the library can be used with smart pointers designed for COM objects. | ||
|
||
# 1.0.0 (2019-09-02) | ||
|
||
First published version. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.