Files
UnrealEngine/Engine/Source/ThirdParty/MaterialX/MaterialX-1.38.10/source/MaterialXGenShader/Nodes/CombineNode.h
2025-05-18 13:04:45 +08:00

25 lines
523 B
C++

//
// Copyright Contributors to the MaterialX Project
// SPDX-License-Identifier: Apache-2.0
//
#ifndef MATERIALX_COMBINENODE_H
#define MATERIALX_COMBINENODE_H
#include <MaterialXGenShader/ShaderNodeImpl.h>
MATERIALX_NAMESPACE_BEGIN
/// Combine node implementation
class MX_GENSHADER_API CombineNode : public ShaderNodeImpl
{
public:
static ShaderNodeImplPtr create();
void emitFunctionCall(const ShaderNode& node, GenContext& context, ShaderStage& stage) const override;
};
MATERIALX_NAMESPACE_END
#endif