Welcome to mirror list, hosted at ThFree Co, Russian Federation.

COM_ValueNode.cc « nodes « compositor « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 34799992ccc1ffa7a783916d363cfbdbf7def2ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright 2011 Blender Foundation. */

#include "COM_ValueNode.h"
#include "COM_SetValueOperation.h"

namespace blender::compositor {

ValueNode::ValueNode(bNode *editor_node) : Node(editor_node)
{
  /* pass */
}

void ValueNode::convert_to_operations(NodeConverter &converter,
                                      const CompositorContext & /*context*/) const
{
  SetValueOperation *operation = new SetValueOperation();
  NodeOutput *output = this->get_output_socket(0);
  operation->set_value(output->get_editor_value_float());
  converter.add_operation(operation);

  converter.map_output_socket(output, operation->get_output_socket());
}

}  // namespace blender::compositor