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:
authorBastien Montagne <montagne29@wanadoo.fr>2012-05-03 09:39:30 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2012-05-03 09:39:30 +0400
commitaecddee333bd7763c091e4fec75d5d0889c0f0d0 (patch)
tree63f6c994af08ba312aceac1d08643379c7df216b /source/blender/nodes
parent90b0be522c2145d642d77ebfc8f852bd93d2a720 (diff)
Grr! Fix for own error in r46193.
Diffstat (limited to 'source/blender/nodes')
-rw-r--r--source/blender/nodes/composite/nodes/node_composite_blur.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/nodes/composite/nodes/node_composite_blur.c b/source/blender/nodes/composite/nodes/node_composite_blur.c
index 5675acbe084..77b62938d94 100644
--- a/source/blender/nodes/composite/nodes/node_composite_blur.c
+++ b/source/blender/nodes/composite/nodes/node_composite_blur.c
@@ -609,7 +609,6 @@ static void node_composit_exec_blur(void *data, bNode *node, bNodeStack **in, bN
new = pass_on_compbuf(img);
}
else {
- CompBuf *new, *img = in[0]->data;
// TODO: can this be mapped with reference, too?
const float sx = ((float)nbd->sizex*in[1]->vec[0])/2.0f, sy = ((float)nbd->sizey*in[1]->vec[0])/2.0f;
int c;