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
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2014-04-23 14:02:30 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2014-04-23 14:03:44 +0400
commitc605711c6b21a7f41c063b93335c6d57b671af19 (patch)
tree7454ed7a025026009c0bae64141e0bc03d039a51 /extern/libmv/ChangeLog
parentad5497b6dfffb97bcc55bce1097a1d80728b331a (diff)
Libmv cleanup: move aligned malloc implementation into own file
It was rather stupid having it in brute region tracker, now it is in own file in base library.
Diffstat (limited to 'extern/libmv/ChangeLog')
-rw-r--r--extern/libmv/ChangeLog26
1 files changed, 17 insertions, 9 deletions
diff --git a/extern/libmv/ChangeLog b/extern/libmv/ChangeLog
index b3247774413..f1b4ca7a3b7 100644
--- a/extern/libmv/ChangeLog
+++ b/extern/libmv/ChangeLog
@@ -1,3 +1,20 @@
+commit d14049e00dabf8fdf49056779f0a3718fbb39e8f
+Author: Sergey Sharybin <sergey.vfx@gmail.com>
+Date: Wed Apr 23 15:08:16 2014 +0600
+
+ Move aligned malloc implementation into own file
+
+ It was rather stupid having it in brute region tracker,
+ now it is in own file in base library (which was also
+ added in this commit, before this it consist of header
+ files only).
+
+ Reviewers: keir
+
+ Reviewed By: keir
+
+ Differential Revision: https://developer.blender.org/D479
+
commit 0ddf3851bfcb8de43660b119a25a77a25674200d
Author: Sergey Sharybin <sergey.vfx@gmail.com>
Date: Mon Apr 21 14:14:03 2014 +0600
@@ -672,12 +689,3 @@ Date: Tue Jun 18 19:24:07 2013 +0600
We could end up with something smarter in the
future, but for now i'm not as much fan of
forcing compiler's flag.
-
-commit 2b90b3915671cb629f7aabed30a88f28450294f8
-Author: Sergey Sharybin <sergey.vfx@gmail.com>
-Date: Sat Jun 1 16:20:35 2013 +0600
-
- Pass vectors by a reference
-
- Saves couple of time which used to waste on copying objects,
- also solves win32 compilation errors caused by alignment.