This patch replaces the is_set_operation flag with the is_constant_operation flag to allow input constants to propagate through the node tree using the constant folder.
21 lines
447 B
C++
21 lines
447 B
C++
/* SPDX-FileCopyrightText: 2011 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
#include "COM_SetValueOperation.h"
|
|
|
|
namespace blender::compositor {
|
|
|
|
SetValueOperation::SetValueOperation()
|
|
{
|
|
this->add_output_socket(DataType::Value);
|
|
flags_.is_constant_operation = true;
|
|
}
|
|
|
|
void SetValueOperation::determine_canvas(const rcti &preferred_area, rcti &r_area)
|
|
{
|
|
r_area = preferred_area;
|
|
}
|
|
|
|
} // namespace blender::compositor
|