Changeset View
Changeset View
Standalone View
Standalone View
source/blender/compositor/nodes/COM_RenderLayersNode.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_RENDERLAYERSNODE_H__ | #pragma once | ||||
| #define __COM_RENDERLAYERSNODE_H__ | |||||
| #include "COM_Node.h" | #include "COM_Node.h" | ||||
| #include "COM_RenderLayersProg.h" | #include "COM_RenderLayersProg.h" | ||||
| #include "DNA_node_types.h" | #include "DNA_node_types.h" | ||||
| struct Render; | struct Render; | ||||
| /** | /** | ||||
| Show All 15 Lines | void testSocketLink(NodeConverter &converter, | ||||
| bool is_preview) const; | bool is_preview) const; | ||||
| void testRenderLink(NodeConverter &converter, | void testRenderLink(NodeConverter &converter, | ||||
| const CompositorContext &context, | const CompositorContext &context, | ||||
| Render *re) const; | Render *re) const; | ||||
| void missingSocketLink(NodeConverter &converter, NodeOutput *output) const; | void missingSocketLink(NodeConverter &converter, NodeOutput *output) const; | ||||
| void missingRenderLink(NodeConverter &converter) const; | void missingRenderLink(NodeConverter &converter) const; | ||||
| }; | }; | ||||
| #endif /* __COM_RENDERLAYERSNODE_H__ */ | |||||