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>2016-01-14 05:00:11 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-01-14 05:00:11 +0300
commitf5604af464cd2e2cbb271378df2827cbe6eaffe3 (patch)
treec803fb688ae839c82d7dbc0e571cdc8a34bbe14e /source/blender/bmesh/intern/bmesh_polygon.h
parentbc3db85da8c6aa101d6ccf8d50f8d11ee1b143de (diff)
Cleanup: use BM_mesh_* prefix for BMesh functions
Diffstat (limited to 'source/blender/bmesh/intern/bmesh_polygon.h')
-rw-r--r--source/blender/bmesh/intern/bmesh_polygon.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/intern/bmesh_polygon.h b/source/blender/bmesh/intern/bmesh_polygon.h
index c84f4798ee4..a1d17101ece 100644
--- a/source/blender/bmesh/intern/bmesh_polygon.h
+++ b/source/blender/bmesh/intern/bmesh_polygon.h
@@ -32,7 +32,7 @@ struct Heap;
#include "BLI_compiler_attrs.h"
-void BM_bmesh_calc_tessellation(BMesh *bm, BMLoop *(*looptris)[3], int *r_looptris_tot);
+void BM_mesh_calc_tessellation(BMesh *bm, BMLoop *(*looptris)[3], int *r_looptris_tot);
void BM_face_calc_tessellation(
const BMFace *f, const bool use_fixed_quad,