The last good commit wasf57e4c5b98. After this one more fix was committed, this one is preserved as well:67bd678887.
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_SetVectorOperation.h"
|
|
|
|
namespace blender::compositor {
|
|
|
|
SetVectorOperation::SetVectorOperation()
|
|
{
|
|
this->add_output_socket(DataType::Vector);
|
|
flags_.is_set_operation = true;
|
|
}
|
|
|
|
void SetVectorOperation::determine_canvas(const rcti &preferred_area, rcti &r_area)
|
|
{
|
|
r_area = preferred_area;
|
|
}
|
|
|
|
} // namespace blender::compositor
|