Skip to content

Commit

Permalink
raise the limit
Browse files Browse the repository at this point in the history
  • Loading branch information
RbCaVi committed Aug 8, 2024
1 parent 855e067 commit 07cf650
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion b.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ class WorkerFuncs {
this.worker = new Worker('a.js');
this.counter = 0;
this.threads = 0;
this.maxthreads = 4;
this.maxthreads = 16;
this.queue = [];
}

Expand Down
2 changes: 1 addition & 1 deletion image2.js
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ if (window.Worker && window.OffscreenCanvas) { // workers and offscreencanvas ex
};
}

makeiconURLimpl = deparallel(makeiconURLinternal, 4);
makeiconURLimpl = deparallel(makeiconURLinternal, 16);
}

function makeiconURL(data,options,size=32){
Expand Down

0 comments on commit 07cf650

Please sign in to comment.