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:
authorManuel Castilla <manzanillawork@gmail.com>2021-08-08 19:52:20 +0300
committerManuel Castilla <manzanillawork@gmail.com>2021-08-08 19:52:20 +0300
commitc9fad771e91c51365024af717ef92f2ec89377f7 (patch)
tree2c89f9e5980eb8cbfbd9f504266cb314ce4c7d26 /source/blender/compositor/operations
parent723c45a8e60077b570e20d6b1b774c83d82a8e70 (diff)
Compositor: Fix transform randomly inverted
Uninitialized variable.
Diffstat (limited to 'source/blender/compositor/operations')
-rw-r--r--source/blender/compositor/operations/COM_TransformOperation.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/compositor/operations/COM_TransformOperation.cc b/source/blender/compositor/operations/COM_TransformOperation.cc
index 7310dfd69ea..9d00b7eec49 100644
--- a/source/blender/compositor/operations/COM_TransformOperation.cc
+++ b/source/blender/compositor/operations/COM_TransformOperation.cc
@@ -37,6 +37,7 @@ TransformOperation::TransformOperation()
translate_factor_y_ = 1.0f;
convert_degree_to_rad_ = false;
sampler_ = PixelSampler::Nearest;
+ invert_ = false;
}
void TransformOperation::init_data()