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_AlphaOverMixedOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_AlphaOverMixedOperation.h29
1 files changed, 16 insertions, 13 deletions
diff --git a/source/blender/compositor/operations/COM_AlphaOverMixedOperation.h b/source/blender/compositor/operations/COM_AlphaOverMixedOperation.h
index 118aa426404..88fa3d963f4 100644
--- a/source/blender/compositor/operations/COM_AlphaOverMixedOperation.h
+++ b/source/blender/compositor/operations/COM_AlphaOverMixedOperation.h
@@ -20,25 +20,28 @@
#define __COM_ALPHAOVERMIXEDOPERATION_H__
#include "COM_MixOperation.h"
-
/**
* this program converts an input color to an output value.
* it assumes we are in sRGB color space.
*/
class AlphaOverMixedOperation : public MixBaseOperation {
-private:
- float m_x;
-public:
- /**
- * Default constructor
- */
- AlphaOverMixedOperation();
+ private:
+ float m_x;
+
+ public:
+ /**
+ * Default constructor
+ */
+ AlphaOverMixedOperation();
- /**
- * the inner loop of this program
- */
- void executePixelSampled(float output[4], float x, float y, PixelSampler sampler);
+ /**
+ * the inner loop of this program
+ */
+ void executePixelSampled(float output[4], float x, float y, PixelSampler sampler);
- void setX(float x) { this->m_x = x; }
+ void setX(float x)
+ {
+ this->m_x = x;
+ }
};
#endif