A little simplification of the Perl side threading:

Only single level Perl worker threads are allowed.
This commit is contained in:
bubnikv 2017-06-08 18:53:33 +02:00
parent e0a24f94c0
commit 66f1ae003f
3 changed files with 15 additions and 49 deletions

View file

@ -14,11 +14,6 @@ use Slic3r::Surface ':types';
# If enabled, phases of prepare_infill will be written into SVG files to an "out" directory.
our $SLIC3R_DEBUG_SLICE_PROCESSING = 0;
sub region_volumes {
my $self = shift;
return [ map $self->get_region_volumes($_), 0..($self->region_count - 1) ];
}
sub layers {
my $self = shift;
return [ map $self->get_layer($_), 0..($self->layer_count - 1) ];