1. 3eb870d Added documentation for new code elements related to recording. Added "Recording file format.md" file. by Adam Sawicki · 6 years ago
  2. dd715fb Fixed support for pUserData in object creation functions, as well as vmaSetAllocationUserData, whether it's null, custom pointer, or character string. by Adam Sawicki · 6 years ago
  3. c49eb62 Deleted calculation of number of vmaCreateAllocator calls, as there is always at most one. by Adam Sawicki · 6 years ago
  4. 5c49beb Added support for recording and replaying object creation also when it originally failed. by Adam Sawicki · 6 years ago
  5. e5d9b01 Added macro VMA_RECORDING_ENABLED, enabled only on Windows for now. by Adam Sawicki · 6 years ago
  6. 0e0f20f Major refactoring: Defined clean API for recording, added VmaRecordFlagBits, VmaRecordFlags, VmaRecordSettings, VmaAllocatorCreateInfo::pRecordSettings. Created VmaRecorder class. by Adam Sawicki · 6 years ago
  7. daec26e Minor fixes. VkResult is printed as signed int. by Adam Sawicki · 6 years ago
  8. 5557b0e Added support for vmaMapMemory, vmaUnmapMemory, vmaFlushAllocation, vmaInvalidateAllocation. by Adam Sawicki · 6 years ago
  9. 29785d1 VmaReplay.cpp, Player class: Small refactoring. by Adam Sawicki · 6 years ago
  10. 404d12e Format version 1,2. Added support for vmaAllocateMemory, vmaAllocateMemoryForBuffer, vmaAllocateMemoryForImage, vmaCreateLostAllocation. by Adam Sawicki · 6 years ago
  11. f5c61ed Merge branch 'development' into record_and_replay by Adam Sawicki · 6 years ago
  12. 94e8206 Added new validation layer message to ignores, and documented it. by Adam Sawicki · 6 years ago
  13. 87c8189 Foo by Adam Sawicki · 6 years ago
  14. ab85503 Added more detailed statistics about created buffers and images based on human-friendly classification (see http://asawicki.info/news_1682_human-friendly_classification_of_vulkan_resources.html) by Adam Sawicki · 6 years ago
  15. 385b716 Added statistics for number of VmaAllocator nad VmaPool objects. by Adam Sawicki · 6 years ago
  16. 5765b8a Added statistics about thread usage. by Adam Sawicki · 6 years ago
  17. 03764c6 Statistics: added printing of original recording time. by Adam Sawicki · 6 years ago
  18. 1016cc6 Added function SecondsToFriendlyStr. Printing playback duration. by Adam Sawicki · 6 years ago
  19. 652ac27 Added CmdLineParser, proper parsing of command line parameters, and -v parameter for verbosity. by Adam Sawicki · 6 years ago
  20. db1f73f Improved handling of destruction calls with null handle, in vk_mem_alloc as well as VmaReplay. by Adam Sawicki · 6 years ago
  21. 5b48b5e Code formatting by Adam Sawicki · 6 years ago
  22. f188a15 Minor fixes. by Adam Sawicki · 6 years ago
  23. deeb817 Minor fixes. Added basic statistics. by Adam Sawicki · 6 years ago
  24. 71f3d06 Better tracking of allocations. by Adam Sawicki · 6 years ago
  25. 4d63e9d Improved error handling. by Adam Sawicki · 6 years ago
  26. ec5fecf Implemented playback of current format. by Adam Sawicki · 6 years ago
  27. 9d7d848 VmaReplay: Initialized Vulkan. by Adam Sawicki · 6 years ago
  28. 0b9bcf0 Added struct StrRange for convenience. by Adam Sawicki · 6 years ago
  29. 6d2e2e0 Created project VmaReplay, started coding it. by Adam Sawicki · 6 years ago
  30. 1d53611 Removed path to MathFu from premake5.lua, which is not longer included in the project. by Adam Sawicki · 6 years ago
  31. 6c55634 Merge branch 'master' of https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator by Adam Sawicki · 6 years ago
  32. 49d9bab Added Google Filament to the list of known usages. by Adam Sawicki · 6 years ago
  33. 0d80dab Fixed minor documentation mistakes - issue #32 - thanks @dgough ! by Adam Sawicki · 6 years ago
  34. 3d99a1c VmaJsonWriter::ContinueString: Fixed bug with incorrect JSON generated when pUserData string contains '\' character. by Adam Sawicki · 6 years ago
  35. ee08277 Implemented ring buffer. by Adam Sawicki · 6 years ago
  36. 0876c0d Started coding linear allocator. by Adam Sawicki · 6 years ago
  37. 00f620f Designed new API for linear allocation algorithm: added flags VMA_POOL_CREATE_LINEAR_ALGORITHM_BIT, VMA_ALLOCATION_CREATE_UPPER_ADDRESS_BIT. Abstracted VmaBlockMetadata into base class VmaBlockMetadata and derived class VmaBlockMetadata_Generic. Few minor fixes. by Adam Sawicki · 6 years ago
  38. e44c626 Added debug macro VMA_DEBUG_INITIALIZE_ALLOCATIONS to initialize contents of allocations with a bit pattern. Documented it. Added test for it. by Adam Sawicki · 6 years ago
  39. 11904e3 Fixed typo by Adam Sawicki · 6 years ago
  40. 212a4a6 Added new feature: corruption detection. Added debug macro VMA_DEBUG_DETECT_CORRUPTION, functions vmaCheckCorruption, vmaCheckPoolCorruption by Adam Sawicki · 6 years ago
  41. 73b1665 Changed behavior of VMA_DEBUG_MARGIN macro - it now adds margin also before first and after last allocation in a block. Improved validation of VMA_DEBUG_MARGIN. Added test for it - function TestDebugMargin(). by Adam Sawicki · 6 years ago
  42. 82c3f33 Added custom, simple structures: vec3, vec4, mat4. Removed dependency on external library MathFu. by Adam Sawicki · 6 years ago
  43. d292417 Minor improvement in VmaBlockVector::Allocate. TestPool_SameSize: Added test for it. by Adam Sawicki · 6 years ago
  44. c1af66a Bumped version number (still Alpha). by Adam Sawicki · 6 years ago
  45. 776ae0d Improved support for non-coherent memory. Added functions: vmaFlushAllocation, vmaInvalidateAllocation. nonCoherentAtomSize is respected automatically. Issue #27 Thanks @egdaniel ! by Adam Sawicki · 6 years ago
  46. 5aa99be Bumped version number. by Adam Sawicki · 6 years ago
  47. 8a5ba73 Merge pull request #29 from GPUOpen-LibrariesAndSDKs/revert-28-bsd by Adam Sawicki · 6 years ago
  48. 083532c Removed #include <malloc.h> for aligned_alloc(). Based on #28 by @jbeich by Adam Sawicki · 6 years ago
  49. 39f4490 Revert "Unbreak on BSDs" by Adam Sawicki · 6 years ago
  50. 606cb27 Merge pull request #28 from jbeich/bsd by Adam Sawicki · 6 years ago
  51. 6a0a85a Added subsequent, unique, numeric IDs to memory blocks and custom pools. They are dumped in JSON. JSON format changed: "Pools" and "Blocks" arrays are now objects, where key is pool/block ID, and value is as before. Applied appropriate changes in VmaDumpVis.py - it now shows pool and block ID from the dump. by Adam Sawicki · 6 years ago
  52. 620dde4 Don't use non-standard header for C11/C++17 aligned_alloc() by Jan Beich · 6 years ago
  53. 31695cf VmaDumpVis: Improved coloring based on new Usage parameter dumped in JSON. by Adam Sawicki · 6 years ago
  54. b127d7f Minor fix in comment. by Adam Sawicki · 6 years ago
  55. d9bdd6c Added "LastUseFrameIndex" to JSON dump. Changed behavior of vmaGetAllocationInfo, vmaTouchAllocation to update allocation.lastUseFrameIndex even if allocation cannot become lost. Documented it. by Adam Sawicki · 6 years ago
  56. c22103d JSON detailed dump: added parameters "CreationFrameIndex" and "Usage" (which are usage flags from VkImageCreateInfo or VkBufferCreateInfo). by Adam Sawicki · 6 years ago
  57. 7b08b8f Fixed preprocessor macros to fix compilation in C projects. Issue #26. Thanks @jesta88 ! by Adam Sawicki · 6 years ago
  58. bafb06e Minor fix in VmaBlockVector::CalcMaxBlockSize for compilation in Visual Studio 2012 32-bit. Thanks @DominikWitczakAMD ! by Adam Sawicki · 6 years ago
  59. f8e5c14 Added VMA_CLASS_NO_COPY to silence warning in Visual Studio 2012 compiler: C4512 "class' : assignment operator could not be generated". Thanks @DominikWitczakAMD ! by Adam Sawicki · 6 years ago
  60. bb99d69 Updated README.md: Added link to vma_sample_sdl project. by Adam Sawicki · 6 years ago
  61. 5391e6c Improved logic of vmaFindMemoryTypeIndex for some cases, especially integrated GPUs. by Adam Sawicki · 6 years ago
  62. 9bb910e Updates in documentation. by Adam Sawicki · 6 years ago
  63. 6530fe3 Fixed vmaDestroyBuffer, vmaDestroyImage, vmaFreeMemory for cases where allocation is null. #24 thanks @achienbsi ! by Adam Sawicki · 6 years ago
  64. 4f91939 Added #if VMA_DEDICATED_ALLOCATION around every usage of VK_KHR_get_memory_requirements2 or VK_KHR_dedicated_allocation extension - for compatibility with Android. #23 Thanks @achienbsi ! by Adam Sawicki · 6 years ago
  65. 5a51732 Added link to my GDC talk. by Adam Sawicki · 6 years ago
  66. 7f574fc Minor update to README. by Adam Sawicki · 6 years ago
  67. 0c3901d Recompiled binary. by Adam Sawicki · 6 years ago v2.0.0
  68. be94368 Regenerated documentation. by Adam Sawicki · 6 years ago
  69. b0920f9 Merge branch 'v2_release' by Adam Sawicki · 6 years ago
  70. a68c01c Added optional usage of VmaAllocatorCreateInfo::pAllocationCallbacks (disabled by default). by Adam Sawicki · 6 years ago
  71. 6cc5e85 Added usage of VK_KHR_dedicated_allocation extension. by Adam Sawicki · 6 years ago
  72. b8333fb Publishing testing environment. Tests are available under [T] key. by Adam Sawicki · 6 years ago
  73. f1a793c Added source files to project: Common.*, Tests.*, VmaUsage.*. by Adam Sawicki · 6 years ago
  74. ba335cf Fixed threading bug with mapping vs binding. Added functions vmaBindBufferMemory, vmaBindImageMemory. Removed class VmaDeviceMemoryMapping. Minor fixes in documentation. by Adam Sawicki · 6 years ago
  75. 57fa558 Documentation: Added "Recommended usage patterns" chapter. by Adam Sawicki · 6 years ago
  76. 20622c6 Documented VmaAllocator, VmaAllocation, VmaPool. by Adam Sawicki · 6 years ago
  77. 93ef5c2 Minor addition to documentation. by Adam Sawicki · 6 years ago
  78. 2283f42 Minor fix in documentation. by Adam Sawicki · 6 years ago
  79. d8359cd Documentation: Written "Statistics" chapter. by Adam Sawicki · 6 years ago
  80. 727e8b2 More documentation. Refactored table of contents. by Adam Sawicki · 6 years ago
  81. ec421f8 Created documentation chapter "General considerations". by Adam Sawicki · 6 years ago
  82. e915c1b Updated documentation chapter about lost allocations. by Adam Sawicki · 6 years ago
  83. 7568dfc Written more documentation - about lost allocations. by Adam Sawicki · 6 years ago
  84. 67a2328 Written more documentation. by Adam Sawicki · 6 years ago
  85. 95451ab Written more documentation. by Adam Sawicki · 6 years ago
  86. 3597937 Many minor formatting tweaks in documentation. by Adam Sawicki · 6 years ago
  87. 2609a1d Merge branch 'development' into v2_release by Adam Sawicki · 6 years ago
  88. a1bd730 Minor updates in README. by Adam Sawicki · 6 years ago
  89. 5ae219a Updated version numer to 2.0.0 final in code and documentation. by Adam Sawicki · 6 years ago
  90. 3d9caf3 README.md: Added link to VmaDumpVis. Fixed non-ANSI character to use UTF-8 not ASCII encoding. by Adam Sawicki · 6 years ago
  91. dad992f Added VmaDumpVis tool. by Adam Sawicki · 6 years ago
  92. ff1cf54 Merge pull request #22 from ItsBits/android_support by Adam Sawicki · 6 years ago
  93. e5b7332 Add android support. by Unknown · 6 years ago
  94. b31aac8 Minor fix bool -> VkBool32 on interface. by Adam Sawicki · 6 years ago
  95. 9ecb59e Version 2.0.0-alpha.8. Added functions: vmaTouchAllocation, vmaFindMemoryTypeIndexForBufferInfo, vmaFindMemoryTypeIndexForImageInfo. by Adam Sawicki · 6 years ago
  96. aed6315 README.md minor update. by Adam Sawicki · 6 years ago
  97. 9d17bc5 Merge pull request #21 from shoikeda/vma-null-undeclared-identifier by Adam Sawicki · 6 years ago
  98. 3ee49f1 Fix undeclared identifier for Apple. by Sho Ikeda · 6 years ago
  99. 65231e3 Minor fix in documentation. by Adam Sawicki · 6 years ago
  100. 0c11b12 More documentation. Especially added new section "Finding out if memory is mappable". by Adam Sawicki · 6 years ago