Files
test/source/blender/compositor/operations/COM_ConstantOperation.h
Brecht Van Lommel 7a395e2e7f Revert changes from main commits that were merged into blender-v4.1-release
The last good commit was f57e4c5b98.

After this one more fix was committed, this one is preserved as well:
67bd678887.
2024-03-18 15:04:12 +01:00

35 lines
1.1 KiB
C++

/* SPDX-FileCopyrightText: 2021 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
#pragma once
#include "COM_NodeOperation.h"
namespace blender::compositor {
/* TODO(manzanilla): After removing tiled implementation, implement a default #determine_resolution
* for all constant operations and make all initialization and deinitilization methods final. */
/**
* Base class for operations that are always constant. Operations that can be constant only when
* all their inputs are so, are evaluated into primitive constants (Color/Vector/Value) during
* constant folding.
*/
class ConstantOperation : public NodeOperation {
protected:
bool needs_canvas_to_get_constant_;
public:
ConstantOperation();
/** May require resolution to be already determined. */
virtual const float *get_constant_elem() = 0;
bool can_get_constant_elem() const;
void update_memory_buffer(MemoryBuffer *output,
const rcti &area,
Span<MemoryBuffer *> inputs) override;
};
} // namespace blender::compositor