You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: site/source/docs/api_reference/module.rst
-4Lines changed: 0 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -174,10 +174,6 @@ Other methods
174
174
175
175
.. note:: Sanitizers or source map is currently not supported if overriding WebAssembly instantiation with Module.instantiateWasm. Providing Module.instantiateWasm when source map or sanitizer is enabled can prevent WebAssembly instantiation from finishing.
176
176
177
-
.. js:function::Module.onCustomMessage
178
-
179
-
When compiled with ``PROXY_TO_WORKER = 1`` (see `settings.js <https://github.com/emscripten-core/emscripten/blob/main/src/settings.js>`_), this callback (which should be implemented on both the client and worker's ``Module`` object) allows sending custom messages and data between the web worker and the main thread (using the ``postCustomMessage`` function defined in `proxyClient.js <https://github.com/emscripten-core/emscripten/blob/main/src/proxyClient.js>`_ and `proxyWorker.js <https://github.com/emscripten-core/emscripten/blob/main/src/proxyWorker.js>`_).
180
-
181
177
.. js:function::Module.fetchSettings
182
178
183
179
Override the default settings object used when fetching the Wasm module from
Copy file name to clipboardExpand all lines: site/source/docs/tools_reference/settings_reference.rst
+1-23Lines changed: 1 addition & 23 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1679,27 +1679,6 @@ in a worker. See emscripten.h
1679
1679
1680
1680
Default value: false
1681
1681
1682
-
.. _proxy_to_worker:
1683
-
1684
-
PROXY_TO_WORKER
1685
-
===============
1686
-
1687
-
If set to 1, we build the project into a js file that will run in a worker,
1688
-
and generate an html file that proxies input and output to/from it.
1689
-
1690
-
Default value: false
1691
-
1692
-
.. _proxy_to_worker_filename:
1693
-
1694
-
PROXY_TO_WORKER_FILENAME
1695
-
========================
1696
-
1697
-
If set, the script file name the main thread loads. Useful if your project
1698
-
doesn't run the main emscripten- generated script immediately but does some
1699
-
setup before
1700
-
1701
-
Default value: ''
1702
-
1703
1682
.. _proxy_to_pthread:
1704
1683
1705
1684
PROXY_TO_PTHREAD
@@ -3384,8 +3363,6 @@ the these settings please open a bug (or reply to one of the existing bugs).
3384
3363
- ``ASYNCIFY_EXPORTS``: please use JSPI_EXPORTS instead
3385
3364
- ``LINKABLE``: under consideration for removal (https://github.com/emscripten-core/emscripten/issues/25262)
3386
3365
- ``RELOCATABLE``: under consideration for removal (https://github.com/emscripten-core/emscripten/issues/25262)
3387
-
- ``PROXY_TO_WORKER``: under consideration for removal (See https://github.com/emscripten-core/emscripten/issues/25440)
3388
-
- ``PROXY_TO_WORKER_FILENAME``: under consideration for removal (See https://github.com/emscripten-core/emscripten/issues/25440)
3389
3366
3390
3367
.. _legacy-settings:
3391
3368
@@ -3471,3 +3448,4 @@ for backwards compatbility with older versions:
3471
3448
- ``USE_OFFSET_COVERTER``: No longer supported, not needed with modern v8 versions (Valid values: [0])
3472
3449
- ``ASYNCIFY_LAZY_LOAD_CODE``: No longer supported (Valid values: [0])
3473
3450
- ``USE_WEBGPU``: No longer supported; replaced by --use-port=emdawnwebgpu, which implements a newer (but incompatible) version of webgpu.h - see tools/ports/emdawnwebgpu.py (Valid values: [0])
3451
+
- ``PROXY_TO_WORKER``: No longer supported (Valid values: [0])
0 commit comments