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:
authorAntonio Vazquez <blendergit@gmail.com>2019-11-26 16:05:00 +0300
committerAntonio Vazquez <blendergit@gmail.com>2019-11-26 16:05:00 +0300
commit9ecc30250aaea4e102e869f181e4c896c315e5ef (patch)
tree24e7b7d731fe7eb2849d6f3d6be8c91fce42a3d2 /source/blender/draw/engines/gpencil/gpencil_draw_utils.c
parent14da2b18fce38d4ccbea0419b7074f0ae28fe760 (diff)
Fix T71909: Any keyframed GPLayer property is not updated when render animation
By error, the original datablock was used while rendering. Actually, only while the user is drawing the original data must be used because when we tested, the time the system uses to copy the datablock created a very bad "lag" feeling while drawing. Maybe the lag was half second only, but it ruined the pencil feeling. I talked some time ago with Sergey about that and we decided use this approach. Now, only the original datablock is used while the user is "moving" the pen, but not in any other situation. Thanks @sergey for help me with this bug and sorry for thinking it was a depsgraph issue.
Diffstat (limited to 'source/blender/draw/engines/gpencil/gpencil_draw_utils.c')
-rw-r--r--source/blender/draw/engines/gpencil/gpencil_draw_utils.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/source/blender/draw/engines/gpencil/gpencil_draw_utils.c b/source/blender/draw/engines/gpencil/gpencil_draw_utils.c
index efc73fd1056..48912a914dc 100644
--- a/source/blender/draw/engines/gpencil/gpencil_draw_utils.c
+++ b/source/blender/draw/engines/gpencil/gpencil_draw_utils.c
@@ -2077,9 +2077,7 @@ void gpencil_populate_datablock(GPENCIL_e_data *e_data,
BKE_gpencil_modifiers_calc(draw_ctx->depsgraph, draw_ctx->scene, ob);
}
- /* Use original data to shared in edit/transform operators */
- bGPdata *gpd_eval = (bGPdata *)ob->data;
- bGPdata *gpd = (bGPdata *)DEG_get_original_id(&gpd_eval->id);
+ bGPdata *gpd = (bGPdata *)ob->data;
const bool main_onion = stl->storage->is_main_onion;
const bool playing = stl->storage->is_playing;