The last good commit wasf57e4c5b98. After this one more fix was committed, this one is preserved as well:67bd678887.
39 lines
1.1 KiB
C++
39 lines
1.1 KiB
C++
/* SPDX-FileCopyrightText: 2012 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
#pragma once
|
|
|
|
#include "COM_MultiThreadedOperation.h"
|
|
#include "DNA_node_types.h"
|
|
|
|
namespace blender::compositor {
|
|
|
|
/**
|
|
* \brief base class of normalize, implementing the simple normalize
|
|
* \ingroup operation
|
|
*/
|
|
class NormalizeOperation : public MultiThreadedOperation {
|
|
protected:
|
|
/**
|
|
* \brief temporarily cache of the execution storage
|
|
* it stores `x->min` and `y->multiply`.
|
|
*/
|
|
NodeTwoFloats *cached_instance_;
|
|
|
|
public:
|
|
NormalizeOperation();
|
|
|
|
void deinit_execution() override;
|
|
|
|
void get_area_of_interest(int input_idx, const rcti &output_area, rcti &r_input_area) override;
|
|
void update_memory_buffer_started(MemoryBuffer *output,
|
|
const rcti &area,
|
|
Span<MemoryBuffer *> inputs) override;
|
|
void update_memory_buffer_partial(MemoryBuffer *output,
|
|
const rcti &area,
|
|
Span<MemoryBuffer *> inputs) override;
|
|
};
|
|
|
|
} // namespace blender::compositor
|