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:
authorCampbell Barton <ideasman42@gmail.com>2010-01-19 17:04:33 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-01-19 17:04:33 +0300
commitabb5214a8f47f65030e5d0bec8cd974e9ade4248 (patch)
treeb2806fce9cc5383671cd81f014235644683fe256 /source/blender/nodes/intern/CMP_nodes/CMP_splitViewer.c
parent05ce322aad9e6e2b9ec507f13b74a9cec1f8455f (diff)
removed 3D view listener for changing the background image frame.
do this on drawing instead since SCREEN_OT_animation_step isnt calling the notifier (assume this is to be more efficient?). this isnt slow so is ok to do on drawing. rename BKE_image_user_calc_imanr to BKE_image_user_calc_frame
Diffstat (limited to 'source/blender/nodes/intern/CMP_nodes/CMP_splitViewer.c')
-rw-r--r--source/blender/nodes/intern/CMP_nodes/CMP_splitViewer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/nodes/intern/CMP_nodes/CMP_splitViewer.c b/source/blender/nodes/intern/CMP_nodes/CMP_splitViewer.c
index 04383f478e9..7564b07523f 100644
--- a/source/blender/nodes/intern/CMP_nodes/CMP_splitViewer.c
+++ b/source/blender/nodes/intern/CMP_nodes/CMP_splitViewer.c
@@ -65,7 +65,7 @@ static void node_composit_exec_splitviewer(void *data, bNode *node, bNodeStack *
buf1= typecheck_compbuf(in[0]->data, CB_RGBA);
buf2= typecheck_compbuf(in[1]->data, CB_RGBA);
- BKE_image_user_calc_imanr(node->storage, rd->cfra, 0);
+ BKE_image_user_calc_frame(node->storage, rd->cfra, 0);
/* always returns for viewer image, but we check nevertheless */
ibuf= BKE_image_get_ibuf(ima, node->storage);