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_MapRangeOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_MapRangeOperation.h65
1 files changed, 34 insertions, 31 deletions
diff --git a/source/blender/compositor/operations/COM_MapRangeOperation.h b/source/blender/compositor/operations/COM_MapRangeOperation.h
index 7b3d51a1896..55b5cc7453c 100644
--- a/source/blender/compositor/operations/COM_MapRangeOperation.h
+++ b/source/blender/compositor/operations/COM_MapRangeOperation.h
@@ -26,42 +26,45 @@
* it assumes we are in sRGB color space.
*/
class MapRangeOperation : public NodeOperation {
-private:
- /**
- * Cached reference to the inputProgram
- */
- SocketReader *m_inputOperation;
- SocketReader *m_sourceMinOperation;
- SocketReader *m_sourceMaxOperation;
- SocketReader *m_destMinOperation;
- SocketReader *m_destMaxOperation;
+ private:
+ /**
+ * Cached reference to the inputProgram
+ */
+ SocketReader *m_inputOperation;
+ SocketReader *m_sourceMinOperation;
+ SocketReader *m_sourceMaxOperation;
+ SocketReader *m_destMinOperation;
+ SocketReader *m_destMaxOperation;
- bool m_useClamp;
-public:
- /**
- * Default constructor
- */
- MapRangeOperation();
+ bool m_useClamp;
- /**
- * the inner loop of this program
- */
- void executePixelSampled(float output[4], float x, float y, PixelSampler sampler);
+ public:
+ /**
+ * Default constructor
+ */
+ MapRangeOperation();
- /**
- * 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();
- /**
- * Clamp the output
- */
- void setUseClamp(bool value) { this->m_useClamp = value; }
+ /**
+ * Deinitialize the execution
+ */
+ void deinitExecution();
+ /**
+ * Clamp the output
+ */
+ void setUseClamp(bool value)
+ {
+ this->m_useClamp = value;
+ }
};
#endif