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:
authorJeroen Bakker <jeroen@blender.org>2021-03-23 19:12:27 +0300
committerJeroen Bakker <jeroen@blender.org>2021-03-29 09:18:33 +0300
commit25c02ea703f90709625f34bb7c3f9e18be7dd58c (patch)
treeebf35ce9267b4e05b53a4f4d699bedbbf28905b9 /source/blender/compositor/operations/COM_AlphaOverKeyOperation.cc
parent9975af5ffa7566ff7542620c48c11f7687b9c42b (diff)
Cleanup: Add namespace to compositor.
Diffstat (limited to 'source/blender/compositor/operations/COM_AlphaOverKeyOperation.cc')
-rw-r--r--source/blender/compositor/operations/COM_AlphaOverKeyOperation.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/compositor/operations/COM_AlphaOverKeyOperation.cc b/source/blender/compositor/operations/COM_AlphaOverKeyOperation.cc
index 668d07c7c3d..34638cbe7d6 100644
--- a/source/blender/compositor/operations/COM_AlphaOverKeyOperation.cc
+++ b/source/blender/compositor/operations/COM_AlphaOverKeyOperation.cc
@@ -18,6 +18,8 @@
#include "COM_AlphaOverKeyOperation.h"
+namespace blender::compositor {
+
AlphaOverKeyOperation::AlphaOverKeyOperation()
{
/* pass */
@@ -52,3 +54,5 @@ void AlphaOverKeyOperation::executePixelSampled(float output[4],
output[3] = (mul * inputColor1[3]) + value[0] * inputOverColor[3];
}
}
+
+} // namespace blender::compositor