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-12-10 06:44:46 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-12-10 06:45:17 +0400
commit8dc80e9d736a9262947de8fb80df40dc010e37b4 (patch)
treee95ba44fcbe16fe75b2c858d080979de4bad8341 /source/blender/compositor/operations/COM_DisplaceOperation.cpp
parent07d09267964b70893d81e2d2fd6958ad6075e16c (diff)
Style Cleanup
Diffstat (limited to 'source/blender/compositor/operations/COM_DisplaceOperation.cpp')
-rw-r--r--source/blender/compositor/operations/COM_DisplaceOperation.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/compositor/operations/COM_DisplaceOperation.cpp b/source/blender/compositor/operations/COM_DisplaceOperation.cpp
index 96031e7acc4..2842b47dd74 100644
--- a/source/blender/compositor/operations/COM_DisplaceOperation.cpp
+++ b/source/blender/compositor/operations/COM_DisplaceOperation.cpp
@@ -72,8 +72,8 @@ bool DisplaceOperation::read_displacement(float x, float y, float xscale, float
else {
float col[4];
m_inputVectorProgram->readSampled(col, x, y, COM_PS_BILINEAR);
- r_u = origin[0] - col[0]*xscale + 0.5f;
- r_v = origin[1] - col[1]*yscale + 0.5f;
+ r_u = origin[0] - col[0] * xscale + 0.5f;
+ r_v = origin[1] - col[1] * yscale + 0.5f;
return true;
}
}