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_QualityStepHelper.cpp
parent4e39a854b4589cddff484649d95cce4c71d4e9f4 (diff)
parent2ed69a95f499081aacc15c0295f3461c38430554 (diff)
Merged changes in the trunk up to revision 48505.
Diffstat (limited to 'source/blender/compositor/operations/COM_QualityStepHelper.cpp')
-rw-r--r--source/blender/compositor/operations/COM_QualityStepHelper.cpp34
1 files changed, 17 insertions, 17 deletions
diff --git a/source/blender/compositor/operations/COM_QualityStepHelper.cpp b/source/blender/compositor/operations/COM_QualityStepHelper.cpp
index 18b3b106138..d99d6f28eff 100644
--- a/source/blender/compositor/operations/COM_QualityStepHelper.cpp
+++ b/source/blender/compositor/operations/COM_QualityStepHelper.cpp
@@ -24,45 +24,45 @@
QualityStepHelper::QualityStepHelper()
{
- this->quality = COM_QUALITY_HIGH;
- this->step = 1;
- this->offsetadd = 4;
+ this->m_quality = COM_QUALITY_HIGH;
+ this->m_step = 1;
+ this->m_offsetadd = 4;
}
void QualityStepHelper::initExecution(QualityHelper helper)
{
switch (helper) {
case COM_QH_INCREASE:
- switch (this->quality) {
+ switch (this->m_quality) {
case COM_QUALITY_HIGH:
default:
- this->step = 1;
- this->offsetadd = 4;
+ this->m_step = 1;
+ this->m_offsetadd = 4;
break;
case COM_QUALITY_MEDIUM:
- this->step = 2;
- this->offsetadd = 8;
+ this->m_step = 2;
+ this->m_offsetadd = 8;
break;
case COM_QUALITY_LOW:
- this->step = 3;
- this->offsetadd = 12;
+ this->m_step = 3;
+ this->m_offsetadd = 12;
break;
}
break;
case COM_QH_MULTIPLY:
- switch (this->quality) {
+ switch (this->m_quality) {
case COM_QUALITY_HIGH:
default:
- this->step = 1;
- this->offsetadd = 4;
+ this->m_step = 1;
+ this->m_offsetadd = 4;
break;
case COM_QUALITY_MEDIUM:
- this->step = 2;
- this->offsetadd = 8;
+ this->m_step = 2;
+ this->m_offsetadd = 8;
break;
case COM_QUALITY_LOW:
- this->step = 4;
- this->offsetadd = 16;
+ this->m_step = 4;
+ this->m_offsetadd = 16;
break;
}
break;