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_MapValueOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_MapValueOperation.h57
1 files changed, 30 insertions, 27 deletions
diff --git a/source/blender/compositor/operations/COM_MapValueOperation.h b/source/blender/compositor/operations/COM_MapValueOperation.h
index dfea3703d24..81071d78cd7 100644
--- a/source/blender/compositor/operations/COM_MapValueOperation.h
+++ b/source/blender/compositor/operations/COM_MapValueOperation.h
@@ -26,37 +26,40 @@
* it assumes we are in sRGB color space.
*/
class MapValueOperation : public NodeOperation {
-private:
- /**
- * Cached reference to the inputProgram
- */
- SocketReader *m_inputOperation;
- TexMapping *m_settings;
-public:
- /**
- * Default constructor
- */
- MapValueOperation();
+ private:
+ /**
+ * Cached reference to the inputProgram
+ */
+ SocketReader *m_inputOperation;
+ TexMapping *m_settings;
- /**
- * the inner loop of this program
- */
- void executePixelSampled(float output[4], float x, float y, PixelSampler sampler);
+ public:
+ /**
+ * Default constructor
+ */
+ MapValueOperation();
- /**
- * Initialize the execution
- */
- void initExecution();
+ /**
+ * the inner loop of this program
+ */
+ void executePixelSampled(float output[4], float x, float y, PixelSampler sampler);
- /**
- * Deinitialize the execution
- */
- void deinitExecution();
+ /**
+ * Initialize the execution
+ */
+ void initExecution();
- /**
- * \brief set the TexMapping settings
- */
- void setSettings(TexMapping *settings) { this->m_settings = settings; }
+ /**
+ * Deinitialize the execution
+ */
+ void deinitExecution();
+ /**
+ * \brief set the TexMapping settings
+ */
+ void setSettings(TexMapping *settings)
+ {
+ this->m_settings = settings;
+ }
};
#endif