I cannot find any information about thread-safety of OpenMesh operations, specifically I'm looking for a multithreaded mesh importing. Currently I'm filling my mesh through:
OpenMesh::IO::ImporterT
In single thread. But if it's possible - I wan't to do this operation in multiple threads, without blocking around:
meshImporter.add_face(faceHandle);
meshImporter.add_vertex(vertex);
But it's a little bit slower than I thought (It consumes more than half of time of next operation - decimation the of same mesh).