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:
authorCampbell Barton <ideasman42@gmail.com>2014-09-12 02:58:26 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-09-12 03:53:31 +0400
commit194f7f0ae85ed8ab6065f9fcf526c25296a4a6a2 (patch)
tree6e1d01126ce94930dc94609954b0b81fb447cd40 /source/blender/compositor
parent482354fd6a9703459bb221a234ddcf28d9742a25 (diff)
Cleanup & remove redundant check
Diffstat (limited to 'source/blender/compositor')
-rw-r--r--source/blender/compositor/operations/COM_MovieDistortionOperation.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/blender/compositor/operations/COM_MovieDistortionOperation.h b/source/blender/compositor/operations/COM_MovieDistortionOperation.h
index 9e8d7eeba60..577712eda56 100644
--- a/source/blender/compositor/operations/COM_MovieDistortionOperation.h
+++ b/source/blender/compositor/operations/COM_MovieDistortionOperation.h
@@ -57,7 +57,8 @@ public:
int width, int height,
int calibration_width, int calibration_height,
bool inverted,
- const int margin[2]) {
+ const int margin[2])
+ {
this->m_k1 = movieclip->tracking.camera.k1;
this->m_k2 = movieclip->tracking.camera.k2;
this->m_k3 = movieclip->tracking.camera.k3;
@@ -98,7 +99,8 @@ public:
bool isCacheFor(MovieClip *movieclip,
int width, int height,
int calibration_width, int claibration_height,
- bool inverted) {
+ bool inverted)
+ {
return this->m_k1 == movieclip->tracking.camera.k1 &&
this->m_k2 == movieclip->tracking.camera.k2 &&
this->m_k3 == movieclip->tracking.camera.k3 &&