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_InvertOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_InvertOperation.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/compositor/operations/COM_InvertOperation.h b/source/blender/compositor/operations/COM_InvertOperation.h
index 977feeb87af..4528895c282 100644
--- a/source/blender/compositor/operations/COM_InvertOperation.h
+++ b/source/blender/compositor/operations/COM_InvertOperation.h
@@ -32,28 +32,28 @@ private:
*/
SocketReader *m_inputValueProgram;
SocketReader *m_inputColorProgram;
-
+
bool m_alpha;
bool m_color;
public:
InvertOperation();
-
+
/**
* the inner loop of this program
*/
void executePixelSampled(float output[4], float x, float y, PixelSampler sampler);
-
+
/**
* Initialize the execution
*/
void initExecution();
-
+
/**
* Deinitialize the execution
*/
void deinitExecution();
-
+
void setColor(bool color) { this->m_color = color; }
void setAlpha(bool alpha) { this->m_alpha = alpha; }
};