-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathmulti-threaded.js
27 lines (27 loc) · 976 Bytes
/
multi-threaded.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// START: MULTI THREADED
if (ENVIRONMENT_IS_PTHREAD) {
const _invokeEntryPoint = invokeEntryPoint;
invokeEntryPoint = (ptr, arg) => {
if (arg.script) {
// Workaround for bug: https://github.com/jrouwe/JoltPhysics.js/issues/245
// '("ReplaceWithImport"+arg.script)' should be 'import(arg.script)'
// This gets replaced by sed during the build process.
("ReplaceWithImport"+arg.script).then(module => {
module.default(Module, arg.params).then(() => _invokeEntryPoint(ptr, arg.value));
})
} else {
_invokeEntryPoint(ptr, arg.value);
}
}
} else {
const _spawnThread = spawnThread;
spawnThread = (threadParams) => {
threadParams.arg = { value: threadParams.arg, script: Module['workerScript'], params: Module['workerScriptParams'] };
_spawnThread(threadParams);
}
Module['configureWorkerScripts'] = (scriptUrl, scriptParams) => {
Module['workerScript'] = scriptUrl;
Module['workerScriptParams'] = scriptParams;
}
}
// END: MULTI THREADED