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:
authorKévin Dietrich <kevin.dietrich@mailoo.org>2016-09-25 23:11:09 +0300
committerKévin Dietrich <kevin.dietrich@mailoo.org>2016-09-25 23:11:38 +0300
commit18b0738303b27d827d3f4d4e32a22785817a818e (patch)
treef9a6e0fecd763f7f7757bcfb9ba8d073da73940a /source/blender/alembic/intern
parent04230e80d12a7187887a927f16a0ccdac9b50e9e (diff)
Cleanup: remove unused function.
Diffstat (limited to 'source/blender/alembic/intern')
-rw-r--r--source/blender/alembic/intern/abc_mesh.cc13
1 files changed, 0 insertions, 13 deletions
diff --git a/source/blender/alembic/intern/abc_mesh.cc b/source/blender/alembic/intern/abc_mesh.cc
index 8e640b36c27..84b89d9ab9e 100644
--- a/source/blender/alembic/intern/abc_mesh.cc
+++ b/source/blender/alembic/intern/abc_mesh.cc
@@ -146,19 +146,6 @@ static void get_topology(DerivedMesh *dm,
}
}
-static void get_material_indices(DerivedMesh *dm, std::vector<int32_t> &indices)
-{
- indices.clear();
- indices.reserve(dm->getNumTessFaces(dm));
-
- MPoly *mpolys = dm->getPolyArray(dm);
-
- for (int i = 1, e = dm->getNumPolys(dm); i < e; ++i) {
- MPoly *mpoly = &mpolys[i];
- indices.push_back(mpoly->mat_nr);
- }
-}
-
static void get_creases(DerivedMesh *dm,
std::vector<int32_t> &indices,
std::vector<int32_t> &lengths,