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:
Diffstat (limited to 'extern/libmv/ChangeLog')
-rw-r--r--extern/libmv/ChangeLog50
1 files changed, 27 insertions, 23 deletions
diff --git a/extern/libmv/ChangeLog b/extern/libmv/ChangeLog
index c4abfae462c..66688c347aa 100644
--- a/extern/libmv/ChangeLog
+++ b/extern/libmv/ChangeLog
@@ -1,3 +1,30 @@
+commit b0df3e291e6c85f791658be04334efafc41989f5
+Author: Sergey Sharybin <sergey.vfx@gmail.com>
+Date: Thu Jan 2 15:12:18 2014 +0600
+
+ Fix build configuration warnings
+
+ Those warnings were mainly caused by installation
+ configuration of Ceres. Made some tweaks to make
+ CMake happy for now.
+
+ But for sure bigger cleanup here is needed.
+
+commit b68de6acd20f3ffab92e0cd450198a700cd109ab
+Author: Sergey Sharybin <sergey.vfx@gmail.com>
+Date: Thu Jan 2 15:04:05 2014 +0600
+
+ Code and style cleanup
+
+ Mainly fixed some style warnings reported by cpplint.
+
+ Also changed how camera (un)distortion happens internally
+ by replacing number of channels as a template argument
+ with number as channels passing as function argument.
+ Makes code easier to follow by eliminating loads checks
+ how much channels are used and which argument to pass to
+ the template.
+
commit b9e467e7c077b58199c4110f6967b7c18d1e7bf7
Author: Sergey Sharybin <sergey.vfx@gmail.com>
Date: Tue Dec 31 20:34:39 2013 +0600
@@ -657,26 +684,3 @@ Date: Thu Apr 4 01:20:18 2013 +0600
Also moved own includes to the top of files.
Should be no functional changes :)
-
-commit ecbbf9ebacc1cc98a2ecfe5ff90f7d5c66b8a605
-Author: Sergey Sharybin <sergey.vfx@gmail.com>
-Date: Fri Mar 29 00:20:29 2013 +0600
-
- Fix for TransformTracks in uncalibrated pipeline
-
- Transformation matrix was completely ignored by
- TransformTracks() and final marker coordinate
- exactly matched it's source coordinates.
-
- Seems to be just a typo in vector usage: need to
- use "b" (which is transformed one) instead of "a"
- when converting projective coordinate to 2D space.
-
-commit 319657d68d6533177bfa4811985fd0d9d161c725
-Author: Sergey Sharybin <sergey.vfx@gmail.com>
-Date: Fri Mar 29 00:19:11 2013 +0600
-
- Revert part of e2eb58c4230f94ef0c72fb4005e5434088d52e80
-
- That commit included one change which shall have been
- go as separate commit with more detailed description.