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_NormalizeOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_NormalizeOperation.h57
1 files changed, 29 insertions, 28 deletions
diff --git a/source/blender/compositor/operations/COM_NormalizeOperation.h b/source/blender/compositor/operations/COM_NormalizeOperation.h
index e7803fe3dee..a38e79bb0ab 100644
--- a/source/blender/compositor/operations/COM_NormalizeOperation.h
+++ b/source/blender/compositor/operations/COM_NormalizeOperation.h
@@ -26,41 +26,42 @@
* \ingroup operation
*/
class NormalizeOperation : public NodeOperation {
-protected:
- /**
- * \brief Cached reference to the reader
- */
- SocketReader *m_imageReader;
+ protected:
+ /**
+ * \brief Cached reference to the reader
+ */
+ SocketReader *m_imageReader;
- /**
- * \brief temporarily cache of the execution storage
- * it stores x->min and y->mult
- */
- NodeTwoFloats *m_cachedInstance;
+ /**
+ * \brief temporarily cache of the execution storage
+ * it stores x->min and y->mult
+ */
+ NodeTwoFloats *m_cachedInstance;
-public:
- NormalizeOperation();
+ public:
+ NormalizeOperation();
- /**
- * the inner loop of this program
- */
- void executePixel(float output[4], int x, int y, void *data);
+ /**
+ * the inner loop of this program
+ */
+ void executePixel(float output[4], int x, int y, void *data);
- /**
- * Initialize the execution
- */
- void initExecution();
+ /**
+ * Initialize the execution
+ */
+ void initExecution();
- void *initializeTileData(rcti *rect);
- void deinitializeTileData(rcti *rect, void *data);
+ void *initializeTileData(rcti *rect);
+ void deinitializeTileData(rcti *rect, void *data);
- /**
- * Deinitialize the execution
- */
- void deinitExecution();
-
- bool determineDependingAreaOfInterest(rcti *input, ReadBufferOperation *readOperation, rcti *output);
+ /**
+ * Deinitialize the execution
+ */
+ void deinitExecution();
+ bool determineDependingAreaOfInterest(rcti *input,
+ ReadBufferOperation *readOperation,
+ rcti *output);
};
#endif