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:
Diffstat (limited to 'source/blender/compositor/operations/COM_WrapOperation.cc')
-rw-r--r--source/blender/compositor/operations/COM_WrapOperation.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/compositor/operations/COM_WrapOperation.cc b/source/blender/compositor/operations/COM_WrapOperation.cc
index 888602114cc..393128ded41 100644
--- a/source/blender/compositor/operations/COM_WrapOperation.cc
+++ b/source/blender/compositor/operations/COM_WrapOperation.cc
@@ -33,7 +33,7 @@ inline float WrapOperation::getWrappedOriginalXPos(float x)
return 0;
}
while (x < 0) {
- x += this->m_width;
+ x += this->getWidth();
}
return fmodf(x, this->getWidth());
}
@@ -44,7 +44,7 @@ inline float WrapOperation::getWrappedOriginalYPos(float y)
return 0;
}
while (y < 0) {
- y += this->m_height;
+ y += this->getHeight();
}
return fmodf(y, this->getHeight());
}