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:
authorJeroen Bakker <jeroen@blender.org>2021-03-31 15:57:54 +0300
committerJeroen Bakker <jeroen@blender.org>2021-04-01 09:16:43 +0300
commitab652c2c90056f3631dc883443b75d28adbfa658 (patch)
treeabb5d5473f1ce4ecdf8eb52adf9aa794bf37349d
parent4b595de5e62f5bdf413d6ca43c39605fbe9db628 (diff)
Cleanup: method naming.
-rw-r--r--source/blender/compositor/intern/COM_ExecutionGroup.cc4
-rw-r--r--source/blender/compositor/intern/COM_ExecutionGroup.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/compositor/intern/COM_ExecutionGroup.cc b/source/blender/compositor/intern/COM_ExecutionGroup.cc
index 257d4deffe5..71c22e3b473 100644
--- a/source/blender/compositor/intern/COM_ExecutionGroup.cc
+++ b/source/blender/compositor/intern/COM_ExecutionGroup.cc
@@ -192,7 +192,7 @@ void ExecutionGroup::init_number_of_chunks()
}
}
-blender::Array<unsigned int> ExecutionGroup::determine_chunk_execution_order() const
+blender::Array<unsigned int> ExecutionGroup::get_execution_order() const
{
blender::Array<unsigned int> chunk_order(m_chunks_len);
for (int chunk_index = 0; chunk_index < this->m_chunks_len; chunk_index++) {
@@ -310,7 +310,7 @@ void ExecutionGroup::execute(ExecutionSystem *graph)
this->m_chunks_finished = 0;
this->m_bTree = bTree;
- blender::Array<unsigned int> chunk_order = determine_chunk_execution_order();
+ blender::Array<unsigned int> chunk_order = get_execution_order();
DebugInfo::execution_group_started(this);
DebugInfo::graphviz(graph);
diff --git a/source/blender/compositor/intern/COM_ExecutionGroup.h b/source/blender/compositor/intern/COM_ExecutionGroup.h
index 8cff264a751..0d8fb47b5be 100644
--- a/source/blender/compositor/intern/COM_ExecutionGroup.h
+++ b/source/blender/compositor/intern/COM_ExecutionGroup.h
@@ -225,7 +225,7 @@ class ExecutionGroup {
/**
* Return the execution order of the user visible chunks.
*/
- blender::Array<unsigned int> determine_chunk_execution_order() const;
+ blender::Array<unsigned int> get_execution_order() const;
void init_read_buffer_operations();
void init_work_packages();