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

@@ -22,6 +22,8 @@
#include "COM_RotateOperation.h"
#include "COM_SetSamplerOperation.h"
namespace blender::compositor {
RotateNode::RotateNode(bNode *editorNode) : Node(editorNode)
{
/* pass */
@@ -45,3 +47,5 @@ void RotateNode::convertToOperations(NodeConverter &converter,
converter.mapInputSocket(inputDegreeSocket, operation->getInputSocket(1));
converter.mapOutputSocket(outputSocket, operation->getOutputSocket(0));
}
} // namespace blender::compositor