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:
authorCampbell Barton <ideasman42@gmail.com>2018-06-17 18:10:19 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-06-17 18:10:19 +0300
commit06a1a66a9b6f120867d3bbebe3928744ec8e3495 (patch)
tree42e827a3cf58eb76474e479206b02a8d97dd3bf7 /source/blender/compositor/nodes/COM_SeparateColorNode.h
parent61d27db35967710421ab92748e09624db068258d (diff)
parenta24b4e6090057479796e914bc603119b12f6ca06 (diff)
Merge branch 'master' into blender2.8
Diffstat (limited to 'source/blender/compositor/nodes/COM_SeparateColorNode.h')
-rw-r--r--source/blender/compositor/nodes/COM_SeparateColorNode.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/compositor/nodes/COM_SeparateColorNode.h b/source/blender/compositor/nodes/COM_SeparateColorNode.h
index d378a311e73..0e47a98a1aa 100644
--- a/source/blender/compositor/nodes/COM_SeparateColorNode.h
+++ b/source/blender/compositor/nodes/COM_SeparateColorNode.h
@@ -30,7 +30,7 @@ class SeparateColorNode : public Node {
public:
SeparateColorNode(bNode *editorNode);
void convertToOperations(NodeConverter &converter, const CompositorContext &context) const;
-
+
protected:
virtual NodeOperation *getColorConverter(const CompositorContext &context) const = 0;
};
@@ -40,7 +40,7 @@ public:
SeparateRGBANode(bNode *editorNode) :
SeparateColorNode(editorNode)
{}
-
+
NodeOperation *getColorConverter(const CompositorContext &context) const;
};
@@ -49,7 +49,7 @@ public:
SeparateHSVANode(bNode *editorNode) :
SeparateColorNode(editorNode)
{}
-
+
NodeOperation *getColorConverter(const CompositorContext &context) const;
};
@@ -58,7 +58,7 @@ public:
SeparateYCCANode(bNode *editorNode) :
SeparateColorNode(editorNode)
{}
-
+
NodeOperation *getColorConverter(const CompositorContext &context) const;
};
@@ -67,7 +67,7 @@ public:
SeparateYUVANode(bNode *editorNode) :
SeparateColorNode(editorNode)
{}
-
+
NodeOperation *getColorConverter(const CompositorContext &context) const;
};