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_ChannelMatteOperation.cpp')
-rw-r--r--source/blender/compositor/operations/COM_ChannelMatteOperation.cpp14
1 files changed, 9 insertions, 5 deletions
diff --git a/source/blender/compositor/operations/COM_ChannelMatteOperation.cpp b/source/blender/compositor/operations/COM_ChannelMatteOperation.cpp
index 10ff140f8be..70bfc8f8cfa 100644
--- a/source/blender/compositor/operations/COM_ChannelMatteOperation.cpp
+++ b/source/blender/compositor/operations/COM_ChannelMatteOperation.cpp
@@ -22,14 +22,16 @@
#include "COM_ChannelMatteOperation.h"
#include "BLI_math.h"
-ChannelMatteOperation::ChannelMatteOperation(): NodeOperation() {
+ChannelMatteOperation::ChannelMatteOperation(): NodeOperation()
+{
addInputSocket(COM_DT_COLOR);
addOutputSocket(COM_DT_VALUE);
inputImageProgram = NULL;
}
-void ChannelMatteOperation::initExecution() {
+void ChannelMatteOperation::initExecution()
+{
this->inputImageProgram = this->getInputSocketReader(0);
this->limit_range = this->limit_max - this->limit_min;
@@ -76,11 +78,13 @@ void ChannelMatteOperation::initExecution() {
}
}
-void ChannelMatteOperation::deinitExecution() {
- this->inputImageProgram= NULL;
+void ChannelMatteOperation::deinitExecution()
+{
+ this->inputImageProgram = NULL;
}
-void ChannelMatteOperation::executePixel(float* outputValue, float x, float y, PixelSampler sampler, MemoryBuffer *inputBuffers[]) {
+void ChannelMatteOperation::executePixel(float *outputValue, float x, float y, PixelSampler sampler, MemoryBuffer *inputBuffers[])
+{
float inColor[4];
float alpha;