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:
Diffstat (limited to 'source/blender/compositor/operations/COM_RenderLayersAlphaProg.cpp')
-rw-r--r--source/blender/compositor/operations/COM_RenderLayersAlphaProg.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/compositor/operations/COM_RenderLayersAlphaProg.cpp b/source/blender/compositor/operations/COM_RenderLayersAlphaProg.cpp
index d85d54489ac..d18915c593b 100644
--- a/source/blender/compositor/operations/COM_RenderLayersAlphaProg.cpp
+++ b/source/blender/compositor/operations/COM_RenderLayersAlphaProg.cpp
@@ -36,7 +36,8 @@ void RenderLayersAlphaProg::executePixel(float* output, float x, float y, PixelS
output[1] = 0.0f;
output[2] = 0.0f;
output[3] = 0.0f;
- } else {
+ }
+ else {
unsigned int offset = (iy*this->getWidth()+ix) * 4;
output[0] = inputBuffer[offset+3];
output[1] = 0.0f;