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:
authorManuel Castilla <manzanillawork@gmail.com>2021-10-14 00:01:04 +0300
committerManuel Castilla <manzanillawork@gmail.com>2021-10-14 00:41:14 +0300
commita2ee3c3a9f01f5cb2f05f1e84a1b6c1931d9d4a4 (patch)
treed409678b16280311ed228929a45c9470f67a6dcd /source/blender/compositor/operations/COM_PlaneCornerPinOperation.cc
parentea79efef70da14100b591b50dcada819808f20b6 (diff)
Cleanup: replace members `m_` prefix by `_` suffix in Compositor
To convert old code to the current convention and use a single code style.
Diffstat (limited to 'source/blender/compositor/operations/COM_PlaneCornerPinOperation.cc')
-rw-r--r--source/blender/compositor/operations/COM_PlaneCornerPinOperation.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/compositor/operations/COM_PlaneCornerPinOperation.cc b/source/blender/compositor/operations/COM_PlaneCornerPinOperation.cc
index 92733186979..fbaab16efc2 100644
--- a/source/blender/compositor/operations/COM_PlaneCornerPinOperation.cc
+++ b/source/blender/compositor/operations/COM_PlaneCornerPinOperation.cc
@@ -134,7 +134,7 @@ static void read_input_corners(NodeOperation *op, const int first_input_idx, flo
/* ******** PlaneCornerPinMaskOperation ******** */
-PlaneCornerPinMaskOperation::PlaneCornerPinMaskOperation() : m_corners_ready(false)
+PlaneCornerPinMaskOperation::PlaneCornerPinMaskOperation() : corners_ready_(false)
{
addInputSocket(DataType::Vector);
addInputSocket(DataType::Vector);
@@ -182,7 +182,7 @@ void *PlaneCornerPinMaskOperation::initializeTileData(rcti *rect)
* we don't have a nice generic system for that yet
*/
lockMutex();
- if (!m_corners_ready) {
+ if (!corners_ready_) {
SocketReader *readers[4] = {
getInputSocketReader(0),
getInputSocketReader(1),
@@ -193,7 +193,7 @@ void *PlaneCornerPinMaskOperation::initializeTileData(rcti *rect)
readCornersFromSockets(rect, readers, corners);
calculateCorners(corners, true, 0);
- m_corners_ready = true;
+ corners_ready_ = true;
}
unlockMutex();
@@ -219,7 +219,7 @@ void PlaneCornerPinMaskOperation::get_area_of_interest(const int UNUSED(input_id
/* ******** PlaneCornerPinWarpImageOperation ******** */
-PlaneCornerPinWarpImageOperation::PlaneCornerPinWarpImageOperation() : m_corners_ready(false)
+PlaneCornerPinWarpImageOperation::PlaneCornerPinWarpImageOperation() : corners_ready_(false)
{
addInputSocket(DataType::Vector);
addInputSocket(DataType::Vector);
@@ -259,7 +259,7 @@ void *PlaneCornerPinWarpImageOperation::initializeTileData(rcti *rect)
* we don't have a nice generic system for that yet
*/
lockMutex();
- if (!m_corners_ready) {
+ if (!corners_ready_) {
/* corner sockets start at index 1 */
SocketReader *readers[4] = {
getInputSocketReader(1),
@@ -271,7 +271,7 @@ void *PlaneCornerPinWarpImageOperation::initializeTileData(rcti *rect)
readCornersFromSockets(rect, readers, corners);
calculateCorners(corners, true, 0);
- m_corners_ready = true;
+ corners_ready_ = true;
}
unlockMutex();