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:
authorSybren A. Stüvel <sybren@stuvel.eu>2019-01-15 16:09:06 +0300
committerSybren A. Stüvel <sybren@stuvel.eu>2019-01-15 18:21:04 +0300
commit2f2272f71a292ac4a74d3452e095ea80bb83d0d9 (patch)
treed23bf67e95d92f8bbe37268eaf82aa00ca725963 /source/blender/alembic
parentf16b9dc750f24f8cc8f5bf08474f67f70bbf6e9c (diff)
Alembic: removed declaration of non-existing functions
Removed AbcMeshWriter::getMeshInfo() and AbcMeshWriter::getMaterialIndices().
Diffstat (limited to 'source/blender/alembic')
-rw-r--r--source/blender/alembic/intern/abc_mesh.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/source/blender/alembic/intern/abc_mesh.h b/source/blender/alembic/intern/abc_mesh.h
index fd6de1001ae..dd7e9c7adf0 100644
--- a/source/blender/alembic/intern/abc_mesh.h
+++ b/source/blender/alembic/intern/abc_mesh.h
@@ -65,17 +65,8 @@ private:
void writeMesh(struct Mesh *mesh);
void writeSubD(struct Mesh *mesh);
- void getMeshInfo(struct Mesh *mesh, std::vector<float> &points,
- std::vector<int32_t> &facePoints,
- std::vector<int32_t> &faceCounts,
- std::vector<int32_t> &creaseIndices,
- std::vector<int32_t> &creaseLengths,
- std::vector<float> &creaseSharpness);
-
struct Mesh *getFinalMesh(bool &r_needsfree);
- void getMaterialIndices(struct Mesh *mesh, std::vector<int32_t> &indices);
-
void writeArbGeoParams(struct Mesh *mesh);
void getGeoGroups(struct Mesh *mesh, std::map<std::string, std::vector<int32_t> > &geoGroups);