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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-06-17 12:39:52 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-06-17 13:12:48 +0300
commit96e9caba6ef190b9f24f212d444ea60ec6defc4a (patch)
tree37fd174e34e1da18df4fbf14b5342568435aff34 /source/blender/modifiers/intern/MOD_util.c
parent4285729d4b23ef7b7f6d1917b7530e1cbbf530b1 (diff)
Fix T63867: image sequence not updating in Eevee animation render
Diffstat (limited to 'source/blender/modifiers/intern/MOD_util.c')
-rw-r--r--source/blender/modifiers/intern/MOD_util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_util.c b/source/blender/modifiers/intern/MOD_util.c
index 1efc1aefae4..998a2b1cd65 100644
--- a/source/blender/modifiers/intern/MOD_util.c
+++ b/source/blender/modifiers/intern/MOD_util.c
@@ -65,7 +65,7 @@ void MOD_init_texture(MappingInfoModifierData *dmd, const ModifierEvalContext *c
}
if (tex->ima && BKE_image_is_animated(tex->ima)) {
- BKE_image_user_frame_calc(&tex->iuser, DEG_get_ctime(ctx->depsgraph));
+ BKE_image_user_frame_calc(tex->ima, &tex->iuser, DEG_get_ctime(ctx->depsgraph));
}
}