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:
authorLukas Toenne <lukas.toenne@googlemail.com>2012-06-10 13:30:31 +0400
committerLukas Toenne <lukas.toenne@googlemail.com>2012-06-10 13:30:31 +0400
commit18a966293e2a987c7bd5cd17df6a16f76048a042 (patch)
tree344d97246d464d2e0f75c0a043b455754de92ed4 /source/blender/compositor/nodes/COM_SocketProxyNode.h
parent6e9e758d605741a2ecb8b0fbf24881a17dbe7453 (diff)
Fix for Tile group nodes with internally unconnected outputs, this was crashing due to missing constant value operations for such outputs. The SocketProxyNode now checks connection of the input socket on conversion, so this also simplifies usage of proxy nodes quite a bit.
Diffstat (limited to 'source/blender/compositor/nodes/COM_SocketProxyNode.h')
-rw-r--r--source/blender/compositor/nodes/COM_SocketProxyNode.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/source/blender/compositor/nodes/COM_SocketProxyNode.h b/source/blender/compositor/nodes/COM_SocketProxyNode.h
index 1b5ee699211..b73ca24a45e 100644
--- a/source/blender/compositor/nodes/COM_SocketProxyNode.h
+++ b/source/blender/compositor/nodes/COM_SocketProxyNode.h
@@ -37,10 +37,4 @@ public:
virtual bool isProxyNode() const { return true; }
};
-class OutputSocketProxyNode: public SocketProxyNode {
-public:
- OutputSocketProxyNode(bNode *editorNode, bNodeSocket *editorInput, bNodeSocket *editorOutput): SocketProxyNode(editorNode, editorInput, editorOutput) {}
- void convertToOperations(ExecutionSystem *graph, CompositorContext * context);
-};
-
#endif