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-05 17:25:05 +0300
committerJeroen Bakker <jeroen@blender.org>2021-03-05 18:56:14 +0300
commit3d4a844a50744815d234c96dd72af675f478dbe1 (patch)
tree36798c80f49c83a798cb1d2c9b2e3a160984d274 /source/blender/compositor/intern/COM_ExecutionSystem.h
parent8b2fb7aeed5572a815322ac241cd8361321f2376 (diff)
Cleanup: ExecutionSystem::find_output_execution_groups.
Diffstat (limited to 'source/blender/compositor/intern/COM_ExecutionSystem.h')
-rw-r--r--source/blender/compositor/intern/COM_ExecutionSystem.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/compositor/intern/COM_ExecutionSystem.h b/source/blender/compositor/intern/COM_ExecutionSystem.h
index 8b69caf106f..dd68edd4793 100644
--- a/source/blender/compositor/intern/COM_ExecutionSystem.h
+++ b/source/blender/compositor/intern/COM_ExecutionSystem.h
@@ -137,8 +137,8 @@ class ExecutionSystem {
/**
* find all execution group with output nodes
*/
- void findOutputExecutionGroup(std::vector<ExecutionGroup *> *result,
- CompositorPriority priority) const;
+ blender::Vector<ExecutionGroup *> find_output_execution_groups(
+ CompositorPriority priority) const;
public:
/**
@@ -181,7 +181,7 @@ class ExecutionSystem {
}
private:
- void executeGroups(CompositorPriority priority);
+ void execute_groups(CompositorPriority priority);
/* allow the DebugInfo class to look at internals */
friend class DebugInfo;