forked from blender/blender
MaterialX: Implement export of Input nodes #20
@ -22,6 +22,17 @@ static int node_shader_gpu_point_info(GPUMaterial *mat,
|
||||
return GPU_stack_link(mat, node, "node_point_info", in, out);
|
||||
}
|
||||
|
||||
NODE_SHADER_MATERIALX_BEGIN
|
||||
{
|
||||
/* TODO: This node doesn't have an implementation in MaterialX 1.38.6.*/
|
||||
NodeItem res = val(MaterialX::Vector3(1.0f, 1.0f, 1.0f));
|
||||
if (STREQ(socket_out_->name, "Radius") || STREQ(socket_out_->name, "Random")) {
|
||||
res = res.extract(2);
|
||||
}
|
||||
return res;
|
||||
BogdanNagirniak marked this conversation as resolved
|
||||
}
|
||||
NODE_SHADER_MATERIALX_END
|
||||
|
||||
} // namespace blender::nodes::node_shader_point_info_cc
|
||||
|
||||
/* node type definition */
|
||||
@ -34,6 +45,7 @@ void register_node_type_sh_point_info()
|
||||
sh_node_type_base(&ntype, SH_NODE_POINT_INFO, "Point Info", NODE_CLASS_INPUT);
|
||||
ntype.declare = file_ns::node_declare;
|
||||
ntype.gpu_fn = file_ns::node_shader_gpu_point_info;
|
||||
ntype.materialx_fn = file_ns::node_shader_materialx;
|
||||
|
||||
nodeRegisterType(&ntype);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user
I think
return get_output_default
can be used here