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_ConvertDepthToRadiusOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_ConvertDepthToRadiusOperation.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/source/blender/compositor/operations/COM_ConvertDepthToRadiusOperation.h b/source/blender/compositor/operations/COM_ConvertDepthToRadiusOperation.h
index c6da6bc94a9..966a74c04ad 100644
--- a/source/blender/compositor/operations/COM_ConvertDepthToRadiusOperation.h
+++ b/source/blender/compositor/operations/COM_ConvertDepthToRadiusOperation.h
@@ -34,15 +34,15 @@ private:
/**
* Cached reference to the inputProgram
*/
- SocketReader *inputOperation;
- float fStop;
- float aspect;
- float maxRadius;
- float inverseFocalDistance;
- float aperture;
- float cam_lens;
- float dof_sp;
- Object *cameraObject;
+ SocketReader *m_inputOperation;
+ float m_fStop;
+ float m_aspect;
+ float m_maxRadius;
+ float m_inverseFocalDistance;
+ float m_aperture;
+ float m_cam_lens;
+ float m_dof_sp;
+ Object *m_cameraObject;
public:
/**
* Default constructor
@@ -64,9 +64,9 @@ public:
*/
void deinitExecution();
- void setfStop(float fStop) { this->fStop = fStop; }
- void setMaxRadius(float maxRadius) { this->maxRadius = maxRadius; }
- void setCameraObject(Object *camera) { this->cameraObject = camera; }
+ void setfStop(float fStop) { this->m_fStop = fStop; }
+ void setMaxRadius(float maxRadius) { this->m_maxRadius = maxRadius; }
+ void setCameraObject(Object *camera) { this->m_cameraObject = camera; }
float determineFocalDistance();
};
#endif