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-03-18 03:50:24 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-03-18 03:52:38 +0400
commitec55074f89220ba729e2b84058a3a55feb13ab34 (patch)
tree31d0126d1d3b6223fdc44c6387afa452b052780b /source/blender/compositor/operations/COM_PlaneDistortCommonOperation.cpp
parent4d44f70d5ff7f4948be85f67f2d88e9df799b532 (diff)
Code cleanup: jitter, use 2d float array
Diffstat (limited to 'source/blender/compositor/operations/COM_PlaneDistortCommonOperation.cpp')
-rw-r--r--source/blender/compositor/operations/COM_PlaneDistortCommonOperation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/compositor/operations/COM_PlaneDistortCommonOperation.cpp b/source/blender/compositor/operations/COM_PlaneDistortCommonOperation.cpp
index 362d7f6d2d7..c507b4cfa98 100644
--- a/source/blender/compositor/operations/COM_PlaneDistortCommonOperation.cpp
+++ b/source/blender/compositor/operations/COM_PlaneDistortCommonOperation.cpp
@@ -171,7 +171,7 @@ void PlaneDistortMaskOperation::calculateCorners(const float corners[4][2], bool
void PlaneDistortMaskOperation::initExecution()
{
- BLI_jitter_init(m_jitter[0], m_osa);
+ BLI_jitter_init(m_jitter, m_osa);
}
void PlaneDistortMaskOperation::executePixelSampled(float output[4], float x, float y, PixelSampler sampler)