Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-02-10BLI: improve various C++ data structuresJacques Lucke
The changes come from the `functions` branch, where I'm using these structures a lot. This also includes a new `BLI::Optional<T>` type, which is similar to `std::Optional<T>` which can be used when Blender starts using C++17.
2019-09-14BLI: add utility to print VectorSet statsJacques Lucke
2019-09-14BLI: speedup adding to VectorSet by removing a checkJacques Lucke
2019-09-14BLI: remove non const accessors in VectorSetJacques Lucke
With this the values could have been changed without updating the hash table.
2019-09-14BLI: rename SetVector to VectorSetJacques Lucke
The structure is a set built on top of a vector and not the other way around.