[Bf-blender-cvs] [b266eedb242] blender-v3.3-release: Fix T101370: GPencil Grab Sculpt crash after bake transform animation

Antonio Vazquez noreply at git.blender.org
Fri Sep 30 14:39:55 CEST 2022


Commit: b266eedb24216d12e7057aaaf983ae71d30d6ed7
Author: Antonio Vazquez
Date:   Mon Sep 26 11:09:49 2022 +0200
Branches: blender-v3.3-release
https://developer.blender.org/rBb266eedb24216d12e7057aaaf983ae71d30d6ed7

Fix T101370: GPencil Grab Sculpt crash after bake transform animation

The problem was the duplicated strokes had wrong pointers 
to the original stroke.

===================================================================

M	source/blender/editors/gpencil/gpencil_bake_animation.cc

===================================================================

diff --git a/source/blender/editors/gpencil/gpencil_bake_animation.cc b/source/blender/editors/gpencil/gpencil_bake_animation.cc
index e480852a9bb..976f142f295 100644
--- a/source/blender/editors/gpencil/gpencil_bake_animation.cc
+++ b/source/blender/editors/gpencil/gpencil_bake_animation.cc
@@ -298,6 +298,7 @@ static int gpencil_bake_grease_pencil_animation_exec(bContext *C, wmOperator *op
         BLI_addtail(&gpl_dst->frames, gpf_dst);
 
         LISTBASE_FOREACH (bGPDstroke *, gps, &gpf_dst->strokes) {
+          gps->runtime.gps_orig = NULL;
           /* Create material of the stroke. */
           Material *ma_src = BKE_object_material_get(elem->ob, gps->mat_nr + 1);
           bool found = false;
@@ -320,6 +321,8 @@ static int gpencil_bake_grease_pencil_animation_exec(bContext *C, wmOperator *op
           /* Update point location to new object space. */
           for (int j = 0; j < gps->totpoints; j++) {
             bGPDspoint *pt = &gps->points[j];
+            pt->runtime.idx_orig = 0;
+            pt->runtime.pt_orig = NULL;
             mul_m4_v3(ob_eval->obmat, &pt->x);
             mul_m4_v3(invmat, &pt->x);
           }



More information about the Bf-blender-cvs mailing list