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_viewer.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_viewer.c')
-rw-r--r--source/blender/nodes/intern/CMP_nodes/CMP_viewer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/nodes/intern/CMP_nodes/CMP_viewer.c b/source/blender/nodes/intern/CMP_nodes/CMP_viewer.c
index d0dcc5c6973..105037d3bfc 100644
--- a/source/blender/nodes/intern/CMP_nodes/CMP_viewer.c
+++ b/source/blender/nodes/intern/CMP_nodes/CMP_viewer.c
@@ -51,7 +51,7 @@ static void node_composit_exec_viewer(void *data, bNode *node, bNodeStack **in,
CompBuf *cbuf, *tbuf;
int rectx, recty;
- 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);