@dcl-regenesislabs/bevy-explorer-web 0.1.0-21879339486.commit-193570d → 0.1.0-21879919050.commit-2e52072
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env +1 -1
- package/index.html +2 -2
- package/package.json +3 -3
- package/pkg/manifest.json +1 -1
- package/pkg/snippets/comms-53217a45365bb5fa/livekit_web_bindings.js +30 -4
- package/pkg/webgpu_build.d.ts +7 -7
- package/pkg/webgpu_build.js +59 -56
- package/pkg/webgpu_build_bg.wasm +0 -0
- package/pkg/webgpu_build_bg.wasm.d.ts +7 -7
package/.env
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
PUBLIC_URL="https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-
|
|
1
|
+
PUBLIC_URL="https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-21879919050.commit-2e52072"
|
package/index.html
CHANGED
|
@@ -270,7 +270,7 @@
|
|
|
270
270
|
}
|
|
271
271
|
</style>
|
|
272
272
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
|
|
273
|
-
<script>window.PUBLIC_URL = "https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-
|
|
273
|
+
<script>window.PUBLIC_URL = "https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-21879919050.commit-2e52072";</script>
|
|
274
274
|
</head>
|
|
275
275
|
<body>
|
|
276
276
|
<div id="header" class="container">
|
|
@@ -398,6 +398,6 @@
|
|
|
398
398
|
<!-- ui.js first (NOT module, executes immediately to populate inputs) -->
|
|
399
399
|
<script src="ui.js"></script>
|
|
400
400
|
<!-- main.js after (module, may fail if no WASM build available) -->
|
|
401
|
-
<script type="module" src="https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-
|
|
401
|
+
<script type="module" src="https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-21879919050.commit-2e52072/main.js"></script>
|
|
402
402
|
</body>
|
|
403
403
|
</html>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dcl-regenesislabs/bevy-explorer-web",
|
|
3
|
-
"version": "0.1.0-
|
|
3
|
+
"version": "0.1.0-21879919050.commit-2e52072",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"postinstall": "node ./scripts/prebuild.js"
|
|
6
6
|
},
|
|
@@ -8,6 +8,6 @@
|
|
|
8
8
|
"type": "git",
|
|
9
9
|
"url": "git+https://github.com/decentraland/bevy-explorer.git"
|
|
10
10
|
},
|
|
11
|
-
"homepage": "https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-
|
|
12
|
-
"commit": "
|
|
11
|
+
"homepage": "https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-21879919050.commit-2e52072",
|
|
12
|
+
"commit": "2e520727cf4bf5b367b08c0440f7ab008055c389"
|
|
13
13
|
}
|
package/pkg/manifest.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"wasmSize":
|
|
1
|
+
{"wasmSize":115513245}
|
|
@@ -9,15 +9,41 @@ function error(...args) {
|
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
var audioContext = null;
|
|
12
|
+
var microphonePermission = "denied";
|
|
13
|
+
|
|
14
|
+
export function setupMicrophonePermission() {
|
|
15
|
+
navigator.permissions.query({ name: "microphone" }).then((permissionState) => {
|
|
16
|
+
microphonePermission = permissionState.state;
|
|
17
|
+
|
|
18
|
+
permissionState.onchange = () => {
|
|
19
|
+
microphonePermission = permissionState.state;
|
|
20
|
+
};
|
|
21
|
+
});
|
|
22
|
+
}
|
|
12
23
|
|
|
13
24
|
/**
|
|
14
|
-
*
|
|
25
|
+
* Tests if the browser can accept requests for microphone streams
|
|
15
26
|
* @returns boolean
|
|
16
27
|
*/
|
|
17
28
|
export function is_microphone_available() {
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
29
|
+
return !!(navigator.mediaDevices && navigator.mediaDevices.getUserMedia);
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* Requests current microphone permission state
|
|
34
|
+
* @returns "granted" | "prompt" | "denied"
|
|
35
|
+
*/
|
|
36
|
+
export function microphonePermissionState() {
|
|
37
|
+
return microphonePermission;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* Prompts for microphone permission
|
|
42
|
+
*/
|
|
43
|
+
export function promptMicrophonePermission() {
|
|
44
|
+
if (navigator.mediaDevices && navigator.mediaDevices.getUserMedia) {
|
|
45
|
+
navigator.mediaDevices.getUserMedia({ audio: true });
|
|
46
|
+
}
|
|
21
47
|
}
|
|
22
48
|
|
|
23
49
|
/**
|
package/pkg/webgpu_build.d.ts
CHANGED
|
@@ -315,18 +315,18 @@ export interface InitOutput {
|
|
|
315
315
|
readonly __externref_drop_slice: (a: number, b: number) => void;
|
|
316
316
|
readonly closure15558_externref_shim: (a: number, b: number, c: number, d: any) => void;
|
|
317
317
|
readonly closure41230_externref_shim: (a: number, b: number, c: any) => void;
|
|
318
|
-
readonly
|
|
318
|
+
readonly closure50649_externref_shim: (a: number, b: number, c: any) => void;
|
|
319
319
|
readonly _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______: (a: number, b: number) => void;
|
|
320
320
|
readonly _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______15: (a: number, b: number) => void;
|
|
321
|
-
readonly
|
|
321
|
+
readonly closure54303_externref_shim: (a: number, b: number, c: any) => void;
|
|
322
322
|
readonly _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______17: (a: number, b: number) => void;
|
|
323
323
|
readonly _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______18: (a: number, b: number) => void;
|
|
324
|
-
readonly
|
|
325
|
-
readonly
|
|
324
|
+
readonly closure59375_externref_shim: (a: number, b: number, c: any) => void;
|
|
325
|
+
readonly closure59379_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
326
326
|
readonly _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______21: (a: number, b: number) => void;
|
|
327
|
-
readonly
|
|
328
|
-
readonly
|
|
329
|
-
readonly
|
|
327
|
+
readonly closure119330_externref_shim: (a: number, b: number, c: any) => void;
|
|
328
|
+
readonly closure134584_externref_shim: (a: number, b: number, c: any) => void;
|
|
329
|
+
readonly closure137477_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
330
330
|
readonly __wbindgen_thread_destroy: (a?: number, b?: number, c?: number) => void;
|
|
331
331
|
readonly __wbindgen_start: (a: number) => void;
|
|
332
332
|
}
|
package/pkg/webgpu_build.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { local_audio_track_new, local_participant_identity, local_participant_metadata, local_participant_publish_data, local_participant_publish_track, local_participant_sid, local_participant_unpublish_track, microphonePermissionState, remote_participant_identity, remote_participant_metadata, remote_participant_sid, remote_track_publication_set_subscribed, remote_track_publication_sid, remote_track_publication_track, room_close, room_connect, room_name } from './snippets/comms-53217a45365bb5fa/livekit_web_bindings.js';
|
|
2
2
|
import * as __wbg_star0 from './snippets/comms-53217a45365bb5fa/livekit_web_bindings.js';
|
|
3
3
|
|
|
4
4
|
const lAudioContext = (typeof AudioContext !== 'undefined' ? AudioContext : (typeof webkitAudioContext !== 'undefined' ? webkitAudioContext : undefined));
|
|
@@ -1439,7 +1439,7 @@ function __wbg_adapter_65(arg0, arg1, arg2) {
|
|
|
1439
1439
|
}
|
|
1440
1440
|
|
|
1441
1441
|
function __wbg_adapter_68(arg0, arg1, arg2) {
|
|
1442
|
-
wasm.
|
|
1442
|
+
wasm.closure50649_externref_shim(arg0, arg1, arg2);
|
|
1443
1443
|
}
|
|
1444
1444
|
|
|
1445
1445
|
function __wbg_adapter_71(arg0, arg1) {
|
|
@@ -1451,7 +1451,7 @@ function __wbg_adapter_74(arg0, arg1) {
|
|
|
1451
1451
|
}
|
|
1452
1452
|
|
|
1453
1453
|
function __wbg_adapter_77(arg0, arg1, arg2) {
|
|
1454
|
-
wasm.
|
|
1454
|
+
wasm.closure54303_externref_shim(arg0, arg1, arg2);
|
|
1455
1455
|
}
|
|
1456
1456
|
|
|
1457
1457
|
function __wbg_adapter_84(arg0, arg1) {
|
|
@@ -1463,11 +1463,11 @@ function __wbg_adapter_87(arg0, arg1) {
|
|
|
1463
1463
|
}
|
|
1464
1464
|
|
|
1465
1465
|
function __wbg_adapter_90(arg0, arg1, arg2) {
|
|
1466
|
-
wasm.
|
|
1466
|
+
wasm.closure59375_externref_shim(arg0, arg1, arg2);
|
|
1467
1467
|
}
|
|
1468
1468
|
|
|
1469
1469
|
function __wbg_adapter_93(arg0, arg1, arg2, arg3) {
|
|
1470
|
-
wasm.
|
|
1470
|
+
wasm.closure59379_externref_shim(arg0, arg1, arg2, arg3);
|
|
1471
1471
|
}
|
|
1472
1472
|
|
|
1473
1473
|
function __wbg_adapter_108(arg0, arg1) {
|
|
@@ -1475,15 +1475,15 @@ function __wbg_adapter_108(arg0, arg1) {
|
|
|
1475
1475
|
}
|
|
1476
1476
|
|
|
1477
1477
|
function __wbg_adapter_111(arg0, arg1, arg2) {
|
|
1478
|
-
wasm.
|
|
1478
|
+
wasm.closure119330_externref_shim(arg0, arg1, arg2);
|
|
1479
1479
|
}
|
|
1480
1480
|
|
|
1481
1481
|
function __wbg_adapter_114(arg0, arg1, arg2) {
|
|
1482
|
-
wasm.
|
|
1482
|
+
wasm.closure134584_externref_shim(arg0, arg1, arg2);
|
|
1483
1483
|
}
|
|
1484
1484
|
|
|
1485
|
-
function
|
|
1486
|
-
wasm.
|
|
1485
|
+
function __wbg_adapter_1601(arg0, arg1, arg2, arg3) {
|
|
1486
|
+
wasm.closure137477_externref_shim(arg0, arg1, arg2, arg3);
|
|
1487
1487
|
}
|
|
1488
1488
|
|
|
1489
1489
|
/**
|
|
@@ -2840,10 +2840,6 @@ function __wbg_get_imports() {
|
|
|
2840
2840
|
const ret = Object.is(arg0, arg1);
|
|
2841
2841
|
return ret;
|
|
2842
2842
|
};
|
|
2843
|
-
imports.wbg.__wbg_ismicrophoneavailable_14ddfbe0bae2e955 = function() { return handleError(function () {
|
|
2844
|
-
const ret = is_microphone_available();
|
|
2845
|
-
return ret;
|
|
2846
|
-
}, arguments) };
|
|
2847
2843
|
imports.wbg.__wbg_iterator_9a24c88df860dc65 = function() {
|
|
2848
2844
|
const ret = Symbol.iterator;
|
|
2849
2845
|
return ret;
|
|
@@ -3137,6 +3133,13 @@ function __wbg_get_imports() {
|
|
|
3137
3133
|
const ret = arg0.metaKey;
|
|
3138
3134
|
return ret;
|
|
3139
3135
|
};
|
|
3136
|
+
imports.wbg.__wbg_microphonePermissionState_779cb436655b507c = function(arg0) {
|
|
3137
|
+
const ret = microphonePermissionState();
|
|
3138
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3139
|
+
const len1 = WASM_VECTOR_LEN;
|
|
3140
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3141
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3142
|
+
};
|
|
3140
3143
|
imports.wbg.__wbg_minStorageBufferOffsetAlignment_2c9fb697a4aedb8b = function(arg0) {
|
|
3141
3144
|
const ret = arg0.minStorageBufferOffsetAlignment;
|
|
3142
3145
|
return ret;
|
|
@@ -3187,7 +3190,7 @@ function __wbg_get_imports() {
|
|
|
3187
3190
|
const a = state0.a;
|
|
3188
3191
|
state0.a = 0;
|
|
3189
3192
|
try {
|
|
3190
|
-
return
|
|
3193
|
+
return __wbg_adapter_1601(a, state0.b, arg0, arg1);
|
|
3191
3194
|
} finally {
|
|
3192
3195
|
state0.a = a;
|
|
3193
3196
|
}
|
|
@@ -4788,92 +4791,92 @@ function __wbg_get_imports() {
|
|
|
4788
4791
|
const ret = false;
|
|
4789
4792
|
return ret;
|
|
4790
4793
|
};
|
|
4791
|
-
imports.wbg.
|
|
4792
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4794
|
+
imports.wbg.__wbindgen_closure_wrapper150860 = function(arg0, arg1, arg2) {
|
|
4795
|
+
const ret = makeMutClosure(arg0, arg1, 119331, __wbg_adapter_111);
|
|
4793
4796
|
return ret;
|
|
4794
4797
|
};
|
|
4795
|
-
imports.wbg.
|
|
4796
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4798
|
+
imports.wbg.__wbindgen_closure_wrapper171652 = function(arg0, arg1, arg2) {
|
|
4799
|
+
const ret = makeMutClosure(arg0, arg1, 134585, __wbg_adapter_114);
|
|
4797
4800
|
return ret;
|
|
4798
4801
|
};
|
|
4799
|
-
imports.wbg.
|
|
4800
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4802
|
+
imports.wbg.__wbindgen_closure_wrapper171654 = function(arg0, arg1, arg2) {
|
|
4803
|
+
const ret = makeMutClosure(arg0, arg1, 134585, __wbg_adapter_114);
|
|
4801
4804
|
return ret;
|
|
4802
4805
|
};
|
|
4803
|
-
imports.wbg.
|
|
4806
|
+
imports.wbg.__wbindgen_closure_wrapper19962 = function(arg0, arg1, arg2) {
|
|
4804
4807
|
const ret = makeMutClosure(arg0, arg1, 15559, __wbg_adapter_62);
|
|
4805
4808
|
return ret;
|
|
4806
4809
|
};
|
|
4807
|
-
imports.wbg.
|
|
4810
|
+
imports.wbg.__wbindgen_closure_wrapper53969 = function(arg0, arg1, arg2) {
|
|
4808
4811
|
const ret = makeClosure(arg0, arg1, 41231, __wbg_adapter_65);
|
|
4809
4812
|
return ret;
|
|
4810
4813
|
};
|
|
4811
|
-
imports.wbg.
|
|
4812
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4814
|
+
imports.wbg.__wbindgen_closure_wrapper66778 = function(arg0, arg1, arg2) {
|
|
4815
|
+
const ret = makeMutClosure(arg0, arg1, 50650, __wbg_adapter_68);
|
|
4813
4816
|
return ret;
|
|
4814
4817
|
};
|
|
4815
|
-
imports.wbg.
|
|
4816
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4818
|
+
imports.wbg.__wbindgen_closure_wrapper66917 = function(arg0, arg1, arg2) {
|
|
4819
|
+
const ret = makeMutClosure(arg0, arg1, 50753, __wbg_adapter_71);
|
|
4817
4820
|
return ret;
|
|
4818
4821
|
};
|
|
4819
|
-
imports.wbg.
|
|
4820
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4822
|
+
imports.wbg.__wbindgen_closure_wrapper70741 = function(arg0, arg1, arg2) {
|
|
4823
|
+
const ret = makeMutClosure(arg0, arg1, 53690, __wbg_adapter_74);
|
|
4821
4824
|
return ret;
|
|
4822
4825
|
};
|
|
4823
|
-
imports.wbg.
|
|
4824
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4826
|
+
imports.wbg.__wbindgen_closure_wrapper71939 = function(arg0, arg1, arg2) {
|
|
4827
|
+
const ret = makeMutClosure(arg0, arg1, 54304, __wbg_adapter_77);
|
|
4825
4828
|
return ret;
|
|
4826
4829
|
};
|
|
4827
|
-
imports.wbg.
|
|
4828
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4830
|
+
imports.wbg.__wbindgen_closure_wrapper71941 = function(arg0, arg1, arg2) {
|
|
4831
|
+
const ret = makeMutClosure(arg0, arg1, 54304, __wbg_adapter_77);
|
|
4829
4832
|
return ret;
|
|
4830
4833
|
};
|
|
4831
|
-
imports.wbg.
|
|
4832
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4834
|
+
imports.wbg.__wbindgen_closure_wrapper71943 = function(arg0, arg1, arg2) {
|
|
4835
|
+
const ret = makeMutClosure(arg0, arg1, 54304, __wbg_adapter_77);
|
|
4833
4836
|
return ret;
|
|
4834
4837
|
};
|
|
4835
|
-
imports.wbg.
|
|
4836
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4838
|
+
imports.wbg.__wbindgen_closure_wrapper76508 = function(arg0, arg1, arg2) {
|
|
4839
|
+
const ret = makeMutClosure(arg0, arg1, 57538, __wbg_adapter_84);
|
|
4837
4840
|
return ret;
|
|
4838
4841
|
};
|
|
4839
|
-
imports.wbg.
|
|
4840
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4842
|
+
imports.wbg.__wbindgen_closure_wrapper77543 = function(arg0, arg1, arg2) {
|
|
4843
|
+
const ret = makeMutClosure(arg0, arg1, 57919, __wbg_adapter_87);
|
|
4841
4844
|
return ret;
|
|
4842
4845
|
};
|
|
4843
|
-
imports.wbg.
|
|
4844
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4846
|
+
imports.wbg.__wbindgen_closure_wrapper79688 = function(arg0, arg1, arg2) {
|
|
4847
|
+
const ret = makeMutClosure(arg0, arg1, 59376, __wbg_adapter_90);
|
|
4845
4848
|
return ret;
|
|
4846
4849
|
};
|
|
4847
|
-
imports.wbg.
|
|
4848
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4850
|
+
imports.wbg.__wbindgen_closure_wrapper79690 = function(arg0, arg1, arg2) {
|
|
4851
|
+
const ret = makeMutClosure(arg0, arg1, 59376, __wbg_adapter_93);
|
|
4849
4852
|
return ret;
|
|
4850
4853
|
};
|
|
4851
|
-
imports.wbg.
|
|
4852
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4854
|
+
imports.wbg.__wbindgen_closure_wrapper79692 = function(arg0, arg1, arg2) {
|
|
4855
|
+
const ret = makeMutClosure(arg0, arg1, 59376, __wbg_adapter_90);
|
|
4853
4856
|
return ret;
|
|
4854
4857
|
};
|
|
4855
|
-
imports.wbg.
|
|
4856
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4858
|
+
imports.wbg.__wbindgen_closure_wrapper79694 = function(arg0, arg1, arg2) {
|
|
4859
|
+
const ret = makeMutClosure(arg0, arg1, 59376, __wbg_adapter_90);
|
|
4857
4860
|
return ret;
|
|
4858
4861
|
};
|
|
4859
|
-
imports.wbg.
|
|
4860
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4862
|
+
imports.wbg.__wbindgen_closure_wrapper79696 = function(arg0, arg1, arg2) {
|
|
4863
|
+
const ret = makeMutClosure(arg0, arg1, 59376, __wbg_adapter_90);
|
|
4861
4864
|
return ret;
|
|
4862
4865
|
};
|
|
4863
|
-
imports.wbg.
|
|
4864
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4866
|
+
imports.wbg.__wbindgen_closure_wrapper79698 = function(arg0, arg1, arg2) {
|
|
4867
|
+
const ret = makeMutClosure(arg0, arg1, 59376, __wbg_adapter_90);
|
|
4865
4868
|
return ret;
|
|
4866
4869
|
};
|
|
4867
|
-
imports.wbg.
|
|
4868
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4870
|
+
imports.wbg.__wbindgen_closure_wrapper79700 = function(arg0, arg1, arg2) {
|
|
4871
|
+
const ret = makeMutClosure(arg0, arg1, 59376, __wbg_adapter_90);
|
|
4869
4872
|
return ret;
|
|
4870
4873
|
};
|
|
4871
|
-
imports.wbg.
|
|
4872
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4874
|
+
imports.wbg.__wbindgen_closure_wrapper79702 = function(arg0, arg1, arg2) {
|
|
4875
|
+
const ret = makeMutClosure(arg0, arg1, 59376, __wbg_adapter_90);
|
|
4873
4876
|
return ret;
|
|
4874
4877
|
};
|
|
4875
|
-
imports.wbg.
|
|
4876
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4878
|
+
imports.wbg.__wbindgen_closure_wrapper79704 = function(arg0, arg1, arg2) {
|
|
4879
|
+
const ret = makeMutClosure(arg0, arg1, 59376, __wbg_adapter_108);
|
|
4877
4880
|
return ret;
|
|
4878
4881
|
};
|
|
4879
4882
|
imports.wbg.__wbindgen_debug_string = function(arg0, arg1) {
|
package/pkg/webgpu_build_bg.wasm
CHANGED
|
Binary file
|
|
@@ -150,17 +150,17 @@ export const __externref_table_dealloc: (a: number) => void;
|
|
|
150
150
|
export const __externref_drop_slice: (a: number, b: number) => void;
|
|
151
151
|
export const closure15558_externref_shim: (a: number, b: number, c: number, d: any) => void;
|
|
152
152
|
export const closure41230_externref_shim: (a: number, b: number, c: any) => void;
|
|
153
|
-
export const
|
|
153
|
+
export const closure50649_externref_shim: (a: number, b: number, c: any) => void;
|
|
154
154
|
export const _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______: (a: number, b: number) => void;
|
|
155
155
|
export const _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______15: (a: number, b: number) => void;
|
|
156
|
-
export const
|
|
156
|
+
export const closure54303_externref_shim: (a: number, b: number, c: any) => void;
|
|
157
157
|
export const _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______17: (a: number, b: number) => void;
|
|
158
158
|
export const _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______18: (a: number, b: number) => void;
|
|
159
|
-
export const
|
|
160
|
-
export const
|
|
159
|
+
export const closure59375_externref_shim: (a: number, b: number, c: any) => void;
|
|
160
|
+
export const closure59379_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
161
161
|
export const _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______21: (a: number, b: number) => void;
|
|
162
|
-
export const
|
|
163
|
-
export const
|
|
164
|
-
export const
|
|
162
|
+
export const closure119330_externref_shim: (a: number, b: number, c: any) => void;
|
|
163
|
+
export const closure134584_externref_shim: (a: number, b: number, c: any) => void;
|
|
164
|
+
export const closure137477_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
165
165
|
export const __wbindgen_thread_destroy: (a?: number, b?: number, c?: number) => void;
|
|
166
166
|
export const __wbindgen_start: (a: number) => void;
|