@dcl-regenesislabs/bevy-explorer-web 0.1.0-23649334585.commit-b058af2 → 0.1.0-23900168091.commit-983da7a
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/engine.js +16 -1
- package/index.html +1 -1
- package/package.json +3 -3
- package/pkg/manifest.json +1 -1
- package/pkg/webgpu_build.d.ts +8 -5
- package/pkg/webgpu_build.js +49 -36
- package/pkg/webgpu_build_bg.wasm +0 -0
- package/pkg/webgpu_build_bg.wasm.d.ts +5 -4
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-23900168091.commit-983da7a"
|
package/engine.js
CHANGED
|
@@ -248,6 +248,21 @@ export function start() {
|
|
|
248
248
|
const positionValue = positionInput.value;
|
|
249
249
|
const systemScene = systemSceneInput.value;
|
|
250
250
|
const preview = previewInput.checked;
|
|
251
|
+
|
|
252
|
+
// Build params from URL, overriding with form field values
|
|
253
|
+
const urlParams = new URLSearchParams(window.location.search);
|
|
254
|
+
urlParams.set("realm", realmValue);
|
|
255
|
+
if (positionValue) {
|
|
256
|
+
urlParams.set("position", positionValue);
|
|
257
|
+
}
|
|
258
|
+
urlParams.set("systemScene", systemScene);
|
|
259
|
+
urlParams.delete("initialRealm");
|
|
260
|
+
if (preview) {
|
|
261
|
+
urlParams.set("preview", "true");
|
|
262
|
+
} else {
|
|
263
|
+
urlParams.delete("preview");
|
|
264
|
+
}
|
|
265
|
+
const params = urlParams.toString();
|
|
251
266
|
console.log(
|
|
252
267
|
`[Main JS] "Launch" button clicked. Initial Realm: "${realmValue}", Position (coords): "${positionValue}", System Scene: "${systemScene}"`
|
|
253
268
|
);
|
|
@@ -308,7 +323,7 @@ export function start() {
|
|
|
308
323
|
delete window._buildEngineApi;
|
|
309
324
|
};
|
|
310
325
|
|
|
311
|
-
engine_run(platform, realmValue, positionValue, systemScene, true, preview, 1e7);
|
|
326
|
+
engine_run(platform, realmValue, positionValue, systemScene, true, preview, 1e7, params);
|
|
312
327
|
window.engine_console_command = engine_console_command;
|
|
313
328
|
window.loadSceneUtils = () => {
|
|
314
329
|
return new Promise((resolve, reject) => {
|
package/index.html
CHANGED
|
@@ -411,7 +411,7 @@
|
|
|
411
411
|
}
|
|
412
412
|
</style>
|
|
413
413
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
|
|
414
|
-
<script>window.PUBLIC_URL = "https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-
|
|
414
|
+
<script>window.PUBLIC_URL = "https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-23900168091.commit-983da7a";</script>
|
|
415
415
|
</head>
|
|
416
416
|
<body>
|
|
417
417
|
<div id="header" class="container">
|
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-23900168091.commit-983da7a",
|
|
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-23900168091.commit-983da7a",
|
|
12
|
+
"commit": "983da7af0aee4bf55f2fe740cc6cc9cde37c0136"
|
|
13
13
|
}
|
package/pkg/manifest.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"wasmSize":
|
|
1
|
+
{"wasmSize":118276949}
|
package/pkg/webgpu_build.d.ts
CHANGED
|
@@ -89,7 +89,7 @@ export function engine_console_command(command_line: string): Promise<any>;
|
|
|
89
89
|
|
|
90
90
|
export function engine_init(): Promise<any>;
|
|
91
91
|
|
|
92
|
-
export function engine_run(platform: string, realm: string, location: string, system_scene: string, with_thread_loader: boolean, preview: boolean, rabpf: number): void;
|
|
92
|
+
export function engine_run(platform: string, realm: string, location: string, system_scene: string, with_thread_loader: boolean, preview: boolean, rabpf: number, params: string): void;
|
|
93
93
|
|
|
94
94
|
export function gpu_cache_hash(): string;
|
|
95
95
|
|
|
@@ -148,6 +148,8 @@ export function op_get_hover_stream(state: WorkerContext): Promise<number>;
|
|
|
148
148
|
|
|
149
149
|
export function op_get_mic_state(state: WorkerContext): Promise<any>;
|
|
150
150
|
|
|
151
|
+
export function op_get_params(state: WorkerContext): Promise<any>;
|
|
152
|
+
|
|
151
153
|
export function op_get_permanent_permissions(state: WorkerContext, level: string, value?: string | null): Promise<Array<any>>;
|
|
152
154
|
|
|
153
155
|
export function op_get_permission_request_stream(state: WorkerContext): Promise<number>;
|
|
@@ -301,7 +303,7 @@ export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembl
|
|
|
301
303
|
export interface InitOutput {
|
|
302
304
|
readonly engine_console_command: (a: number, b: number) => any;
|
|
303
305
|
readonly engine_init: () => any;
|
|
304
|
-
readonly engine_run: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number, j: number, k: number) => void;
|
|
306
|
+
readonly engine_run: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number, j: number, k: number, l: number, m: number) => void;
|
|
305
307
|
readonly init_asset_load_thread: () => void;
|
|
306
308
|
readonly __wbg_audiocaptureoptions_free: (a: number, b: number) => void;
|
|
307
309
|
readonly __wbg_datapublishoptions_free: (a: number, b: number) => void;
|
|
@@ -350,6 +352,7 @@ export interface InitOutput {
|
|
|
350
352
|
readonly op_get_home_scene: (a: number) => any;
|
|
351
353
|
readonly op_get_hover_stream: (a: number) => any;
|
|
352
354
|
readonly op_get_mic_state: (a: number) => any;
|
|
355
|
+
readonly op_get_params: (a: number) => any;
|
|
353
356
|
readonly op_get_permanent_permissions: (a: number, b: number, c: number, d: number, e: number) => any;
|
|
354
357
|
readonly op_get_permission_request_stream: (a: number) => any;
|
|
355
358
|
readonly op_get_permission_types: (a: number) => any;
|
|
@@ -431,7 +434,7 @@ export interface InitOutput {
|
|
|
431
434
|
readonly wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__wasm_bindgen_6c0c3bb491d8811b___JsValue____Output________3_: (a: number, b: number) => void;
|
|
432
435
|
readonly wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__wasm_bindgen_6c0c3bb491d8811b___JsValue____Output___core_f2710c7f87f75ba1___result__Result_____wasm_bindgen_6c0c3bb491d8811b___JsError___: (a: number, b: number) => void;
|
|
433
436
|
readonly wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__f64__wasm_bindgen_6c0c3bb491d8811b___JsValue___Output_______: (a: number, b: number) => void;
|
|
434
|
-
readonly
|
|
437
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__Fn__comms_da1192e2005242d2___livekit__web__room_event__RoomEvent____Output_______: (a: number, b: number) => void;
|
|
435
438
|
readonly wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__web_sys_72aa5c11aad59394___features__gen_CloseEvent__CloseEvent____Output_______: (a: number, b: number) => void;
|
|
436
439
|
readonly wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output_______: (a: number, b: number) => void;
|
|
437
440
|
readonly wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__wasm_bindgen_6c0c3bb491d8811b___JsValue____Output_______: (a: number, b: number) => void;
|
|
@@ -443,14 +446,14 @@ export interface InitOutput {
|
|
|
443
446
|
readonly wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__core_f2710c7f87f75ba1___option__Option_web_sys_72aa5c11aad59394___features__gen_Blob__Blob_____Output_______: (a: number, b: number) => void;
|
|
444
447
|
readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___f64__wasm_bindgen_6c0c3bb491d8811b___JsValue______true_: (a: number, b: number, c: number, d: any) => void;
|
|
445
448
|
readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue__core_f2710c7f87f75ba1___result__Result_____wasm_bindgen_6c0c3bb491d8811b___JsError___true_: (a: number, b: number, c: any) => [number, number];
|
|
446
|
-
readonly
|
|
449
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___comms_da1192e2005242d2___livekit__web__local_audio_track__LocalAudioTrack__core_f2710c7f87f75ba1___result__Result_____wasm_bindgen_6c0c3bb491d8811b___JsError___true_: (a: number, b: number, c: any) => [number, number];
|
|
447
450
|
readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___js_sys_67c12748f230903f___Array__web_sys_72aa5c11aad59394___features__gen_ResizeObserver__ResizeObserver______true_: (a: number, b: number, c: any, d: any) => void;
|
|
448
451
|
readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___js_sys_67c12748f230903f___Function_fn_wasm_bindgen_6c0c3bb491d8811b___JsValue_____wasm_bindgen_6c0c3bb491d8811b___sys__Undefined___js_sys_67c12748f230903f___Function_fn_wasm_bindgen_6c0c3bb491d8811b___JsValue_____wasm_bindgen_6c0c3bb491d8811b___sys__Undefined_______true_: (a: number, b: number, c: any, d: any) => void;
|
|
449
452
|
readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__3_: (a: number, b: number, c: any) => void;
|
|
450
453
|
readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__3__1: (a: number, b: number, c: any) => void;
|
|
451
454
|
readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__4_: (a: number, b: number, c: any) => void;
|
|
452
455
|
readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___web_sys_72aa5c11aad59394___features__gen_MessageEvent__MessageEvent______true_: (a: number, b: number, c: any) => void;
|
|
453
|
-
readonly
|
|
456
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___comms_da1192e2005242d2___livekit__web__room_event__RoomEvent______true_: (a: number, b: number, c: any) => void;
|
|
454
457
|
readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___web_sys_72aa5c11aad59394___features__gen_CloseEvent__CloseEvent______true_: (a: number, b: number, c: any) => void;
|
|
455
458
|
readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true_: (a: number, b: number, c: any) => void;
|
|
456
459
|
readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___web_sys_72aa5c11aad59394___features__gen_InputEvent__InputEvent______true_: (a: number, b: number, c: any) => void;
|
package/pkg/webgpu_build.js
CHANGED
|
@@ -305,8 +305,9 @@ export function engine_init() {
|
|
|
305
305
|
* @param {boolean} with_thread_loader
|
|
306
306
|
* @param {boolean} preview
|
|
307
307
|
* @param {number} rabpf
|
|
308
|
+
* @param {string} params
|
|
308
309
|
*/
|
|
309
|
-
export function engine_run(platform, realm, location, system_scene, with_thread_loader, preview, rabpf) {
|
|
310
|
+
export function engine_run(platform, realm, location, system_scene, with_thread_loader, preview, rabpf, params) {
|
|
310
311
|
const ptr0 = passStringToWasm0(platform, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
311
312
|
const len0 = WASM_VECTOR_LEN;
|
|
312
313
|
const ptr1 = passStringToWasm0(realm, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
@@ -315,7 +316,9 @@ export function engine_run(platform, realm, location, system_scene, with_thread_
|
|
|
315
316
|
const len2 = WASM_VECTOR_LEN;
|
|
316
317
|
const ptr3 = passStringToWasm0(system_scene, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
317
318
|
const len3 = WASM_VECTOR_LEN;
|
|
318
|
-
|
|
319
|
+
const ptr4 = passStringToWasm0(params, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
320
|
+
const len4 = WASM_VECTOR_LEN;
|
|
321
|
+
wasm.engine_run(ptr0, len0, ptr1, len1, ptr2, len2, ptr3, len3, with_thread_loader, preview, rabpf, ptr4, len4);
|
|
319
322
|
}
|
|
320
323
|
|
|
321
324
|
/**
|
|
@@ -614,6 +617,16 @@ export function op_get_mic_state(state) {
|
|
|
614
617
|
return ret;
|
|
615
618
|
}
|
|
616
619
|
|
|
620
|
+
/**
|
|
621
|
+
* @param {WorkerContext} state
|
|
622
|
+
* @returns {Promise<any>}
|
|
623
|
+
*/
|
|
624
|
+
export function op_get_params(state) {
|
|
625
|
+
_assertClass(state, WorkerContext);
|
|
626
|
+
const ret = wasm.op_get_params(state.__wbg_ptr);
|
|
627
|
+
return ret;
|
|
628
|
+
}
|
|
629
|
+
|
|
617
630
|
/**
|
|
618
631
|
* @param {WorkerContext} state
|
|
619
632
|
* @param {string} level
|
|
@@ -4406,142 +4419,142 @@ function __wbg_get_imports(memory) {
|
|
|
4406
4419
|
return ret;
|
|
4407
4420
|
},
|
|
4408
4421
|
__wbindgen_cast_0000000000000001: function(arg0, arg1) {
|
|
4409
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4422
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 124609, function: Function { arguments: [Externref], shim_idx: 124610, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4410
4423
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__wasm_bindgen_6c0c3bb491d8811b___JsValue____Output________2_, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__3_);
|
|
4411
4424
|
return ret;
|
|
4412
4425
|
},
|
|
4413
4426
|
__wbindgen_cast_0000000000000002: function(arg0, arg1) {
|
|
4414
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4427
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 124609, function: Function { arguments: [NamedExternref("GPUUncapturedErrorEvent")], shim_idx: 124610, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4415
4428
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__wasm_bindgen_6c0c3bb491d8811b___JsValue____Output________2_, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__3__1);
|
|
4416
4429
|
return ret;
|
|
4417
4430
|
},
|
|
4418
4431
|
__wbindgen_cast_0000000000000003: function(arg0, arg1) {
|
|
4419
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4432
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 131880, function: Function { arguments: [Externref], shim_idx: 131881, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4420
4433
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__wasm_bindgen_6c0c3bb491d8811b___JsValue____Output________3_, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__4_);
|
|
4421
4434
|
return ret;
|
|
4422
4435
|
},
|
|
4423
4436
|
__wbindgen_cast_0000000000000004: function(arg0, arg1) {
|
|
4424
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4437
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 139934, function: Function { arguments: [Externref], shim_idx: 139935, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
4425
4438
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__wasm_bindgen_6c0c3bb491d8811b___JsValue____Output___core_f2710c7f87f75ba1___result__Result_____wasm_bindgen_6c0c3bb491d8811b___JsError___, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue__core_f2710c7f87f75ba1___result__Result_____wasm_bindgen_6c0c3bb491d8811b___JsError___true_);
|
|
4426
4439
|
return ret;
|
|
4427
4440
|
},
|
|
4428
4441
|
__wbindgen_cast_0000000000000005: function(arg0, arg1) {
|
|
4429
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4442
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 139934, function: Function { arguments: [NamedExternref("MessageEvent")], shim_idx: 139937, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4430
4443
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__wasm_bindgen_6c0c3bb491d8811b___JsValue____Output___core_f2710c7f87f75ba1___result__Result_____wasm_bindgen_6c0c3bb491d8811b___JsError___, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___web_sys_72aa5c11aad59394___features__gen_MessageEvent__MessageEvent______true_);
|
|
4431
4444
|
return ret;
|
|
4432
4445
|
},
|
|
4433
4446
|
__wbindgen_cast_0000000000000006: function(arg0, arg1) {
|
|
4434
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4447
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 18008, function: Function { arguments: [F64, Externref], shim_idx: 18009, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4435
4448
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__f64__wasm_bindgen_6c0c3bb491d8811b___JsValue___Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___f64__wasm_bindgen_6c0c3bb491d8811b___JsValue______true_);
|
|
4436
4449
|
return ret;
|
|
4437
4450
|
},
|
|
4438
4451
|
__wbindgen_cast_0000000000000007: function(arg0, arg1) {
|
|
4439
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4440
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
4452
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 45802, function: Function { arguments: [Externref], shim_idx: 45803, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
4453
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__Fn__comms_da1192e2005242d2___livekit__web__room_event__RoomEvent____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___comms_da1192e2005242d2___livekit__web__local_audio_track__LocalAudioTrack__core_f2710c7f87f75ba1___result__Result_____wasm_bindgen_6c0c3bb491d8811b___JsError___true_);
|
|
4441
4454
|
return ret;
|
|
4442
4455
|
},
|
|
4443
4456
|
__wbindgen_cast_0000000000000008: function(arg0, arg1) {
|
|
4444
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4445
|
-
const ret = makeClosure(arg0, arg1, wasm.
|
|
4457
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 45802, function: Function { arguments: [Externref], shim_idx: 45805, ret: Unit, inner_ret: Some(Unit) }, mutable: false }) -> Externref`.
|
|
4458
|
+
const ret = makeClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__Fn__comms_da1192e2005242d2___livekit__web__room_event__RoomEvent____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___comms_da1192e2005242d2___livekit__web__room_event__RoomEvent______true_);
|
|
4446
4459
|
return ret;
|
|
4447
4460
|
},
|
|
4448
4461
|
__wbindgen_cast_0000000000000009: function(arg0, arg1) {
|
|
4449
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4462
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 55476, function: Function { arguments: [NamedExternref("CloseEvent")], shim_idx: 55477, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4450
4463
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__web_sys_72aa5c11aad59394___features__gen_CloseEvent__CloseEvent____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___web_sys_72aa5c11aad59394___features__gen_CloseEvent__CloseEvent______true_);
|
|
4451
4464
|
return ret;
|
|
4452
4465
|
},
|
|
4453
4466
|
__wbindgen_cast_000000000000000a: function(arg0, arg1) {
|
|
4454
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4467
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 55581, function: Function { arguments: [], shim_idx: 55582, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4455
4468
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke_______true_);
|
|
4456
4469
|
return ret;
|
|
4457
4470
|
},
|
|
4458
4471
|
__wbindgen_cast_000000000000000b: function(arg0, arg1) {
|
|
4459
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4472
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 55584, function: Function { arguments: [Externref], shim_idx: 55585, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4460
4473
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__wasm_bindgen_6c0c3bb491d8811b___JsValue____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true_);
|
|
4461
4474
|
return ret;
|
|
4462
4475
|
},
|
|
4463
4476
|
__wbindgen_cast_000000000000000c: function(arg0, arg1) {
|
|
4464
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4477
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 58871, function: Function { arguments: [], shim_idx: 58872, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4465
4478
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output________1_, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke_______true__1_);
|
|
4466
4479
|
return ret;
|
|
4467
4480
|
},
|
|
4468
4481
|
__wbindgen_cast_000000000000000d: function(arg0, arg1) {
|
|
4469
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4482
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 59479, function: Function { arguments: [NamedExternref("CompositionEvent")], shim_idx: 59480, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4470
4483
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__web_sys_72aa5c11aad59394___features__gen_InputEvent__InputEvent____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___web_sys_72aa5c11aad59394___features__gen_InputEvent__InputEvent______true_);
|
|
4471
4484
|
return ret;
|
|
4472
4485
|
},
|
|
4473
4486
|
__wbindgen_cast_000000000000000e: function(arg0, arg1) {
|
|
4474
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4487
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 59479, function: Function { arguments: [NamedExternref("InputEvent")], shim_idx: 59480, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4475
4488
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__web_sys_72aa5c11aad59394___features__gen_InputEvent__InputEvent____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___web_sys_72aa5c11aad59394___features__gen_InputEvent__InputEvent______true__13);
|
|
4476
4489
|
return ret;
|
|
4477
4490
|
},
|
|
4478
4491
|
__wbindgen_cast_000000000000000f: function(arg0, arg1) {
|
|
4479
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4492
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 59479, function: Function { arguments: [NamedExternref("TouchEvent")], shim_idx: 59480, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4480
4493
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__web_sys_72aa5c11aad59394___features__gen_InputEvent__InputEvent____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___web_sys_72aa5c11aad59394___features__gen_InputEvent__InputEvent______true__14);
|
|
4481
4494
|
return ret;
|
|
4482
4495
|
},
|
|
4483
4496
|
__wbindgen_cast_0000000000000010: function(arg0, arg1) {
|
|
4484
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4497
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 62731, function: Function { arguments: [], shim_idx: 62732, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4485
4498
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output________2_, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke_______true__2_);
|
|
4486
4499
|
return ret;
|
|
4487
4500
|
},
|
|
4488
4501
|
__wbindgen_cast_0000000000000011: function(arg0, arg1) {
|
|
4489
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4502
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 63105, function: Function { arguments: [], shim_idx: 63106, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4490
4503
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output________3_, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke_______true__3_);
|
|
4491
4504
|
return ret;
|
|
4492
4505
|
},
|
|
4493
4506
|
__wbindgen_cast_0000000000000012: function(arg0, arg1) {
|
|
4494
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4507
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 63141, function: Function { arguments: [Externref], shim_idx: 63142, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4495
4508
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__wasm_bindgen_6c0c3bb491d8811b___JsValue____Output________1_, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__1_);
|
|
4496
4509
|
return ret;
|
|
4497
4510
|
},
|
|
4498
4511
|
__wbindgen_cast_0000000000000013: function(arg0, arg1) {
|
|
4499
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4512
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 64577, function: Function { arguments: [Externref], shim_idx: 64578, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4500
4513
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__core_f2710c7f87f75ba1___option__Option_web_sys_72aa5c11aad59394___features__gen_Blob__Blob_____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__2_);
|
|
4501
4514
|
return ret;
|
|
4502
4515
|
},
|
|
4503
4516
|
__wbindgen_cast_0000000000000014: function(arg0, arg1) {
|
|
4504
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4517
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 64577, function: Function { arguments: [NamedExternref("Array<any>"), NamedExternref("ResizeObserver")], shim_idx: 64585, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4505
4518
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__core_f2710c7f87f75ba1___option__Option_web_sys_72aa5c11aad59394___features__gen_Blob__Blob_____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___js_sys_67c12748f230903f___Array__web_sys_72aa5c11aad59394___features__gen_ResizeObserver__ResizeObserver______true_);
|
|
4506
4519
|
return ret;
|
|
4507
4520
|
},
|
|
4508
4521
|
__wbindgen_cast_0000000000000015: function(arg0, arg1) {
|
|
4509
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4522
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 64577, function: Function { arguments: [NamedExternref("Array<any>")], shim_idx: 64578, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4510
4523
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__core_f2710c7f87f75ba1___option__Option_web_sys_72aa5c11aad59394___features__gen_Blob__Blob_____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__2__20);
|
|
4511
4524
|
return ret;
|
|
4512
4525
|
},
|
|
4513
4526
|
__wbindgen_cast_0000000000000016: function(arg0, arg1) {
|
|
4514
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4527
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 64577, function: Function { arguments: [NamedExternref("Event")], shim_idx: 64578, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4515
4528
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__core_f2710c7f87f75ba1___option__Option_web_sys_72aa5c11aad59394___features__gen_Blob__Blob_____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__2__21);
|
|
4516
4529
|
return ret;
|
|
4517
4530
|
},
|
|
4518
4531
|
__wbindgen_cast_0000000000000017: function(arg0, arg1) {
|
|
4519
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4532
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 64577, function: Function { arguments: [NamedExternref("FocusEvent")], shim_idx: 64578, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4520
4533
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__core_f2710c7f87f75ba1___option__Option_web_sys_72aa5c11aad59394___features__gen_Blob__Blob_____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__2__22);
|
|
4521
4534
|
return ret;
|
|
4522
4535
|
},
|
|
4523
4536
|
__wbindgen_cast_0000000000000018: function(arg0, arg1) {
|
|
4524
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4537
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 64577, function: Function { arguments: [NamedExternref("KeyboardEvent")], shim_idx: 64578, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4525
4538
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__core_f2710c7f87f75ba1___option__Option_web_sys_72aa5c11aad59394___features__gen_Blob__Blob_____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__2__23);
|
|
4526
4539
|
return ret;
|
|
4527
4540
|
},
|
|
4528
4541
|
__wbindgen_cast_0000000000000019: function(arg0, arg1) {
|
|
4529
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4542
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 64577, function: Function { arguments: [NamedExternref("PageTransitionEvent")], shim_idx: 64578, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4530
4543
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__core_f2710c7f87f75ba1___option__Option_web_sys_72aa5c11aad59394___features__gen_Blob__Blob_____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__2__24);
|
|
4531
4544
|
return ret;
|
|
4532
4545
|
},
|
|
4533
4546
|
__wbindgen_cast_000000000000001a: function(arg0, arg1) {
|
|
4534
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4547
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 64577, function: Function { arguments: [NamedExternref("PointerEvent")], shim_idx: 64578, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4535
4548
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__core_f2710c7f87f75ba1___option__Option_web_sys_72aa5c11aad59394___features__gen_Blob__Blob_____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__2__25);
|
|
4536
4549
|
return ret;
|
|
4537
4550
|
},
|
|
4538
4551
|
__wbindgen_cast_000000000000001b: function(arg0, arg1) {
|
|
4539
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4552
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 64577, function: Function { arguments: [NamedExternref("WheelEvent")], shim_idx: 64578, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4540
4553
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__core_f2710c7f87f75ba1___option__Option_web_sys_72aa5c11aad59394___features__gen_Blob__Blob_____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__2__26);
|
|
4541
4554
|
return ret;
|
|
4542
4555
|
},
|
|
4543
4556
|
__wbindgen_cast_000000000000001c: function(arg0, arg1) {
|
|
4544
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4557
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 64577, function: Function { arguments: [], shim_idx: 64593, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4545
4558
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__core_f2710c7f87f75ba1___option__Option_web_sys_72aa5c11aad59394___features__gen_Blob__Blob_____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke_______true__4_);
|
|
4546
4559
|
return ret;
|
|
4547
4560
|
},
|
|
@@ -4949,8 +4962,8 @@ function wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___web_sys_
|
|
|
4949
4962
|
wasm.wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___web_sys_72aa5c11aad59394___features__gen_MessageEvent__MessageEvent______true_(arg0, arg1, arg2);
|
|
4950
4963
|
}
|
|
4951
4964
|
|
|
4952
|
-
function
|
|
4953
|
-
wasm.
|
|
4965
|
+
function wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___comms_da1192e2005242d2___livekit__web__room_event__RoomEvent______true_(arg0, arg1, arg2) {
|
|
4966
|
+
wasm.wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___comms_da1192e2005242d2___livekit__web__room_event__RoomEvent______true_(arg0, arg1, arg2);
|
|
4954
4967
|
}
|
|
4955
4968
|
|
|
4956
4969
|
function wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___web_sys_72aa5c11aad59394___features__gen_CloseEvent__CloseEvent______true_(arg0, arg1, arg2) {
|
|
@@ -5016,8 +5029,8 @@ function wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bin
|
|
|
5016
5029
|
}
|
|
5017
5030
|
}
|
|
5018
5031
|
|
|
5019
|
-
function
|
|
5020
|
-
const ret = wasm.
|
|
5032
|
+
function wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___comms_da1192e2005242d2___livekit__web__local_audio_track__LocalAudioTrack__core_f2710c7f87f75ba1___result__Result_____wasm_bindgen_6c0c3bb491d8811b___JsError___true_(arg0, arg1, arg2) {
|
|
5033
|
+
const ret = wasm.wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___comms_da1192e2005242d2___livekit__web__local_audio_track__LocalAudioTrack__core_f2710c7f87f75ba1___result__Result_____wasm_bindgen_6c0c3bb491d8811b___JsError___true_(arg0, arg1, arg2);
|
|
5021
5034
|
if (ret[1]) {
|
|
5022
5035
|
throw takeFromExternrefTable0(ret[0]);
|
|
5023
5036
|
}
|
package/pkg/webgpu_build_bg.wasm
CHANGED
|
Binary file
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
export const engine_console_command: (a: number, b: number) => any;
|
|
4
4
|
export const engine_init: () => any;
|
|
5
|
-
export const engine_run: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number, j: number, k: number) => void;
|
|
5
|
+
export const engine_run: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number, j: number, k: number, l: number, m: number) => void;
|
|
6
6
|
export const init_asset_load_thread: () => void;
|
|
7
7
|
export const __wbg_audiocaptureoptions_free: (a: number, b: number) => void;
|
|
8
8
|
export const __wbg_datapublishoptions_free: (a: number, b: number) => void;
|
|
@@ -51,6 +51,7 @@ export const op_get_current_login: (a: number) => [number, number];
|
|
|
51
51
|
export const op_get_home_scene: (a: number) => any;
|
|
52
52
|
export const op_get_hover_stream: (a: number) => any;
|
|
53
53
|
export const op_get_mic_state: (a: number) => any;
|
|
54
|
+
export const op_get_params: (a: number) => any;
|
|
54
55
|
export const op_get_permanent_permissions: (a: number, b: number, c: number, d: number, e: number) => any;
|
|
55
56
|
export const op_get_permission_request_stream: (a: number) => any;
|
|
56
57
|
export const op_get_permission_types: (a: number) => any;
|
|
@@ -132,7 +133,7 @@ export const wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7
|
|
|
132
133
|
export const wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__wasm_bindgen_6c0c3bb491d8811b___JsValue____Output________3_: (a: number, b: number) => void;
|
|
133
134
|
export const wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__wasm_bindgen_6c0c3bb491d8811b___JsValue____Output___core_f2710c7f87f75ba1___result__Result_____wasm_bindgen_6c0c3bb491d8811b___JsError___: (a: number, b: number) => void;
|
|
134
135
|
export const wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__f64__wasm_bindgen_6c0c3bb491d8811b___JsValue___Output_______: (a: number, b: number) => void;
|
|
135
|
-
export const
|
|
136
|
+
export const wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__Fn__comms_da1192e2005242d2___livekit__web__room_event__RoomEvent____Output_______: (a: number, b: number) => void;
|
|
136
137
|
export const wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__web_sys_72aa5c11aad59394___features__gen_CloseEvent__CloseEvent____Output_______: (a: number, b: number) => void;
|
|
137
138
|
export const wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output_______: (a: number, b: number) => void;
|
|
138
139
|
export const wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__wasm_bindgen_6c0c3bb491d8811b___JsValue____Output_______: (a: number, b: number) => void;
|
|
@@ -144,14 +145,14 @@ export const wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7
|
|
|
144
145
|
export const wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__core_f2710c7f87f75ba1___option__Option_web_sys_72aa5c11aad59394___features__gen_Blob__Blob_____Output_______: (a: number, b: number) => void;
|
|
145
146
|
export const wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___f64__wasm_bindgen_6c0c3bb491d8811b___JsValue______true_: (a: number, b: number, c: number, d: any) => void;
|
|
146
147
|
export const wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue__core_f2710c7f87f75ba1___result__Result_____wasm_bindgen_6c0c3bb491d8811b___JsError___true_: (a: number, b: number, c: any) => [number, number];
|
|
147
|
-
export const
|
|
148
|
+
export const wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___comms_da1192e2005242d2___livekit__web__local_audio_track__LocalAudioTrack__core_f2710c7f87f75ba1___result__Result_____wasm_bindgen_6c0c3bb491d8811b___JsError___true_: (a: number, b: number, c: any) => [number, number];
|
|
148
149
|
export const wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___js_sys_67c12748f230903f___Array__web_sys_72aa5c11aad59394___features__gen_ResizeObserver__ResizeObserver______true_: (a: number, b: number, c: any, d: any) => void;
|
|
149
150
|
export const wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___js_sys_67c12748f230903f___Function_fn_wasm_bindgen_6c0c3bb491d8811b___JsValue_____wasm_bindgen_6c0c3bb491d8811b___sys__Undefined___js_sys_67c12748f230903f___Function_fn_wasm_bindgen_6c0c3bb491d8811b___JsValue_____wasm_bindgen_6c0c3bb491d8811b___sys__Undefined_______true_: (a: number, b: number, c: any, d: any) => void;
|
|
150
151
|
export const wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__3_: (a: number, b: number, c: any) => void;
|
|
151
152
|
export const wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__3__1: (a: number, b: number, c: any) => void;
|
|
152
153
|
export const wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__4_: (a: number, b: number, c: any) => void;
|
|
153
154
|
export const wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___web_sys_72aa5c11aad59394___features__gen_MessageEvent__MessageEvent______true_: (a: number, b: number, c: any) => void;
|
|
154
|
-
export const
|
|
155
|
+
export const wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___comms_da1192e2005242d2___livekit__web__room_event__RoomEvent______true_: (a: number, b: number, c: any) => void;
|
|
155
156
|
export const wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___web_sys_72aa5c11aad59394___features__gen_CloseEvent__CloseEvent______true_: (a: number, b: number, c: any) => void;
|
|
156
157
|
export const wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true_: (a: number, b: number, c: any) => void;
|
|
157
158
|
export const wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___web_sys_72aa5c11aad59394___features__gen_InputEvent__InputEvent______true_: (a: number, b: number, c: any) => void;
|