HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SwitchNode.h
Go to the documentation of this file.
1 //
2 // Copyright Contributors to the MaterialX Project
3 // SPDX-License-Identifier: Apache-2.0
4 //
5 
6 #ifndef MATERIALX_SWITCHNODE_H
7 #define MATERIALX_SWITCHNODE_H
8 
10 
12 
13 /// Switch node implementation
15 {
16  public:
17  static ShaderNodeImplPtr create();
18 
19  void emitFunctionCall(const ShaderNode& node, GenContext& context, ShaderStage& stage) const override;
20 
21  public:
22  static const StringVec INPUT_NAMES;
23 };
24 
26 
27 #endif
static const StringVec INPUT_NAMES
Definition: SwitchNode.h:22
shared_ptr< ShaderNodeImpl > ShaderNodeImplPtr
Shared pointer to a ShaderNodeImpl.
Definition: Library.h:40
#define MATERIALX_NAMESPACE_BEGIN
Definition: Generated.h:25
vector< string > StringVec
A vector of strings.
Definition: Library.h:57
#define MX_GENSHADER_API
Definition: Export.h:18
Switch node implementation.
Definition: SwitchNode.h:14
#define MATERIALX_NAMESPACE_END
Definition: Generated.h:26
virtual void emitFunctionCall(const ShaderNode &node, GenContext &context, ShaderStage &stage) const
Emit the function call or inline source code for given node instance in the given context...