Files
test2/source/blender/compositor/operations/COM_SetVectorOperation.cc
Omar Emara 5e3932595f Compositor: Allow constant folding of set operations
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.
2024-04-19 12:34:43 +02:00

21 lines
452 B
C++

/* SPDX-FileCopyrightText: 2011 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
#include "COM_SetVectorOperation.h"
namespace blender::compositor {
SetVectorOperation::SetVectorOperation()
{
this->add_output_socket(DataType::Vector);
flags_.is_constant_operation = true;
}
void SetVectorOperation::determine_canvas(const rcti &preferred_area, rcti &r_area)
{
r_area = preferred_area;
}
} // namespace blender::compositor