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-05-07 19:21:00 +0300
committerManuel Castilla <manzanillawork@gmail.com>2021-05-07 19:21:00 +0300
commit08e8c3fbbf6f7668ae16dc2c282f0dd3a992539f (patch)
tree5d2bdfe263e91c98588f7f75feac082b2047324b /source/blender/compositor/nodes
parentfa5391f9c5f55edfdd55c0fd0bc7aa7494993459 (diff)
Rename ExecutionModel enum to eExecutionModel
Diffstat (limited to 'source/blender/compositor/nodes')
-rw-r--r--source/blender/compositor/nodes/COM_TranslateNode.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/compositor/nodes/COM_TranslateNode.cc b/source/blender/compositor/nodes/COM_TranslateNode.cc
index 376a63c3718..1b2ce341a66 100644
--- a/source/blender/compositor/nodes/COM_TranslateNode.cc
+++ b/source/blender/compositor/nodes/COM_TranslateNode.cc
@@ -59,7 +59,7 @@ void TranslateNode::convertToOperations(NodeConverter &converter,
/* FullFrame does not support using WriteBufferOperation.
* TODO: Implement TranslateOperation with wrap support in FullFrame.
*/
- if (data->wrap_axis && context.get_execution_model() != ExecutionModel::FullFrame) {
+ if (data->wrap_axis && context.get_execution_model() != eExecutionModel::FullFrame) {
WriteBufferOperation *writeOperation = new WriteBufferOperation(DataType::Color);
WrapOperation *wrapOperation = new WrapOperation(DataType::Color);
wrapOperation->setMemoryProxy(writeOperation->getMemoryProxy());