oriverse-engine 0.1.9 → 0.1.11
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/LICENSE.md +30 -30
- package/README.md +8 -8
- package/dist/AGENT_ONBOARDING.md +74 -74
- package/dist/CODEX_PROMPT.md +7 -7
- package/dist/ktx_bridge.js +17 -0
- package/dist/oriverse_wgpu.d.ts +74 -45
- package/dist/oriverse_wgpu.js +319 -120
- package/dist/oriverse_wgpu_bg.wasm +0 -0
- package/dist/oriverse_wgpu_bg.wasm.d.ts +50 -44
- package/dist/shader_prewarm_manifest.json +1 -1
- package/dist/snippets/oriverse_networking_shared-e43478064e11e46c/inline0.js +40 -32
- package/dist/snippets/oriverse_networking_shared-e43478064e11e46c/inline1.js +32 -21
- package/dist/snippets/oriverse_user_client-a55220d4991e3856/src/library_capture_idb.js +54 -0
- package/dist/starter/AGENTS.md +2 -2
- package/dist/starter/CLAUDE.md +2 -2
- package/dist/starter/game.html +6 -6
- package/dist/templates/game_cdn.html +6 -6
- package/dist/weave_documentation.txt +698 -393
- package/package.json +1 -1
package/dist/oriverse_wgpu.js
CHANGED
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
import { marketClientPageHostname } from './snippets/oriverse_market_client-0cd3013288f3c49c/inline0.js';
|
|
3
3
|
import { marketClientReadIndexedDbValue } from './snippets/oriverse_market_client-0cd3013288f3c49c/inline1.js';
|
|
4
4
|
import { marketClientInitMessageBridge, marketClientPostMessage } from './snippets/oriverse_market_client-0cd3013288f3c49c/inline2.js';
|
|
5
|
-
import { webRtcReadIndexedDbValue } from './snippets/oriverse_networking_shared-e43478064e11e46c/
|
|
5
|
+
import { webRtcReadIndexedDbValue } from './snippets/oriverse_networking_shared-e43478064e11e46c/inline1.js';
|
|
6
|
+
import { libraryQueueIo } from './snippets/oriverse_user_client-a55220d4991e3856/src/library_capture_idb.js';
|
|
6
7
|
import { mcpRelayReadIndexedDbValue } from './snippets/oriverse_wgpu-255445ce6d9a0851/inline0.js';
|
|
7
8
|
|
|
8
9
|
export class IntoUnderlyingByteSource {
|
|
@@ -131,6 +132,51 @@ export function bootOriverseArtifact(weave_source) {
|
|
|
131
132
|
return ret;
|
|
132
133
|
}
|
|
133
134
|
|
|
135
|
+
/**
|
|
136
|
+
* A browser QA harness can call this exported function and display the returned
|
|
137
|
+
* atlas. It exercises the same Rust/WGSL implementation without native polling.
|
|
138
|
+
* @returns {Promise<string>}
|
|
139
|
+
*/
|
|
140
|
+
export function enhanced_capture_proof() {
|
|
141
|
+
const ret = wasm.enhanced_capture_proof();
|
|
142
|
+
return ret;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
/**
|
|
146
|
+
* @param {number} width
|
|
147
|
+
* @param {number} height
|
|
148
|
+
* @returns {Promise<string>}
|
|
149
|
+
*/
|
|
150
|
+
export function enhanced_ssr_probe(width, height) {
|
|
151
|
+
const ret = wasm.enhanced_ssr_probe(width, height);
|
|
152
|
+
return ret;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
/**
|
|
156
|
+
* Browser QA uses rendered GPU batches, independent of simulation-tick waits
|
|
157
|
+
* and mobile log suppression. Repeated arm calls preserve the original mode.
|
|
158
|
+
* @param {boolean} active
|
|
159
|
+
*/
|
|
160
|
+
export function gpu_profiler_capture(active) {
|
|
161
|
+
wasm.gpu_profiler_capture(active);
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
/**
|
|
165
|
+
* @returns {string}
|
|
166
|
+
*/
|
|
167
|
+
export function gpu_profiler_snapshot() {
|
|
168
|
+
let deferred1_0;
|
|
169
|
+
let deferred1_1;
|
|
170
|
+
try {
|
|
171
|
+
const ret = wasm.gpu_profiler_snapshot();
|
|
172
|
+
deferred1_0 = ret[0];
|
|
173
|
+
deferred1_1 = ret[1];
|
|
174
|
+
return getStringFromWasm0(ret[0], ret[1]);
|
|
175
|
+
} finally {
|
|
176
|
+
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
|
|
134
180
|
/**
|
|
135
181
|
* @param {any} worker
|
|
136
182
|
*/
|
|
@@ -141,6 +187,45 @@ export function init_market_client_message_bridge(worker) {
|
|
|
141
187
|
}
|
|
142
188
|
}
|
|
143
189
|
|
|
190
|
+
/**
|
|
191
|
+
* @param {string} world_text
|
|
192
|
+
* @param {string} args_json
|
|
193
|
+
* @returns {string}
|
|
194
|
+
*/
|
|
195
|
+
export function library_capture_entry(world_text, args_json) {
|
|
196
|
+
let deferred3_0;
|
|
197
|
+
let deferred3_1;
|
|
198
|
+
try {
|
|
199
|
+
const ptr0 = passStringToWasm0(world_text, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
200
|
+
const len0 = WASM_VECTOR_LEN;
|
|
201
|
+
const ptr1 = passStringToWasm0(args_json, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
202
|
+
const len1 = WASM_VECTOR_LEN;
|
|
203
|
+
const ret = wasm.library_capture_entry(ptr0, len0, ptr1, len1);
|
|
204
|
+
deferred3_0 = ret[0];
|
|
205
|
+
deferred3_1 = ret[1];
|
|
206
|
+
return getStringFromWasm0(ret[0], ret[1]);
|
|
207
|
+
} finally {
|
|
208
|
+
wasm.__wbindgen_free(deferred3_0, deferred3_1, 1);
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
/**
|
|
213
|
+
* Read the same snapshot as the picker without depending on browser log verbosity.
|
|
214
|
+
* @returns {string}
|
|
215
|
+
*/
|
|
216
|
+
export function live_render_status() {
|
|
217
|
+
let deferred1_0;
|
|
218
|
+
let deferred1_1;
|
|
219
|
+
try {
|
|
220
|
+
const ret = wasm.live_render_status();
|
|
221
|
+
deferred1_0 = ret[0];
|
|
222
|
+
deferred1_1 = ret[1];
|
|
223
|
+
return getStringFromWasm0(ret[0], ret[1]);
|
|
224
|
+
} finally {
|
|
225
|
+
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
|
|
144
229
|
/**
|
|
145
230
|
* Worker-side entry for `live_sim_log_objects_at_frames` on wasm.
|
|
146
231
|
* @param {string} world_text
|
|
@@ -253,7 +338,7 @@ export function start_wasm_oriverse() {
|
|
|
253
338
|
* Worker-side entry for the one-shot hidden-tab playtest fallback. Runs ONLY inside a
|
|
254
339
|
* fresh-memory worker instance (never the live heap - B42's wasm analog); mirrors the
|
|
255
340
|
* validate path's process flags so headless load/sim behave like the desktop text lane.
|
|
256
|
-
* Returns
|
|
341
|
+
* Returns the text, source digest, and artifact verdict, or a classified error.
|
|
257
342
|
* @param {string} world_text
|
|
258
343
|
* @param {string} args_json
|
|
259
344
|
* @returns {string}
|
|
@@ -380,7 +465,8 @@ export function worker_init_write(xq_fast_ptr, xq_strict_ptr, state_ptr, kp_ptr)
|
|
|
380
465
|
import * as import1 from "./snippets/oriverse_wgpu-255445ce6d9a0851/inline1.js"
|
|
381
466
|
import * as import2 from "./snippets/oriverse_wgpu-255445ce6d9a0851/inline2.js"
|
|
382
467
|
import * as import3 from "./snippets/oriverse_market_client-0cd3013288f3c49c/inline2.js"
|
|
383
|
-
import * as import4 from "./snippets/oriverse_networking_shared-e43478064e11e46c/
|
|
468
|
+
import * as import4 from "./snippets/oriverse_networking_shared-e43478064e11e46c/inline0.js"
|
|
469
|
+
import * as import5 from "./snippets/oriverse_networking_shared-e43478064e11e46c/inline0.js"
|
|
384
470
|
|
|
385
471
|
function __wbg_get_imports() {
|
|
386
472
|
const import0 = {
|
|
@@ -589,6 +675,10 @@ function __wbg_get_imports() {
|
|
|
589
675
|
const ret = arg0.byteOffset;
|
|
590
676
|
return ret;
|
|
591
677
|
},
|
|
678
|
+
__wbg_caches_620d2c4a36abbe32: function() { return handleError(function (arg0) {
|
|
679
|
+
const ret = arg0.caches;
|
|
680
|
+
return ret;
|
|
681
|
+
}, arguments); },
|
|
592
682
|
__wbg_call_2d781c1f4d5c0ef8: function() { return handleError(function (arg0, arg1, arg2) {
|
|
593
683
|
const ret = arg0.call(arg1, arg2);
|
|
594
684
|
return ret;
|
|
@@ -658,6 +748,9 @@ function __wbg_get_imports() {
|
|
|
658
748
|
__wbg_clearTimeout_fdfb5a1468af1a97: function(arg0, arg1) {
|
|
659
749
|
arg0.clearTimeout(arg1);
|
|
660
750
|
},
|
|
751
|
+
__wbg_click_14a2543ed4ab7b86: function(arg0) {
|
|
752
|
+
arg0.click();
|
|
753
|
+
},
|
|
661
754
|
__wbg_clientHeight_3d6e452054fdbc3b: function(arg0) {
|
|
662
755
|
const ret = arg0.clientHeight;
|
|
663
756
|
return ret;
|
|
@@ -751,6 +844,9 @@ function __wbg_get_imports() {
|
|
|
751
844
|
__wbg_copyBufferToBuffer_8fe240a0000c9e22: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
752
845
|
arg0.copyBufferToBuffer(arg1, arg2, arg3, arg4, arg5);
|
|
753
846
|
}, arguments); },
|
|
847
|
+
__wbg_copyBufferToTexture_5c32355b7be376d8: function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
848
|
+
arg0.copyBufferToTexture(arg1, arg2, arg3);
|
|
849
|
+
}, arguments); },
|
|
754
850
|
__wbg_copyTextureToBuffer_4186c16aef1922a5: function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
755
851
|
arg0.copyTextureToBuffer(arg1, arg2, arg3);
|
|
756
852
|
}, arguments); },
|
|
@@ -777,6 +873,10 @@ function __wbg_get_imports() {
|
|
|
777
873
|
const ret = arg0.createCommandEncoder(arg1);
|
|
778
874
|
return ret;
|
|
779
875
|
},
|
|
876
|
+
__wbg_createComputePipelineAsync_6264ed7e057abc06: function(arg0, arg1) {
|
|
877
|
+
const ret = arg0.createComputePipelineAsync(arg1);
|
|
878
|
+
return ret;
|
|
879
|
+
},
|
|
780
880
|
__wbg_createComputePipeline_3e135ff73c8fc483: function(arg0, arg1) {
|
|
781
881
|
const ret = arg0.createComputePipeline(arg1);
|
|
782
882
|
return ret;
|
|
@@ -816,6 +916,10 @@ function __wbg_get_imports() {
|
|
|
816
916
|
const ret = arg0.createQuerySet(arg1);
|
|
817
917
|
return ret;
|
|
818
918
|
}, arguments); },
|
|
919
|
+
__wbg_createRenderPipelineAsync_bbf89a9db57849a9: function(arg0, arg1) {
|
|
920
|
+
const ret = arg0.createRenderPipelineAsync(arg1);
|
|
921
|
+
return ret;
|
|
922
|
+
},
|
|
819
923
|
__wbg_createRenderPipeline_f48187ba9f7701e8: function() { return handleError(function (arg0, arg1) {
|
|
820
924
|
const ret = arg0.createRenderPipeline(arg1);
|
|
821
925
|
return ret;
|
|
@@ -880,6 +984,10 @@ function __wbg_get_imports() {
|
|
|
880
984
|
const ret = arg0.defaultPrevented;
|
|
881
985
|
return ret;
|
|
882
986
|
},
|
|
987
|
+
__wbg_delete_4b0d0542744b119b: function(arg0, arg1, arg2) {
|
|
988
|
+
const ret = arg0.delete(getStringFromWasm0(arg1, arg2));
|
|
989
|
+
return ret;
|
|
990
|
+
},
|
|
883
991
|
__wbg_delete_e0564e7741071916: function(arg0, arg1, arg2) {
|
|
884
992
|
arg0.delete(getStringFromWasm0(arg1, arg2));
|
|
885
993
|
},
|
|
@@ -1326,6 +1434,16 @@ function __wbg_get_imports() {
|
|
|
1326
1434
|
const ret = result;
|
|
1327
1435
|
return ret;
|
|
1328
1436
|
},
|
|
1437
|
+
__wbg_instanceof_Cache_993820a7e1b5e05d: function(arg0) {
|
|
1438
|
+
let result;
|
|
1439
|
+
try {
|
|
1440
|
+
result = arg0 instanceof Cache;
|
|
1441
|
+
} catch (_) {
|
|
1442
|
+
result = false;
|
|
1443
|
+
}
|
|
1444
|
+
const ret = result;
|
|
1445
|
+
return ret;
|
|
1446
|
+
},
|
|
1329
1447
|
__wbg_instanceof_CryptoKey_8aec6f1abbdff9a3: function(arg0) {
|
|
1330
1448
|
let result;
|
|
1331
1449
|
try {
|
|
@@ -1426,6 +1544,16 @@ function __wbg_get_imports() {
|
|
|
1426
1544
|
const ret = result;
|
|
1427
1545
|
return ret;
|
|
1428
1546
|
},
|
|
1547
|
+
__wbg_instanceof_HtmlAnchorElement_085fbdab589de474: function(arg0) {
|
|
1548
|
+
let result;
|
|
1549
|
+
try {
|
|
1550
|
+
result = arg0 instanceof HTMLAnchorElement;
|
|
1551
|
+
} catch (_) {
|
|
1552
|
+
result = false;
|
|
1553
|
+
}
|
|
1554
|
+
const ret = result;
|
|
1555
|
+
return ret;
|
|
1556
|
+
},
|
|
1429
1557
|
__wbg_instanceof_HtmlCanvasElement_26125339f936be50: function(arg0) {
|
|
1430
1558
|
let result;
|
|
1431
1559
|
try {
|
|
@@ -1516,6 +1644,16 @@ function __wbg_get_imports() {
|
|
|
1516
1644
|
const ret = result;
|
|
1517
1645
|
return ret;
|
|
1518
1646
|
},
|
|
1647
|
+
__wbg_instanceof_Request_30f8d70acf56b0de: function(arg0) {
|
|
1648
|
+
let result;
|
|
1649
|
+
try {
|
|
1650
|
+
result = arg0 instanceof Request;
|
|
1651
|
+
} catch (_) {
|
|
1652
|
+
result = false;
|
|
1653
|
+
}
|
|
1654
|
+
const ret = result;
|
|
1655
|
+
return ret;
|
|
1656
|
+
},
|
|
1519
1657
|
__wbg_instanceof_Response_9b4d9fd451e051b1: function(arg0) {
|
|
1520
1658
|
let result;
|
|
1521
1659
|
try {
|
|
@@ -1596,6 +1734,10 @@ function __wbg_get_imports() {
|
|
|
1596
1734
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1597
1735
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1598
1736
|
},
|
|
1737
|
+
__wbg_keys_9cd0621a54a5f58f: function(arg0) {
|
|
1738
|
+
const ret = arg0.keys();
|
|
1739
|
+
return ret;
|
|
1740
|
+
},
|
|
1599
1741
|
__wbg_label_47480289cc2bce71: function(arg0, arg1) {
|
|
1600
1742
|
const ret = arg1.label;
|
|
1601
1743
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
@@ -1634,6 +1776,10 @@ function __wbg_get_imports() {
|
|
|
1634
1776
|
const ret = arg0.length;
|
|
1635
1777
|
return ret;
|
|
1636
1778
|
},
|
|
1779
|
+
__wbg_libraryQueueIo_5d59eadea0153128: function() { return handleError(function (arg0, arg1) {
|
|
1780
|
+
const ret = libraryQueueIo(getStringFromWasm0(arg0, arg1));
|
|
1781
|
+
return ret;
|
|
1782
|
+
}, arguments); },
|
|
1637
1783
|
__wbg_limits_1c25cb4f379a4418: function(arg0) {
|
|
1638
1784
|
const ret = arg0.limits;
|
|
1639
1785
|
return ret;
|
|
@@ -1709,6 +1855,10 @@ function __wbg_get_imports() {
|
|
|
1709
1855
|
const ret = arg0.matchMedia(getStringFromWasm0(arg1, arg2));
|
|
1710
1856
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1711
1857
|
}, arguments); },
|
|
1858
|
+
__wbg_match_1b221e1469fa152b: function(arg0, arg1, arg2) {
|
|
1859
|
+
const ret = arg0.match(getStringFromWasm0(arg1, arg2));
|
|
1860
|
+
return ret;
|
|
1861
|
+
},
|
|
1712
1862
|
__wbg_matches_d58caa45a0ef29a3: function(arg0) {
|
|
1713
1863
|
const ret = arg0.matches;
|
|
1714
1864
|
return ret;
|
|
@@ -2072,6 +2222,10 @@ function __wbg_get_imports() {
|
|
|
2072
2222
|
const ret = new RTCPeerConnection(arg0);
|
|
2073
2223
|
return ret;
|
|
2074
2224
|
}, arguments); },
|
|
2225
|
+
__wbg_new_with_event_init_dict_590586ad0ea40ad7: function() { return handleError(function (arg0, arg1, arg2) {
|
|
2226
|
+
const ret = new CustomEvent(getStringFromWasm0(arg0, arg1), arg2);
|
|
2227
|
+
return ret;
|
|
2228
|
+
}, arguments); },
|
|
2075
2229
|
__wbg_new_with_event_init_dict_a3810be5ec2ca41c: function() { return handleError(function (arg0, arg1, arg2) {
|
|
2076
2230
|
const ret = new PointerEvent(getStringFromWasm0(arg0, arg1), arg2);
|
|
2077
2231
|
return ret;
|
|
@@ -2084,6 +2238,10 @@ function __wbg_get_imports() {
|
|
|
2084
2238
|
const ret = new Uint8Array(arg0 >>> 0);
|
|
2085
2239
|
return ret;
|
|
2086
2240
|
},
|
|
2241
|
+
__wbg_new_with_opt_u8_array_d78e626a698342d4: function() { return handleError(function (arg0, arg1) {
|
|
2242
|
+
const ret = new Response(arg0 === 0 ? undefined : getArrayU8FromWasm0(arg0, arg1));
|
|
2243
|
+
return ret;
|
|
2244
|
+
}, arguments); },
|
|
2087
2245
|
__wbg_new_with_options_4eec6fc3e29de99c: function() { return handleError(function (arg0, arg1, arg2) {
|
|
2088
2246
|
const ret = new Worker(getStringFromWasm0(arg0, arg1), arg2);
|
|
2089
2247
|
return ret;
|
|
@@ -2096,6 +2254,10 @@ function __wbg_get_imports() {
|
|
|
2096
2254
|
const ret = new Blob(arg0, arg1);
|
|
2097
2255
|
return ret;
|
|
2098
2256
|
}, arguments); },
|
|
2257
|
+
__wbg_new_with_u8_array_sequence_and_options_de38f663e19ad899: function() { return handleError(function (arg0, arg1) {
|
|
2258
|
+
const ret = new Blob(arg0, arg1);
|
|
2259
|
+
return ret;
|
|
2260
|
+
}, arguments); },
|
|
2099
2261
|
__wbg_new_with_u8_clamped_array_f0ba3283326efdd8: function() { return handleError(function (arg0, arg1, arg2) {
|
|
2100
2262
|
const ret = new ImageData(getClampedArrayU8FromWasm0(arg0, arg1), arg2 >>> 0);
|
|
2101
2263
|
return ret;
|
|
@@ -2161,6 +2323,10 @@ function __wbg_get_imports() {
|
|
|
2161
2323
|
const ret = arg0.open(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
2162
2324
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2163
2325
|
}, arguments); },
|
|
2326
|
+
__wbg_open_82c74dcd1613905f: function(arg0, arg1, arg2) {
|
|
2327
|
+
const ret = arg0.open(getStringFromWasm0(arg1, arg2));
|
|
2328
|
+
return ret;
|
|
2329
|
+
},
|
|
2164
2330
|
__wbg_open_891ac0b929710544: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5, arg6) {
|
|
2165
2331
|
const ret = arg0.open(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4), getStringFromWasm0(arg5, arg6));
|
|
2166
2332
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
@@ -2187,6 +2353,10 @@ function __wbg_get_imports() {
|
|
|
2187
2353
|
const ret = arg0.parent;
|
|
2188
2354
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2189
2355
|
}, arguments); },
|
|
2356
|
+
__wbg_parse_e9eddd2a82c706eb: function() { return handleError(function (arg0, arg1) {
|
|
2357
|
+
const ret = JSON.parse(getStringFromWasm0(arg0, arg1));
|
|
2358
|
+
return ret;
|
|
2359
|
+
}, arguments); },
|
|
2190
2360
|
__wbg_pathname_91da77877cfd2b76: function() { return handleError(function (arg0, arg1) {
|
|
2191
2361
|
const ret = arg1.pathname;
|
|
2192
2362
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
@@ -2284,6 +2454,10 @@ function __wbg_get_imports() {
|
|
|
2284
2454
|
const ret = arg0.push(arg1);
|
|
2285
2455
|
return ret;
|
|
2286
2456
|
},
|
|
2457
|
+
__wbg_put_e90b485923a61563: function(arg0, arg1, arg2, arg3) {
|
|
2458
|
+
const ret = arg0.put(getStringFromWasm0(arg1, arg2), arg3);
|
|
2459
|
+
return ret;
|
|
2460
|
+
},
|
|
2287
2461
|
__wbg_querySelectorAll_ccbf0696a1c6fed8: function() { return handleError(function (arg0, arg1, arg2) {
|
|
2288
2462
|
const ret = arg0.querySelectorAll(getStringFromWasm0(arg1, arg2));
|
|
2289
2463
|
return ret;
|
|
@@ -2770,6 +2944,9 @@ function __wbg_get_imports() {
|
|
|
2770
2944
|
__wbg_set_depth_write_enabled_64c2e7f6fa4b6b7b: function(arg0, arg1) {
|
|
2771
2945
|
arg0.depthWriteEnabled = arg1 !== 0;
|
|
2772
2946
|
},
|
|
2947
|
+
__wbg_set_detail_5ef5904eae68e618: function(arg0, arg1) {
|
|
2948
|
+
arg0.detail = arg1;
|
|
2949
|
+
},
|
|
2773
2950
|
__wbg_set_device_0d774b66e7288f72: function(arg0, arg1) {
|
|
2774
2951
|
arg0.device = arg1;
|
|
2775
2952
|
},
|
|
@@ -2779,6 +2956,9 @@ function __wbg_get_imports() {
|
|
|
2779
2956
|
__wbg_set_dimension_36e13ccecae5af4b: function(arg0, arg1) {
|
|
2780
2957
|
arg0.dimension = __wbindgen_enum_GpuTextureDimension[arg1];
|
|
2781
2958
|
},
|
|
2959
|
+
__wbg_set_download_c59352398d4fe8c5: function(arg0, arg1, arg2) {
|
|
2960
|
+
arg0.download = getStringFromWasm0(arg1, arg2);
|
|
2961
|
+
},
|
|
2782
2962
|
__wbg_set_dst_factor_1ed75271a89a711e: function(arg0, arg1) {
|
|
2783
2963
|
arg0.dstFactor = __wbindgen_enum_GpuBlendFactor[arg1];
|
|
2784
2964
|
},
|
|
@@ -2863,6 +3043,9 @@ function __wbg_get_imports() {
|
|
|
2863
3043
|
__wbg_set_href_6cc49f8c2c9dbdaf: function() { return handleError(function (arg0, arg1, arg2) {
|
|
2864
3044
|
arg0.href = getStringFromWasm0(arg1, arg2);
|
|
2865
3045
|
}, arguments); },
|
|
3046
|
+
__wbg_set_href_de1379dfb6df96a6: function(arg0, arg1, arg2) {
|
|
3047
|
+
arg0.href = getStringFromWasm0(arg1, arg2);
|
|
3048
|
+
},
|
|
2866
3049
|
__wbg_set_ice_servers_79d9cedfbe60f514: function(arg0, arg1) {
|
|
2867
3050
|
arg0.iceServers = arg1;
|
|
2868
3051
|
},
|
|
@@ -3335,6 +3518,10 @@ function __wbg_get_imports() {
|
|
|
3335
3518
|
const ret = arg0.signal;
|
|
3336
3519
|
return ret;
|
|
3337
3520
|
},
|
|
3521
|
+
__wbg_size_1356eae711a92515: function(arg0) {
|
|
3522
|
+
const ret = arg0.size;
|
|
3523
|
+
return ret;
|
|
3524
|
+
},
|
|
3338
3525
|
__wbg_stack_3b0d974bbf31e44f: function(arg0, arg1) {
|
|
3339
3526
|
const ret = arg1.stack;
|
|
3340
3527
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
@@ -3472,6 +3659,17 @@ function __wbg_get_imports() {
|
|
|
3472
3659
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3473
3660
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3474
3661
|
},
|
|
3662
|
+
__wbg_url_b6f96880b733816c: function(arg0, arg1) {
|
|
3663
|
+
const ret = arg1.url;
|
|
3664
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3665
|
+
const len1 = WASM_VECTOR_LEN;
|
|
3666
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3667
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3668
|
+
},
|
|
3669
|
+
__wbg_usage_ffc49211c0488f66: function(arg0) {
|
|
3670
|
+
const ret = arg0.usage;
|
|
3671
|
+
return ret;
|
|
3672
|
+
},
|
|
3475
3673
|
__wbg_userAgentData_31b8f893e8977e94: function(arg0) {
|
|
3476
3674
|
const ret = arg0.userAgentData;
|
|
3477
3675
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
@@ -3546,148 +3744,148 @@ function __wbg_get_imports() {
|
|
|
3546
3744
|
arg0.writeTexture(arg1, getArrayU8FromWasm0(arg2, arg3), arg4, arg5);
|
|
3547
3745
|
}, arguments); },
|
|
3548
3746
|
__wbindgen_cast_0000000000000001: function(arg0, arg1) {
|
|
3549
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
3550
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
3747
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 2665, function: Function { arguments: [Externref, Externref], shim_idx: 2671, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3748
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h0701f972ed4bafde, wasm_bindgen__convert__closures_____invoke__hcde27779393c179f);
|
|
3551
3749
|
return ret;
|
|
3552
3750
|
},
|
|
3553
3751
|
__wbindgen_cast_0000000000000002: function(arg0, arg1) {
|
|
3554
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
3555
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
3752
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 2665, function: Function { arguments: [NamedExternref("ErrorEvent")], shim_idx: 2666, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3753
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h0701f972ed4bafde, wasm_bindgen__convert__closures_____invoke__h0f238320cf42410c);
|
|
3556
3754
|
return ret;
|
|
3557
3755
|
},
|
|
3558
3756
|
__wbindgen_cast_0000000000000003: function(arg0, arg1) {
|
|
3559
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
3560
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
3757
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 2665, function: Function { arguments: [NamedExternref("Event")], shim_idx: 2666, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3758
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h0701f972ed4bafde, wasm_bindgen__convert__closures_____invoke__h0f238320cf42410c_2);
|
|
3561
3759
|
return ret;
|
|
3562
3760
|
},
|
|
3563
3761
|
__wbindgen_cast_0000000000000004: function(arg0, arg1) {
|
|
3564
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
3565
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
3762
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 2665, function: Function { arguments: [NamedExternref("RTCDataChannelEvent")], shim_idx: 2666, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3763
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h0701f972ed4bafde, wasm_bindgen__convert__closures_____invoke__h0f238320cf42410c_3);
|
|
3566
3764
|
return ret;
|
|
3567
3765
|
},
|
|
3568
3766
|
__wbindgen_cast_0000000000000005: function(arg0, arg1) {
|
|
3569
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
3570
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
3767
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 2665, function: Function { arguments: [NamedExternref("RTCPeerConnectionIceEvent")], shim_idx: 2666, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3768
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h0701f972ed4bafde, wasm_bindgen__convert__closures_____invoke__h0f238320cf42410c_4);
|
|
3571
3769
|
return ret;
|
|
3572
3770
|
},
|
|
3573
3771
|
__wbindgen_cast_0000000000000006: function(arg0, arg1) {
|
|
3574
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
3575
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
3772
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 27, function: Function { arguments: [NamedExternref("ClipboardEvent")], shim_idx: 30, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3773
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h00cca32abe411e55, wasm_bindgen__convert__closures_____invoke__h0b6d498dcc7eb891);
|
|
3576
3774
|
return ret;
|
|
3577
3775
|
},
|
|
3578
3776
|
__wbindgen_cast_0000000000000007: function(arg0, arg1) {
|
|
3579
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
3580
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
3777
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 27, function: Function { arguments: [NamedExternref("DragEvent")], shim_idx: 30, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3778
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h00cca32abe411e55, wasm_bindgen__convert__closures_____invoke__h0b6d498dcc7eb891_6);
|
|
3581
3779
|
return ret;
|
|
3582
3780
|
},
|
|
3583
3781
|
__wbindgen_cast_0000000000000008: function(arg0, arg1) {
|
|
3584
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
3585
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
3782
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 27, function: Function { arguments: [NamedExternref("MouseEvent")], shim_idx: 30, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3783
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h00cca32abe411e55, wasm_bindgen__convert__closures_____invoke__h0b6d498dcc7eb891_7);
|
|
3586
3784
|
return ret;
|
|
3587
3785
|
},
|
|
3588
3786
|
__wbindgen_cast_0000000000000009: function(arg0, arg1) {
|
|
3589
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
3590
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
3787
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 27, function: Function { arguments: [String, NamedExternref("Uint8Array")], shim_idx: 32, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3788
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h00cca32abe411e55, wasm_bindgen__convert__closures_____invoke__h424d6446a1394875);
|
|
3591
3789
|
return ret;
|
|
3592
3790
|
},
|
|
3593
3791
|
__wbindgen_cast_000000000000000a: function(arg0, arg1) {
|
|
3594
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
3595
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
3792
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 27, function: Function { arguments: [String, String, Boolean], shim_idx: 34, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3793
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h00cca32abe411e55, wasm_bindgen__convert__closures_____invoke__h3ea98b1708d6cda3);
|
|
3596
3794
|
return ret;
|
|
3597
3795
|
},
|
|
3598
3796
|
__wbindgen_cast_000000000000000b: function(arg0, arg1) {
|
|
3599
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
3600
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
3797
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 27, function: Function { arguments: [U32, U32, F64], shim_idx: 28, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3798
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h00cca32abe411e55, wasm_bindgen__convert__closures_____invoke__hd9c0e2a4ba20f18a);
|
|
3601
3799
|
return ret;
|
|
3602
3800
|
},
|
|
3603
3801
|
__wbindgen_cast_000000000000000c: function(arg0, arg1) {
|
|
3604
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
3605
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
3802
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 3677, function: Function { arguments: [], shim_idx: 3678, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3803
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h282cd015e51774c2, wasm_bindgen__convert__closures_____invoke__h9352838f18f6f0a3);
|
|
3606
3804
|
return ret;
|
|
3607
3805
|
},
|
|
3608
3806
|
__wbindgen_cast_000000000000000d: function(arg0, arg1) {
|
|
3609
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
3610
|
-
const ret = makeClosure(arg0, arg1, wasm.
|
|
3807
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 4120, function: Function { arguments: [String], shim_idx: 4121, ret: Unit, inner_ret: Some(Unit) }, mutable: false }) -> Externref`.
|
|
3808
|
+
const ret = makeClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__ha739f2f43f109605, wasm_bindgen__convert__closures_____invoke__haf80bd5c9e726856);
|
|
3611
3809
|
return ret;
|
|
3612
3810
|
},
|
|
3613
3811
|
__wbindgen_cast_000000000000000e: function(arg0, arg1) {
|
|
3614
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
3615
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
3812
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 4826, function: Function { arguments: [NamedExternref("MessageEvent")], shim_idx: 4827, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3813
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__hc9422fb6d35a5711, wasm_bindgen__convert__closures_____invoke__hc23439410b7688c2);
|
|
3616
3814
|
return ret;
|
|
3617
3815
|
},
|
|
3618
3816
|
__wbindgen_cast_000000000000000f: function(arg0, arg1) {
|
|
3619
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
3620
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
3817
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 5028, function: Function { arguments: [Externref], shim_idx: 5029, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3818
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h352b15f35fd9b9ce, wasm_bindgen__convert__closures_____invoke__hbddae924459ac4a5);
|
|
3621
3819
|
return ret;
|
|
3622
3820
|
},
|
|
3623
3821
|
__wbindgen_cast_0000000000000010: function(arg0, arg1) {
|
|
3624
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
3625
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
3822
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 5074, function: Function { arguments: [Externref], shim_idx: 5075, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3823
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h01586aaa935c229b, wasm_bindgen__convert__closures_____invoke__h0b56292c51993277);
|
|
3626
3824
|
return ret;
|
|
3627
3825
|
},
|
|
3628
3826
|
__wbindgen_cast_0000000000000011: function(arg0, arg1) {
|
|
3629
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
3630
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
3827
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 5074, function: Function { arguments: [NamedExternref("Array<any>"), NamedExternref("ResizeObserver")], shim_idx: 5081, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3828
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h01586aaa935c229b, wasm_bindgen__convert__closures_____invoke__ha9edd7259da4f7ff);
|
|
3631
3829
|
return ret;
|
|
3632
3830
|
},
|
|
3633
3831
|
__wbindgen_cast_0000000000000012: function(arg0, arg1) {
|
|
3634
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
3635
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
3832
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 5074, function: Function { arguments: [NamedExternref("Array<any>")], shim_idx: 5075, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3833
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h01586aaa935c229b, wasm_bindgen__convert__closures_____invoke__h0b56292c51993277_17);
|
|
3636
3834
|
return ret;
|
|
3637
3835
|
},
|
|
3638
3836
|
__wbindgen_cast_0000000000000013: function(arg0, arg1) {
|
|
3639
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
3640
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
3837
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 5074, function: Function { arguments: [NamedExternref("Event")], shim_idx: 5075, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3838
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h01586aaa935c229b, wasm_bindgen__convert__closures_____invoke__h0b56292c51993277_18);
|
|
3641
3839
|
return ret;
|
|
3642
3840
|
},
|
|
3643
3841
|
__wbindgen_cast_0000000000000014: function(arg0, arg1) {
|
|
3644
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
3645
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
3842
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 5074, function: Function { arguments: [NamedExternref("FocusEvent")], shim_idx: 5075, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3843
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h01586aaa935c229b, wasm_bindgen__convert__closures_____invoke__h0b56292c51993277_19);
|
|
3646
3844
|
return ret;
|
|
3647
3845
|
},
|
|
3648
3846
|
__wbindgen_cast_0000000000000015: function(arg0, arg1) {
|
|
3649
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
3650
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
3847
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 5074, function: Function { arguments: [NamedExternref("KeyboardEvent")], shim_idx: 5075, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3848
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h01586aaa935c229b, wasm_bindgen__convert__closures_____invoke__h0b56292c51993277_20);
|
|
3651
3849
|
return ret;
|
|
3652
3850
|
},
|
|
3653
3851
|
__wbindgen_cast_0000000000000016: function(arg0, arg1) {
|
|
3654
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
3655
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
3852
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 5074, function: Function { arguments: [NamedExternref("PageTransitionEvent")], shim_idx: 5075, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3853
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h01586aaa935c229b, wasm_bindgen__convert__closures_____invoke__h0b56292c51993277_21);
|
|
3656
3854
|
return ret;
|
|
3657
3855
|
},
|
|
3658
3856
|
__wbindgen_cast_0000000000000017: function(arg0, arg1) {
|
|
3659
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
3660
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
3857
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 5074, function: Function { arguments: [NamedExternref("PointerEvent")], shim_idx: 5075, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3858
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h01586aaa935c229b, wasm_bindgen__convert__closures_____invoke__h0b56292c51993277_22);
|
|
3661
3859
|
return ret;
|
|
3662
3860
|
},
|
|
3663
3861
|
__wbindgen_cast_0000000000000018: function(arg0, arg1) {
|
|
3664
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
3665
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
3862
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 5074, function: Function { arguments: [NamedExternref("WheelEvent")], shim_idx: 5075, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3863
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h01586aaa935c229b, wasm_bindgen__convert__closures_____invoke__h0b56292c51993277_23);
|
|
3666
3864
|
return ret;
|
|
3667
3865
|
},
|
|
3668
3866
|
__wbindgen_cast_0000000000000019: function(arg0, arg1) {
|
|
3669
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
3670
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
3867
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 5074, function: Function { arguments: [Option(NamedExternref("Blob"))], shim_idx: 5088, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3868
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h01586aaa935c229b, wasm_bindgen__convert__closures_____invoke__hc9bc12aad00289ac);
|
|
3671
3869
|
return ret;
|
|
3672
3870
|
},
|
|
3673
3871
|
__wbindgen_cast_000000000000001a: function(arg0, arg1) {
|
|
3674
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
3675
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
3872
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 5074, function: Function { arguments: [], shim_idx: 5084, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3873
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h01586aaa935c229b, wasm_bindgen__convert__closures_____invoke__h073a8682fd4d18a7);
|
|
3676
3874
|
return ret;
|
|
3677
3875
|
},
|
|
3678
3876
|
__wbindgen_cast_000000000000001b: function(arg0, arg1) {
|
|
3679
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
3680
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
3877
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 6523, function: Function { arguments: [], shim_idx: 6524, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3878
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h5f76218d69c4330b, wasm_bindgen__convert__closures_____invoke__hf27645773ed1ccb1);
|
|
3681
3879
|
return ret;
|
|
3682
3880
|
},
|
|
3683
3881
|
__wbindgen_cast_000000000000001c: function(arg0, arg1) {
|
|
3684
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
3685
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
3882
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 6549, function: Function { arguments: [Externref], shim_idx: 6550, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3883
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h426a70819c29b240, wasm_bindgen__convert__closures_____invoke__he3e2fc3e9224f60a);
|
|
3686
3884
|
return ret;
|
|
3687
3885
|
},
|
|
3688
3886
|
__wbindgen_cast_000000000000001d: function(arg0, arg1) {
|
|
3689
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
3690
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
3887
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 6701, function: Function { arguments: [Externref], shim_idx: 6702, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
3888
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__hfe4f5249fec16880, wasm_bindgen__convert__closures_____invoke__h9b10e2fb5365c3d4);
|
|
3691
3889
|
return ret;
|
|
3692
3890
|
},
|
|
3693
3891
|
__wbindgen_cast_000000000000001e: function(arg0) {
|
|
@@ -3721,140 +3919,141 @@ function __wbg_get_imports() {
|
|
|
3721
3919
|
"./snippets/oriverse_wgpu-255445ce6d9a0851/inline1.js": import1,
|
|
3722
3920
|
"./snippets/oriverse_wgpu-255445ce6d9a0851/inline2.js": import2,
|
|
3723
3921
|
"./snippets/oriverse_market_client-0cd3013288f3c49c/inline2.js": import3,
|
|
3724
|
-
"./snippets/oriverse_networking_shared-e43478064e11e46c/
|
|
3922
|
+
"./snippets/oriverse_networking_shared-e43478064e11e46c/inline0.js": import4,
|
|
3923
|
+
"./snippets/oriverse_networking_shared-e43478064e11e46c/inline0.js": import5,
|
|
3725
3924
|
};
|
|
3726
3925
|
}
|
|
3727
3926
|
|
|
3728
3927
|
const lAudioContext = (typeof AudioContext !== 'undefined' ? AudioContext : (typeof webkitAudioContext !== 'undefined' ? webkitAudioContext : undefined));
|
|
3729
|
-
function
|
|
3730
|
-
wasm.
|
|
3928
|
+
function wasm_bindgen__convert__closures_____invoke__h9352838f18f6f0a3(arg0, arg1) {
|
|
3929
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h9352838f18f6f0a3(arg0, arg1);
|
|
3731
3930
|
}
|
|
3732
3931
|
|
|
3733
|
-
function
|
|
3734
|
-
wasm.
|
|
3932
|
+
function wasm_bindgen__convert__closures_____invoke__h073a8682fd4d18a7(arg0, arg1) {
|
|
3933
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h073a8682fd4d18a7(arg0, arg1);
|
|
3735
3934
|
}
|
|
3736
3935
|
|
|
3737
|
-
function
|
|
3738
|
-
wasm.
|
|
3936
|
+
function wasm_bindgen__convert__closures_____invoke__hf27645773ed1ccb1(arg0, arg1) {
|
|
3937
|
+
wasm.wasm_bindgen__convert__closures_____invoke__hf27645773ed1ccb1(arg0, arg1);
|
|
3739
3938
|
}
|
|
3740
3939
|
|
|
3741
|
-
function
|
|
3742
|
-
wasm.
|
|
3940
|
+
function wasm_bindgen__convert__closures_____invoke__h0f238320cf42410c(arg0, arg1, arg2) {
|
|
3941
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h0f238320cf42410c(arg0, arg1, arg2);
|
|
3743
3942
|
}
|
|
3744
3943
|
|
|
3745
|
-
function
|
|
3746
|
-
wasm.
|
|
3944
|
+
function wasm_bindgen__convert__closures_____invoke__h0f238320cf42410c_2(arg0, arg1, arg2) {
|
|
3945
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h0f238320cf42410c_2(arg0, arg1, arg2);
|
|
3747
3946
|
}
|
|
3748
3947
|
|
|
3749
|
-
function
|
|
3750
|
-
wasm.
|
|
3948
|
+
function wasm_bindgen__convert__closures_____invoke__h0f238320cf42410c_3(arg0, arg1, arg2) {
|
|
3949
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h0f238320cf42410c_3(arg0, arg1, arg2);
|
|
3751
3950
|
}
|
|
3752
3951
|
|
|
3753
|
-
function
|
|
3754
|
-
wasm.
|
|
3952
|
+
function wasm_bindgen__convert__closures_____invoke__h0f238320cf42410c_4(arg0, arg1, arg2) {
|
|
3953
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h0f238320cf42410c_4(arg0, arg1, arg2);
|
|
3755
3954
|
}
|
|
3756
3955
|
|
|
3757
|
-
function
|
|
3758
|
-
wasm.
|
|
3956
|
+
function wasm_bindgen__convert__closures_____invoke__h0b6d498dcc7eb891(arg0, arg1, arg2) {
|
|
3957
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h0b6d498dcc7eb891(arg0, arg1, arg2);
|
|
3759
3958
|
}
|
|
3760
3959
|
|
|
3761
|
-
function
|
|
3762
|
-
wasm.
|
|
3960
|
+
function wasm_bindgen__convert__closures_____invoke__h0b6d498dcc7eb891_6(arg0, arg1, arg2) {
|
|
3961
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h0b6d498dcc7eb891_6(arg0, arg1, arg2);
|
|
3763
3962
|
}
|
|
3764
3963
|
|
|
3765
|
-
function
|
|
3766
|
-
wasm.
|
|
3964
|
+
function wasm_bindgen__convert__closures_____invoke__h0b6d498dcc7eb891_7(arg0, arg1, arg2) {
|
|
3965
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h0b6d498dcc7eb891_7(arg0, arg1, arg2);
|
|
3767
3966
|
}
|
|
3768
3967
|
|
|
3769
|
-
function
|
|
3770
|
-
wasm.
|
|
3968
|
+
function wasm_bindgen__convert__closures_____invoke__hc23439410b7688c2(arg0, arg1, arg2) {
|
|
3969
|
+
wasm.wasm_bindgen__convert__closures_____invoke__hc23439410b7688c2(arg0, arg1, arg2);
|
|
3771
3970
|
}
|
|
3772
3971
|
|
|
3773
|
-
function
|
|
3774
|
-
wasm.
|
|
3972
|
+
function wasm_bindgen__convert__closures_____invoke__hbddae924459ac4a5(arg0, arg1, arg2) {
|
|
3973
|
+
wasm.wasm_bindgen__convert__closures_____invoke__hbddae924459ac4a5(arg0, arg1, arg2);
|
|
3775
3974
|
}
|
|
3776
3975
|
|
|
3777
|
-
function
|
|
3778
|
-
wasm.
|
|
3976
|
+
function wasm_bindgen__convert__closures_____invoke__h0b56292c51993277(arg0, arg1, arg2) {
|
|
3977
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h0b56292c51993277(arg0, arg1, arg2);
|
|
3779
3978
|
}
|
|
3780
3979
|
|
|
3781
|
-
function
|
|
3782
|
-
wasm.
|
|
3980
|
+
function wasm_bindgen__convert__closures_____invoke__h0b56292c51993277_17(arg0, arg1, arg2) {
|
|
3981
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h0b56292c51993277_17(arg0, arg1, arg2);
|
|
3783
3982
|
}
|
|
3784
3983
|
|
|
3785
|
-
function
|
|
3786
|
-
wasm.
|
|
3984
|
+
function wasm_bindgen__convert__closures_____invoke__h0b56292c51993277_18(arg0, arg1, arg2) {
|
|
3985
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h0b56292c51993277_18(arg0, arg1, arg2);
|
|
3787
3986
|
}
|
|
3788
3987
|
|
|
3789
|
-
function
|
|
3790
|
-
wasm.
|
|
3988
|
+
function wasm_bindgen__convert__closures_____invoke__h0b56292c51993277_19(arg0, arg1, arg2) {
|
|
3989
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h0b56292c51993277_19(arg0, arg1, arg2);
|
|
3791
3990
|
}
|
|
3792
3991
|
|
|
3793
|
-
function
|
|
3794
|
-
wasm.
|
|
3992
|
+
function wasm_bindgen__convert__closures_____invoke__h0b56292c51993277_20(arg0, arg1, arg2) {
|
|
3993
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h0b56292c51993277_20(arg0, arg1, arg2);
|
|
3795
3994
|
}
|
|
3796
3995
|
|
|
3797
|
-
function
|
|
3798
|
-
wasm.
|
|
3996
|
+
function wasm_bindgen__convert__closures_____invoke__h0b56292c51993277_21(arg0, arg1, arg2) {
|
|
3997
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h0b56292c51993277_21(arg0, arg1, arg2);
|
|
3799
3998
|
}
|
|
3800
3999
|
|
|
3801
|
-
function
|
|
3802
|
-
wasm.
|
|
4000
|
+
function wasm_bindgen__convert__closures_____invoke__h0b56292c51993277_22(arg0, arg1, arg2) {
|
|
4001
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h0b56292c51993277_22(arg0, arg1, arg2);
|
|
3803
4002
|
}
|
|
3804
4003
|
|
|
3805
|
-
function
|
|
3806
|
-
wasm.
|
|
4004
|
+
function wasm_bindgen__convert__closures_____invoke__h0b56292c51993277_23(arg0, arg1, arg2) {
|
|
4005
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h0b56292c51993277_23(arg0, arg1, arg2);
|
|
3807
4006
|
}
|
|
3808
4007
|
|
|
3809
|
-
function
|
|
3810
|
-
wasm.
|
|
4008
|
+
function wasm_bindgen__convert__closures_____invoke__he3e2fc3e9224f60a(arg0, arg1, arg2) {
|
|
4009
|
+
wasm.wasm_bindgen__convert__closures_____invoke__he3e2fc3e9224f60a(arg0, arg1, arg2);
|
|
3811
4010
|
}
|
|
3812
4011
|
|
|
3813
|
-
function
|
|
3814
|
-
const ret = wasm.
|
|
4012
|
+
function wasm_bindgen__convert__closures_____invoke__h9b10e2fb5365c3d4(arg0, arg1, arg2) {
|
|
4013
|
+
const ret = wasm.wasm_bindgen__convert__closures_____invoke__h9b10e2fb5365c3d4(arg0, arg1, arg2);
|
|
3815
4014
|
if (ret[1]) {
|
|
3816
4015
|
throw takeFromExternrefTable0(ret[0]);
|
|
3817
4016
|
}
|
|
3818
4017
|
}
|
|
3819
4018
|
|
|
3820
|
-
function
|
|
3821
|
-
wasm.
|
|
4019
|
+
function wasm_bindgen__convert__closures_____invoke__hcde27779393c179f(arg0, arg1, arg2, arg3) {
|
|
4020
|
+
wasm.wasm_bindgen__convert__closures_____invoke__hcde27779393c179f(arg0, arg1, arg2, arg3);
|
|
3822
4021
|
}
|
|
3823
4022
|
|
|
3824
|
-
function
|
|
3825
|
-
wasm.
|
|
4023
|
+
function wasm_bindgen__convert__closures_____invoke__ha9edd7259da4f7ff(arg0, arg1, arg2, arg3) {
|
|
4024
|
+
wasm.wasm_bindgen__convert__closures_____invoke__ha9edd7259da4f7ff(arg0, arg1, arg2, arg3);
|
|
3826
4025
|
}
|
|
3827
4026
|
|
|
3828
4027
|
function wasm_bindgen__convert__closures_____invoke__h4e1d18a25cb702b7(arg0, arg1, arg2, arg3) {
|
|
3829
4028
|
wasm.wasm_bindgen__convert__closures_____invoke__h4e1d18a25cb702b7(arg0, arg1, arg2, arg3);
|
|
3830
4029
|
}
|
|
3831
4030
|
|
|
3832
|
-
function
|
|
3833
|
-
wasm.
|
|
4031
|
+
function wasm_bindgen__convert__closures_____invoke__hc9bc12aad00289ac(arg0, arg1, arg2) {
|
|
4032
|
+
wasm.wasm_bindgen__convert__closures_____invoke__hc9bc12aad00289ac(arg0, arg1, isLikeNone(arg2) ? 0 : addToExternrefTable0(arg2));
|
|
3834
4033
|
}
|
|
3835
4034
|
|
|
3836
|
-
function
|
|
4035
|
+
function wasm_bindgen__convert__closures_____invoke__haf80bd5c9e726856(arg0, arg1, arg2) {
|
|
3837
4036
|
const ptr0 = passStringToWasm0(arg2, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3838
4037
|
const len0 = WASM_VECTOR_LEN;
|
|
3839
|
-
wasm.
|
|
4038
|
+
wasm.wasm_bindgen__convert__closures_____invoke__haf80bd5c9e726856(arg0, arg1, ptr0, len0);
|
|
3840
4039
|
}
|
|
3841
4040
|
|
|
3842
|
-
function
|
|
4041
|
+
function wasm_bindgen__convert__closures_____invoke__h424d6446a1394875(arg0, arg1, arg2, arg3) {
|
|
3843
4042
|
const ptr0 = passStringToWasm0(arg2, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3844
4043
|
const len0 = WASM_VECTOR_LEN;
|
|
3845
|
-
wasm.
|
|
4044
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h424d6446a1394875(arg0, arg1, ptr0, len0, arg3);
|
|
3846
4045
|
}
|
|
3847
4046
|
|
|
3848
|
-
function
|
|
4047
|
+
function wasm_bindgen__convert__closures_____invoke__h3ea98b1708d6cda3(arg0, arg1, arg2, arg3, arg4) {
|
|
3849
4048
|
const ptr0 = passStringToWasm0(arg2, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3850
4049
|
const len0 = WASM_VECTOR_LEN;
|
|
3851
4050
|
const ptr1 = passStringToWasm0(arg3, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3852
4051
|
const len1 = WASM_VECTOR_LEN;
|
|
3853
|
-
wasm.
|
|
4052
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h3ea98b1708d6cda3(arg0, arg1, ptr0, len0, ptr1, len1, arg4);
|
|
3854
4053
|
}
|
|
3855
4054
|
|
|
3856
|
-
function
|
|
3857
|
-
wasm.
|
|
4055
|
+
function wasm_bindgen__convert__closures_____invoke__hd9c0e2a4ba20f18a(arg0, arg1, arg2, arg3, arg4) {
|
|
4056
|
+
wasm.wasm_bindgen__convert__closures_____invoke__hd9c0e2a4ba20f18a(arg0, arg1, arg2, arg3, arg4);
|
|
3858
4057
|
}
|
|
3859
4058
|
|
|
3860
4059
|
|