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_BoxMaskOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_BoxMaskOperation.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/source/blender/compositor/operations/COM_BoxMaskOperation.h b/source/blender/compositor/operations/COM_BoxMaskOperation.h
index c3af95578d4..65327abc9a6 100644
--- a/source/blender/compositor/operations/COM_BoxMaskOperation.h
+++ b/source/blender/compositor/operations/COM_BoxMaskOperation.h
@@ -28,10 +28,10 @@
class BoxMaskOperation : public NodeOperation {
private:
/**
- * Cached reference to the inputProgram
- */
- SocketReader * inputMask;
- SocketReader * inputValue;
+ * Cached reference to the inputProgram
+ */
+ SocketReader *inputMask;
+ SocketReader *inputValue;
float sine;
float cosine;
@@ -43,23 +43,23 @@ public:
BoxMaskOperation();
/**
- * the inner loop of this program
- */
- void executePixel(float *color, float x, float y, PixelSampler sampler, MemoryBuffer *inputBuffers[]);
+ * the inner loop of this program
+ */
+ void executePixel(float *color, float x, float y, PixelSampler sampler, MemoryBuffer * inputBuffers[]);
/**
- * Initialize the execution
- */
+ * Initialize the execution
+ */
void initExecution();
/**
- * Deinitialize the execution
- */
+ * Deinitialize the execution
+ */
void deinitExecution();
- void setData(NodeBoxMask *data) {this->data = data;}
-
- void setMaskType(int maskType) {this->maskType = maskType;}
+ void setData(NodeBoxMask *data) { this->data = data; }
+
+ void setMaskType(int maskType) { this->maskType = maskType; }
};
#endif