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_GaussianAlphaBlurBaseOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_GaussianAlphaBlurBaseOperation.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/blender/compositor/operations/COM_GaussianAlphaBlurBaseOperation.h b/source/blender/compositor/operations/COM_GaussianAlphaBlurBaseOperation.h
index bb03b672a34..307d8b0dff5 100644
--- a/source/blender/compositor/operations/COM_GaussianAlphaBlurBaseOperation.h
+++ b/source/blender/compositor/operations/COM_GaussianAlphaBlurBaseOperation.h
@@ -24,11 +24,11 @@ namespace blender::compositor {
class GaussianAlphaBlurBaseOperation : public BlurBaseOperation {
protected:
- float *m_gausstab;
- float *m_distbuf_inv;
- int m_falloff; /* Falloff for #distbuf_inv. */
- bool m_do_subtract;
- int m_filtersize;
+ float *gausstab_;
+ float *distbuf_inv_;
+ int falloff_; /* Falloff for #distbuf_inv. */
+ bool do_subtract_;
+ int filtersize_;
float rad_;
eDimension dimension_;
@@ -51,11 +51,11 @@ class GaussianAlphaBlurBaseOperation : public BlurBaseOperation {
*/
void setSubtract(bool subtract)
{
- m_do_subtract = subtract;
+ do_subtract_ = subtract;
}
void setFalloff(int falloff)
{
- m_falloff = falloff;
+ falloff_ = falloff;
}
};