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_ViewerBaseOperation.cpp')
-rw-r--r--source/blender/compositor/operations/COM_ViewerBaseOperation.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/source/blender/compositor/operations/COM_ViewerBaseOperation.cpp b/source/blender/compositor/operations/COM_ViewerBaseOperation.cpp
index a8aa84e84f9..446b169763c 100644
--- a/source/blender/compositor/operations/COM_ViewerBaseOperation.cpp
+++ b/source/blender/compositor/operations/COM_ViewerBaseOperation.cpp
@@ -42,10 +42,10 @@ ViewerBaseOperation::ViewerBaseOperation() : NodeOperation()
{
this->setImage(NULL);
this->setImageUser(NULL);
- this->outputBuffer = NULL;
- this->outputBufferDisplay = NULL;
- this->active = false;
- this->doColorManagement = true;
+ this->m_outputBuffer = NULL;
+ this->m_outputBufferDisplay = NULL;
+ this->m_active = false;
+ this->m_doColorManagement = true;
}
void ViewerBaseOperation::initExecution()
@@ -57,8 +57,8 @@ void ViewerBaseOperation::initExecution()
void ViewerBaseOperation::initImage()
{
- Image *anImage = this->image;
- ImBuf *ibuf = BKE_image_acquire_ibuf(anImage, this->imageUser, &this->lock);
+ Image *anImage = this->m_image;
+ ImBuf *ibuf = BKE_image_acquire_ibuf(anImage, this->m_imageUser, &this->m_lock);
if (!ibuf) return;
if (ibuf->x != (int)getWidth() || ibuf->y != (int)getHeight()) {
@@ -73,10 +73,10 @@ void ViewerBaseOperation::initImage()
}
/* now we combine the input with ibuf */
- this->outputBuffer = ibuf->rect_float;
- this->outputBufferDisplay = (unsigned char *)ibuf->rect;
+ this->m_outputBuffer = ibuf->rect_float;
+ this->m_outputBufferDisplay = (unsigned char *)ibuf->rect;
- BKE_image_release_ibuf(this->image, this->lock);
+ BKE_image_release_ibuf(this->m_image, this->m_lock);
}
void ViewerBaseOperation:: updateImage(rcti *rect)
{
@@ -85,7 +85,7 @@ void ViewerBaseOperation:: updateImage(rcti *rect)
void ViewerBaseOperation::deinitExecution()
{
- this->outputBuffer = NULL;
+ this->m_outputBuffer = NULL;
}
const CompositorPriority ViewerBaseOperation::getRenderPriority() const