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:
Diffstat (limited to 'source/blender/blenkernel/intern/multires_reshape_util.c')
-rw-r--r--source/blender/blenkernel/intern/multires_reshape_util.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/source/blender/blenkernel/intern/multires_reshape_util.c b/source/blender/blenkernel/intern/multires_reshape_util.c
index 43768ef158a..5b60394feda 100644
--- a/source/blender/blenkernel/intern/multires_reshape_util.c
+++ b/source/blender/blenkernel/intern/multires_reshape_util.c
@@ -152,9 +152,9 @@ bool multires_reshape_context_create_from_base_mesh(MultiresReshapeContext *resh
reshape_context->mmd = mmd;
reshape_context->base_mesh = base_mesh;
- reshape_context->base_verts = BKE_mesh_vertices(base_mesh);
+ reshape_context->base_verts = BKE_mesh_verts(base_mesh);
reshape_context->base_edges = BKE_mesh_edges(base_mesh);
- reshape_context->base_polys = BKE_mesh_polygons(base_mesh);
+ reshape_context->base_polys = BKE_mesh_polys(base_mesh);
reshape_context->base_loops = BKE_mesh_loops(base_mesh);
reshape_context->subdiv = multires_reshape_create_subdiv(NULL, object, mmd);
@@ -189,9 +189,9 @@ bool multires_reshape_context_create_from_object(MultiresReshapeContext *reshape
reshape_context->mmd = mmd;
reshape_context->base_mesh = base_mesh;
- reshape_context->base_verts = BKE_mesh_vertices(base_mesh);
+ reshape_context->base_verts = BKE_mesh_verts(base_mesh);
reshape_context->base_edges = BKE_mesh_edges(base_mesh);
- reshape_context->base_polys = BKE_mesh_polygons(base_mesh);
+ reshape_context->base_polys = BKE_mesh_polys(base_mesh);
reshape_context->base_loops = BKE_mesh_loops(base_mesh);
reshape_context->subdiv = multires_reshape_create_subdiv(depsgraph, object, mmd);
@@ -220,9 +220,9 @@ bool multires_reshape_context_create_from_ccg(MultiresReshapeContext *reshape_co
context_zero(reshape_context);
reshape_context->base_mesh = base_mesh;
- reshape_context->base_verts = BKE_mesh_vertices(base_mesh);
+ reshape_context->base_verts = BKE_mesh_verts(base_mesh);
reshape_context->base_edges = BKE_mesh_edges(base_mesh);
- reshape_context->base_polys = BKE_mesh_polygons(base_mesh);
+ reshape_context->base_polys = BKE_mesh_polys(base_mesh);
reshape_context->base_loops = BKE_mesh_loops(base_mesh);
reshape_context->subdiv = subdiv_ccg->subdiv;
@@ -267,9 +267,9 @@ bool multires_reshape_context_create_from_subdiv(MultiresReshapeContext *reshape
reshape_context->mmd = mmd;
reshape_context->base_mesh = base_mesh;
- reshape_context->base_verts = BKE_mesh_vertices(base_mesh);
+ reshape_context->base_verts = BKE_mesh_verts(base_mesh);
reshape_context->base_edges = BKE_mesh_edges(base_mesh);
- reshape_context->base_polys = BKE_mesh_polygons(base_mesh);
+ reshape_context->base_polys = BKE_mesh_polys(base_mesh);
reshape_context->base_loops = BKE_mesh_loops(base_mesh);
reshape_context->subdiv = subdiv;