Files
test/source/blender/compositor/operations/COM_MapRangeOperation.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

63 lines
1.3 KiB
C
Raw Normal View History

/* SPDX-License-Identifier: GPL-2.0-or-later
* Copyright 2012 Blender Foundation. */
2018-08-08 11:49:51 +10:00
#pragma once
#include "COM_MultiThreadedOperation.h"
#include "DNA_texture_types.h"
2021-03-23 17:12:27 +01:00
namespace blender::compositor {
/**
* this program converts an input color to an output value.
* it assumes we are in sRGB color space.
*/
class MapRangeOperation : public MultiThreadedOperation {
private:
/**
* Cached reference to the input_program
*/
SocketReader *input_operation_;
SocketReader *source_min_operation_;
SocketReader *source_max_operation_;
SocketReader *dest_min_operation_;
SocketReader *dest_max_operation_;
bool use_clamp_;
2018-06-17 17:05:29 +02:00
public:
/**
* Default constructor
*/
MapRangeOperation();
2018-06-17 17:05:29 +02:00
/**
2021-01-05 15:44:09 +01:00
* The inner loop of this operation.
*/
void execute_pixel_sampled(float output[4], float x, float y, PixelSampler sampler) override;
2018-06-17 17:05:29 +02:00
/**
* Initialize the execution
*/
void init_execution() override;
2018-06-17 17:05:29 +02:00
/**
* Deinitialize the execution
*/
void deinit_execution() override;
2018-06-17 17:05:29 +02:00
/**
* Clamp the output
*/
void set_use_clamp(bool value)
{
use_clamp_ = value;
}
void update_memory_buffer_partial(MemoryBuffer *output,
const rcti &area,
Span<MemoryBuffer *> inputs) override;
};
2021-03-23 17:12:27 +01:00
} // namespace blender::compositor