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
2022-09-26Cleanup: replace C-style casts with functional casts for numeric typesCampbell Barton
Use function style casts in C++ headers & source.
2022-08-12Cleanup: repeated words in commentsCampbell Barton
2022-06-25Functions: avoid using Map for small valuesJacques Lucke
This leads to a 5-10% performance improvement in my benchmark that runs a procedure many times on a single element.
2022-04-26BLI: small optimization to retrieving CPPType from static typeJacques Lucke
2022-04-07BLI: add CPPType utility to copy elements to a shorter arrayJacques Lucke
2022-03-31Cleanup: spelling, trailing space for comment-blocksCampbell Barton
2022-03-29BLI: support value initialization in CPPTypeJacques Lucke
Value initialization differs from default-construction in that it also zero-initializes trivial types.
2022-03-19BLI: generalize converting CPPType to static typeJacques Lucke
Previously, the conversion was done manually for a fixed set of types. Now, there is a more general utility that can be used in other contexts (outside of geometry nodes attribute processing) as well.
2022-03-18BLI: move CPPType to blenlibJacques Lucke
For more detail about `CPPType`, see `BLI_cpp_type.hh` and D14367. Differential Revision: https://developer.blender.org/D14367