Blender Git Loki
Git Commits -> Revision d8c7f74
Revision d8c7f74 by Brecht Van Lommel (master) February 7, 2010, 10:00 (GMT) |
Depsgraph: fix for old problem where dependencies would not get executed properly on file loading. Some things get preserved on file save/load, like object matrices and armature poses, but other things need to be remade like derivedmeshes and displists. The latter were not tagged for recalc on load causing them to be made on countall or redraw typically, so not in the right order and dependencies on hidden layer were not done at all. Now these get tagged for recalc and flags flushed on load. There shouldn't be much if any slowdown on opening existing files, if there is it should be fixable. |
Commit Details:
Full Hash: d8c7f743abfdc91a198fdac9b780ff4d9d66e3c8
SVN Revision: 26660
Parent Commit: 64d9026
Lines Changed: +52, -16