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:
authorCampbell Barton <ideasman42@gmail.com>2019-04-17 07:17:24 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-04-17 07:21:24 +0300
commite12c08e8d170b7ca40f204a5b0423c23a9fbc2c1 (patch)
tree8cf3453d12edb177a218ef8009357518ec6cab6a /source/blender/compositor/nodes/COM_ChannelMatteNode.cpp
parentb3dabc200a4b0399ec6b81f2ff2730d07b44fcaa (diff)
ClangFormat: apply to source, most of intern
Apply clang format as proposed in T53211. For details on usage and instructions for migrating branches without conflicts, see: https://wiki.blender.org/wiki/Tools/ClangFormat
Diffstat (limited to 'source/blender/compositor/nodes/COM_ChannelMatteNode.cpp')
-rw-r--r--source/blender/compositor/nodes/COM_ChannelMatteNode.cpp113
1 files changed, 57 insertions, 56 deletions
diff --git a/source/blender/compositor/nodes/COM_ChannelMatteNode.cpp b/source/blender/compositor/nodes/COM_ChannelMatteNode.cpp
index e7e575b3276..d320a6645e1 100644
--- a/source/blender/compositor/nodes/COM_ChannelMatteNode.cpp
+++ b/source/blender/compositor/nodes/COM_ChannelMatteNode.cpp
@@ -24,71 +24,72 @@
ChannelMatteNode::ChannelMatteNode(bNode *editorNode) : Node(editorNode)
{
- /* pass */
+ /* pass */
}
-void ChannelMatteNode::convertToOperations(NodeConverter &converter, const CompositorContext &/*context*/) const
+void ChannelMatteNode::convertToOperations(NodeConverter &converter,
+ const CompositorContext & /*context*/) const
{
- bNode *node = this->getbNode();
+ bNode *node = this->getbNode();
- NodeInput *inputSocketImage = this->getInputSocket(0);
- NodeOutput *outputSocketImage = this->getOutputSocket(0);
- NodeOutput *outputSocketMatte = this->getOutputSocket(1);
+ NodeInput *inputSocketImage = this->getInputSocket(0);
+ NodeOutput *outputSocketImage = this->getOutputSocket(0);
+ NodeOutput *outputSocketMatte = this->getOutputSocket(1);
- NodeOperation *convert = NULL, *inv_convert = NULL;
- /* colorspace */
- switch (node->custom1) {
- case CMP_NODE_CHANNEL_MATTE_CS_RGB:
- break;
- case CMP_NODE_CHANNEL_MATTE_CS_HSV: /* HSV */
- convert = new ConvertRGBToHSVOperation();
- inv_convert = new ConvertHSVToRGBOperation();
- break;
- case CMP_NODE_CHANNEL_MATTE_CS_YUV: /* YUV */
- convert = new ConvertRGBToYUVOperation();
- inv_convert = new ConvertYUVToRGBOperation();
- break;
- case CMP_NODE_CHANNEL_MATTE_CS_YCC: /* YCC */
- convert = new ConvertRGBToYCCOperation();
- ((ConvertRGBToYCCOperation *)convert)->setMode(BLI_YCC_ITU_BT709);
- inv_convert = new ConvertYCCToRGBOperation();
- ((ConvertYCCToRGBOperation *)inv_convert)->setMode(BLI_YCC_ITU_BT709);
- break;
- default:
- break;
- }
+ NodeOperation *convert = NULL, *inv_convert = NULL;
+ /* colorspace */
+ switch (node->custom1) {
+ case CMP_NODE_CHANNEL_MATTE_CS_RGB:
+ break;
+ case CMP_NODE_CHANNEL_MATTE_CS_HSV: /* HSV */
+ convert = new ConvertRGBToHSVOperation();
+ inv_convert = new ConvertHSVToRGBOperation();
+ break;
+ case CMP_NODE_CHANNEL_MATTE_CS_YUV: /* YUV */
+ convert = new ConvertRGBToYUVOperation();
+ inv_convert = new ConvertYUVToRGBOperation();
+ break;
+ case CMP_NODE_CHANNEL_MATTE_CS_YCC: /* YCC */
+ convert = new ConvertRGBToYCCOperation();
+ ((ConvertRGBToYCCOperation *)convert)->setMode(BLI_YCC_ITU_BT709);
+ inv_convert = new ConvertYCCToRGBOperation();
+ ((ConvertYCCToRGBOperation *)inv_convert)->setMode(BLI_YCC_ITU_BT709);
+ break;
+ default:
+ break;
+ }
- ChannelMatteOperation *operation = new ChannelMatteOperation();
- /* pass the ui properties to the operation */
- operation->setSettings((NodeChroma *)node->storage, node->custom2);
- converter.addOperation(operation);
+ ChannelMatteOperation *operation = new ChannelMatteOperation();
+ /* pass the ui properties to the operation */
+ operation->setSettings((NodeChroma *)node->storage, node->custom2);
+ converter.addOperation(operation);
- SetAlphaOperation *operationAlpha = new SetAlphaOperation();
- converter.addOperation(operationAlpha);
+ SetAlphaOperation *operationAlpha = new SetAlphaOperation();
+ converter.addOperation(operationAlpha);
- if (convert != NULL) {
- converter.addOperation(convert);
+ if (convert != NULL) {
+ converter.addOperation(convert);
- converter.mapInputSocket(inputSocketImage, convert->getInputSocket(0));
- converter.addLink(convert->getOutputSocket(), operation->getInputSocket(0));
- converter.addLink(convert->getOutputSocket(), operationAlpha->getInputSocket(0));
- }
- else {
- converter.mapInputSocket(inputSocketImage, operation->getInputSocket(0));
- converter.mapInputSocket(inputSocketImage, operationAlpha->getInputSocket(0));
- }
+ converter.mapInputSocket(inputSocketImage, convert->getInputSocket(0));
+ converter.addLink(convert->getOutputSocket(), operation->getInputSocket(0));
+ converter.addLink(convert->getOutputSocket(), operationAlpha->getInputSocket(0));
+ }
+ else {
+ converter.mapInputSocket(inputSocketImage, operation->getInputSocket(0));
+ converter.mapInputSocket(inputSocketImage, operationAlpha->getInputSocket(0));
+ }
- converter.mapOutputSocket(outputSocketMatte, operation->getOutputSocket(0));
- converter.addLink(operation->getOutputSocket(), operationAlpha->getInputSocket(1));
+ converter.mapOutputSocket(outputSocketMatte, operation->getOutputSocket(0));
+ converter.addLink(operation->getOutputSocket(), operationAlpha->getInputSocket(1));
- if (inv_convert != NULL) {
- converter.addOperation(inv_convert);
- converter.addLink(operationAlpha->getOutputSocket(0), inv_convert->getInputSocket(0));
- converter.mapOutputSocket(outputSocketImage, inv_convert->getOutputSocket());
- converter.addPreview(inv_convert->getOutputSocket());
- }
- else {
- converter.mapOutputSocket(outputSocketImage, operationAlpha->getOutputSocket());
- converter.addPreview(operationAlpha->getOutputSocket());
- }
+ if (inv_convert != NULL) {
+ converter.addOperation(inv_convert);
+ converter.addLink(operationAlpha->getOutputSocket(0), inv_convert->getInputSocket(0));
+ converter.mapOutputSocket(outputSocketImage, inv_convert->getOutputSocket());
+ converter.addPreview(inv_convert->getOutputSocket());
+ }
+ else {
+ converter.mapOutputSocket(outputSocketImage, operationAlpha->getOutputSocket());
+ converter.addPreview(operationAlpha->getOutputSocket());
+ }
}