mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-12 01:07:57 -06:00
Enable full concurrency for support tree generation.
This commit is contained in:
parent
8ca7e56d0f
commit
3f698c4ccf
4 changed files with 68 additions and 4 deletions
|
@ -287,7 +287,11 @@ public:
|
|||
double ground_level = 0;
|
||||
|
||||
SupportTreeBuilder() = default;
|
||||
|
||||
SupportTreeBuilder(SupportTreeBuilder &&o);
|
||||
SupportTreeBuilder(const SupportTreeBuilder &o);
|
||||
SupportTreeBuilder& operator=(SupportTreeBuilder &&o);
|
||||
SupportTreeBuilder& operator=(const SupportTreeBuilder &o);
|
||||
|
||||
template<class...Args> Head& add_head(unsigned id, Args&&... args)
|
||||
{
|
||||
std::lock_guard<Mutex> lk(m_mutex);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue