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>2020-05-21 09:34:36 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-05-21 09:34:36 +0300
commit850fbe8547ad26607f9649bdab172cb0e37d246d (patch)
tree5d9cc9dc65668d3d63c7419cd4d3c01b2a13b550 /source/blender/blenkernel/intern/displist.c
parentc13bf40ab1a3faf7b866598cdca92f2caae80fae (diff)
parent8d648e097261f81afc340b07e48f34ee99216a2b (diff)
Merge branch 'blender-v2.83-release'
Diffstat (limited to 'source/blender/blenkernel/intern/displist.c')
-rw-r--r--source/blender/blenkernel/intern/displist.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/source/blender/blenkernel/intern/displist.c b/source/blender/blenkernel/intern/displist.c
index d73f92b6073..a3e1eeb89c7 100644
--- a/source/blender/blenkernel/intern/displist.c
+++ b/source/blender/blenkernel/intern/displist.c
@@ -1134,17 +1134,18 @@ static void curve_calc_modifiers_post(Depsgraph *depsgraph,
if (r_final) {
if (force_mesh_conversion && !modified) {
- /* XXX 2.8 : This is a workaround for by some deeper technical depts:
+ /* XXX 2.8 : This is a workaround for by some deeper technical debts:
* - DRW Batch cache is stored inside the ob->data.
* - Curve data is not COWed for instances that use different modifiers.
- * This can causes the modifiers to be applied on all user of the same datablock (see T71055)
+ * This can causes the modifiers to be applied on all user of the same data-block
+ * (see T71055)
*
* The easy workaround is to force to generate a Mesh that will be used for display data
* since a Mesh output is already used for generative modifiers.
* However it does not fix problems with actual edit data still being shared.
*
- * The right solution would be to COW the Curve data block at the input of the modifer stack
- * just like what the mesh modifier does.
+ * The right solution would be to COW the Curve data block at the input of the modifier
+ * stack just like what the mesh modifier does.
* */
modified = BKE_mesh_new_nomain_from_curve_displist(ob, dispbase);
}