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:
authorHans Goudey <h.goudey@me.com>2022-11-12 04:05:22 +0300
committerHans Goudey <h.goudey@me.com>2022-11-12 04:05:22 +0300
commitd0522d4ef15fa8ee21527404a4b0f7a5423a4027 (patch)
tree610b9914199758d027981d0cf94c4d209a73bc68
parent03ccf37162d365f3fdc8d8cd0cd6e9ff314fec6e (diff)
Cleanup: Remove unnecessary struct keywords
-rw-r--r--source/blender/blenkernel/intern/mesh_normals.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/blenkernel/intern/mesh_normals.cc b/source/blender/blenkernel/intern/mesh_normals.cc
index ebb5a72d137..ddc8af99fc5 100644
--- a/source/blender/blenkernel/intern/mesh_normals.cc
+++ b/source/blender/blenkernel/intern/mesh_normals.cc
@@ -442,7 +442,7 @@ void BKE_mesh_ensure_normals_for_display(Mesh *mesh)
BKE_mesh_poly_normals_ensure(mesh);
break;
case ME_WRAPPER_TYPE_BMESH: {
- struct BMEditMesh *em = mesh->edit_mesh;
+ BMEditMesh *em = mesh->edit_mesh;
EditMeshData *emd = mesh->runtime->edit_data;
if (emd->vertexCos) {
BKE_editmesh_cache_ensure_vert_normals(em, emd);
@@ -939,13 +939,13 @@ static void mesh_edges_sharp_tag(LoopSplitTaskDataCommon *data,
}
}
-void BKE_edges_sharp_from_angle_set(const struct MVert *mverts,
+void BKE_edges_sharp_from_angle_set(const MVert *mverts,
const int /*numVerts*/,
- struct MEdge *medges,
+ MEdge *medges,
const int numEdges,
- const struct MLoop *mloops,
+ const MLoop *mloops,
const int numLoops,
- const struct MPoly *mpolys,
+ const MPoly *mpolys,
const float (*polynors)[3],
const int numPolys,
const float split_angle)