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_SetSamplerOperation.cc')
-rw-r--r--source/blender/compositor/operations/COM_SetSamplerOperation.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/compositor/operations/COM_SetSamplerOperation.cc b/source/blender/compositor/operations/COM_SetSamplerOperation.cc
index e68774736f3..eb7eedb2bd5 100644
--- a/source/blender/compositor/operations/COM_SetSamplerOperation.cc
+++ b/source/blender/compositor/operations/COM_SetSamplerOperation.cc
@@ -28,11 +28,11 @@ SetSamplerOperation::SetSamplerOperation()
void SetSamplerOperation::initExecution()
{
- this->m_reader = this->getInputSocketReader(0);
+ m_reader = this->getInputSocketReader(0);
}
void SetSamplerOperation::deinitExecution()
{
- this->m_reader = nullptr;
+ m_reader = nullptr;
}
void SetSamplerOperation::executePixelSampled(float output[4],
@@ -40,7 +40,7 @@ void SetSamplerOperation::executePixelSampled(float output[4],
float y,
PixelSampler /*sampler*/)
{
- this->m_reader->readSampled(output, x, y, this->m_sampler);
+ m_reader->readSampled(output, x, y, m_sampler);
}
} // namespace blender::compositor