@dcl-regenesislabs/bevy-explorer-web 0.1.0-23361646574.commit-8277283 → 0.1.0-23382194066.commit-d716341
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 +1 -1
- package/package.json +3 -3
- package/pkg/manifest.json +1 -1
- package/pkg/webgpu_build.d.ts +3 -0
- package/pkg/webgpu_build.js +38 -28
- package/pkg/webgpu_build_bg.wasm +0 -0
- package/pkg/webgpu_build_bg.wasm.d.ts +1 -0
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-23382194066.commit-d716341"
|
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-23382194066.commit-d716341";</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-23382194066.commit-d716341",
|
|
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-23382194066.commit-d716341",
|
|
12
|
+
"commit": "d716341e06e1de67db890e44e995b1ca14f5fee0"
|
|
13
13
|
}
|
package/pkg/manifest.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"wasmSize":
|
|
1
|
+
{"wasmSize":117137260}
|
package/pkg/webgpu_build.d.ts
CHANGED
|
@@ -129,6 +129,8 @@ export function op_emote(op_state: WorkerContext, emote: string): void;
|
|
|
129
129
|
|
|
130
130
|
export function op_external_url(state: WorkerContext, url: string): Promise<boolean>;
|
|
131
131
|
|
|
132
|
+
export function op_get_avatar_modifiers(state: WorkerContext): Promise<Array<any>>;
|
|
133
|
+
|
|
132
134
|
export function op_get_bindings(state: WorkerContext): Promise<any>;
|
|
133
135
|
|
|
134
136
|
export function op_get_chat_stream(state: WorkerContext): Promise<number>;
|
|
@@ -334,6 +336,7 @@ export interface InitOutput {
|
|
|
334
336
|
readonly op_crdt_send_to_renderer: (a: number, b: any) => void;
|
|
335
337
|
readonly op_emote: (a: number, b: number, c: number) => void;
|
|
336
338
|
readonly op_external_url: (a: number, b: number, c: number) => any;
|
|
339
|
+
readonly op_get_avatar_modifiers: (a: number) => any;
|
|
337
340
|
readonly op_get_bindings: (a: number) => any;
|
|
338
341
|
readonly op_get_chat_stream: (a: number) => any;
|
|
339
342
|
readonly op_get_connected_players: (a: number) => any;
|
package/pkg/webgpu_build.js
CHANGED
|
@@ -503,6 +503,16 @@ export function op_external_url(state, url) {
|
|
|
503
503
|
return ret;
|
|
504
504
|
}
|
|
505
505
|
|
|
506
|
+
/**
|
|
507
|
+
* @param {WorkerContext} state
|
|
508
|
+
* @returns {Promise<Array<any>>}
|
|
509
|
+
*/
|
|
510
|
+
export function op_get_avatar_modifiers(state) {
|
|
511
|
+
_assertClass(state, WorkerContext);
|
|
512
|
+
const ret = wasm.op_get_avatar_modifiers(state.__wbg_ptr);
|
|
513
|
+
return ret;
|
|
514
|
+
}
|
|
515
|
+
|
|
506
516
|
/**
|
|
507
517
|
* @param {WorkerContext} state
|
|
508
518
|
* @returns {Promise<any>}
|
|
@@ -4356,142 +4366,142 @@ function __wbg_get_imports(memory) {
|
|
|
4356
4366
|
return ret;
|
|
4357
4367
|
},
|
|
4358
4368
|
__wbindgen_cast_0000000000000001: function(arg0, arg1) {
|
|
4359
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4369
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 123118, function: Function { arguments: [Externref], shim_idx: 123119, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4360
4370
|
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_);
|
|
4361
4371
|
return ret;
|
|
4362
4372
|
},
|
|
4363
4373
|
__wbindgen_cast_0000000000000002: function(arg0, arg1) {
|
|
4364
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4374
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 123118, function: Function { arguments: [NamedExternref("GPUUncapturedErrorEvent")], shim_idx: 123119, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4365
4375
|
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);
|
|
4366
4376
|
return ret;
|
|
4367
4377
|
},
|
|
4368
4378
|
__wbindgen_cast_0000000000000003: function(arg0, arg1) {
|
|
4369
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4379
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 130389, function: Function { arguments: [Externref], shim_idx: 130390, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4370
4380
|
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_);
|
|
4371
4381
|
return ret;
|
|
4372
4382
|
},
|
|
4373
4383
|
__wbindgen_cast_0000000000000004: function(arg0, arg1) {
|
|
4374
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4384
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 138443, function: Function { arguments: [Externref], shim_idx: 138444, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
4375
4385
|
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_);
|
|
4376
4386
|
return ret;
|
|
4377
4387
|
},
|
|
4378
4388
|
__wbindgen_cast_0000000000000005: function(arg0, arg1) {
|
|
4379
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4389
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 138443, function: Function { arguments: [NamedExternref("MessageEvent")], shim_idx: 138446, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4380
4390
|
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_);
|
|
4381
4391
|
return ret;
|
|
4382
4392
|
},
|
|
4383
4393
|
__wbindgen_cast_0000000000000006: function(arg0, arg1) {
|
|
4384
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4394
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 17058, function: Function { arguments: [F64, Externref], shim_idx: 17059, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4385
4395
|
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_);
|
|
4386
4396
|
return ret;
|
|
4387
4397
|
},
|
|
4388
4398
|
__wbindgen_cast_0000000000000007: function(arg0, arg1) {
|
|
4389
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4399
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 44343, function: Function { arguments: [Externref], shim_idx: 44344, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
4390
4400
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__Fn__comms_d0dbb1e69f98a4c8___livekit__web__room_event__RoomEvent____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___comms_d0dbb1e69f98a4c8___livekit__web__local_audio_track__LocalAudioTrack__core_f2710c7f87f75ba1___result__Result_____wasm_bindgen_6c0c3bb491d8811b___JsError___true_);
|
|
4391
4401
|
return ret;
|
|
4392
4402
|
},
|
|
4393
4403
|
__wbindgen_cast_0000000000000008: function(arg0, arg1) {
|
|
4394
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4404
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 44343, function: Function { arguments: [Externref], shim_idx: 44346, ret: Unit, inner_ret: Some(Unit) }, mutable: false }) -> Externref`.
|
|
4395
4405
|
const ret = makeClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__Fn__comms_d0dbb1e69f98a4c8___livekit__web__room_event__RoomEvent____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___comms_d0dbb1e69f98a4c8___livekit__web__room_event__RoomEvent______true_);
|
|
4396
4406
|
return ret;
|
|
4397
4407
|
},
|
|
4398
4408
|
__wbindgen_cast_0000000000000009: function(arg0, arg1) {
|
|
4399
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4409
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 54014, function: Function { arguments: [NamedExternref("CloseEvent")], shim_idx: 54015, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4400
4410
|
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_);
|
|
4401
4411
|
return ret;
|
|
4402
4412
|
},
|
|
4403
4413
|
__wbindgen_cast_000000000000000a: function(arg0, arg1) {
|
|
4404
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4414
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 54119, function: Function { arguments: [], shim_idx: 54120, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4405
4415
|
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_);
|
|
4406
4416
|
return ret;
|
|
4407
4417
|
},
|
|
4408
4418
|
__wbindgen_cast_000000000000000b: function(arg0, arg1) {
|
|
4409
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4419
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 54122, function: Function { arguments: [Externref], shim_idx: 54123, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4410
4420
|
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_);
|
|
4411
4421
|
return ret;
|
|
4412
4422
|
},
|
|
4413
4423
|
__wbindgen_cast_000000000000000c: function(arg0, arg1) {
|
|
4414
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4424
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 57382, function: Function { arguments: [], shim_idx: 57383, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4415
4425
|
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_);
|
|
4416
4426
|
return ret;
|
|
4417
4427
|
},
|
|
4418
4428
|
__wbindgen_cast_000000000000000d: function(arg0, arg1) {
|
|
4419
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4429
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 57990, function: Function { arguments: [NamedExternref("CompositionEvent")], shim_idx: 57991, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4420
4430
|
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_);
|
|
4421
4431
|
return ret;
|
|
4422
4432
|
},
|
|
4423
4433
|
__wbindgen_cast_000000000000000e: function(arg0, arg1) {
|
|
4424
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4434
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 57990, function: Function { arguments: [NamedExternref("InputEvent")], shim_idx: 57991, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4425
4435
|
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);
|
|
4426
4436
|
return ret;
|
|
4427
4437
|
},
|
|
4428
4438
|
__wbindgen_cast_000000000000000f: function(arg0, arg1) {
|
|
4429
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4439
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 57990, function: Function { arguments: [NamedExternref("TouchEvent")], shim_idx: 57991, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4430
4440
|
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);
|
|
4431
4441
|
return ret;
|
|
4432
4442
|
},
|
|
4433
4443
|
__wbindgen_cast_0000000000000010: function(arg0, arg1) {
|
|
4434
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4444
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 61242, function: Function { arguments: [], shim_idx: 61243, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4435
4445
|
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_);
|
|
4436
4446
|
return ret;
|
|
4437
4447
|
},
|
|
4438
4448
|
__wbindgen_cast_0000000000000011: function(arg0, arg1) {
|
|
4439
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4449
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 61616, function: Function { arguments: [], shim_idx: 61617, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4440
4450
|
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_);
|
|
4441
4451
|
return ret;
|
|
4442
4452
|
},
|
|
4443
4453
|
__wbindgen_cast_0000000000000012: function(arg0, arg1) {
|
|
4444
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4454
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 61652, function: Function { arguments: [Externref], shim_idx: 61653, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4445
4455
|
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_);
|
|
4446
4456
|
return ret;
|
|
4447
4457
|
},
|
|
4448
4458
|
__wbindgen_cast_0000000000000013: function(arg0, arg1) {
|
|
4449
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4459
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 63086, function: Function { arguments: [Externref], shim_idx: 63087, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4450
4460
|
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_);
|
|
4451
4461
|
return ret;
|
|
4452
4462
|
},
|
|
4453
4463
|
__wbindgen_cast_0000000000000014: function(arg0, arg1) {
|
|
4454
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4464
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 63086, function: Function { arguments: [NamedExternref("Array<any>"), NamedExternref("ResizeObserver")], shim_idx: 63094, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4455
4465
|
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_);
|
|
4456
4466
|
return ret;
|
|
4457
4467
|
},
|
|
4458
4468
|
__wbindgen_cast_0000000000000015: function(arg0, arg1) {
|
|
4459
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4469
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 63086, function: Function { arguments: [NamedExternref("Array<any>")], shim_idx: 63087, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4460
4470
|
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);
|
|
4461
4471
|
return ret;
|
|
4462
4472
|
},
|
|
4463
4473
|
__wbindgen_cast_0000000000000016: function(arg0, arg1) {
|
|
4464
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4474
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 63086, function: Function { arguments: [NamedExternref("Event")], shim_idx: 63087, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4465
4475
|
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);
|
|
4466
4476
|
return ret;
|
|
4467
4477
|
},
|
|
4468
4478
|
__wbindgen_cast_0000000000000017: function(arg0, arg1) {
|
|
4469
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4479
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 63086, function: Function { arguments: [NamedExternref("FocusEvent")], shim_idx: 63087, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4470
4480
|
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);
|
|
4471
4481
|
return ret;
|
|
4472
4482
|
},
|
|
4473
4483
|
__wbindgen_cast_0000000000000018: function(arg0, arg1) {
|
|
4474
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4484
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 63086, function: Function { arguments: [NamedExternref("KeyboardEvent")], shim_idx: 63087, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4475
4485
|
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);
|
|
4476
4486
|
return ret;
|
|
4477
4487
|
},
|
|
4478
4488
|
__wbindgen_cast_0000000000000019: function(arg0, arg1) {
|
|
4479
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4489
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 63086, function: Function { arguments: [NamedExternref("PageTransitionEvent")], shim_idx: 63087, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4480
4490
|
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);
|
|
4481
4491
|
return ret;
|
|
4482
4492
|
},
|
|
4483
4493
|
__wbindgen_cast_000000000000001a: function(arg0, arg1) {
|
|
4484
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4494
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 63086, function: Function { arguments: [NamedExternref("PointerEvent")], shim_idx: 63087, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4485
4495
|
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);
|
|
4486
4496
|
return ret;
|
|
4487
4497
|
},
|
|
4488
4498
|
__wbindgen_cast_000000000000001b: function(arg0, arg1) {
|
|
4489
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4499
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 63086, function: Function { arguments: [NamedExternref("WheelEvent")], shim_idx: 63087, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4490
4500
|
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);
|
|
4491
4501
|
return ret;
|
|
4492
4502
|
},
|
|
4493
4503
|
__wbindgen_cast_000000000000001c: function(arg0, arg1) {
|
|
4494
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4504
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 63086, function: Function { arguments: [], shim_idx: 63102, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4495
4505
|
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_);
|
|
4496
4506
|
return ret;
|
|
4497
4507
|
},
|
package/pkg/webgpu_build_bg.wasm
CHANGED
|
Binary file
|
|
@@ -42,6 +42,7 @@ export const op_crdt_recv_from_renderer: (a: number) => any;
|
|
|
42
42
|
export const op_crdt_send_to_renderer: (a: number, b: any) => void;
|
|
43
43
|
export const op_emote: (a: number, b: number, c: number) => void;
|
|
44
44
|
export const op_external_url: (a: number, b: number, c: number) => any;
|
|
45
|
+
export const op_get_avatar_modifiers: (a: number) => any;
|
|
45
46
|
export const op_get_bindings: (a: number) => any;
|
|
46
47
|
export const op_get_chat_stream: (a: number) => any;
|
|
47
48
|
export const op_get_connected_players: (a: number) => any;
|