Changeset View
Changeset View
Standalone View
Standalone View
source/blender/compositor/nodes/COM_SocketProxyNode.h
| Show All 10 Lines | |||||
| * | * | ||||
| * You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU General Public License | ||||
| * along with this program; if not, write to the Free Software Foundation, | * along with this program; if not, write to the Free Software Foundation, | ||||
| * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||||
| * | * | ||||
| * Copyright 2011, Blender Foundation. | * Copyright 2011, Blender Foundation. | ||||
| */ | */ | ||||
| #ifndef __COM_SOCKETPROXYNODE_H__ | #pragma once | ||||
| #define __COM_SOCKETPROXYNODE_H__ | |||||
| #include "COM_Node.h" | #include "COM_Node.h" | ||||
| /** | /** | ||||
| * \brief SocketProxyNode | * \brief SocketProxyNode | ||||
| * \ingroup Node | * \ingroup Node | ||||
| */ | */ | ||||
| class SocketProxyNode : public Node { | class SocketProxyNode : public Node { | ||||
| Show All 18 Lines | private: | ||||
| bool m_use_conversion; | bool m_use_conversion; | ||||
| }; | }; | ||||
| class SocketBufferNode : public Node { | class SocketBufferNode : public Node { | ||||
| public: | public: | ||||
| SocketBufferNode(bNode *editorNode, bNodeSocket *editorInput, bNodeSocket *editorOutput); | SocketBufferNode(bNode *editorNode, bNodeSocket *editorInput, bNodeSocket *editorOutput); | ||||
| void convertToOperations(NodeConverter &converter, const CompositorContext &context) const; | void convertToOperations(NodeConverter &converter, const CompositorContext &context) const; | ||||
| }; | }; | ||||
| #endif | |||||