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>2017-04-07 18:10:44 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-04-07 18:10:44 +0300
commita1f8755d32d547190f781fa162a80fbd210b9671 (patch)
tree155233982971f1b11048505d821b42a4fbaa6d2e /intern/libmv
parenteae691f89e3cb584047196b15c6e75eaea287dcc (diff)
Libmv: Fix crash of keyframe selection on 32bit linux
Diffstat (limited to 'intern/libmv')
-rw-r--r--intern/libmv/libmv/multiview/homography.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/libmv/libmv/multiview/homography.cc b/intern/libmv/libmv/multiview/homography.cc
index ce533a3ead2..a7679c33bbf 100644
--- a/intern/libmv/libmv/multiview/homography.cc
+++ b/intern/libmv/libmv/multiview/homography.cc
@@ -209,8 +209,8 @@ class HomographySymmetricGeometricCostFunctor {
return true;
}
- const Vec2 x_;
- const Vec2 y_;
+ const Vec2 &x_;
+ const Vec2 &y_;
};
// Termination checking callback used for homography estimation.