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
2019-04-17ClangFormat: apply to source, most of internCampbell Barton
Apply clang format as proposed in T53211. For details on usage and instructions for migrating branches without conflicts, see: https://wiki.blender.org/wiki/Tools/ClangFormat
2019-04-03Fix T62817: Can't drive modifier property with another oneSergey Sharybin
Random place in the modifier stack can not be referenced, so it doesn't make sense to sue GEOMETRY component as a FROM operation. So now drivers on modifiers are driving GEOMETRY component, but are using PARAMETERS as a source for variables.
2019-03-19Fix T62622: Animating vertex does not update viewportSergey Sharybin
Missing dependency graph update due to wrong relation.
2019-03-08Depsgraph: Fix missing relation when driving image offsetSergey Sharybin
Related on T61937.
2019-02-28Depsgraph: Route visibility flags update to proper componentSergey Sharybin
2019-02-18Fix T61636: Drivers don't update on viewport using curvesSergey Sharybin
2019-02-18Cleanup: styleCampbell Barton
2019-02-18doxygen: add newline after \fileCampbell Barton
While \file doesn't need an argument, it can't have another doxy command after it.
2019-02-15Depsgraph: Speedup constraint source lookupSergey Sharybin
Is mainly used by drivers variables. The slow part was about iterating over all pose channels to find the one which has a given constraint. Now we build a look up table, so this operation is way cheaper, Brings down relations update time from 0.7sec to 0.4 with Spring production file.
2019-02-15Depsgraph: Move RNA lookup to an own query classSergey Sharybin
Currently should have no functional changes, but allows to implement runction optimizations more localized and easily.