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_DespeckleOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_DespeckleOperation.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/source/blender/compositor/operations/COM_DespeckleOperation.h b/source/blender/compositor/operations/COM_DespeckleOperation.h
index a77010f1853..9aca01000a7 100644
--- a/source/blender/compositor/operations/COM_DespeckleOperation.h
+++ b/source/blender/compositor/operations/COM_DespeckleOperation.h
@@ -27,15 +27,15 @@ class DespeckleOperation : public MultiThreadedOperation {
constexpr static int IMAGE_INPUT_INDEX = 0;
constexpr static int FACTOR_INPUT_INDEX = 1;
- float m_threshold;
- float m_threshold_neighbor;
+ float threshold_;
+ float threshold_neighbor_;
- // int m_filterWidth;
- // int m_filterHeight;
+ // int filterWidth_;
+ // int filterHeight_;
protected:
- SocketReader *m_inputOperation;
- SocketReader *m_inputValueOperation;
+ SocketReader *inputOperation_;
+ SocketReader *inputValueOperation_;
public:
DespeckleOperation();
@@ -46,11 +46,11 @@ class DespeckleOperation : public MultiThreadedOperation {
void setThreshold(float threshold)
{
- m_threshold = threshold;
+ threshold_ = threshold;
}
void setThresholdNeighbor(float threshold)
{
- m_threshold_neighbor = threshold;
+ threshold_neighbor_ = threshold;
}
void initExecution() override;