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>2016-01-14 13:56:05 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2016-01-14 13:56:05 +0300
commit73feae6f5dd81a81e0321db80e55c15c3518b7a0 (patch)
tree1cdb77bc1981d55a0045e482ca59a4ac2e933b4e /intern/libmv
parent370a8ee7417f37bbedf814582d9f14e855da0c3e (diff)
Libmv: Solve strict compiler warnings in stubs
Diffstat (limited to 'intern/libmv')
-rw-r--r--intern/libmv/intern/stub.cc15
1 files changed, 8 insertions, 7 deletions
diff --git a/intern/libmv/intern/stub.cc b/intern/libmv/intern/stub.cc
index 5d667baa880..ad648203764 100644
--- a/intern/libmv/intern/stub.cc
+++ b/intern/libmv/intern/stub.cc
@@ -257,7 +257,8 @@ void libmv_cameraIntrinsicsUndistortByte(
const libmv_CameraIntrinsics * /*libmv_intrinsics*/,
const unsigned char *source_image,
int width, int height,
- float overscan, int channels,
+ float /*overscan*/,
+ int channels,
unsigned char *destination_image) {
memcpy(destination_image, source_image,
channels * width * height * sizeof(unsigned char));
@@ -268,7 +269,7 @@ void libmv_cameraIntrinsicsUndistortFloat(
const float* source_image,
int width,
int height,
- float overscan,
+ float /*overscan*/,
int channels,
float* destination_image) {
memcpy(destination_image, source_image,
@@ -280,7 +281,7 @@ void libmv_cameraIntrinsicsDistortByte(
const unsigned char *source_image,
int width,
int height,
- float overscan,
+ float /*overscan*/,
int channels,
unsigned char *destination_image) {
memcpy(destination_image, source_image,
@@ -292,7 +293,7 @@ void libmv_cameraIntrinsicsDistortFloat(
float* source_image,
int width,
int height,
- float overscan,
+ float /*overscan*/,
int channels,
float* destination_image) {
memcpy(destination_image, source_image,
@@ -327,9 +328,9 @@ void libmv_cameraIntrinsicsInvert(
*y1 = (y - principal_y) / focal_length;
}
-void libmv_homography2DFromCorrespondencesEuc(/* const */ double (*x1)[2],
- /* const */ double (*x2)[2],
- int num_points,
+void libmv_homography2DFromCorrespondencesEuc(/* const */ double (* /*x1*/)[2],
+ /* const */ double (* /*x2*/)[2],
+ int /*num_points*/,
double H[3][3]) {
memset(H, 0, sizeof(double[3][3]));
H[0][0] = 1.0f;