The last good commit wasf57e4c5b98. After this one more fix was committed, this one is preserved as well:67bd678887.
16 lines
342 B
C++
16 lines
342 B
C++
/* SPDX-FileCopyrightText: 2011 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
#include "COM_SetSamplerOperation.h"
|
|
|
|
namespace blender::compositor {
|
|
|
|
SetSamplerOperation::SetSamplerOperation()
|
|
{
|
|
this->add_input_socket(DataType::Color);
|
|
this->add_output_socket(DataType::Color);
|
|
}
|
|
|
|
} // namespace blender::compositor
|