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>2013-02-17 07:57:20 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-02-17 07:57:20 +0400
commit2e0017efd4d6858a1d4d78dc5e72fdd2f1aafaa9 (patch)
tree04e8bda50eb5da635a5c72e43bdb1ce271e09673 /source/blender/compositor
parent39ee06421c63f52afa2a544cf090cb62be954b94 (diff)
code cleanup: change order of args in void BKE_object_where_is_calc_time_ex() so extra arg is at the end (loose convention for *_ex() funcs). also some style cleanup.
Diffstat (limited to 'source/blender/compositor')
-rw-r--r--source/blender/compositor/operations/COM_MovieDistortionOperation.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/compositor/operations/COM_MovieDistortionOperation.cpp b/source/blender/compositor/operations/COM_MovieDistortionOperation.cpp
index cf379d91652..b0fc21d4d55 100644
--- a/source/blender/compositor/operations/COM_MovieDistortionOperation.cpp
+++ b/source/blender/compositor/operations/COM_MovieDistortionOperation.cpp
@@ -115,8 +115,8 @@ void MovieDistortionOperation::executePixel(float output[4], float x, float y, P
bool MovieDistortionOperation::determineDependingAreaOfInterest(rcti *input, ReadBufferOperation *readOperation, rcti *output)
{
- const int marginX = this->m_width*0.15;
- const int marginY = this->m_height*0.15;
+ const int marginX = this->m_width * 0.15;
+ const int marginY = this->m_height * 0.15;
rcti newInput;
newInput.xmin = input->xmin - marginX;