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_TonemapOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_TonemapOperation.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/source/blender/compositor/operations/COM_TonemapOperation.h b/source/blender/compositor/operations/COM_TonemapOperation.h
index 51ffaac8503..6fcf72c9d14 100644
--- a/source/blender/compositor/operations/COM_TonemapOperation.h
+++ b/source/blender/compositor/operations/COM_TonemapOperation.h
@@ -47,12 +47,12 @@ protected:
* @brief Cached reference to the reader
*/
SocketReader *m_imageReader;
-
+
/**
* @brief settings of the Tonemap
*/
NodeTonemap *m_data;
-
+
/**
* @brief temporarily cache of the execution storage
*/
@@ -60,27 +60,27 @@ protected:
public:
TonemapOperation();
-
+
/**
* the inner loop of this program
*/
void executePixel(float output[4], int x, int y, void *data);
-
+
/**
* Initialize the execution
*/
void initExecution();
-
+
void *initializeTileData(rcti *rect);
void deinitializeTileData(rcti *rect, void *data);
-
+
/**
* Deinitialize the execution
*/
void deinitExecution();
-
+
void setData(NodeTonemap *data) { this->m_data = data; }
-
+
bool determineDependingAreaOfInterest(rcti *input, ReadBufferOperation *readOperation, rcti *output);
};