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:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2012-07-03 04:02:45 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2012-07-03 04:02:45 +0400
commit98a7ca61fa905792bd3fdfa6c29f44691c9582ac (patch)
tree47455f2482f6eca0352c10c57482641eec6afb57 /source/blender/compositor/operations/COM_VariableSizeBokehBlurOperation.h
parent4e39a854b4589cddff484649d95cce4c71d4e9f4 (diff)
parent2ed69a95f499081aacc15c0295f3461c38430554 (diff)
Merged changes in the trunk up to revision 48505.
Diffstat (limited to 'source/blender/compositor/operations/COM_VariableSizeBokehBlurOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_VariableSizeBokehBlurOperation.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/source/blender/compositor/operations/COM_VariableSizeBokehBlurOperation.h b/source/blender/compositor/operations/COM_VariableSizeBokehBlurOperation.h
index d04bf08405f..8e59a43fcb1 100644
--- a/source/blender/compositor/operations/COM_VariableSizeBokehBlurOperation.h
+++ b/source/blender/compositor/operations/COM_VariableSizeBokehBlurOperation.h
@@ -27,12 +27,12 @@
class VariableSizeBokehBlurOperation : public NodeOperation, public QualityStepHelper {
private:
- int maxBlur;
- float threshold;
- SocketReader *inputProgram;
- SocketReader *inputBokehProgram;
- SocketReader *inputSizeProgram;
- SocketReader *inputDepthProgram;
+ int m_maxBlur;
+ float m_threshold;
+ SocketReader *m_inputProgram;
+ SocketReader *m_inputBokehProgram;
+ SocketReader *m_inputSizeProgram;
+ SocketReader *m_inputDepthProgram;
public:
VariableSizeBokehBlurOperation();
@@ -54,9 +54,9 @@ public:
bool determineDependingAreaOfInterest(rcti *input, ReadBufferOperation *readOperation, rcti *output);
- void setMaxBlur(int maxRadius) { this->maxBlur = maxRadius; }
+ void setMaxBlur(int maxRadius) { this->m_maxBlur = maxRadius; }
- void setThreshold(float threshold) { this->threshold = threshold; }
+ void setThreshold(float threshold) { this->m_threshold = threshold; }
};