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:
authorJacques Lucke <jacques@blender.org>2021-01-05 19:04:02 +0300
committerJacques Lucke <jacques@blender.org>2021-01-05 19:04:02 +0300
commit583006d0ef1a0b71c66dfab9c37cc4de27cf81d4 (patch)
treeab1182bd569efba44feb27f38498a1e08d9db629 /source/blender/compositor
parent39f99fd05c353137130afd7fb101c9a78106d47b (diff)
Cleanup: clang tidy
Diffstat (limited to 'source/blender/compositor')
-rw-r--r--source/blender/compositor/operations/COM_ColorExposureOperation.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/compositor/operations/COM_ColorExposureOperation.cpp b/source/blender/compositor/operations/COM_ColorExposureOperation.cpp
index 8a475432cc8..a11039852a1 100644
--- a/source/blender/compositor/operations/COM_ColorExposureOperation.cpp
+++ b/source/blender/compositor/operations/COM_ColorExposureOperation.cpp
@@ -18,12 +18,12 @@
#include "COM_ColorExposureOperation.h"
-ExposureOperation::ExposureOperation() : NodeOperation()
+ExposureOperation::ExposureOperation()
{
this->addInputSocket(COM_DT_COLOR);
this->addInputSocket(COM_DT_VALUE);
this->addOutputSocket(COM_DT_COLOR);
- this->m_inputProgram = NULL;
+ this->m_inputProgram = nullptr;
}
void ExposureOperation::initExecution()
@@ -52,6 +52,6 @@ void ExposureOperation::executePixelSampled(float output[4],
void ExposureOperation::deinitExecution()
{
- this->m_inputProgram = NULL;
- this->m_inputExposureProgram = NULL;
+ this->m_inputProgram = nullptr;
+ this->m_inputExposureProgram = nullptr;
}