Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/compositor/operations/COM_ColorRampOperation.cpp')
-rw-r--r--source/blender/compositor/operations/COM_ColorRampOperation.cpp12
1 files changed, 8 insertions, 4 deletions
diff --git a/source/blender/compositor/operations/COM_ColorRampOperation.cpp b/source/blender/compositor/operations/COM_ColorRampOperation.cpp
index a7cfb30b439..992bf3b9d1d 100644
--- a/source/blender/compositor/operations/COM_ColorRampOperation.cpp
+++ b/source/blender/compositor/operations/COM_ColorRampOperation.cpp
@@ -30,24 +30,28 @@ extern "C" {
}
#endif
-ColorRampOperation::ColorRampOperation(): NodeOperation() {
+ColorRampOperation::ColorRampOperation(): NodeOperation()
+{
this->addInputSocket(COM_DT_VALUE);
this->addOutputSocket(COM_DT_COLOR);
this->inputProgram = NULL;
this->colorBand = NULL;
}
-void ColorRampOperation::initExecution() {
+void ColorRampOperation::initExecution()
+{
this->inputProgram = this->getInputSocketReader(0);
}
-void ColorRampOperation::executePixel(float* color, float x, float y, PixelSampler sampler, MemoryBuffer *inputBuffers[]) {
+void ColorRampOperation::executePixel(float *color, float x, float y, PixelSampler sampler, MemoryBuffer *inputBuffers[])
+{
float values[4];
this->inputProgram->read(values, x, y, sampler, inputBuffers);
do_colorband(this->colorBand, values[0], color);
}
-void ColorRampOperation::deinitExecution() {
+void ColorRampOperation::deinitExecution()
+{
this->inputProgram = NULL;
}