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:
authorLukas Toenne <lukas.toenne@googlemail.com>2013-09-05 17:32:14 +0400
committerLukas Toenne <lukas.toenne@googlemail.com>2013-09-05 17:32:14 +0400
commit028371c174189278dd30e3c7f5a2b4a50910fd77 (patch)
tree4e6c263d404f8520570fb2c884192bd928db2f01 /source/blender/compositor/nodes/COM_ConvertAlphaNode.cpp
parentbed447b244ac949807baa27b61d00d45b547e5c9 (diff)
Compositor cleanup: Merge conversion operations into a single file (see also r59820).
Most convert operations can share a common base class with a single socket reader (except channel separate/combine nodes).
Diffstat (limited to 'source/blender/compositor/nodes/COM_ConvertAlphaNode.cpp')
-rw-r--r--source/blender/compositor/nodes/COM_ConvertAlphaNode.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/compositor/nodes/COM_ConvertAlphaNode.cpp b/source/blender/compositor/nodes/COM_ConvertAlphaNode.cpp
index a7149cc63b2..72f3ed07fd5 100644
--- a/source/blender/compositor/nodes/COM_ConvertAlphaNode.cpp
+++ b/source/blender/compositor/nodes/COM_ConvertAlphaNode.cpp
@@ -20,8 +20,7 @@
*/
#include "COM_ConvertAlphaNode.h"
-#include "COM_ConvertPremulToStraightOperation.h"
-#include "COM_ConvertStraightToPremulOperation.h"
+#include "COM_ConvertOperation.h"
#include "COM_ExecutionSystem.h"
void ConvertAlphaNode::convertToOperations(ExecutionSystem *graph, CompositorContext *context)