[Bf-blender-cvs] [590220e451c] master: Libmv: Cleanup, spelling in function name

Sergey Sharybin noreply at git.blender.org
Mon Oct 12 15:12:21 CEST 2020


Commit: 590220e451c370f21c0742d2bef99f7d632434c7
Author: Sergey Sharybin
Date:   Mon Oct 12 10:44:57 2020 +0200
Branches: master
https://developer.blender.org/rB590220e451c370f21c0742d2bef99f7d632434c7

Libmv: Cleanup, spelling in function name

Is a local function, not affecting API.

===================================================================

M	intern/libmv/libmv/simple_pipeline/modal_solver.cc

===================================================================

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) {



More information about the Bf-blender-cvs mailing list