From e4cd4c383f13eb9705d9f5d3536c0b2b72e727bd Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 13 May 2015 06:10:49 +1000 Subject: Cleanup: style --- source/blender/compositor/operations/COM_DisplaceOperation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/compositor') diff --git a/source/blender/compositor/operations/COM_DisplaceOperation.cpp b/source/blender/compositor/operations/COM_DisplaceOperation.cpp index e749157d330..6dfef8a0a11 100644 --- a/source/blender/compositor/operations/COM_DisplaceOperation.cpp +++ b/source/blender/compositor/operations/COM_DisplaceOperation.cpp @@ -55,7 +55,7 @@ void DisplaceOperation::executePixelSampled(float output[4], float x, float y, P float uv[2], deriv[2][2]; pixelTransform(xy, uv, deriv); - if(is_zero_v2(deriv[0]) && is_zero_v2(deriv[1])) { + if (is_zero_v2(deriv[0]) && is_zero_v2(deriv[1])) { this->m_inputColorProgram->readSampled(output, uv[0], uv[1], COM_PS_BILINEAR); } else { -- cgit v1.2.3