Cleanup: Add namespace to compositor.

This commit is contained in:
2021-03-23 17:12:27 +01:00
parent 9975af5ffa
commit 25c02ea703
445 changed files with 1813 additions and 15 deletions

View File

@@ -20,6 +20,8 @@
#include "COM_ExecutionSystem.h"
#include "COM_TextureOperation.h"
namespace blender::compositor {
TextureNode::TextureNode(bNode *editorNode) : Node(editorNode)
{
/* pass */
@@ -54,3 +56,5 @@ void TextureNode::convertToOperations(NodeConverter &converter,
converter.mapInputSocket(getInputSocket(1), alphaOperation->getInputSocket(1));
converter.mapOutputSocket(getOutputSocket(0), alphaOperation->getOutputSocket());
}
} // namespace blender::compositor