29 lines
725 B
C++
29 lines
725 B
C++
/* SPDX-FileCopyrightText: 2011 Blender Foundation
|
|
*
|
|
* 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_set_operation = true;
|
|
}
|
|
|
|
void SetValueOperation::execute_pixel_sampled(float output[4],
|
|
float /*x*/,
|
|
float /*y*/,
|
|
PixelSampler /*sampler*/)
|
|
{
|
|
output[0] = value_;
|
|
}
|
|
|
|
void SetValueOperation::determine_canvas(const rcti &preferred_area, rcti &r_area)
|
|
{
|
|
r_area = preferred_area;
|
|
}
|
|
|
|
} // namespace blender::compositor
|