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 <brecht@blender.org>2021-05-13 00:14:58 +0300
committerBrecht Van Lommel <brecht@blender.org>2021-05-17 20:41:11 +0300
commit85be72c1cc7317796dcce3ddc6ec2dedd627ff81 (patch)
tree1ee201be1f62457fa6b02d2f2f467fa0d319de01 /source/blender/gpencil_modifiers
parent912f2b1a29cd079ea7e163f5839047612423f05c (diff)
Fix T86278: vertex color baking not working with modifiers
As in the old Blender Internal baking code, this still relies on there being a good mapping to the original vertices.
Diffstat (limited to 'source/blender/gpencil_modifiers')
-rw-r--r--source/blender/gpencil_modifiers/intern/lineart/lineart_cpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/gpencil_modifiers/intern/lineart/lineart_cpu.c b/source/blender/gpencil_modifiers/intern/lineart/lineart_cpu.c
index 9c4e428f58a..e9cb8453f43 100644
--- a/source/blender/gpencil_modifiers/intern/lineart/lineart_cpu.c
+++ b/source/blender/gpencil_modifiers/intern/lineart/lineart_cpu.c
@@ -1510,7 +1510,7 @@ static void lineart_geometry_object_load(Depsgraph *dg,
use_mesh = DEG_get_evaluated_object(dg, ob)->data;
}
else {
- use_mesh = BKE_mesh_new_from_object(NULL, ob, false);
+ use_mesh = BKE_mesh_new_from_object(NULL, ob, false, false);
}
/* In case we can not get any mesh geometry data from the object */