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@blender.org>2020-10-12 11:44:57 +0300
committerSergey Sharybin <sergey@blender.org>2020-10-12 16:12:17 +0300
commit590220e451c370f21c0742d2bef99f7d632434c7 (patch)
treebdd908f07fa0313e2e57c4ce8704aedde66c3859 /intern/libmv
parentdb8a856a747042b6a544f4dc778219dcaaf6540f (diff)
Libmv: Cleanup, spelling in function name
Is a local function, not affecting API.
Diffstat (limited to 'intern/libmv')
-rw-r--r--intern/libmv/libmv/simple_pipeline/modal_solver.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/libmv/libmv/simple_pipeline/modal_solver.cc b/intern/libmv/libmv/simple_pipeline/modal_solver.cc
index 15e185eeda7..6c1a983df35 100644
--- a/intern/libmv/libmv/simple_pipeline/modal_solver.cc
+++ b/intern/libmv/libmv/simple_pipeline/modal_solver.cc
@@ -42,7 +42,7 @@ void ProjectMarkerOnSphere(const Marker &marker, Vec3 &X) {
X *= 5.0 / X.norm();
}
-void ModalSolverLogProress(ProgressUpdateCallback *update_callback,
+void ModalSolverLogProgress(ProgressUpdateCallback *update_callback,
double progress) {
if (update_callback) {
char message[256];
@@ -116,7 +116,7 @@ void ModalSolver(const Tracks &tracks,
for (int image = 0; image <= max_image; ++image) {
vector<Marker> all_markers = tracks.MarkersInImage(image);
- ModalSolverLogProress(update_callback, (float) image / max_image);
+ ModalSolverLogProgress(update_callback, (float) image / max_image);
// Skip empty images without doing anything.
if (all_markers.size() == 0) {