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>2019-08-25 05:38:10 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-08-25 05:39:15 +0300
commit19f27cf3e964ed7db3879b73ffdd1b2971060aa8 (patch)
tree86a506aedf6a724de34b1d2ad5471f0bfde83521 /source/blender/makesrna/intern/rna_mesh_api.c
parent17e1c97e435d20758ca2959496cc1b09268add3d (diff)
RNA: remove Mesh.update() calc_loop_triangles argument
This calculated tessfaces, not loop-triangles. Remove this since they aren't accessible from RNA anymore.
Diffstat (limited to 'source/blender/makesrna/intern/rna_mesh_api.c')
-rw-r--r--source/blender/makesrna/intern/rna_mesh_api.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/source/blender/makesrna/intern/rna_mesh_api.c b/source/blender/makesrna/intern/rna_mesh_api.c
index 283590fc529..0b3a7802082 100644
--- a/source/blender/makesrna/intern/rna_mesh_api.c
+++ b/source/blender/makesrna/intern/rna_mesh_api.c
@@ -311,11 +311,6 @@ void RNA_api_mesh(StructRNA *srna)
0,
"Calculate Loose Edges",
"Calculate the loose state of each edge");
- RNA_def_boolean(func,
- "calc_loop_triangles",
- 0,
- "Calculate Triangules",
- "Force recalculation of triangle tessellation");
RNA_def_function_flag(func, FUNC_USE_CONTEXT);
RNA_def_function(srna, "update_gpu_tag", "rna_Mesh_update_gpu_tag");