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
2017-11-03Depsgraph: Port more areas to direct depsgraph APISergey Sharybin
This is a lots of changes, but they are boiling down to a simple API changes where we are no longer relying on implicit usage of scene's depsgraph and pass depsgraph explicitly. There should be no user measurable difference, render_layer* tests are also passing.
2017-10-26Cleanup: Remove unused argument from ED_update_for_newframeSergey Sharybin
This funciton will be extended, so better to get rid of unused arguments before adding new ones.
2017-09-23Tracking: Followup to previous fix, need to remap frame number for sequence ↵Sergey Sharybin
tracking
2017-09-23Tracking: Cleanup, reuse existing variableSergey Sharybin
2017-09-23Fix T52851: Per-frame traking is broken when sequence doesn't start at frame 1Sergey Sharybin
2017-09-23Tracking: Fix crash when tracking failedSergey Sharybin
Was a dangling pointer to a freed memory left behind.
2017-08-04Tracking: Cleanup, use boolean instead of integerSergey Sharybin
2016-01-27Tracking: Remove unfinished code from automation experimentsSergey Sharybin
2016-01-27Tracking: De-duplicate code for tracking a sequence and single frameSergey Sharybin
It was not so much better from performance point of view to have a special case here and it only made us having two entry points to the same things, which was rather annoying. Should no be functional changes for artists.
2016-01-15Tracking: Split tracking_ops into smaller filesSergey Sharybin
The file started to be rather really huge and difficult to follow. Should be no functional changes.