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-04-02 17:13:27 +0300
committerJeroen Bakker <jeroen@blender.org>2021-04-02 17:13:27 +0300
commit36427a8d03673a8604d3ec4b30be709e86fe6312 (patch)
treeea882d553c73accbbbf748e6988ed452c1ae0669 /source/blender/compositor/nodes/COM_CryptomatteNode.h
parentb6ab1107c20228d441a6d992eb11c639ed2ce1d0 (diff)
Cleanup: remove loading blender namespace from Vector.
Diffstat (limited to 'source/blender/compositor/nodes/COM_CryptomatteNode.h')
-rw-r--r--source/blender/compositor/nodes/COM_CryptomatteNode.h18
1 files changed, 8 insertions, 10 deletions
diff --git a/source/blender/compositor/nodes/COM_CryptomatteNode.h b/source/blender/compositor/nodes/COM_CryptomatteNode.h
index a6ba860c678..eacb49e2033 100644
--- a/source/blender/compositor/nodes/COM_CryptomatteNode.h
+++ b/source/blender/compositor/nodes/COM_CryptomatteNode.h
@@ -64,16 +64,14 @@ class CryptomatteNode : public CryptomatteBaseNode {
const NodeCryptomatte *cryptomatte_settings) const override;
private:
- static blender::Vector<NodeOperation *> create_input_operations(const CompositorContext &context,
- const bNode &node);
- static void input_operations_from_render_source(
- const CompositorContext &context,
- const bNode &node,
- blender::Vector<NodeOperation *> &r_input_operations);
- static void input_operations_from_image_source(
- const CompositorContext &context,
- const bNode &node,
- blender::Vector<NodeOperation *> &r_input_operations);
+ static Vector<NodeOperation *> create_input_operations(const CompositorContext &context,
+ const bNode &node);
+ static void input_operations_from_render_source(const CompositorContext &context,
+ const bNode &node,
+ Vector<NodeOperation *> &r_input_operations);
+ static void input_operations_from_image_source(const CompositorContext &context,
+ const bNode &node,
+ Vector<NodeOperation *> &r_input_operations);
};
class CryptomatteLegacyNode : public CryptomatteBaseNode {