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:
authorCampbell Barton <ideasman42@gmail.com>2018-06-17 18:05:29 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-06-17 18:05:29 +0300
commita262ea8c47f8106f66e16935c556f383ef306861 (patch)
treef37e53c16ba423c478b9522244183367c701b3b0 /source/blender/compositor/operations/COM_ScreenLensDistortionOperation.h
parent410880552bfaf32f91eaad56bdf2c93c67cbd5c8 (diff)
Cleanup: trailing space for compositor
Diffstat (limited to 'source/blender/compositor/operations/COM_ScreenLensDistortionOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_ScreenLensDistortionOperation.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/source/blender/compositor/operations/COM_ScreenLensDistortionOperation.h b/source/blender/compositor/operations/COM_ScreenLensDistortionOperation.h
index 648a7a6e551..963a9210b93 100644
--- a/source/blender/compositor/operations/COM_ScreenLensDistortionOperation.h
+++ b/source/blender/compositor/operations/COM_ScreenLensDistortionOperation.h
@@ -31,10 +31,10 @@ private:
* Cached reference to the inputProgram
*/
SocketReader *m_inputProgram;
-
+
bool m_fit;
bool m_jitter;
-
+
float m_dispersion;
float m_distortion;
bool m_dispersion_const;
@@ -47,31 +47,31 @@ private:
float m_sc, m_cx, m_cy;
public:
ScreenLensDistortionOperation();
-
+
/**
* 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);
/**
* Deinitialize the execution
*/
void deinitExecution();
-
+
void setFit(bool fit) { m_fit = fit; }
void setJitter(bool jitter) { m_jitter = jitter; }
-
+
/** Set constant distortion value */
void setDistortion(float distortion);
/** Set constant dispersion value */
void setDispersion(float dispersion);
-
+
bool determineDependingAreaOfInterest(rcti *input, ReadBufferOperation *readOperation, rcti *output);
private: