Skip to content
Adam Sawicki edited this page Dec 12, 2018 · 8 revisions

Welcome to the Vulkan Memory Allocator wiki! This wiki describes development and contribution process for the library. For technical documentation, see Vulkan Memory Allocator documentation.

Development model

Continuous development happens in this GitHub repository, with incremental changes committed and pushed immediately. Branching model:

  • Stable releases are marked with Git tags and added as Releases.
    • They have version number updated, continuous integration and tests passing, HTML documentation regenerated from Doxygen comments, and binaries rebuilt.
    • Using latest release is recommended if you need a stable version of this library that you don't want to update too often.
  • "master" branch contains latest version of the code with incremental, standalone updates (bugfixes, additions etc.) since the last release.
    • It is subject to continuous integration builds on Windows and Linux.
    • It may be unstable, have bugs, compatibility issues with various compilers, and it subject to change any time, but most of the time it builds and works correctly and it is backward compatible with latest release.
    • It may have version number not bumped. It may also have HTML documentation and binaries not updated, so it is recommended to update them manually if needed.
    • Using head of this branch is recommended if you want to have version of the library with latest bugfixes and features, or be better prepared for the next release.
  • Additional branches are used for development of more complex features that take long time and many commits to finish, or changes that are not yet decided if they are going to be included into the library in the exact form as they are implemented.
    • They are regularly updated with latest code from "master" and they are eventually merged into "master" and deleted.
    • Using them is recommended only if you need a certain feature before its development is finished.

Contact

Adam Sawicki (Developer Technology Engineer, AMD)
E-mail: adam <dot> sawicki <at> amd <dot> com
Twitter: @Reg__

Clone this wiki locally