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>2015-07-23 08:17:26 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-07-23 08:17:26 +0300
commit0a249f98534e20928d2d52c4585bff5d96ea9000 (patch)
treec929fb8932795ce0a3069b4f924bfe52fcfed5ef /source/blender/blenkernel/BKE_bvhutils.h
parentabbd82a5040baa3950801c5be3596c0cd71c94fc (diff)
Cleanup: arg names
Diffstat (limited to 'source/blender/blenkernel/BKE_bvhutils.h')
-rw-r--r--source/blender/blenkernel/BKE_bvhutils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/BKE_bvhutils.h b/source/blender/blenkernel/BKE_bvhutils.h
index 9220082a73a..52a659bc0c2 100644
--- a/source/blender/blenkernel/BKE_bvhutils.h
+++ b/source/blender/blenkernel/BKE_bvhutils.h
@@ -110,8 +110,8 @@ BVHTree *bvhtree_from_mesh_looptri_ex(
struct BVHTreeFromMesh *data,
const struct MVert *vert, const bool vert_allocated,
const struct MLoop *mloop, const bool loop_allocated,
- const struct MLoopTri *looptri, const int numFaces, const bool face_allocated,
- BLI_bitmap *mask, int numFaces_active,
+ const struct MLoopTri *looptri, const int looptri_num, const bool face_allocated,
+ BLI_bitmap *mask, int looptri_num_active,
float epsilon, int tree_type, int axis);
/**