oriverse-engine 0.1.1
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 -0
- package/README.md +76 -0
- package/dist/AGENT_ONBOARDING.md +74 -0
- package/dist/CODEX_PROMPT.md +108 -0
- package/dist/GAME_AUTHORING.md +512 -0
- package/dist/examples/coin_collector.weave +70 -0
- package/dist/examples/dodge_blocks.weave +70 -0
- package/dist/examples/target_range.weave +82 -0
- package/dist/ktx_bridge.js +121 -0
- package/dist/ktx_lib.js +5236 -0
- package/dist/ktx_lib.wasm +0 -0
- package/dist/oriverse_wgpu.d.ts +174 -0
- package/dist/oriverse_wgpu.js +3361 -0
- package/dist/oriverse_wgpu_bg.wasm +0 -0
- package/dist/oriverse_wgpu_bg.wasm.d.ts +73 -0
- package/dist/snippets/oriverse_market_client-0cd3013288f3c49c/inline0.js +30 -0
- package/dist/snippets/oriverse_networking_shared-e43478064e11e46c/inline0.js +18 -0
- package/dist/snippets/oriverse_wgpu-255445ce6d9a0851/inline0.js +60 -0
- package/dist/snippets/oriverse_wgpu-255445ce6d9a0851/inline1.js +21 -0
- package/dist/starter/AGENTS.md +32 -0
- package/dist/starter/CLAUDE.md +32 -0
- package/dist/starter/game.html +64 -0
- package/dist/templates/game.html +63 -0
- package/dist/templates/game_cdn.html +64 -0
- package/dist/weave_documentation.txt +6258 -0
- package/package.json +18 -0
|
@@ -0,0 +1,3361 @@
|
|
|
1
|
+
/* @ts-self-types="./oriverse_wgpu.d.ts" */
|
|
2
|
+
import { marketClientInitMessageBridge, marketClientPostMessage } from './snippets/oriverse_market_client-0cd3013288f3c49c/inline0.js';
|
|
3
|
+
|
|
4
|
+
export class IntoUnderlyingByteSource {
|
|
5
|
+
__destroy_into_raw() {
|
|
6
|
+
const ptr = this.__wbg_ptr;
|
|
7
|
+
this.__wbg_ptr = 0;
|
|
8
|
+
IntoUnderlyingByteSourceFinalization.unregister(this);
|
|
9
|
+
return ptr;
|
|
10
|
+
}
|
|
11
|
+
free() {
|
|
12
|
+
const ptr = this.__destroy_into_raw();
|
|
13
|
+
wasm.__wbg_intounderlyingbytesource_free(ptr, 0);
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* @returns {number}
|
|
17
|
+
*/
|
|
18
|
+
get autoAllocateChunkSize() {
|
|
19
|
+
const ret = wasm.intounderlyingbytesource_autoAllocateChunkSize(this.__wbg_ptr);
|
|
20
|
+
return ret >>> 0;
|
|
21
|
+
}
|
|
22
|
+
cancel() {
|
|
23
|
+
const ptr = this.__destroy_into_raw();
|
|
24
|
+
wasm.intounderlyingbytesource_cancel(ptr);
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* @param {ReadableByteStreamController} controller
|
|
28
|
+
* @returns {Promise<any>}
|
|
29
|
+
*/
|
|
30
|
+
pull(controller) {
|
|
31
|
+
const ret = wasm.intounderlyingbytesource_pull(this.__wbg_ptr, controller);
|
|
32
|
+
return ret;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* @param {ReadableByteStreamController} controller
|
|
36
|
+
*/
|
|
37
|
+
start(controller) {
|
|
38
|
+
wasm.intounderlyingbytesource_start(this.__wbg_ptr, controller);
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* @returns {ReadableStreamType}
|
|
42
|
+
*/
|
|
43
|
+
get type() {
|
|
44
|
+
const ret = wasm.intounderlyingbytesource_type(this.__wbg_ptr);
|
|
45
|
+
return __wbindgen_enum_ReadableStreamType[ret];
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
if (Symbol.dispose) IntoUnderlyingByteSource.prototype[Symbol.dispose] = IntoUnderlyingByteSource.prototype.free;
|
|
49
|
+
|
|
50
|
+
export class IntoUnderlyingSink {
|
|
51
|
+
__destroy_into_raw() {
|
|
52
|
+
const ptr = this.__wbg_ptr;
|
|
53
|
+
this.__wbg_ptr = 0;
|
|
54
|
+
IntoUnderlyingSinkFinalization.unregister(this);
|
|
55
|
+
return ptr;
|
|
56
|
+
}
|
|
57
|
+
free() {
|
|
58
|
+
const ptr = this.__destroy_into_raw();
|
|
59
|
+
wasm.__wbg_intounderlyingsink_free(ptr, 0);
|
|
60
|
+
}
|
|
61
|
+
/**
|
|
62
|
+
* @param {any} reason
|
|
63
|
+
* @returns {Promise<any>}
|
|
64
|
+
*/
|
|
65
|
+
abort(reason) {
|
|
66
|
+
const ptr = this.__destroy_into_raw();
|
|
67
|
+
const ret = wasm.intounderlyingsink_abort(ptr, reason);
|
|
68
|
+
return ret;
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* @returns {Promise<any>}
|
|
72
|
+
*/
|
|
73
|
+
close() {
|
|
74
|
+
const ptr = this.__destroy_into_raw();
|
|
75
|
+
const ret = wasm.intounderlyingsink_close(ptr);
|
|
76
|
+
return ret;
|
|
77
|
+
}
|
|
78
|
+
/**
|
|
79
|
+
* @param {any} chunk
|
|
80
|
+
* @returns {Promise<any>}
|
|
81
|
+
*/
|
|
82
|
+
write(chunk) {
|
|
83
|
+
const ret = wasm.intounderlyingsink_write(this.__wbg_ptr, chunk);
|
|
84
|
+
return ret;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
if (Symbol.dispose) IntoUnderlyingSink.prototype[Symbol.dispose] = IntoUnderlyingSink.prototype.free;
|
|
88
|
+
|
|
89
|
+
export class IntoUnderlyingSource {
|
|
90
|
+
__destroy_into_raw() {
|
|
91
|
+
const ptr = this.__wbg_ptr;
|
|
92
|
+
this.__wbg_ptr = 0;
|
|
93
|
+
IntoUnderlyingSourceFinalization.unregister(this);
|
|
94
|
+
return ptr;
|
|
95
|
+
}
|
|
96
|
+
free() {
|
|
97
|
+
const ptr = this.__destroy_into_raw();
|
|
98
|
+
wasm.__wbg_intounderlyingsource_free(ptr, 0);
|
|
99
|
+
}
|
|
100
|
+
cancel() {
|
|
101
|
+
const ptr = this.__destroy_into_raw();
|
|
102
|
+
wasm.intounderlyingsource_cancel(ptr);
|
|
103
|
+
}
|
|
104
|
+
/**
|
|
105
|
+
* @param {ReadableStreamDefaultController} controller
|
|
106
|
+
* @returns {Promise<any>}
|
|
107
|
+
*/
|
|
108
|
+
pull(controller) {
|
|
109
|
+
const ret = wasm.intounderlyingsource_pull(this.__wbg_ptr, controller);
|
|
110
|
+
return ret;
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
if (Symbol.dispose) IntoUnderlyingSource.prototype[Symbol.dispose] = IntoUnderlyingSource.prototype.free;
|
|
114
|
+
|
|
115
|
+
/**
|
|
116
|
+
* Boot the Oriverse artifact engine with inline Weave source. Call once, after `await init()`
|
|
117
|
+
* (the module's default export) resolves. Only needed when the page has no
|
|
118
|
+
* `<script type="text/weave" id="oriverse-weave">` tag: with that tag present the engine
|
|
119
|
+
* auto-boots and this call is ignored with a console warning.
|
|
120
|
+
* @param {string} weave_source
|
|
121
|
+
* @returns {Promise<void>}
|
|
122
|
+
*/
|
|
123
|
+
export function bootOriverseArtifact(weave_source) {
|
|
124
|
+
const ptr0 = passStringToWasm0(weave_source, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
125
|
+
const len0 = WASM_VECTOR_LEN;
|
|
126
|
+
const ret = wasm.bootOriverseArtifact(ptr0, len0);
|
|
127
|
+
return ret;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
/**
|
|
131
|
+
* @param {any} worker
|
|
132
|
+
*/
|
|
133
|
+
export function init_market_client_message_bridge(worker) {
|
|
134
|
+
const ret = wasm.init_market_client_message_bridge(worker);
|
|
135
|
+
if (ret[1]) {
|
|
136
|
+
throw takeFromExternrefTable0(ret[0]);
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
/**
|
|
141
|
+
* @param {number} world_ptr
|
|
142
|
+
* @param {number} netctx_ptr
|
|
143
|
+
* @param {number} client_arc
|
|
144
|
+
* @param {number} undo_arc
|
|
145
|
+
* @param {number} updates_arc
|
|
146
|
+
* @param {number} display_packets_arc
|
|
147
|
+
* @param {number} display_packets_count_arc
|
|
148
|
+
* @param {number} force_next_full_visual_sync_arc
|
|
149
|
+
* @param {number} last_display_visual_fingerprint_arc
|
|
150
|
+
* @param {number} latest_no_visual_frame_id_arc
|
|
151
|
+
* @param {number} latest_no_visual_world_generation_arc
|
|
152
|
+
* @param {number} latest_no_visual_seq_arc
|
|
153
|
+
* @param {number} start_flag_arc
|
|
154
|
+
*/
|
|
155
|
+
export function sim_worker_init(world_ptr, netctx_ptr, client_arc, undo_arc, updates_arc, display_packets_arc, display_packets_count_arc, force_next_full_visual_sync_arc, last_display_visual_fingerprint_arc, latest_no_visual_frame_id_arc, latest_no_visual_world_generation_arc, latest_no_visual_seq_arc, start_flag_arc) {
|
|
156
|
+
wasm.sim_worker_init(world_ptr, netctx_ptr, client_arc, undo_arc, updates_arc, display_packets_arc, display_packets_count_arc, force_next_full_visual_sync_arc, last_display_visual_fingerprint_arc, latest_no_visual_frame_id_arc, latest_no_visual_world_generation_arc, latest_no_visual_seq_arc, start_flag_arc);
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
/**
|
|
160
|
+
* @param {number} frame_ms
|
|
161
|
+
*/
|
|
162
|
+
export function sim_worker_start_ticker(frame_ms) {
|
|
163
|
+
const ret = wasm.sim_worker_start_ticker(frame_ms);
|
|
164
|
+
if (ret[1]) {
|
|
165
|
+
throw takeFromExternrefTable0(ret[0]);
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
/**
|
|
170
|
+
* @returns {Promise<void>}
|
|
171
|
+
*/
|
|
172
|
+
export function start_wasm_oriverse() {
|
|
173
|
+
wasm.start_wasm_oriverse();
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
/**
|
|
177
|
+
* Synchronous `#[wasm_bindgen]` export the worker calls inside `onmessage`. The whole
|
|
178
|
+
* sim path (`simulate_world_description` -> `simulate_build_world` -> `run_n_frames`)
|
|
179
|
+
* is sync, so a sync export is simplest; the main-side bridge stays async via a oneshot.
|
|
180
|
+
* Returns the `SimulateCliJsonResult` JSON. A panic aborts the worker (panic=abort) and
|
|
181
|
+
* surfaces to main via the JS catch / `onerror`, not as a return value.
|
|
182
|
+
* @param {string} world_text
|
|
183
|
+
* @param {number} frames
|
|
184
|
+
* @returns {string}
|
|
185
|
+
*/
|
|
186
|
+
export function validate_world_entry(world_text, frames) {
|
|
187
|
+
let deferred2_0;
|
|
188
|
+
let deferred2_1;
|
|
189
|
+
try {
|
|
190
|
+
const ptr0 = passStringToWasm0(world_text, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
191
|
+
const len0 = WASM_VECTOR_LEN;
|
|
192
|
+
const ret = wasm.validate_world_entry(ptr0, len0, frames);
|
|
193
|
+
deferred2_0 = ret[0];
|
|
194
|
+
deferred2_1 = ret[1];
|
|
195
|
+
return getStringFromWasm0(ret[0], ret[1]);
|
|
196
|
+
} finally {
|
|
197
|
+
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
/**
|
|
202
|
+
* Worker-side entry for one-shot shared-heap validation. The main thread owns
|
|
203
|
+
* `SharedValidationGateGuard`; the worker only checks that the gate is active.
|
|
204
|
+
* @param {string} world_text
|
|
205
|
+
* @param {number} frames
|
|
206
|
+
* @returns {string}
|
|
207
|
+
*/
|
|
208
|
+
export function validate_world_shared_entry(world_text, frames) {
|
|
209
|
+
let deferred2_0;
|
|
210
|
+
let deferred2_1;
|
|
211
|
+
try {
|
|
212
|
+
const ptr0 = passStringToWasm0(world_text, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
213
|
+
const len0 = WASM_VECTOR_LEN;
|
|
214
|
+
const ret = wasm.validate_world_shared_entry(ptr0, len0, frames);
|
|
215
|
+
deferred2_0 = ret[0];
|
|
216
|
+
deferred2_1 = ret[1];
|
|
217
|
+
return getStringFromWasm0(ret[0], ret[1]);
|
|
218
|
+
} finally {
|
|
219
|
+
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
/**
|
|
224
|
+
* @param {RTCDataChannel} dc
|
|
225
|
+
*/
|
|
226
|
+
export function worker_attach_read_dc(dc) {
|
|
227
|
+
wasm.worker_attach_read_dc(dc);
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
/**
|
|
231
|
+
* @param {RTCDataChannel} dc_fast
|
|
232
|
+
* @param {RTCDataChannel} dc_strict
|
|
233
|
+
*/
|
|
234
|
+
export function worker_attach_write_dc(dc_fast, dc_strict) {
|
|
235
|
+
wasm.worker_attach_write_dc(dc_fast, dc_strict);
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
/**
|
|
239
|
+
* @param {number} state_ptr
|
|
240
|
+
* @param {number} keypair_ptr
|
|
241
|
+
*/
|
|
242
|
+
export function worker_init(state_ptr, keypair_ptr) {
|
|
243
|
+
wasm.worker_init(state_ptr, keypair_ptr);
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
/**
|
|
247
|
+
* @param {number} xq_fast_ptr
|
|
248
|
+
* @param {number} xq_strict_ptr
|
|
249
|
+
* @param {number} state_ptr
|
|
250
|
+
* @param {number} kp_ptr
|
|
251
|
+
*/
|
|
252
|
+
export function worker_init_write(xq_fast_ptr, xq_strict_ptr, state_ptr, kp_ptr) {
|
|
253
|
+
wasm.worker_init_write(xq_fast_ptr, xq_strict_ptr, state_ptr, kp_ptr);
|
|
254
|
+
}
|
|
255
|
+
import * as import1 from "./snippets/oriverse_wgpu-255445ce6d9a0851/inline1.js"
|
|
256
|
+
import * as import2 from "./snippets/oriverse_wgpu-255445ce6d9a0851/inline0.js"
|
|
257
|
+
import * as import3 from "./snippets/oriverse_market_client-0cd3013288f3c49c/inline0.js"
|
|
258
|
+
import * as import4 from "./snippets/oriverse_networking_shared-e43478064e11e46c/inline0.js"
|
|
259
|
+
|
|
260
|
+
function __wbg_get_imports() {
|
|
261
|
+
const import0 = {
|
|
262
|
+
__proto__: null,
|
|
263
|
+
__wbg_Window_b0c275b50676d397: function(arg0) {
|
|
264
|
+
const ret = arg0.Window;
|
|
265
|
+
return ret;
|
|
266
|
+
},
|
|
267
|
+
__wbg_Window_c7f91e3f80ae0a0e: function(arg0) {
|
|
268
|
+
const ret = arg0.Window;
|
|
269
|
+
return ret;
|
|
270
|
+
},
|
|
271
|
+
__wbg_WorkerGlobalScope_7a1f78d9f7542cfa: function(arg0) {
|
|
272
|
+
const ret = arg0.WorkerGlobalScope;
|
|
273
|
+
return ret;
|
|
274
|
+
},
|
|
275
|
+
__wbg___wbindgen_boolean_get_c0f3f60bac5a78d1: function(arg0) {
|
|
276
|
+
const v = arg0;
|
|
277
|
+
const ret = typeof(v) === 'boolean' ? v : undefined;
|
|
278
|
+
return isLikeNone(ret) ? 0xFFFFFF : ret ? 1 : 0;
|
|
279
|
+
},
|
|
280
|
+
__wbg___wbindgen_debug_string_5398f5bb970e0daa: function(arg0, arg1) {
|
|
281
|
+
const ret = debugString(arg1);
|
|
282
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
283
|
+
const len1 = WASM_VECTOR_LEN;
|
|
284
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
285
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
286
|
+
},
|
|
287
|
+
__wbg___wbindgen_is_function_3c846841762788c1: function(arg0) {
|
|
288
|
+
const ret = typeof(arg0) === 'function';
|
|
289
|
+
return ret;
|
|
290
|
+
},
|
|
291
|
+
__wbg___wbindgen_is_null_0b605fc6b167c56f: function(arg0) {
|
|
292
|
+
const ret = arg0 === null;
|
|
293
|
+
return ret;
|
|
294
|
+
},
|
|
295
|
+
__wbg___wbindgen_is_object_781bc9f159099513: function(arg0) {
|
|
296
|
+
const val = arg0;
|
|
297
|
+
const ret = typeof(val) === 'object' && val !== null;
|
|
298
|
+
return ret;
|
|
299
|
+
},
|
|
300
|
+
__wbg___wbindgen_is_string_7ef6b97b02428fae: function(arg0) {
|
|
301
|
+
const ret = typeof(arg0) === 'string';
|
|
302
|
+
return ret;
|
|
303
|
+
},
|
|
304
|
+
__wbg___wbindgen_is_undefined_52709e72fb9f179c: function(arg0) {
|
|
305
|
+
const ret = arg0 === undefined;
|
|
306
|
+
return ret;
|
|
307
|
+
},
|
|
308
|
+
__wbg___wbindgen_memory_edb3f01e3930bbf6: function() {
|
|
309
|
+
const ret = wasm.memory;
|
|
310
|
+
return ret;
|
|
311
|
+
},
|
|
312
|
+
__wbg___wbindgen_module_bf945c07123bafe2: function() {
|
|
313
|
+
const ret = wasmModule;
|
|
314
|
+
return ret;
|
|
315
|
+
},
|
|
316
|
+
__wbg___wbindgen_number_get_34bb9d9dcfa21373: function(arg0, arg1) {
|
|
317
|
+
const obj = arg1;
|
|
318
|
+
const ret = typeof(obj) === 'number' ? obj : undefined;
|
|
319
|
+
getDataViewMemory0().setFloat64(arg0 + 8 * 1, isLikeNone(ret) ? 0 : ret, true);
|
|
320
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
321
|
+
},
|
|
322
|
+
__wbg___wbindgen_rethrow_5d3a9250cec92549: function(arg0) {
|
|
323
|
+
throw arg0;
|
|
324
|
+
},
|
|
325
|
+
__wbg___wbindgen_string_get_395e606bd0ee4427: function(arg0, arg1) {
|
|
326
|
+
const obj = arg1;
|
|
327
|
+
const ret = typeof(obj) === 'string' ? obj : undefined;
|
|
328
|
+
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
329
|
+
var len1 = WASM_VECTOR_LEN;
|
|
330
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
331
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
332
|
+
},
|
|
333
|
+
__wbg___wbindgen_throw_6ddd609b62940d55: function(arg0, arg1) {
|
|
334
|
+
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
335
|
+
},
|
|
336
|
+
__wbg__wbg_cb_unref_6b5b6b8576d35cb1: function(arg0) {
|
|
337
|
+
arg0._wbg_cb_unref();
|
|
338
|
+
},
|
|
339
|
+
__wbg_abort_5ef96933660780b7: function(arg0) {
|
|
340
|
+
arg0.abort();
|
|
341
|
+
},
|
|
342
|
+
__wbg_abort_6479c2d794ebf2ee: function(arg0, arg1) {
|
|
343
|
+
arg0.abort(arg1);
|
|
344
|
+
},
|
|
345
|
+
__wbg_activeElement_c2981ba623ac16d9: function(arg0) {
|
|
346
|
+
const ret = arg0.activeElement;
|
|
347
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
348
|
+
},
|
|
349
|
+
__wbg_addEventListener_2d985aa8a656f6dc: function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
350
|
+
arg0.addEventListener(getStringFromWasm0(arg1, arg2), arg3);
|
|
351
|
+
}, arguments); },
|
|
352
|
+
__wbg_addEventListener_97281b0177d72360: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
353
|
+
arg0.addEventListener(getStringFromWasm0(arg1, arg2), arg3, arg4);
|
|
354
|
+
}, arguments); },
|
|
355
|
+
__wbg_addIceCandidate_9b500012261bd3da: function(arg0, arg1) {
|
|
356
|
+
const ret = arg0.addIceCandidate(arg1);
|
|
357
|
+
return ret;
|
|
358
|
+
},
|
|
359
|
+
__wbg_addListener_af610a227738fed8: function() { return handleError(function (arg0, arg1) {
|
|
360
|
+
arg0.addListener(arg1);
|
|
361
|
+
}, arguments); },
|
|
362
|
+
__wbg_altKey_7f2c3a24bf5420ae: function(arg0) {
|
|
363
|
+
const ret = arg0.altKey;
|
|
364
|
+
return ret;
|
|
365
|
+
},
|
|
366
|
+
__wbg_altKey_a8e58d65866de029: function(arg0) {
|
|
367
|
+
const ret = arg0.altKey;
|
|
368
|
+
return ret;
|
|
369
|
+
},
|
|
370
|
+
__wbg_animate_8f41e2f47c7d04ab: function(arg0, arg1, arg2) {
|
|
371
|
+
const ret = arg0.animate(arg1, arg2);
|
|
372
|
+
return ret;
|
|
373
|
+
},
|
|
374
|
+
__wbg_appendChild_8cb157b6ec5612a6: function() { return handleError(function (arg0, arg1) {
|
|
375
|
+
const ret = arg0.appendChild(arg1);
|
|
376
|
+
return ret;
|
|
377
|
+
}, arguments); },
|
|
378
|
+
__wbg_append_608dfb635ee8998f: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
379
|
+
arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
380
|
+
}, arguments); },
|
|
381
|
+
__wbg_arrayBuffer_7ff5e58aa85a64f7: function(arg0) {
|
|
382
|
+
const ret = arg0.arrayBuffer();
|
|
383
|
+
return ret;
|
|
384
|
+
},
|
|
385
|
+
__wbg_arrayBuffer_eb8e9ca620af2a19: function() { return handleError(function (arg0) {
|
|
386
|
+
const ret = arg0.arrayBuffer();
|
|
387
|
+
return ret;
|
|
388
|
+
}, arguments); },
|
|
389
|
+
__wbg_beginComputePass_0fb772608bf84f44: function(arg0, arg1) {
|
|
390
|
+
const ret = arg0.beginComputePass(arg1);
|
|
391
|
+
return ret;
|
|
392
|
+
},
|
|
393
|
+
__wbg_beginRenderPass_c662486e5caabb09: function(arg0, arg1) {
|
|
394
|
+
const ret = arg0.beginRenderPass(arg1);
|
|
395
|
+
return ret;
|
|
396
|
+
},
|
|
397
|
+
__wbg_blockSize_5871fe73cc8dcba0: function(arg0) {
|
|
398
|
+
const ret = arg0.blockSize;
|
|
399
|
+
return ret;
|
|
400
|
+
},
|
|
401
|
+
__wbg_blur_d2a9a0c579ce1c5f: function() { return handleError(function (arg0) {
|
|
402
|
+
arg0.blur();
|
|
403
|
+
}, arguments); },
|
|
404
|
+
__wbg_body_5eb99e7257e5ae34: function(arg0) {
|
|
405
|
+
const ret = arg0.body;
|
|
406
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
407
|
+
},
|
|
408
|
+
__wbg_body_ac1dad652946e6da: function(arg0) {
|
|
409
|
+
const ret = arg0.body;
|
|
410
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
411
|
+
},
|
|
412
|
+
__wbg_brand_3bc196a43eceb8af: function(arg0, arg1) {
|
|
413
|
+
const ret = arg1.brand;
|
|
414
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
415
|
+
const len1 = WASM_VECTOR_LEN;
|
|
416
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
417
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
418
|
+
},
|
|
419
|
+
__wbg_brands_b7dcf262485c3e7c: function(arg0) {
|
|
420
|
+
const ret = arg0.brands;
|
|
421
|
+
return ret;
|
|
422
|
+
},
|
|
423
|
+
__wbg_buffer_60b8043cd926067d: function(arg0) {
|
|
424
|
+
const ret = arg0.buffer;
|
|
425
|
+
return ret;
|
|
426
|
+
},
|
|
427
|
+
__wbg_bufferedAmount_343e5effa6f58007: function(arg0) {
|
|
428
|
+
const ret = arg0.bufferedAmount;
|
|
429
|
+
return ret;
|
|
430
|
+
},
|
|
431
|
+
__wbg_button_bdc91677bd7bbf58: function(arg0) {
|
|
432
|
+
const ret = arg0.button;
|
|
433
|
+
return ret;
|
|
434
|
+
},
|
|
435
|
+
__wbg_buttons_a18e71d5dcec8ba9: function(arg0) {
|
|
436
|
+
const ret = arg0.buttons;
|
|
437
|
+
return ret;
|
|
438
|
+
},
|
|
439
|
+
__wbg_byobRequest_6342e5f2b232c0f9: function(arg0) {
|
|
440
|
+
const ret = arg0.byobRequest;
|
|
441
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
442
|
+
},
|
|
443
|
+
__wbg_byteLength_607b856aa6c5a508: function(arg0) {
|
|
444
|
+
const ret = arg0.byteLength;
|
|
445
|
+
return ret;
|
|
446
|
+
},
|
|
447
|
+
__wbg_byteOffset_b26b63681c83856c: function(arg0) {
|
|
448
|
+
const ret = arg0.byteOffset;
|
|
449
|
+
return ret;
|
|
450
|
+
},
|
|
451
|
+
__wbg_call_2d781c1f4d5c0ef8: function() { return handleError(function (arg0, arg1, arg2) {
|
|
452
|
+
const ret = arg0.call(arg1, arg2);
|
|
453
|
+
return ret;
|
|
454
|
+
}, arguments); },
|
|
455
|
+
__wbg_call_89797ac1adb21543: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
456
|
+
const ret = arg0.call(arg1, arg2, arg3, arg4, arg5);
|
|
457
|
+
return ret;
|
|
458
|
+
}, arguments); },
|
|
459
|
+
__wbg_call_dcc2662fa17a72cf: function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
460
|
+
const ret = arg0.call(arg1, arg2, arg3);
|
|
461
|
+
return ret;
|
|
462
|
+
}, arguments); },
|
|
463
|
+
__wbg_call_e133b57c9155d22c: function() { return handleError(function (arg0, arg1) {
|
|
464
|
+
const ret = arg0.call(arg1);
|
|
465
|
+
return ret;
|
|
466
|
+
}, arguments); },
|
|
467
|
+
__wbg_cancelAnimationFrame_43fad84647f46036: function() { return handleError(function (arg0, arg1) {
|
|
468
|
+
arg0.cancelAnimationFrame(arg1);
|
|
469
|
+
}, arguments); },
|
|
470
|
+
__wbg_cancelIdleCallback_d3eb47e732dd4bcd: function(arg0, arg1) {
|
|
471
|
+
arg0.cancelIdleCallback(arg1 >>> 0);
|
|
472
|
+
},
|
|
473
|
+
__wbg_cancel_65f38182e2eeac5c: function(arg0) {
|
|
474
|
+
arg0.cancel();
|
|
475
|
+
},
|
|
476
|
+
__wbg_cancel_79b3bea07a1028e7: function(arg0) {
|
|
477
|
+
const ret = arg0.cancel();
|
|
478
|
+
return ret;
|
|
479
|
+
},
|
|
480
|
+
__wbg_candidate_0c5936b6ab365062: function(arg0, arg1) {
|
|
481
|
+
const ret = arg1.candidate;
|
|
482
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
483
|
+
const len1 = WASM_VECTOR_LEN;
|
|
484
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
485
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
486
|
+
},
|
|
487
|
+
__wbg_candidate_e2ce064647d50ec1: function(arg0) {
|
|
488
|
+
const ret = arg0.candidate;
|
|
489
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
490
|
+
},
|
|
491
|
+
__wbg_catch_d7ed0375ab6532a5: function(arg0, arg1) {
|
|
492
|
+
const ret = arg0.catch(arg1);
|
|
493
|
+
return ret;
|
|
494
|
+
},
|
|
495
|
+
__wbg_channel_101968002da8aca4: function(arg0) {
|
|
496
|
+
const ret = arg0.channel;
|
|
497
|
+
return ret;
|
|
498
|
+
},
|
|
499
|
+
__wbg_clearBuffer_e063e34f4a181e05: function(arg0, arg1, arg2, arg3) {
|
|
500
|
+
arg0.clearBuffer(arg1, arg2, arg3);
|
|
501
|
+
},
|
|
502
|
+
__wbg_clearBuffer_f330030ddc7767fc: function(arg0, arg1, arg2) {
|
|
503
|
+
arg0.clearBuffer(arg1, arg2);
|
|
504
|
+
},
|
|
505
|
+
__wbg_clearTimeout_113b1cde814ec762: function(arg0) {
|
|
506
|
+
const ret = clearTimeout(arg0);
|
|
507
|
+
return ret;
|
|
508
|
+
},
|
|
509
|
+
__wbg_clearTimeout_6b8d9a38b9263d65: function(arg0) {
|
|
510
|
+
const ret = clearTimeout(arg0);
|
|
511
|
+
return ret;
|
|
512
|
+
},
|
|
513
|
+
__wbg_clearTimeout_fdfb5a1468af1a97: function(arg0, arg1) {
|
|
514
|
+
arg0.clearTimeout(arg1);
|
|
515
|
+
},
|
|
516
|
+
__wbg_clientHeight_3d6e452054fdbc3b: function(arg0) {
|
|
517
|
+
const ret = arg0.clientHeight;
|
|
518
|
+
return ret;
|
|
519
|
+
},
|
|
520
|
+
__wbg_clientWidth_33c7e9c1bcdf4a7e: function(arg0) {
|
|
521
|
+
const ret = arg0.clientWidth;
|
|
522
|
+
return ret;
|
|
523
|
+
},
|
|
524
|
+
__wbg_clientX_eff94e775c0667a2: function(arg0) {
|
|
525
|
+
const ret = arg0.clientX;
|
|
526
|
+
return ret;
|
|
527
|
+
},
|
|
528
|
+
__wbg_clientY_6293e127369957bf: function(arg0) {
|
|
529
|
+
const ret = arg0.clientY;
|
|
530
|
+
return ret;
|
|
531
|
+
},
|
|
532
|
+
__wbg_clipboard_0285d75eacda5282: function(arg0) {
|
|
533
|
+
const ret = arg0.clipboard;
|
|
534
|
+
return ret;
|
|
535
|
+
},
|
|
536
|
+
__wbg_close_690d36108c557337: function() { return handleError(function (arg0) {
|
|
537
|
+
arg0.close();
|
|
538
|
+
}, arguments); },
|
|
539
|
+
__wbg_close_737b4b1fbc658540: function() { return handleError(function (arg0) {
|
|
540
|
+
arg0.close();
|
|
541
|
+
}, arguments); },
|
|
542
|
+
__wbg_close_a0fe787b5776552a: function(arg0) {
|
|
543
|
+
arg0.close();
|
|
544
|
+
},
|
|
545
|
+
__wbg_close_ab55423854e61546: function(arg0) {
|
|
546
|
+
arg0.close();
|
|
547
|
+
},
|
|
548
|
+
__wbg_close_af26905c832a88cb: function() { return handleError(function (arg0) {
|
|
549
|
+
arg0.close();
|
|
550
|
+
}, arguments); },
|
|
551
|
+
__wbg_close_c66b51cb64599172: function(arg0) {
|
|
552
|
+
arg0.close();
|
|
553
|
+
},
|
|
554
|
+
__wbg_code_3c69123dcbcf263d: function(arg0, arg1) {
|
|
555
|
+
const ret = arg1.code;
|
|
556
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
557
|
+
const len1 = WASM_VECTOR_LEN;
|
|
558
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
559
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
560
|
+
},
|
|
561
|
+
__wbg_colno_3bcab37d08c6293e: function(arg0) {
|
|
562
|
+
const ret = arg0.colno;
|
|
563
|
+
return ret;
|
|
564
|
+
},
|
|
565
|
+
__wbg_configure_c71c9f57ca3edf98: function(arg0, arg1) {
|
|
566
|
+
arg0.configure(arg1);
|
|
567
|
+
},
|
|
568
|
+
__wbg_connect_3ca85e8e3b8d9828: function() { return handleError(function (arg0, arg1) {
|
|
569
|
+
const ret = arg0.connect(arg1);
|
|
570
|
+
return ret;
|
|
571
|
+
}, arguments); },
|
|
572
|
+
__wbg_connectionState_8788bc43a3c8b81c: function(arg0) {
|
|
573
|
+
const ret = arg0.connectionState;
|
|
574
|
+
return (__wbindgen_enum_RtcPeerConnectionState.indexOf(ret) + 1 || 7) - 1;
|
|
575
|
+
},
|
|
576
|
+
__wbg_construct_526a6dedb187eba9: function() { return handleError(function (arg0, arg1) {
|
|
577
|
+
const ret = Reflect.construct(arg0, arg1);
|
|
578
|
+
return ret;
|
|
579
|
+
}, arguments); },
|
|
580
|
+
__wbg_contains_6b23671a193f58e5: function(arg0, arg1) {
|
|
581
|
+
const ret = arg0.contains(arg1);
|
|
582
|
+
return ret;
|
|
583
|
+
},
|
|
584
|
+
__wbg_contentRect_7047bba46353f683: function(arg0) {
|
|
585
|
+
const ret = arg0.contentRect;
|
|
586
|
+
return ret;
|
|
587
|
+
},
|
|
588
|
+
__wbg_copyBufferToBuffer_910ae8c201bdff01: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
589
|
+
arg0.copyBufferToBuffer(arg1, arg2, arg3, arg4, arg5);
|
|
590
|
+
},
|
|
591
|
+
__wbg_copyBufferToTexture_8c287708aff282a4: function(arg0, arg1, arg2, arg3) {
|
|
592
|
+
arg0.copyBufferToTexture(arg1, arg2, arg3);
|
|
593
|
+
},
|
|
594
|
+
__wbg_copyExternalImageToTexture_540fcadea7d8323f: function(arg0, arg1, arg2, arg3) {
|
|
595
|
+
arg0.copyExternalImageToTexture(arg1, arg2, arg3);
|
|
596
|
+
},
|
|
597
|
+
__wbg_copyTextureToBuffer_76965133f36672a4: function(arg0, arg1, arg2, arg3) {
|
|
598
|
+
arg0.copyTextureToBuffer(arg1, arg2, arg3);
|
|
599
|
+
},
|
|
600
|
+
__wbg_copyTextureToTexture_04331d5254bea8fc: function(arg0, arg1, arg2, arg3) {
|
|
601
|
+
arg0.copyTextureToTexture(arg1, arg2, arg3);
|
|
602
|
+
},
|
|
603
|
+
__wbg_createBindGroupLayout_fe258aa231f602a1: function(arg0, arg1) {
|
|
604
|
+
const ret = arg0.createBindGroupLayout(arg1);
|
|
605
|
+
return ret;
|
|
606
|
+
},
|
|
607
|
+
__wbg_createBindGroup_783178b92eca4f94: function(arg0, arg1) {
|
|
608
|
+
const ret = arg0.createBindGroup(arg1);
|
|
609
|
+
return ret;
|
|
610
|
+
},
|
|
611
|
+
__wbg_createBufferSource_7102af74fcd1a840: function() { return handleError(function (arg0) {
|
|
612
|
+
const ret = arg0.createBufferSource();
|
|
613
|
+
return ret;
|
|
614
|
+
}, arguments); },
|
|
615
|
+
__wbg_createBuffer_05c143bc69af7de1: function(arg0, arg1) {
|
|
616
|
+
const ret = arg0.createBuffer(arg1);
|
|
617
|
+
return ret;
|
|
618
|
+
},
|
|
619
|
+
__wbg_createCommandEncoder_eeac00d01e7c7215: function(arg0, arg1) {
|
|
620
|
+
const ret = arg0.createCommandEncoder(arg1);
|
|
621
|
+
return ret;
|
|
622
|
+
},
|
|
623
|
+
__wbg_createComputePipeline_70cb69a35311bb5a: function(arg0, arg1) {
|
|
624
|
+
const ret = arg0.createComputePipeline(arg1);
|
|
625
|
+
return ret;
|
|
626
|
+
},
|
|
627
|
+
__wbg_createDataChannel_400b5be9c480ed20: function(arg0, arg1, arg2, arg3) {
|
|
628
|
+
const ret = arg0.createDataChannel(getStringFromWasm0(arg1, arg2), arg3);
|
|
629
|
+
return ret;
|
|
630
|
+
},
|
|
631
|
+
__wbg_createElement_9b0aab265c549ded: function() { return handleError(function (arg0, arg1, arg2) {
|
|
632
|
+
const ret = arg0.createElement(getStringFromWasm0(arg1, arg2));
|
|
633
|
+
return ret;
|
|
634
|
+
}, arguments); },
|
|
635
|
+
__wbg_createGain_94d1140dbe2da90d: function() { return handleError(function (arg0) {
|
|
636
|
+
const ret = arg0.createGain();
|
|
637
|
+
return ret;
|
|
638
|
+
}, arguments); },
|
|
639
|
+
__wbg_createImageBitmap_46791779dcbfb789: function() { return handleError(function (arg0, arg1, arg2) {
|
|
640
|
+
const ret = arg0.createImageBitmap(arg1, arg2);
|
|
641
|
+
return ret;
|
|
642
|
+
}, arguments); },
|
|
643
|
+
__wbg_createObjectURL_f141426bcc1f70aa: function() { return handleError(function (arg0, arg1) {
|
|
644
|
+
const ret = URL.createObjectURL(arg1);
|
|
645
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
646
|
+
const len1 = WASM_VECTOR_LEN;
|
|
647
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
648
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
649
|
+
}, arguments); },
|
|
650
|
+
__wbg_createOffer_0b15c6aa78a80829: function(arg0) {
|
|
651
|
+
const ret = arg0.createOffer();
|
|
652
|
+
return ret;
|
|
653
|
+
},
|
|
654
|
+
__wbg_createPipelineLayout_3195019c488e9d1f: function(arg0, arg1) {
|
|
655
|
+
const ret = arg0.createPipelineLayout(arg1);
|
|
656
|
+
return ret;
|
|
657
|
+
},
|
|
658
|
+
__wbg_createQuerySet_a8afd88335f1ae22: function(arg0, arg1) {
|
|
659
|
+
const ret = arg0.createQuerySet(arg1);
|
|
660
|
+
return ret;
|
|
661
|
+
},
|
|
662
|
+
__wbg_createRenderBundleEncoder_0ae4be9a26b4f4aa: function(arg0, arg1) {
|
|
663
|
+
const ret = arg0.createRenderBundleEncoder(arg1);
|
|
664
|
+
return ret;
|
|
665
|
+
},
|
|
666
|
+
__wbg_createRenderPipeline_430c946fe289280f: function(arg0, arg1) {
|
|
667
|
+
const ret = arg0.createRenderPipeline(arg1);
|
|
668
|
+
return ret;
|
|
669
|
+
},
|
|
670
|
+
__wbg_createSampler_59ee59f9ce9c89e6: function(arg0, arg1) {
|
|
671
|
+
const ret = arg0.createSampler(arg1);
|
|
672
|
+
return ret;
|
|
673
|
+
},
|
|
674
|
+
__wbg_createShaderModule_cb92dd515bc68e5a: function(arg0, arg1) {
|
|
675
|
+
const ret = arg0.createShaderModule(arg1);
|
|
676
|
+
return ret;
|
|
677
|
+
},
|
|
678
|
+
__wbg_createTexture_ae83ede28133180f: function(arg0, arg1) {
|
|
679
|
+
const ret = arg0.createTexture(arg1);
|
|
680
|
+
return ret;
|
|
681
|
+
},
|
|
682
|
+
__wbg_createView_c0fb516125a12571: function(arg0, arg1) {
|
|
683
|
+
const ret = arg0.createView(arg1);
|
|
684
|
+
return ret;
|
|
685
|
+
},
|
|
686
|
+
__wbg_crypto_38df2bab126b63dc: function(arg0) {
|
|
687
|
+
const ret = arg0.crypto;
|
|
688
|
+
return ret;
|
|
689
|
+
},
|
|
690
|
+
__wbg_ctrlKey_6f8a95d15c098679: function(arg0) {
|
|
691
|
+
const ret = arg0.ctrlKey;
|
|
692
|
+
return ret;
|
|
693
|
+
},
|
|
694
|
+
__wbg_ctrlKey_a41da599a72ee93d: function(arg0) {
|
|
695
|
+
const ret = arg0.ctrlKey;
|
|
696
|
+
return ret;
|
|
697
|
+
},
|
|
698
|
+
__wbg_currentTime_5f6bbe3d7b1a6fbf: function(arg0) {
|
|
699
|
+
const ret = arg0.currentTime;
|
|
700
|
+
return ret;
|
|
701
|
+
},
|
|
702
|
+
__wbg_data_a3d9ff9cdd801002: function(arg0) {
|
|
703
|
+
const ret = arg0.data;
|
|
704
|
+
return ret;
|
|
705
|
+
},
|
|
706
|
+
__wbg_decodeAudioData_0749ad444f0dec4e: function() { return handleError(function (arg0, arg1) {
|
|
707
|
+
const ret = arg0.decodeAudioData(arg1);
|
|
708
|
+
return ret;
|
|
709
|
+
}, arguments); },
|
|
710
|
+
__wbg_decodeURIComponent_30f7518f7c692629: function() { return handleError(function (arg0, arg1) {
|
|
711
|
+
const ret = decodeURIComponent(getStringFromWasm0(arg0, arg1));
|
|
712
|
+
return ret;
|
|
713
|
+
}, arguments); },
|
|
714
|
+
__wbg_decode_b645e759f92c7fe0: function(arg0) {
|
|
715
|
+
const ret = arg0.decode();
|
|
716
|
+
return ret;
|
|
717
|
+
},
|
|
718
|
+
__wbg_deltaMode_e239727f16c7ad68: function(arg0) {
|
|
719
|
+
const ret = arg0.deltaMode;
|
|
720
|
+
return ret;
|
|
721
|
+
},
|
|
722
|
+
__wbg_deltaX_74ad854454fab779: function(arg0) {
|
|
723
|
+
const ret = arg0.deltaX;
|
|
724
|
+
return ret;
|
|
725
|
+
},
|
|
726
|
+
__wbg_deltaY_c6ccae416e166d01: function(arg0) {
|
|
727
|
+
const ret = arg0.deltaY;
|
|
728
|
+
return ret;
|
|
729
|
+
},
|
|
730
|
+
__wbg_destination_d1f70fe081ff0932: function(arg0) {
|
|
731
|
+
const ret = arg0.destination;
|
|
732
|
+
return ret;
|
|
733
|
+
},
|
|
734
|
+
__wbg_destroy_d1537bee2b5a7849: function(arg0) {
|
|
735
|
+
arg0.destroy();
|
|
736
|
+
},
|
|
737
|
+
__wbg_destroy_d28e196e9dbc3b27: function(arg0) {
|
|
738
|
+
arg0.destroy();
|
|
739
|
+
},
|
|
740
|
+
__wbg_destroy_ddd5bee0b4b02f49: function(arg0) {
|
|
741
|
+
arg0.destroy();
|
|
742
|
+
},
|
|
743
|
+
__wbg_devicePixelContentBoxSize_82a5f309b4b96a31: function(arg0) {
|
|
744
|
+
const ret = arg0.devicePixelContentBoxSize;
|
|
745
|
+
return ret;
|
|
746
|
+
},
|
|
747
|
+
__wbg_devicePixelRatio_c36a5fab28da634e: function(arg0) {
|
|
748
|
+
const ret = arg0.devicePixelRatio;
|
|
749
|
+
return ret;
|
|
750
|
+
},
|
|
751
|
+
__wbg_disconnect_09ddbc78942a2057: function(arg0) {
|
|
752
|
+
arg0.disconnect();
|
|
753
|
+
},
|
|
754
|
+
__wbg_disconnect_21257e7fa524a113: function(arg0) {
|
|
755
|
+
arg0.disconnect();
|
|
756
|
+
},
|
|
757
|
+
__wbg_dispatchEvent_29145a50abb697bc: function() { return handleError(function (arg0, arg1) {
|
|
758
|
+
const ret = arg0.dispatchEvent(arg1);
|
|
759
|
+
return ret;
|
|
760
|
+
}, arguments); },
|
|
761
|
+
__wbg_dispatchWorkgroupsIndirect_e915df9199133ac5: function(arg0, arg1, arg2) {
|
|
762
|
+
arg0.dispatchWorkgroupsIndirect(arg1, arg2);
|
|
763
|
+
},
|
|
764
|
+
__wbg_dispatchWorkgroups_0d71a3ed9fcaee9f: function(arg0, arg1, arg2, arg3) {
|
|
765
|
+
arg0.dispatchWorkgroups(arg1 >>> 0, arg2 >>> 0, arg3 >>> 0);
|
|
766
|
+
},
|
|
767
|
+
__wbg_documentElement_bef4a2d2289074bb: function(arg0) {
|
|
768
|
+
const ret = arg0.documentElement;
|
|
769
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
770
|
+
},
|
|
771
|
+
__wbg_document_c0320cd4183c6d9b: function(arg0) {
|
|
772
|
+
const ret = arg0.document;
|
|
773
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
774
|
+
},
|
|
775
|
+
__wbg_done_08ce71ee07e3bd17: function(arg0) {
|
|
776
|
+
const ret = arg0.done;
|
|
777
|
+
return ret;
|
|
778
|
+
},
|
|
779
|
+
__wbg_drawIndexedIndirect_0954a720a9b13248: function(arg0, arg1, arg2) {
|
|
780
|
+
arg0.drawIndexedIndirect(arg1, arg2);
|
|
781
|
+
},
|
|
782
|
+
__wbg_drawIndexedIndirect_7882fca885de47ce: function(arg0, arg1, arg2) {
|
|
783
|
+
arg0.drawIndexedIndirect(arg1, arg2);
|
|
784
|
+
},
|
|
785
|
+
__wbg_drawIndexed_280977bb1d3baf3d: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
786
|
+
arg0.drawIndexed(arg1 >>> 0, arg2 >>> 0, arg3 >>> 0, arg4, arg5 >>> 0);
|
|
787
|
+
},
|
|
788
|
+
__wbg_drawIndexed_9a150a51a8427045: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
789
|
+
arg0.drawIndexed(arg1 >>> 0, arg2 >>> 0, arg3 >>> 0, arg4, arg5 >>> 0);
|
|
790
|
+
},
|
|
791
|
+
__wbg_drawIndirect_b393626eb70ae7fb: function(arg0, arg1, arg2) {
|
|
792
|
+
arg0.drawIndirect(arg1, arg2);
|
|
793
|
+
},
|
|
794
|
+
__wbg_drawIndirect_c6c299eb2ddf8fd7: function(arg0, arg1, arg2) {
|
|
795
|
+
arg0.drawIndirect(arg1, arg2);
|
|
796
|
+
},
|
|
797
|
+
__wbg_draw_26370233bc7d2e7e: function(arg0, arg1, arg2, arg3, arg4) {
|
|
798
|
+
arg0.draw(arg1 >>> 0, arg2 >>> 0, arg3 >>> 0, arg4 >>> 0);
|
|
799
|
+
},
|
|
800
|
+
__wbg_draw_83285c3877561ec1: function(arg0, arg1, arg2, arg3, arg4) {
|
|
801
|
+
arg0.draw(arg1 >>> 0, arg2 >>> 0, arg3 >>> 0, arg4 >>> 0);
|
|
802
|
+
},
|
|
803
|
+
__wbg_duration_d8deec647addb21e: function(arg0) {
|
|
804
|
+
const ret = arg0.duration;
|
|
805
|
+
return ret;
|
|
806
|
+
},
|
|
807
|
+
__wbg_end_420d93a37f764933: function(arg0) {
|
|
808
|
+
arg0.end();
|
|
809
|
+
},
|
|
810
|
+
__wbg_end_97a4259681c42d8d: function(arg0) {
|
|
811
|
+
arg0.end();
|
|
812
|
+
},
|
|
813
|
+
__wbg_enqueue_ec3552838b4b7fbf: function() { return handleError(function (arg0, arg1) {
|
|
814
|
+
arg0.enqueue(arg1);
|
|
815
|
+
}, arguments); },
|
|
816
|
+
__wbg_error_8d9a8e04cd1d3588: function(arg0) {
|
|
817
|
+
console.error(arg0);
|
|
818
|
+
},
|
|
819
|
+
__wbg_error_a48accf7a5b96976: function(arg0) {
|
|
820
|
+
const ret = arg0.error;
|
|
821
|
+
return ret;
|
|
822
|
+
},
|
|
823
|
+
__wbg_error_a6fa202b58aa1cd3: function(arg0, arg1) {
|
|
824
|
+
let deferred0_0;
|
|
825
|
+
let deferred0_1;
|
|
826
|
+
try {
|
|
827
|
+
deferred0_0 = arg0;
|
|
828
|
+
deferred0_1 = arg1;
|
|
829
|
+
console.error(getStringFromWasm0(arg0, arg1));
|
|
830
|
+
} finally {
|
|
831
|
+
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
832
|
+
}
|
|
833
|
+
},
|
|
834
|
+
__wbg_error_cfce0f619500de52: function(arg0, arg1) {
|
|
835
|
+
console.error(arg0, arg1);
|
|
836
|
+
},
|
|
837
|
+
__wbg_error_d9a855c84f9b4e4c: function(arg0) {
|
|
838
|
+
const ret = arg0.error;
|
|
839
|
+
return ret;
|
|
840
|
+
},
|
|
841
|
+
__wbg_executeBundles_452872ac4afbbf92: function(arg0, arg1) {
|
|
842
|
+
arg0.executeBundles(arg1);
|
|
843
|
+
},
|
|
844
|
+
__wbg_exitPointerLock_3c4e763915172704: function(arg0) {
|
|
845
|
+
arg0.exitPointerLock();
|
|
846
|
+
},
|
|
847
|
+
__wbg_features_15adc13e5b141301: function(arg0) {
|
|
848
|
+
const ret = arg0.features;
|
|
849
|
+
return ret;
|
|
850
|
+
},
|
|
851
|
+
__wbg_features_f6c1f470639a88e2: function(arg0) {
|
|
852
|
+
const ret = arg0.features;
|
|
853
|
+
return ret;
|
|
854
|
+
},
|
|
855
|
+
__wbg_fetch_5550a88cf343aaa9: function(arg0, arg1) {
|
|
856
|
+
const ret = arg0.fetch(arg1);
|
|
857
|
+
return ret;
|
|
858
|
+
},
|
|
859
|
+
__wbg_fetch_9dad4fe911207b37: function(arg0) {
|
|
860
|
+
const ret = fetch(arg0);
|
|
861
|
+
return ret;
|
|
862
|
+
},
|
|
863
|
+
__wbg_fetch_fda7bc27c982b1f3: function(arg0) {
|
|
864
|
+
const ret = fetch(arg0);
|
|
865
|
+
return ret;
|
|
866
|
+
},
|
|
867
|
+
__wbg_filename_4c831894ec6c4244: function(arg0, arg1) {
|
|
868
|
+
const ret = arg1.filename;
|
|
869
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
870
|
+
const len1 = WASM_VECTOR_LEN;
|
|
871
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
872
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
873
|
+
},
|
|
874
|
+
__wbg_finish_23cbd862d4229ec3: function(arg0, arg1) {
|
|
875
|
+
const ret = arg0.finish(arg1);
|
|
876
|
+
return ret;
|
|
877
|
+
},
|
|
878
|
+
__wbg_finish_52172eac54898d16: function(arg0) {
|
|
879
|
+
const ret = arg0.finish();
|
|
880
|
+
return ret;
|
|
881
|
+
},
|
|
882
|
+
__wbg_finish_94bc184b535e2a90: function(arg0, arg1) {
|
|
883
|
+
const ret = arg0.finish(arg1);
|
|
884
|
+
return ret;
|
|
885
|
+
},
|
|
886
|
+
__wbg_finish_dad34d81d4500e85: function(arg0) {
|
|
887
|
+
const ret = arg0.finish();
|
|
888
|
+
return ret;
|
|
889
|
+
},
|
|
890
|
+
__wbg_focus_885197ce680db9e0: function() { return handleError(function (arg0) {
|
|
891
|
+
arg0.focus();
|
|
892
|
+
}, arguments); },
|
|
893
|
+
__wbg_from_4bdf88943703fd48: function(arg0) {
|
|
894
|
+
const ret = Array.from(arg0);
|
|
895
|
+
return ret;
|
|
896
|
+
},
|
|
897
|
+
__wbg_fullscreenElement_8068aa5be9c86543: function(arg0) {
|
|
898
|
+
const ret = arg0.fullscreenElement;
|
|
899
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
900
|
+
},
|
|
901
|
+
__wbg_gain_c5b40ffb38909ac5: function(arg0) {
|
|
902
|
+
const ret = arg0.gain;
|
|
903
|
+
return ret;
|
|
904
|
+
},
|
|
905
|
+
__wbg_getAttribute_cf830fef39b6ba0e: function(arg0, arg1, arg2, arg3) {
|
|
906
|
+
const ret = arg1.getAttribute(getStringFromWasm0(arg2, arg3));
|
|
907
|
+
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
908
|
+
var len1 = WASM_VECTOR_LEN;
|
|
909
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
910
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
911
|
+
},
|
|
912
|
+
__wbg_getBindGroupLayout_6d503a1fba524ee6: function(arg0, arg1) {
|
|
913
|
+
const ret = arg0.getBindGroupLayout(arg1 >>> 0);
|
|
914
|
+
return ret;
|
|
915
|
+
},
|
|
916
|
+
__wbg_getBindGroupLayout_bc897888c0670dbe: function(arg0, arg1) {
|
|
917
|
+
const ret = arg0.getBindGroupLayout(arg1 >>> 0);
|
|
918
|
+
return ret;
|
|
919
|
+
},
|
|
920
|
+
__wbg_getCoalescedEvents_08e25b227866a984: function(arg0) {
|
|
921
|
+
const ret = arg0.getCoalescedEvents();
|
|
922
|
+
return ret;
|
|
923
|
+
},
|
|
924
|
+
__wbg_getCoalescedEvents_3e003f63d9ebbc05: function(arg0) {
|
|
925
|
+
const ret = arg0.getCoalescedEvents;
|
|
926
|
+
return ret;
|
|
927
|
+
},
|
|
928
|
+
__wbg_getCompilationInfo_469a33f449854be7: function(arg0) {
|
|
929
|
+
const ret = arg0.getCompilationInfo();
|
|
930
|
+
return ret;
|
|
931
|
+
},
|
|
932
|
+
__wbg_getComputedStyle_b12e52450a4be72c: function() { return handleError(function (arg0, arg1) {
|
|
933
|
+
const ret = arg0.getComputedStyle(arg1);
|
|
934
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
935
|
+
}, arguments); },
|
|
936
|
+
__wbg_getContext_a9236f98f1f7fe7c: function() { return handleError(function (arg0, arg1, arg2) {
|
|
937
|
+
const ret = arg0.getContext(getStringFromWasm0(arg1, arg2));
|
|
938
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
939
|
+
}, arguments); },
|
|
940
|
+
__wbg_getContext_f04bf8f22dcb2d53: function() { return handleError(function (arg0, arg1, arg2) {
|
|
941
|
+
const ret = arg0.getContext(getStringFromWasm0(arg1, arg2));
|
|
942
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
943
|
+
}, arguments); },
|
|
944
|
+
__wbg_getCurrentTexture_e27b103ea7a3ce3c: function(arg0) {
|
|
945
|
+
const ret = arg0.getCurrentTexture();
|
|
946
|
+
return ret;
|
|
947
|
+
},
|
|
948
|
+
__wbg_getElementById_d1f25d287b19a833: function(arg0, arg1, arg2) {
|
|
949
|
+
const ret = arg0.getElementById(getStringFromWasm0(arg1, arg2));
|
|
950
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
951
|
+
},
|
|
952
|
+
__wbg_getItem_a7cc1d4f154f2e6f: function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
953
|
+
const ret = arg1.getItem(getStringFromWasm0(arg2, arg3));
|
|
954
|
+
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
955
|
+
var len1 = WASM_VECTOR_LEN;
|
|
956
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
957
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
958
|
+
}, arguments); },
|
|
959
|
+
__wbg_getMappedRange_4f36f39e059a63c6: function(arg0, arg1, arg2) {
|
|
960
|
+
const ret = arg0.getMappedRange(arg1, arg2);
|
|
961
|
+
return ret;
|
|
962
|
+
},
|
|
963
|
+
__wbg_getModifierState_b0dd1ee94358290b: function(arg0, arg1, arg2) {
|
|
964
|
+
const ret = arg0.getModifierState(getStringFromWasm0(arg1, arg2));
|
|
965
|
+
return ret;
|
|
966
|
+
},
|
|
967
|
+
__wbg_getOwnPropertyDescriptor_afeb931addada534: function(arg0, arg1) {
|
|
968
|
+
const ret = Object.getOwnPropertyDescriptor(arg0, arg1);
|
|
969
|
+
return ret;
|
|
970
|
+
},
|
|
971
|
+
__wbg_getPreferredCanvasFormat_13332df72e63723a: function(arg0) {
|
|
972
|
+
const ret = arg0.getPreferredCanvasFormat();
|
|
973
|
+
return (__wbindgen_enum_GpuTextureFormat.indexOf(ret) + 1 || 96) - 1;
|
|
974
|
+
},
|
|
975
|
+
__wbg_getPropertyValue_d2181532557839cf: function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
976
|
+
const ret = arg1.getPropertyValue(getStringFromWasm0(arg2, arg3));
|
|
977
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
978
|
+
const len1 = WASM_VECTOR_LEN;
|
|
979
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
980
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
981
|
+
}, arguments); },
|
|
982
|
+
__wbg_getRandomValues_3f44b700395062e5: function() { return handleError(function (arg0, arg1) {
|
|
983
|
+
globalThis.crypto.getRandomValues(getArrayU8FromWasm0(arg0, arg1));
|
|
984
|
+
}, arguments); },
|
|
985
|
+
__wbg_getRandomValues_c44a50d8cfdaebeb: function() { return handleError(function (arg0, arg1) {
|
|
986
|
+
arg0.getRandomValues(arg1);
|
|
987
|
+
}, arguments); },
|
|
988
|
+
__wbg_getReader_b4b1868fbca77dbe: function() { return handleError(function (arg0) {
|
|
989
|
+
const ret = arg0.getReader();
|
|
990
|
+
return ret;
|
|
991
|
+
}, arguments); },
|
|
992
|
+
__wbg_getStats_5cdc1607b654f35a: function(arg0) {
|
|
993
|
+
const ret = arg0.getStats();
|
|
994
|
+
return ret;
|
|
995
|
+
},
|
|
996
|
+
__wbg_getTime_1dad7b5386ddd2d9: function(arg0) {
|
|
997
|
+
const ret = arg0.getTime();
|
|
998
|
+
return ret;
|
|
999
|
+
},
|
|
1000
|
+
__wbg_getTimezoneOffset_639bcf2dde21158b: function(arg0) {
|
|
1001
|
+
const ret = arg0.getTimezoneOffset();
|
|
1002
|
+
return ret;
|
|
1003
|
+
},
|
|
1004
|
+
__wbg_get_326e41e095fb2575: function() { return handleError(function (arg0, arg1) {
|
|
1005
|
+
const ret = Reflect.get(arg0, arg1);
|
|
1006
|
+
return ret;
|
|
1007
|
+
}, arguments); },
|
|
1008
|
+
__wbg_get_3ef1eba1850ade27: function() { return handleError(function (arg0, arg1) {
|
|
1009
|
+
const ret = Reflect.get(arg0, arg1);
|
|
1010
|
+
return ret;
|
|
1011
|
+
}, arguments); },
|
|
1012
|
+
__wbg_get_a8ee5c45dabc1b3b: function(arg0, arg1) {
|
|
1013
|
+
const ret = arg0[arg1 >>> 0];
|
|
1014
|
+
return ret;
|
|
1015
|
+
},
|
|
1016
|
+
__wbg_get_c7546417fb0bec10: function(arg0, arg1) {
|
|
1017
|
+
const ret = arg0[arg1 >>> 0];
|
|
1018
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1019
|
+
},
|
|
1020
|
+
__wbg_get_done_d0ab690f8df5501f: function(arg0) {
|
|
1021
|
+
const ret = arg0.done;
|
|
1022
|
+
return isLikeNone(ret) ? 0xFFFFFF : ret ? 1 : 0;
|
|
1023
|
+
},
|
|
1024
|
+
__wbg_get_unchecked_329cfe50afab7352: function(arg0, arg1) {
|
|
1025
|
+
const ret = arg0[arg1 >>> 0];
|
|
1026
|
+
return ret;
|
|
1027
|
+
},
|
|
1028
|
+
__wbg_get_value_548ae6adf5a174e4: function(arg0) {
|
|
1029
|
+
const ret = arg0.value;
|
|
1030
|
+
return ret;
|
|
1031
|
+
},
|
|
1032
|
+
__wbg_gpu_c773d7932dc745d7: function(arg0) {
|
|
1033
|
+
const ret = arg0.gpu;
|
|
1034
|
+
return ret;
|
|
1035
|
+
},
|
|
1036
|
+
__wbg_has_926ef2ff40b308cf: function() { return handleError(function (arg0, arg1) {
|
|
1037
|
+
const ret = Reflect.has(arg0, arg1);
|
|
1038
|
+
return ret;
|
|
1039
|
+
}, arguments); },
|
|
1040
|
+
__wbg_has_b54bd7b6e9da11c7: function(arg0, arg1, arg2) {
|
|
1041
|
+
const ret = arg0.has(getStringFromWasm0(arg1, arg2));
|
|
1042
|
+
return ret;
|
|
1043
|
+
},
|
|
1044
|
+
__wbg_headers_eb2234545f9ff993: function(arg0) {
|
|
1045
|
+
const ret = arg0.headers;
|
|
1046
|
+
return ret;
|
|
1047
|
+
},
|
|
1048
|
+
__wbg_height_6568c4427c3b889d: function(arg0) {
|
|
1049
|
+
const ret = arg0.height;
|
|
1050
|
+
return ret;
|
|
1051
|
+
},
|
|
1052
|
+
__wbg_height_8c06cb597de53887: function(arg0) {
|
|
1053
|
+
const ret = arg0.height;
|
|
1054
|
+
return ret;
|
|
1055
|
+
},
|
|
1056
|
+
__wbg_hidden_19530f76732ba428: function(arg0) {
|
|
1057
|
+
const ret = arg0.hidden;
|
|
1058
|
+
return ret;
|
|
1059
|
+
},
|
|
1060
|
+
__wbg_hostname_a30ece22df1c8b63: function() { return handleError(function (arg0, arg1) {
|
|
1061
|
+
const ret = arg1.hostname;
|
|
1062
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1063
|
+
const len1 = WASM_VECTOR_LEN;
|
|
1064
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1065
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1066
|
+
}, arguments); },
|
|
1067
|
+
__wbg_href_82f7f7056b4e8510: function() { return handleError(function (arg0, arg1) {
|
|
1068
|
+
const ret = arg1.href;
|
|
1069
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1070
|
+
const len1 = WASM_VECTOR_LEN;
|
|
1071
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1072
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1073
|
+
}, arguments); },
|
|
1074
|
+
__wbg_href_da367531ce807a58: function(arg0, arg1) {
|
|
1075
|
+
const ret = arg1.href;
|
|
1076
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1077
|
+
const len1 = WASM_VECTOR_LEN;
|
|
1078
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1079
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1080
|
+
},
|
|
1081
|
+
__wbg_iceConnectionState_ddf6eca9f910d0d3: function(arg0) {
|
|
1082
|
+
const ret = arg0.iceConnectionState;
|
|
1083
|
+
return (__wbindgen_enum_RtcIceConnectionState.indexOf(ret) + 1 || 8) - 1;
|
|
1084
|
+
},
|
|
1085
|
+
__wbg_iceGatheringState_d1019e4d8916b4e1: function(arg0) {
|
|
1086
|
+
const ret = arg0.iceGatheringState;
|
|
1087
|
+
return (__wbindgen_enum_RtcIceGatheringState.indexOf(ret) + 1 || 4) - 1;
|
|
1088
|
+
},
|
|
1089
|
+
__wbg_importKey_397406e38b080c57: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5, arg6) {
|
|
1090
|
+
const ret = arg0.importKey(getStringFromWasm0(arg1, arg2), arg3, arg4, arg5 !== 0, arg6);
|
|
1091
|
+
return ret;
|
|
1092
|
+
}, arguments); },
|
|
1093
|
+
__wbg_inlineSize_bc956acca480b3d7: function(arg0) {
|
|
1094
|
+
const ret = arg0.inlineSize;
|
|
1095
|
+
return ret;
|
|
1096
|
+
},
|
|
1097
|
+
__wbg_innerHeight_ba245c3eff70b2a1: function() { return handleError(function (arg0) {
|
|
1098
|
+
const ret = arg0.innerHeight;
|
|
1099
|
+
return ret;
|
|
1100
|
+
}, arguments); },
|
|
1101
|
+
__wbg_innerWidth_e6af2d66d3b06991: function() { return handleError(function (arg0) {
|
|
1102
|
+
const ret = arg0.innerWidth;
|
|
1103
|
+
return ret;
|
|
1104
|
+
}, arguments); },
|
|
1105
|
+
__wbg_instanceof_ArrayBuffer_101e2bf31071a9f6: function(arg0) {
|
|
1106
|
+
let result;
|
|
1107
|
+
try {
|
|
1108
|
+
result = arg0 instanceof ArrayBuffer;
|
|
1109
|
+
} catch (_) {
|
|
1110
|
+
result = false;
|
|
1111
|
+
}
|
|
1112
|
+
const ret = result;
|
|
1113
|
+
return ret;
|
|
1114
|
+
},
|
|
1115
|
+
__wbg_instanceof_AudioBuffer_1f2236318bbff7aa: function(arg0) {
|
|
1116
|
+
let result;
|
|
1117
|
+
try {
|
|
1118
|
+
result = arg0 instanceof AudioBuffer;
|
|
1119
|
+
} catch (_) {
|
|
1120
|
+
result = false;
|
|
1121
|
+
}
|
|
1122
|
+
const ret = result;
|
|
1123
|
+
return ret;
|
|
1124
|
+
},
|
|
1125
|
+
__wbg_instanceof_Blob_c91af000f11c2d0b: function(arg0) {
|
|
1126
|
+
let result;
|
|
1127
|
+
try {
|
|
1128
|
+
result = arg0 instanceof Blob;
|
|
1129
|
+
} catch (_) {
|
|
1130
|
+
result = false;
|
|
1131
|
+
}
|
|
1132
|
+
const ret = result;
|
|
1133
|
+
return ret;
|
|
1134
|
+
},
|
|
1135
|
+
__wbg_instanceof_CryptoKey_8aec6f1abbdff9a3: function(arg0) {
|
|
1136
|
+
let result;
|
|
1137
|
+
try {
|
|
1138
|
+
result = arg0 instanceof CryptoKey;
|
|
1139
|
+
} catch (_) {
|
|
1140
|
+
result = false;
|
|
1141
|
+
}
|
|
1142
|
+
const ret = result;
|
|
1143
|
+
return ret;
|
|
1144
|
+
},
|
|
1145
|
+
__wbg_instanceof_Crypto_5c2a4c15287b0332: function(arg0) {
|
|
1146
|
+
let result;
|
|
1147
|
+
try {
|
|
1148
|
+
result = arg0 instanceof Crypto;
|
|
1149
|
+
} catch (_) {
|
|
1150
|
+
result = false;
|
|
1151
|
+
}
|
|
1152
|
+
const ret = result;
|
|
1153
|
+
return ret;
|
|
1154
|
+
},
|
|
1155
|
+
__wbg_instanceof_Error_4691a5b466e32a80: function(arg0) {
|
|
1156
|
+
let result;
|
|
1157
|
+
try {
|
|
1158
|
+
result = arg0 instanceof Error;
|
|
1159
|
+
} catch (_) {
|
|
1160
|
+
result = false;
|
|
1161
|
+
}
|
|
1162
|
+
const ret = result;
|
|
1163
|
+
return ret;
|
|
1164
|
+
},
|
|
1165
|
+
__wbg_instanceof_EventTarget_6566c189d15f91dc: function(arg0) {
|
|
1166
|
+
let result;
|
|
1167
|
+
try {
|
|
1168
|
+
result = arg0 instanceof EventTarget;
|
|
1169
|
+
} catch (_) {
|
|
1170
|
+
result = false;
|
|
1171
|
+
}
|
|
1172
|
+
const ret = result;
|
|
1173
|
+
return ret;
|
|
1174
|
+
},
|
|
1175
|
+
__wbg_instanceof_GpuAdapter_0731153d2b08720b: function(arg0) {
|
|
1176
|
+
let result;
|
|
1177
|
+
try {
|
|
1178
|
+
result = arg0 instanceof GPUAdapter;
|
|
1179
|
+
} catch (_) {
|
|
1180
|
+
result = false;
|
|
1181
|
+
}
|
|
1182
|
+
const ret = result;
|
|
1183
|
+
return ret;
|
|
1184
|
+
},
|
|
1185
|
+
__wbg_instanceof_GpuCanvasContext_d14121c7bd72fcef: function(arg0) {
|
|
1186
|
+
let result;
|
|
1187
|
+
try {
|
|
1188
|
+
result = arg0 instanceof GPUCanvasContext;
|
|
1189
|
+
} catch (_) {
|
|
1190
|
+
result = false;
|
|
1191
|
+
}
|
|
1192
|
+
const ret = result;
|
|
1193
|
+
return ret;
|
|
1194
|
+
},
|
|
1195
|
+
__wbg_instanceof_GpuDeviceLostInfo_a3677ebb8241d800: function(arg0) {
|
|
1196
|
+
let result;
|
|
1197
|
+
try {
|
|
1198
|
+
result = arg0 instanceof GPUDeviceLostInfo;
|
|
1199
|
+
} catch (_) {
|
|
1200
|
+
result = false;
|
|
1201
|
+
}
|
|
1202
|
+
const ret = result;
|
|
1203
|
+
return ret;
|
|
1204
|
+
},
|
|
1205
|
+
__wbg_instanceof_GpuOutOfMemoryError_391d9a08edbfa04b: function(arg0) {
|
|
1206
|
+
let result;
|
|
1207
|
+
try {
|
|
1208
|
+
result = arg0 instanceof GPUOutOfMemoryError;
|
|
1209
|
+
} catch (_) {
|
|
1210
|
+
result = false;
|
|
1211
|
+
}
|
|
1212
|
+
const ret = result;
|
|
1213
|
+
return ret;
|
|
1214
|
+
},
|
|
1215
|
+
__wbg_instanceof_GpuValidationError_f4d803c383da3c92: function(arg0) {
|
|
1216
|
+
let result;
|
|
1217
|
+
try {
|
|
1218
|
+
result = arg0 instanceof GPUValidationError;
|
|
1219
|
+
} catch (_) {
|
|
1220
|
+
result = false;
|
|
1221
|
+
}
|
|
1222
|
+
const ret = result;
|
|
1223
|
+
return ret;
|
|
1224
|
+
},
|
|
1225
|
+
__wbg_instanceof_HtmlCanvasElement_26125339f936be50: function(arg0) {
|
|
1226
|
+
let result;
|
|
1227
|
+
try {
|
|
1228
|
+
result = arg0 instanceof HTMLCanvasElement;
|
|
1229
|
+
} catch (_) {
|
|
1230
|
+
result = false;
|
|
1231
|
+
}
|
|
1232
|
+
const ret = result;
|
|
1233
|
+
return ret;
|
|
1234
|
+
},
|
|
1235
|
+
__wbg_instanceof_HtmlTextAreaElement_fe322f974610be3a: function(arg0) {
|
|
1236
|
+
let result;
|
|
1237
|
+
try {
|
|
1238
|
+
result = arg0 instanceof HTMLTextAreaElement;
|
|
1239
|
+
} catch (_) {
|
|
1240
|
+
result = false;
|
|
1241
|
+
}
|
|
1242
|
+
const ret = result;
|
|
1243
|
+
return ret;
|
|
1244
|
+
},
|
|
1245
|
+
__wbg_instanceof_Memory_c492b7d1a51b453d: function(arg0) {
|
|
1246
|
+
let result;
|
|
1247
|
+
try {
|
|
1248
|
+
result = arg0 instanceof WebAssembly.Memory;
|
|
1249
|
+
} catch (_) {
|
|
1250
|
+
result = false;
|
|
1251
|
+
}
|
|
1252
|
+
const ret = result;
|
|
1253
|
+
return ret;
|
|
1254
|
+
},
|
|
1255
|
+
__wbg_instanceof_Object_be1962063fcc0c9f: function(arg0) {
|
|
1256
|
+
let result;
|
|
1257
|
+
try {
|
|
1258
|
+
result = arg0 instanceof Object;
|
|
1259
|
+
} catch (_) {
|
|
1260
|
+
result = false;
|
|
1261
|
+
}
|
|
1262
|
+
const ret = result;
|
|
1263
|
+
return ret;
|
|
1264
|
+
},
|
|
1265
|
+
__wbg_instanceof_Performance_fc16db7b6f107638: function(arg0) {
|
|
1266
|
+
let result;
|
|
1267
|
+
try {
|
|
1268
|
+
result = arg0 instanceof Performance;
|
|
1269
|
+
} catch (_) {
|
|
1270
|
+
result = false;
|
|
1271
|
+
}
|
|
1272
|
+
const ret = result;
|
|
1273
|
+
return ret;
|
|
1274
|
+
},
|
|
1275
|
+
__wbg_instanceof_Promise_7c3bdd7805c2c6e6: function(arg0) {
|
|
1276
|
+
let result;
|
|
1277
|
+
try {
|
|
1278
|
+
result = arg0 instanceof Promise;
|
|
1279
|
+
} catch (_) {
|
|
1280
|
+
result = false;
|
|
1281
|
+
}
|
|
1282
|
+
const ret = result;
|
|
1283
|
+
return ret;
|
|
1284
|
+
},
|
|
1285
|
+
__wbg_instanceof_Response_9b4d9fd451e051b1: function(arg0) {
|
|
1286
|
+
let result;
|
|
1287
|
+
try {
|
|
1288
|
+
result = arg0 instanceof Response;
|
|
1289
|
+
} catch (_) {
|
|
1290
|
+
result = false;
|
|
1291
|
+
}
|
|
1292
|
+
const ret = result;
|
|
1293
|
+
return ret;
|
|
1294
|
+
},
|
|
1295
|
+
__wbg_instanceof_SharedArrayBuffer_693fbfcf48e69cc6: function(arg0) {
|
|
1296
|
+
let result;
|
|
1297
|
+
try {
|
|
1298
|
+
result = arg0 instanceof SharedArrayBuffer;
|
|
1299
|
+
} catch (_) {
|
|
1300
|
+
result = false;
|
|
1301
|
+
}
|
|
1302
|
+
const ret = result;
|
|
1303
|
+
return ret;
|
|
1304
|
+
},
|
|
1305
|
+
__wbg_instanceof_Uint8Array_740438561a5b956d: function(arg0) {
|
|
1306
|
+
let result;
|
|
1307
|
+
try {
|
|
1308
|
+
result = arg0 instanceof Uint8Array;
|
|
1309
|
+
} catch (_) {
|
|
1310
|
+
result = false;
|
|
1311
|
+
}
|
|
1312
|
+
const ret = result;
|
|
1313
|
+
return ret;
|
|
1314
|
+
},
|
|
1315
|
+
__wbg_instanceof_Window_23e677d2c6843922: function(arg0) {
|
|
1316
|
+
let result;
|
|
1317
|
+
try {
|
|
1318
|
+
result = arg0 instanceof Window;
|
|
1319
|
+
} catch (_) {
|
|
1320
|
+
result = false;
|
|
1321
|
+
}
|
|
1322
|
+
const ret = result;
|
|
1323
|
+
return ret;
|
|
1324
|
+
},
|
|
1325
|
+
__wbg_isArray_33b91feb269ff46e: function(arg0) {
|
|
1326
|
+
const ret = Array.isArray(arg0);
|
|
1327
|
+
return ret;
|
|
1328
|
+
},
|
|
1329
|
+
__wbg_isIntersecting_b3e74fb0cf75f7d1: function(arg0) {
|
|
1330
|
+
const ret = arg0.isIntersecting;
|
|
1331
|
+
return ret;
|
|
1332
|
+
},
|
|
1333
|
+
__wbg_is_a166b9958c2438ad: function(arg0, arg1) {
|
|
1334
|
+
const ret = Object.is(arg0, arg1);
|
|
1335
|
+
return ret;
|
|
1336
|
+
},
|
|
1337
|
+
__wbg_iterator_d8f549ec8fb061b1: function() {
|
|
1338
|
+
const ret = Symbol.iterator;
|
|
1339
|
+
return ret;
|
|
1340
|
+
},
|
|
1341
|
+
__wbg_key_99eb0f0a1000963d: function(arg0, arg1) {
|
|
1342
|
+
const ret = arg1.key;
|
|
1343
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1344
|
+
const len1 = WASM_VECTOR_LEN;
|
|
1345
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1346
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1347
|
+
},
|
|
1348
|
+
__wbg_label_614ef5e608843844: function(arg0, arg1) {
|
|
1349
|
+
const ret = arg1.label;
|
|
1350
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1351
|
+
const len1 = WASM_VECTOR_LEN;
|
|
1352
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1353
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1354
|
+
},
|
|
1355
|
+
__wbg_label_9dc8a6d264c5e20d: function(arg0, arg1) {
|
|
1356
|
+
const ret = arg1.label;
|
|
1357
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1358
|
+
const len1 = WASM_VECTOR_LEN;
|
|
1359
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1360
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1361
|
+
},
|
|
1362
|
+
__wbg_length_27280eca2d70010e: function(arg0) {
|
|
1363
|
+
const ret = arg0.length;
|
|
1364
|
+
return ret;
|
|
1365
|
+
},
|
|
1366
|
+
__wbg_length_b3416cf66a5452c8: function(arg0) {
|
|
1367
|
+
const ret = arg0.length;
|
|
1368
|
+
return ret;
|
|
1369
|
+
},
|
|
1370
|
+
__wbg_length_d34bf7d191aa0640: function(arg0) {
|
|
1371
|
+
const ret = arg0.length;
|
|
1372
|
+
return ret;
|
|
1373
|
+
},
|
|
1374
|
+
__wbg_length_ea16607d7b61445b: function(arg0) {
|
|
1375
|
+
const ret = arg0.length;
|
|
1376
|
+
return ret;
|
|
1377
|
+
},
|
|
1378
|
+
__wbg_limits_2bfe39eb5f0b5a01: function(arg0) {
|
|
1379
|
+
const ret = arg0.limits;
|
|
1380
|
+
return ret;
|
|
1381
|
+
},
|
|
1382
|
+
__wbg_limits_77193ad8b62f8502: function(arg0) {
|
|
1383
|
+
const ret = arg0.limits;
|
|
1384
|
+
return ret;
|
|
1385
|
+
},
|
|
1386
|
+
__wbg_lineNum_95b780ade9fb4ba3: function(arg0) {
|
|
1387
|
+
const ret = arg0.lineNum;
|
|
1388
|
+
return ret;
|
|
1389
|
+
},
|
|
1390
|
+
__wbg_lineno_d8e92012ce1375d7: function(arg0) {
|
|
1391
|
+
const ret = arg0.lineno;
|
|
1392
|
+
return ret;
|
|
1393
|
+
},
|
|
1394
|
+
__wbg_loadAndTranscodeKtxTexture_8f0e682569c265ef: function(arg0, arg1, arg2) {
|
|
1395
|
+
const ret = window.loadAndTranscodeKtxTexture(arg0, getStringFromWasm0(arg1, arg2));
|
|
1396
|
+
return ret;
|
|
1397
|
+
},
|
|
1398
|
+
__wbg_loadKtxCubemap_135e144677af7c7b: function(arg0) {
|
|
1399
|
+
const ret = window.loadKtxCubemap(arg0);
|
|
1400
|
+
return ret;
|
|
1401
|
+
},
|
|
1402
|
+
__wbg_localDescription_5cf000406d24ae48: function(arg0) {
|
|
1403
|
+
const ret = arg0.localDescription;
|
|
1404
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1405
|
+
},
|
|
1406
|
+
__wbg_localStorage_51c38b3b222e1ed2: function() { return handleError(function (arg0) {
|
|
1407
|
+
const ret = arg0.localStorage;
|
|
1408
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1409
|
+
}, arguments); },
|
|
1410
|
+
__wbg_location_cb6f3af6ad563d81: function(arg0) {
|
|
1411
|
+
const ret = arg0.location;
|
|
1412
|
+
return ret;
|
|
1413
|
+
},
|
|
1414
|
+
__wbg_location_fc8d47802682dd93: function(arg0) {
|
|
1415
|
+
const ret = arg0.location;
|
|
1416
|
+
return ret;
|
|
1417
|
+
},
|
|
1418
|
+
__wbg_log_524eedafa26daa59: function(arg0) {
|
|
1419
|
+
console.log(arg0);
|
|
1420
|
+
},
|
|
1421
|
+
__wbg_log_f9fd74320aa3c372: function(arg0, arg1) {
|
|
1422
|
+
console.log(arg0, arg1);
|
|
1423
|
+
},
|
|
1424
|
+
__wbg_lost_21e9db8a9502a0ca: function(arg0) {
|
|
1425
|
+
const ret = arg0.lost;
|
|
1426
|
+
return ret;
|
|
1427
|
+
},
|
|
1428
|
+
__wbg_mapAsync_f4fc38ac51855b15: function(arg0, arg1, arg2, arg3) {
|
|
1429
|
+
const ret = arg0.mapAsync(arg1 >>> 0, arg2, arg3);
|
|
1430
|
+
return ret;
|
|
1431
|
+
},
|
|
1432
|
+
__wbg_marketClientInitMessageBridge_54b004206e381eb5: function() { return handleError(function (arg0) {
|
|
1433
|
+
marketClientInitMessageBridge(arg0);
|
|
1434
|
+
}, arguments); },
|
|
1435
|
+
__wbg_marketClientPostMessage_f220cbf0b0912aff: function(arg0, arg1, arg2, arg3) {
|
|
1436
|
+
marketClientPostMessage(getStringFromWasm0(arg0, arg1), arg2 === 0 ? undefined : getStringFromWasm0(arg2, arg3));
|
|
1437
|
+
},
|
|
1438
|
+
__wbg_matchMedia_b27489ec503ba2a5: function() { return handleError(function (arg0, arg1, arg2) {
|
|
1439
|
+
const ret = arg0.matchMedia(getStringFromWasm0(arg1, arg2));
|
|
1440
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1441
|
+
}, arguments); },
|
|
1442
|
+
__wbg_matches_d58caa45a0ef29a3: function(arg0) {
|
|
1443
|
+
const ret = arg0.matches;
|
|
1444
|
+
return ret;
|
|
1445
|
+
},
|
|
1446
|
+
__wbg_maxBindGroups_cc0c1b6031ac310e: function(arg0) {
|
|
1447
|
+
const ret = arg0.maxBindGroups;
|
|
1448
|
+
return ret;
|
|
1449
|
+
},
|
|
1450
|
+
__wbg_maxBindingsPerBindGroup_d950de0c90e382e0: function(arg0) {
|
|
1451
|
+
const ret = arg0.maxBindingsPerBindGroup;
|
|
1452
|
+
return ret;
|
|
1453
|
+
},
|
|
1454
|
+
__wbg_maxBufferSize_01e5e024c304478a: function(arg0) {
|
|
1455
|
+
const ret = arg0.maxBufferSize;
|
|
1456
|
+
return ret;
|
|
1457
|
+
},
|
|
1458
|
+
__wbg_maxColorAttachmentBytesPerSample_91fc5eb9155186fd: function(arg0) {
|
|
1459
|
+
const ret = arg0.maxColorAttachmentBytesPerSample;
|
|
1460
|
+
return ret;
|
|
1461
|
+
},
|
|
1462
|
+
__wbg_maxColorAttachments_69f3bac8513cd2ce: function(arg0) {
|
|
1463
|
+
const ret = arg0.maxColorAttachments;
|
|
1464
|
+
return ret;
|
|
1465
|
+
},
|
|
1466
|
+
__wbg_maxComputeInvocationsPerWorkgroup_5d8e1f9e65b5443c: function(arg0) {
|
|
1467
|
+
const ret = arg0.maxComputeInvocationsPerWorkgroup;
|
|
1468
|
+
return ret;
|
|
1469
|
+
},
|
|
1470
|
+
__wbg_maxComputeWorkgroupSizeX_e8c75fa90e0b00b7: function(arg0) {
|
|
1471
|
+
const ret = arg0.maxComputeWorkgroupSizeX;
|
|
1472
|
+
return ret;
|
|
1473
|
+
},
|
|
1474
|
+
__wbg_maxComputeWorkgroupSizeY_72bce71ec7fa9330: function(arg0) {
|
|
1475
|
+
const ret = arg0.maxComputeWorkgroupSizeY;
|
|
1476
|
+
return ret;
|
|
1477
|
+
},
|
|
1478
|
+
__wbg_maxComputeWorkgroupSizeZ_8c7050ac47c80e42: function(arg0) {
|
|
1479
|
+
const ret = arg0.maxComputeWorkgroupSizeZ;
|
|
1480
|
+
return ret;
|
|
1481
|
+
},
|
|
1482
|
+
__wbg_maxComputeWorkgroupStorageSize_b789a39c5a0fd04a: function(arg0) {
|
|
1483
|
+
const ret = arg0.maxComputeWorkgroupStorageSize;
|
|
1484
|
+
return ret;
|
|
1485
|
+
},
|
|
1486
|
+
__wbg_maxComputeWorkgroupsPerDimension_a02a7f66f7c68b9c: function(arg0) {
|
|
1487
|
+
const ret = arg0.maxComputeWorkgroupsPerDimension;
|
|
1488
|
+
return ret;
|
|
1489
|
+
},
|
|
1490
|
+
__wbg_maxDynamicStorageBuffersPerPipelineLayout_90d4eb33665de8d1: function(arg0) {
|
|
1491
|
+
const ret = arg0.maxDynamicStorageBuffersPerPipelineLayout;
|
|
1492
|
+
return ret;
|
|
1493
|
+
},
|
|
1494
|
+
__wbg_maxDynamicUniformBuffersPerPipelineLayout_835864d8a793cc95: function(arg0) {
|
|
1495
|
+
const ret = arg0.maxDynamicUniformBuffersPerPipelineLayout;
|
|
1496
|
+
return ret;
|
|
1497
|
+
},
|
|
1498
|
+
__wbg_maxSampledTexturesPerShaderStage_f1fdaca8bd10047f: function(arg0) {
|
|
1499
|
+
const ret = arg0.maxSampledTexturesPerShaderStage;
|
|
1500
|
+
return ret;
|
|
1501
|
+
},
|
|
1502
|
+
__wbg_maxSamplersPerShaderStage_a0126ce660fc903a: function(arg0) {
|
|
1503
|
+
const ret = arg0.maxSamplersPerShaderStage;
|
|
1504
|
+
return ret;
|
|
1505
|
+
},
|
|
1506
|
+
__wbg_maxStorageBufferBindingSize_9ed12d54b564312c: function(arg0) {
|
|
1507
|
+
const ret = arg0.maxStorageBufferBindingSize;
|
|
1508
|
+
return ret;
|
|
1509
|
+
},
|
|
1510
|
+
__wbg_maxStorageBuffersPerShaderStage_7db5a7548c1199e6: function(arg0) {
|
|
1511
|
+
const ret = arg0.maxStorageBuffersPerShaderStage;
|
|
1512
|
+
return ret;
|
|
1513
|
+
},
|
|
1514
|
+
__wbg_maxStorageTexturesPerShaderStage_3df697d427690d26: function(arg0) {
|
|
1515
|
+
const ret = arg0.maxStorageTexturesPerShaderStage;
|
|
1516
|
+
return ret;
|
|
1517
|
+
},
|
|
1518
|
+
__wbg_maxTextureArrayLayers_759d0ac67e0a7d26: function(arg0) {
|
|
1519
|
+
const ret = arg0.maxTextureArrayLayers;
|
|
1520
|
+
return ret;
|
|
1521
|
+
},
|
|
1522
|
+
__wbg_maxTextureDimension1D_4bfdff8638ada7c1: function(arg0) {
|
|
1523
|
+
const ret = arg0.maxTextureDimension1D;
|
|
1524
|
+
return ret;
|
|
1525
|
+
},
|
|
1526
|
+
__wbg_maxTextureDimension2D_ea0c9c4d0b239666: function(arg0) {
|
|
1527
|
+
const ret = arg0.maxTextureDimension2D;
|
|
1528
|
+
return ret;
|
|
1529
|
+
},
|
|
1530
|
+
__wbg_maxTextureDimension3D_e76f3604806f47be: function(arg0) {
|
|
1531
|
+
const ret = arg0.maxTextureDimension3D;
|
|
1532
|
+
return ret;
|
|
1533
|
+
},
|
|
1534
|
+
__wbg_maxTouchPoints_ec958e76f1ad9f61: function(arg0) {
|
|
1535
|
+
const ret = arg0.maxTouchPoints;
|
|
1536
|
+
return ret;
|
|
1537
|
+
},
|
|
1538
|
+
__wbg_maxUniformBufferBindingSize_591ad000ffe10aad: function(arg0) {
|
|
1539
|
+
const ret = arg0.maxUniformBufferBindingSize;
|
|
1540
|
+
return ret;
|
|
1541
|
+
},
|
|
1542
|
+
__wbg_maxUniformBuffersPerShaderStage_6e5696dba506ca6c: function(arg0) {
|
|
1543
|
+
const ret = arg0.maxUniformBuffersPerShaderStage;
|
|
1544
|
+
return ret;
|
|
1545
|
+
},
|
|
1546
|
+
__wbg_maxVertexAttributes_fef434a4cf2ba188: function(arg0) {
|
|
1547
|
+
const ret = arg0.maxVertexAttributes;
|
|
1548
|
+
return ret;
|
|
1549
|
+
},
|
|
1550
|
+
__wbg_maxVertexBufferArrayStride_de60c38ec574b423: function(arg0) {
|
|
1551
|
+
const ret = arg0.maxVertexBufferArrayStride;
|
|
1552
|
+
return ret;
|
|
1553
|
+
},
|
|
1554
|
+
__wbg_maxVertexBuffers_d1a4a2fba06ae7d6: function(arg0) {
|
|
1555
|
+
const ret = arg0.maxVertexBuffers;
|
|
1556
|
+
return ret;
|
|
1557
|
+
},
|
|
1558
|
+
__wbg_media_91e147d0112e864c: function(arg0, arg1) {
|
|
1559
|
+
const ret = arg1.media;
|
|
1560
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1561
|
+
const len1 = WASM_VECTOR_LEN;
|
|
1562
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1563
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1564
|
+
},
|
|
1565
|
+
__wbg_message_00d63f20c41713dd: function(arg0) {
|
|
1566
|
+
const ret = arg0.message;
|
|
1567
|
+
return ret;
|
|
1568
|
+
},
|
|
1569
|
+
__wbg_message_67f6368dc2a526af: function(arg0, arg1) {
|
|
1570
|
+
const ret = arg1.message;
|
|
1571
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1572
|
+
const len1 = WASM_VECTOR_LEN;
|
|
1573
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1574
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1575
|
+
},
|
|
1576
|
+
__wbg_message_8fd23df93c50075a: function(arg0, arg1) {
|
|
1577
|
+
const ret = arg1.message;
|
|
1578
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1579
|
+
const len1 = WASM_VECTOR_LEN;
|
|
1580
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1581
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1582
|
+
},
|
|
1583
|
+
__wbg_message_b00edacf4a520b03: function(arg0, arg1) {
|
|
1584
|
+
const ret = arg1.message;
|
|
1585
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1586
|
+
const len1 = WASM_VECTOR_LEN;
|
|
1587
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1588
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1589
|
+
},
|
|
1590
|
+
__wbg_message_d2eedafa0bd554a6: function(arg0, arg1) {
|
|
1591
|
+
const ret = arg1.message;
|
|
1592
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1593
|
+
const len1 = WASM_VECTOR_LEN;
|
|
1594
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1595
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1596
|
+
},
|
|
1597
|
+
__wbg_message_e959edc81e4b6cb7: function(arg0, arg1) {
|
|
1598
|
+
const ret = arg1.message;
|
|
1599
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1600
|
+
const len1 = WASM_VECTOR_LEN;
|
|
1601
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1602
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1603
|
+
},
|
|
1604
|
+
__wbg_messages_1df11461d071c92c: function(arg0) {
|
|
1605
|
+
const ret = arg0.messages;
|
|
1606
|
+
return ret;
|
|
1607
|
+
},
|
|
1608
|
+
__wbg_metaKey_04074c2a59c1806c: function(arg0) {
|
|
1609
|
+
const ret = arg0.metaKey;
|
|
1610
|
+
return ret;
|
|
1611
|
+
},
|
|
1612
|
+
__wbg_metaKey_09c90f191df1276b: function(arg0) {
|
|
1613
|
+
const ret = arg0.metaKey;
|
|
1614
|
+
return ret;
|
|
1615
|
+
},
|
|
1616
|
+
__wbg_minStorageBufferOffsetAlignment_49f6b6baa1d34111: function(arg0) {
|
|
1617
|
+
const ret = arg0.minStorageBufferOffsetAlignment;
|
|
1618
|
+
return ret;
|
|
1619
|
+
},
|
|
1620
|
+
__wbg_minUniformBufferOffsetAlignment_39ec7837ddc9ee2c: function(arg0) {
|
|
1621
|
+
const ret = arg0.minUniformBufferOffsetAlignment;
|
|
1622
|
+
return ret;
|
|
1623
|
+
},
|
|
1624
|
+
__wbg_movementX_36b3256d18bcf681: function(arg0) {
|
|
1625
|
+
const ret = arg0.movementX;
|
|
1626
|
+
return ret;
|
|
1627
|
+
},
|
|
1628
|
+
__wbg_movementY_004a98ec08b8f584: function(arg0) {
|
|
1629
|
+
const ret = arg0.movementY;
|
|
1630
|
+
return ret;
|
|
1631
|
+
},
|
|
1632
|
+
__wbg_msCrypto_bd5a034af96bcba6: function(arg0) {
|
|
1633
|
+
const ret = arg0.msCrypto;
|
|
1634
|
+
return ret;
|
|
1635
|
+
},
|
|
1636
|
+
__wbg_name_ecf53d5e050a495d: function(arg0) {
|
|
1637
|
+
const ret = arg0.name;
|
|
1638
|
+
return ret;
|
|
1639
|
+
},
|
|
1640
|
+
__wbg_navigator_583ffd4fc14c0f7a: function(arg0) {
|
|
1641
|
+
const ret = arg0.navigator;
|
|
1642
|
+
return ret;
|
|
1643
|
+
},
|
|
1644
|
+
__wbg_navigator_9cebf56f28aa719b: function(arg0) {
|
|
1645
|
+
const ret = arg0.navigator;
|
|
1646
|
+
return ret;
|
|
1647
|
+
},
|
|
1648
|
+
__wbg_new_0837727332ac86ba: function() { return handleError(function () {
|
|
1649
|
+
const ret = new Headers();
|
|
1650
|
+
return ret;
|
|
1651
|
+
}, arguments); },
|
|
1652
|
+
__wbg_new_0_1dcafdf5e786e876: function() {
|
|
1653
|
+
const ret = new Date();
|
|
1654
|
+
return ret;
|
|
1655
|
+
},
|
|
1656
|
+
__wbg_new_0b637bad3d58f611: function() { return handleError(function () {
|
|
1657
|
+
const ret = new Image();
|
|
1658
|
+
return ret;
|
|
1659
|
+
}, arguments); },
|
|
1660
|
+
__wbg_new_0f23aa24a214fe10: function(arg0) {
|
|
1661
|
+
const ret = new Uint32Array(arg0);
|
|
1662
|
+
return ret;
|
|
1663
|
+
},
|
|
1664
|
+
__wbg_new_227d7c05414eb861: function() {
|
|
1665
|
+
const ret = new Error();
|
|
1666
|
+
return ret;
|
|
1667
|
+
},
|
|
1668
|
+
__wbg_new_2f2471088e579bbc: function() { return handleError(function (arg0, arg1) {
|
|
1669
|
+
const ret = new Event(getStringFromWasm0(arg0, arg1));
|
|
1670
|
+
return ret;
|
|
1671
|
+
}, arguments); },
|
|
1672
|
+
__wbg_new_3acd383af1655b5f: function() { return handleError(function (arg0, arg1) {
|
|
1673
|
+
const ret = new Worker(getStringFromWasm0(arg0, arg1));
|
|
1674
|
+
return ret;
|
|
1675
|
+
}, arguments); },
|
|
1676
|
+
__wbg_new_42398a42abc5b110: function() { return handleError(function (arg0) {
|
|
1677
|
+
const ret = new IntersectionObserver(arg0);
|
|
1678
|
+
return ret;
|
|
1679
|
+
}, arguments); },
|
|
1680
|
+
__wbg_new_5e532409c6c7bba4: function() { return handleError(function () {
|
|
1681
|
+
const ret = new lAudioContext();
|
|
1682
|
+
return ret;
|
|
1683
|
+
}, arguments); },
|
|
1684
|
+
__wbg_new_5f486cdf45a04d78: function(arg0) {
|
|
1685
|
+
const ret = new Uint8Array(arg0);
|
|
1686
|
+
return ret;
|
|
1687
|
+
},
|
|
1688
|
+
__wbg_new_a5de2c0e786216d6: function(arg0) {
|
|
1689
|
+
const ret = new ArrayBuffer(arg0 >>> 0);
|
|
1690
|
+
return ret;
|
|
1691
|
+
},
|
|
1692
|
+
__wbg_new_a70fbab9066b301f: function() {
|
|
1693
|
+
const ret = new Array();
|
|
1694
|
+
return ret;
|
|
1695
|
+
},
|
|
1696
|
+
__wbg_new_ab79df5bd7c26067: function() {
|
|
1697
|
+
const ret = new Object();
|
|
1698
|
+
return ret;
|
|
1699
|
+
},
|
|
1700
|
+
__wbg_new_bb1018d527df73cb: function() { return handleError(function (arg0, arg1) {
|
|
1701
|
+
const ret = new URL(getStringFromWasm0(arg0, arg1));
|
|
1702
|
+
return ret;
|
|
1703
|
+
}, arguments); },
|
|
1704
|
+
__wbg_new_c518c60af666645b: function() { return handleError(function () {
|
|
1705
|
+
const ret = new AbortController();
|
|
1706
|
+
return ret;
|
|
1707
|
+
}, arguments); },
|
|
1708
|
+
__wbg_new_d15cb560a6a0e5f0: function(arg0, arg1) {
|
|
1709
|
+
const ret = new Error(getStringFromWasm0(arg0, arg1));
|
|
1710
|
+
return ret;
|
|
1711
|
+
},
|
|
1712
|
+
__wbg_new_dd50bcc3f60ba434: function() { return handleError(function (arg0, arg1) {
|
|
1713
|
+
const ret = new WebSocket(getStringFromWasm0(arg0, arg1));
|
|
1714
|
+
return ret;
|
|
1715
|
+
}, arguments); },
|
|
1716
|
+
__wbg_new_de704db0001dadc8: function() { return handleError(function (arg0) {
|
|
1717
|
+
const ret = new ResizeObserver(arg0);
|
|
1718
|
+
return ret;
|
|
1719
|
+
}, arguments); },
|
|
1720
|
+
__wbg_new_f7708ba82c4c12f6: function() { return handleError(function () {
|
|
1721
|
+
const ret = new MessageChannel();
|
|
1722
|
+
return ret;
|
|
1723
|
+
}, arguments); },
|
|
1724
|
+
__wbg_new_fd94ca5c9639abd2: function(arg0) {
|
|
1725
|
+
const ret = new Date(arg0);
|
|
1726
|
+
return ret;
|
|
1727
|
+
},
|
|
1728
|
+
__wbg_new_from_slice_22da9388ac046e50: function(arg0, arg1) {
|
|
1729
|
+
const ret = new Uint8Array(getArrayU8FromWasm0(arg0, arg1));
|
|
1730
|
+
return ret;
|
|
1731
|
+
},
|
|
1732
|
+
__wbg_new_no_args_d15c5c26a5dbe2e7: function(arg0, arg1) {
|
|
1733
|
+
const ret = new Function(getStringFromWasm0(arg0, arg1));
|
|
1734
|
+
return ret;
|
|
1735
|
+
},
|
|
1736
|
+
__wbg_new_typed_aaaeaf29cf802876: function(arg0, arg1) {
|
|
1737
|
+
try {
|
|
1738
|
+
var state0 = {a: arg0, b: arg1};
|
|
1739
|
+
var cb0 = (arg0, arg1) => {
|
|
1740
|
+
const a = state0.a;
|
|
1741
|
+
state0.a = 0;
|
|
1742
|
+
try {
|
|
1743
|
+
return wasm_bindgen__convert__closures_____invoke__h1723b3b073a90d0a(a, state0.b, arg0, arg1);
|
|
1744
|
+
} finally {
|
|
1745
|
+
state0.a = a;
|
|
1746
|
+
}
|
|
1747
|
+
};
|
|
1748
|
+
const ret = new Promise(cb0);
|
|
1749
|
+
return ret;
|
|
1750
|
+
} finally {
|
|
1751
|
+
state0.a = state0.b = 0;
|
|
1752
|
+
}
|
|
1753
|
+
},
|
|
1754
|
+
__wbg_new_typed_bccac67128ed885a: function() {
|
|
1755
|
+
const ret = new Array();
|
|
1756
|
+
return ret;
|
|
1757
|
+
},
|
|
1758
|
+
__wbg_new_with_args_4c76adfe7b6e456b: function(arg0, arg1, arg2, arg3) {
|
|
1759
|
+
const ret = new Function(getStringFromWasm0(arg0, arg1), getStringFromWasm0(arg2, arg3));
|
|
1760
|
+
return ret;
|
|
1761
|
+
},
|
|
1762
|
+
__wbg_new_with_base_d787868306e9ee82: function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
1763
|
+
const ret = new URL(getStringFromWasm0(arg0, arg1), getStringFromWasm0(arg2, arg3));
|
|
1764
|
+
return ret;
|
|
1765
|
+
}, arguments); },
|
|
1766
|
+
__wbg_new_with_byte_offset_and_length_b2ec5bf7b2f35743: function(arg0, arg1, arg2) {
|
|
1767
|
+
const ret = new Uint8Array(arg0, arg1 >>> 0, arg2 >>> 0);
|
|
1768
|
+
return ret;
|
|
1769
|
+
},
|
|
1770
|
+
__wbg_new_with_configuration_68cc580e8e54dd8a: function() { return handleError(function (arg0) {
|
|
1771
|
+
const ret = new RTCPeerConnection(arg0);
|
|
1772
|
+
return ret;
|
|
1773
|
+
}, arguments); },
|
|
1774
|
+
__wbg_new_with_length_825018a1616e9e55: function(arg0) {
|
|
1775
|
+
const ret = new Uint8Array(arg0 >>> 0);
|
|
1776
|
+
return ret;
|
|
1777
|
+
},
|
|
1778
|
+
__wbg_new_with_options_4eec6fc3e29de99c: function() { return handleError(function (arg0, arg1, arg2) {
|
|
1779
|
+
const ret = new Worker(getStringFromWasm0(arg0, arg1), arg2);
|
|
1780
|
+
return ret;
|
|
1781
|
+
}, arguments); },
|
|
1782
|
+
__wbg_new_with_str_and_init_b4b54d1a819bc724: function() { return handleError(function (arg0, arg1, arg2) {
|
|
1783
|
+
const ret = new Request(getStringFromWasm0(arg0, arg1), arg2);
|
|
1784
|
+
return ret;
|
|
1785
|
+
}, arguments); },
|
|
1786
|
+
__wbg_new_with_str_sequence_and_options_a037535f6e1edba0: function() { return handleError(function (arg0, arg1) {
|
|
1787
|
+
const ret = new Blob(arg0, arg1);
|
|
1788
|
+
return ret;
|
|
1789
|
+
}, arguments); },
|
|
1790
|
+
__wbg_new_with_u8_clamped_array_f0ba3283326efdd8: function() { return handleError(function (arg0, arg1, arg2) {
|
|
1791
|
+
const ret = new ImageData(getClampedArrayU8FromWasm0(arg0, arg1), arg2 >>> 0);
|
|
1792
|
+
return ret;
|
|
1793
|
+
}, arguments); },
|
|
1794
|
+
__wbg_next_11b99ee6237339e3: function() { return handleError(function (arg0) {
|
|
1795
|
+
const ret = arg0.next();
|
|
1796
|
+
return ret;
|
|
1797
|
+
}, arguments); },
|
|
1798
|
+
__wbg_next_e01a967809d1aa68: function(arg0) {
|
|
1799
|
+
const ret = arg0.next;
|
|
1800
|
+
return ret;
|
|
1801
|
+
},
|
|
1802
|
+
__wbg_node_84ea875411254db1: function(arg0) {
|
|
1803
|
+
const ret = arg0.node;
|
|
1804
|
+
return ret;
|
|
1805
|
+
},
|
|
1806
|
+
__wbg_now_16f0c993d5dd6c27: function() {
|
|
1807
|
+
const ret = Date.now();
|
|
1808
|
+
return ret;
|
|
1809
|
+
},
|
|
1810
|
+
__wbg_now_c6d7a7d35f74f6f1: function(arg0) {
|
|
1811
|
+
const ret = arg0.now();
|
|
1812
|
+
return ret;
|
|
1813
|
+
},
|
|
1814
|
+
__wbg_now_e7c6795a7f81e10f: function(arg0) {
|
|
1815
|
+
const ret = arg0.now();
|
|
1816
|
+
return ret;
|
|
1817
|
+
},
|
|
1818
|
+
__wbg_observe_571954223f11dad1: function(arg0, arg1, arg2) {
|
|
1819
|
+
arg0.observe(arg1, arg2);
|
|
1820
|
+
},
|
|
1821
|
+
__wbg_observe_a829ffd9907f84b1: function(arg0, arg1) {
|
|
1822
|
+
arg0.observe(arg1);
|
|
1823
|
+
},
|
|
1824
|
+
__wbg_observe_e1a1f270d8431b29: function(arg0, arg1) {
|
|
1825
|
+
arg0.observe(arg1);
|
|
1826
|
+
},
|
|
1827
|
+
__wbg_of_8bf7ed3eca00ea43: function(arg0) {
|
|
1828
|
+
const ret = Array.of(arg0);
|
|
1829
|
+
return ret;
|
|
1830
|
+
},
|
|
1831
|
+
__wbg_of_d6376e3774c51f89: function(arg0, arg1) {
|
|
1832
|
+
const ret = Array.of(arg0, arg1);
|
|
1833
|
+
return ret;
|
|
1834
|
+
},
|
|
1835
|
+
__wbg_offsetX_a9bf2ea7f0575ac9: function(arg0) {
|
|
1836
|
+
const ret = arg0.offsetX;
|
|
1837
|
+
return ret;
|
|
1838
|
+
},
|
|
1839
|
+
__wbg_offsetY_10e5433a1bbd4c01: function(arg0) {
|
|
1840
|
+
const ret = arg0.offsetY;
|
|
1841
|
+
return ret;
|
|
1842
|
+
},
|
|
1843
|
+
__wbg_offset_78dcfcd1f3ebc4ea: function(arg0) {
|
|
1844
|
+
const ret = arg0.offset;
|
|
1845
|
+
return ret;
|
|
1846
|
+
},
|
|
1847
|
+
__wbg_open_6278297441644f07: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
1848
|
+
const ret = arg0.open(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
1849
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1850
|
+
}, arguments); },
|
|
1851
|
+
__wbg_origin_bac5c3119fe40a90: function() { return handleError(function (arg0, arg1) {
|
|
1852
|
+
const ret = arg1.origin;
|
|
1853
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1854
|
+
const len1 = WASM_VECTOR_LEN;
|
|
1855
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1856
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1857
|
+
}, arguments); },
|
|
1858
|
+
__wbg_pathname_91da77877cfd2b76: function() { return handleError(function (arg0, arg1) {
|
|
1859
|
+
const ret = arg1.pathname;
|
|
1860
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1861
|
+
const len1 = WASM_VECTOR_LEN;
|
|
1862
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1863
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1864
|
+
}, arguments); },
|
|
1865
|
+
__wbg_performance_28be169151161678: function(arg0) {
|
|
1866
|
+
const ret = arg0.performance;
|
|
1867
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1868
|
+
},
|
|
1869
|
+
__wbg_performance_3fcf6e32a7e1ed0a: function(arg0) {
|
|
1870
|
+
const ret = arg0.performance;
|
|
1871
|
+
return ret;
|
|
1872
|
+
},
|
|
1873
|
+
__wbg_persisted_8366757621586c61: function(arg0) {
|
|
1874
|
+
const ret = arg0.persisted;
|
|
1875
|
+
return ret;
|
|
1876
|
+
},
|
|
1877
|
+
__wbg_play_3997a1be51d27925: function(arg0) {
|
|
1878
|
+
arg0.play();
|
|
1879
|
+
},
|
|
1880
|
+
__wbg_playbackRate_53ab6902d4c67665: function(arg0) {
|
|
1881
|
+
const ret = arg0.playbackRate;
|
|
1882
|
+
return ret;
|
|
1883
|
+
},
|
|
1884
|
+
__wbg_pointerId_85ff21be7b52f43e: function(arg0) {
|
|
1885
|
+
const ret = arg0.pointerId;
|
|
1886
|
+
return ret;
|
|
1887
|
+
},
|
|
1888
|
+
__wbg_pointerType_02525bef1df5f79c: function(arg0, arg1) {
|
|
1889
|
+
const ret = arg1.pointerType;
|
|
1890
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1891
|
+
const len1 = WASM_VECTOR_LEN;
|
|
1892
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1893
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1894
|
+
},
|
|
1895
|
+
__wbg_popErrorScope_efb23ea2dcc3b587: function(arg0) {
|
|
1896
|
+
const ret = arg0.popErrorScope();
|
|
1897
|
+
return ret;
|
|
1898
|
+
},
|
|
1899
|
+
__wbg_port1_869a7ef90538dbdf: function(arg0) {
|
|
1900
|
+
const ret = arg0.port1;
|
|
1901
|
+
return ret;
|
|
1902
|
+
},
|
|
1903
|
+
__wbg_port2_947a51b8ba00adc9: function(arg0) {
|
|
1904
|
+
const ret = arg0.port2;
|
|
1905
|
+
return ret;
|
|
1906
|
+
},
|
|
1907
|
+
__wbg_postMessage_5ed5275983f7dad2: function() { return handleError(function (arg0, arg1, arg2) {
|
|
1908
|
+
arg0.postMessage(arg1, arg2);
|
|
1909
|
+
}, arguments); },
|
|
1910
|
+
__wbg_postMessage_c89a8b5edbf59ad0: function() { return handleError(function (arg0, arg1) {
|
|
1911
|
+
arg0.postMessage(arg1);
|
|
1912
|
+
}, arguments); },
|
|
1913
|
+
__wbg_postMessage_edb4c90a528e5a8c: function() { return handleError(function (arg0, arg1) {
|
|
1914
|
+
arg0.postMessage(arg1);
|
|
1915
|
+
}, arguments); },
|
|
1916
|
+
__wbg_postTask_e2439afddcdfbb55: function(arg0, arg1, arg2) {
|
|
1917
|
+
const ret = arg0.postTask(arg1, arg2);
|
|
1918
|
+
return ret;
|
|
1919
|
+
},
|
|
1920
|
+
__wbg_pressure_8a4698697b9bba06: function(arg0) {
|
|
1921
|
+
const ret = arg0.pressure;
|
|
1922
|
+
return ret;
|
|
1923
|
+
},
|
|
1924
|
+
__wbg_preventDefault_25a229bfe5c510f8: function(arg0) {
|
|
1925
|
+
arg0.preventDefault();
|
|
1926
|
+
},
|
|
1927
|
+
__wbg_process_44c7a14e11e9f69e: function(arg0) {
|
|
1928
|
+
const ret = arg0.process;
|
|
1929
|
+
return ret;
|
|
1930
|
+
},
|
|
1931
|
+
__wbg_prototype_0d5bb2023db3bcfc: function() {
|
|
1932
|
+
const ret = ResizeObserverEntry.prototype;
|
|
1933
|
+
return ret;
|
|
1934
|
+
},
|
|
1935
|
+
__wbg_prototypesetcall_d62e5099504357e6: function(arg0, arg1, arg2) {
|
|
1936
|
+
Uint8Array.prototype.set.call(getArrayU8FromWasm0(arg0, arg1), arg2);
|
|
1937
|
+
},
|
|
1938
|
+
__wbg_prototypesetcall_f04613188bde902d: function(arg0, arg1, arg2) {
|
|
1939
|
+
Uint32Array.prototype.set.call(getArrayU32FromWasm0(arg0, arg1), arg2);
|
|
1940
|
+
},
|
|
1941
|
+
__wbg_pushErrorScope_9a7570b7a9f67657: function(arg0, arg1) {
|
|
1942
|
+
arg0.pushErrorScope(__wbindgen_enum_GpuErrorFilter[arg1]);
|
|
1943
|
+
},
|
|
1944
|
+
__wbg_push_e87b0e732085a946: function(arg0, arg1) {
|
|
1945
|
+
const ret = arg0.push(arg1);
|
|
1946
|
+
return ret;
|
|
1947
|
+
},
|
|
1948
|
+
__wbg_querySelectorAll_ccbf0696a1c6fed8: function() { return handleError(function (arg0, arg1, arg2) {
|
|
1949
|
+
const ret = arg0.querySelectorAll(getStringFromWasm0(arg1, arg2));
|
|
1950
|
+
return ret;
|
|
1951
|
+
}, arguments); },
|
|
1952
|
+
__wbg_queueMicrotask_0c399741342fb10f: function(arg0) {
|
|
1953
|
+
const ret = arg0.queueMicrotask;
|
|
1954
|
+
return ret;
|
|
1955
|
+
},
|
|
1956
|
+
__wbg_queueMicrotask_9608487e970c906d: function(arg0, arg1) {
|
|
1957
|
+
arg0.queueMicrotask(arg1);
|
|
1958
|
+
},
|
|
1959
|
+
__wbg_queueMicrotask_a082d78ce798393e: function(arg0) {
|
|
1960
|
+
queueMicrotask(arg0);
|
|
1961
|
+
},
|
|
1962
|
+
__wbg_queue_9595c5175ef399b9: function(arg0) {
|
|
1963
|
+
const ret = arg0.queue;
|
|
1964
|
+
return ret;
|
|
1965
|
+
},
|
|
1966
|
+
__wbg_randomFillSync_6c25eac9869eb53c: function() { return handleError(function (arg0, arg1) {
|
|
1967
|
+
arg0.randomFillSync(arg1);
|
|
1968
|
+
}, arguments); },
|
|
1969
|
+
__wbg_random_5bb86cae65a45bf6: function() {
|
|
1970
|
+
const ret = Math.random();
|
|
1971
|
+
return ret;
|
|
1972
|
+
},
|
|
1973
|
+
__wbg_readText_fafc6e2dec6e3b6e: function(arg0) {
|
|
1974
|
+
const ret = arg0.readText();
|
|
1975
|
+
return ret;
|
|
1976
|
+
},
|
|
1977
|
+
__wbg_read_7f593a961a7f80ed: function(arg0) {
|
|
1978
|
+
const ret = arg0.read();
|
|
1979
|
+
return ret;
|
|
1980
|
+
},
|
|
1981
|
+
__wbg_readyState_1f1e7f1bdf9f4d42: function(arg0) {
|
|
1982
|
+
const ret = arg0.readyState;
|
|
1983
|
+
return ret;
|
|
1984
|
+
},
|
|
1985
|
+
__wbg_readyState_e952f64af84cc2f1: function(arg0) {
|
|
1986
|
+
const ret = arg0.readyState;
|
|
1987
|
+
return (__wbindgen_enum_RtcDataChannelState.indexOf(ret) + 1 || 5) - 1;
|
|
1988
|
+
},
|
|
1989
|
+
__wbg_reason_f9df4a653cfa764b: function(arg0) {
|
|
1990
|
+
const ret = arg0.reason;
|
|
1991
|
+
return (__wbindgen_enum_GpuDeviceLostReason.indexOf(ret) + 1 || 3) - 1;
|
|
1992
|
+
},
|
|
1993
|
+
__wbg_releaseLock_ef7766a5da654ff8: function(arg0) {
|
|
1994
|
+
arg0.releaseLock();
|
|
1995
|
+
},
|
|
1996
|
+
__wbg_removeEventListener_d27694700fc0df8b: function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
1997
|
+
arg0.removeEventListener(getStringFromWasm0(arg1, arg2), arg3);
|
|
1998
|
+
}, arguments); },
|
|
1999
|
+
__wbg_removeItem_95c258b9afdd7580: function() { return handleError(function (arg0, arg1, arg2) {
|
|
2000
|
+
arg0.removeItem(getStringFromWasm0(arg1, arg2));
|
|
2001
|
+
}, arguments); },
|
|
2002
|
+
__wbg_removeListener_7afb5d85c58c554b: function() { return handleError(function (arg0, arg1) {
|
|
2003
|
+
arg0.removeListener(arg1);
|
|
2004
|
+
}, arguments); },
|
|
2005
|
+
__wbg_removeProperty_5b3523637b608633: function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
2006
|
+
const ret = arg1.removeProperty(getStringFromWasm0(arg2, arg3));
|
|
2007
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2008
|
+
const len1 = WASM_VECTOR_LEN;
|
|
2009
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2010
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2011
|
+
}, arguments); },
|
|
2012
|
+
__wbg_remove_892d3e438dfde09b: function(arg0) {
|
|
2013
|
+
arg0.remove();
|
|
2014
|
+
},
|
|
2015
|
+
__wbg_repeat_44d6eeebd275606f: function(arg0) {
|
|
2016
|
+
const ret = arg0.repeat;
|
|
2017
|
+
return ret;
|
|
2018
|
+
},
|
|
2019
|
+
__wbg_replace_ac021aa56ba20cbb: function() { return handleError(function (arg0, arg1, arg2) {
|
|
2020
|
+
arg0.replace(getStringFromWasm0(arg1, arg2));
|
|
2021
|
+
}, arguments); },
|
|
2022
|
+
__wbg_requestAdapter_592f04f645dfaf68: function(arg0, arg1) {
|
|
2023
|
+
const ret = arg0.requestAdapter(arg1);
|
|
2024
|
+
return ret;
|
|
2025
|
+
},
|
|
2026
|
+
__wbg_requestAnimationFrame_206c97f410e7a383: function() { return handleError(function (arg0, arg1) {
|
|
2027
|
+
const ret = arg0.requestAnimationFrame(arg1);
|
|
2028
|
+
return ret;
|
|
2029
|
+
}, arguments); },
|
|
2030
|
+
__wbg_requestDevice_52bb2980e6280ebc: function(arg0, arg1) {
|
|
2031
|
+
const ret = arg0.requestDevice(arg1);
|
|
2032
|
+
return ret;
|
|
2033
|
+
},
|
|
2034
|
+
__wbg_requestFullscreen_3f16e43f398ce624: function(arg0) {
|
|
2035
|
+
const ret = arg0.requestFullscreen();
|
|
2036
|
+
return ret;
|
|
2037
|
+
},
|
|
2038
|
+
__wbg_requestFullscreen_b977a3a0697e883c: function(arg0) {
|
|
2039
|
+
const ret = arg0.requestFullscreen;
|
|
2040
|
+
return ret;
|
|
2041
|
+
},
|
|
2042
|
+
__wbg_requestIdleCallback_3689e3e38f6cfc02: function(arg0) {
|
|
2043
|
+
const ret = arg0.requestIdleCallback;
|
|
2044
|
+
return ret;
|
|
2045
|
+
},
|
|
2046
|
+
__wbg_requestIdleCallback_75108097af8f5c6a: function() { return handleError(function (arg0, arg1) {
|
|
2047
|
+
const ret = arg0.requestIdleCallback(arg1);
|
|
2048
|
+
return ret;
|
|
2049
|
+
}, arguments); },
|
|
2050
|
+
__wbg_requestPointerLock_5794d6c3f7d960bb: function(arg0) {
|
|
2051
|
+
arg0.requestPointerLock();
|
|
2052
|
+
},
|
|
2053
|
+
__wbg_require_b4edbdcf3e2a1ef0: function() { return handleError(function () {
|
|
2054
|
+
const ret = module.require;
|
|
2055
|
+
return ret;
|
|
2056
|
+
}, arguments); },
|
|
2057
|
+
__wbg_resolveQuerySet_b316102e1d152b52: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
2058
|
+
arg0.resolveQuerySet(arg1, arg2 >>> 0, arg3 >>> 0, arg4, arg5 >>> 0);
|
|
2059
|
+
},
|
|
2060
|
+
__wbg_resolve_ae8d83246e5bcc12: function(arg0) {
|
|
2061
|
+
const ret = Promise.resolve(arg0);
|
|
2062
|
+
return ret;
|
|
2063
|
+
},
|
|
2064
|
+
__wbg_respond_e286ee502e7cf7e4: function() { return handleError(function (arg0, arg1) {
|
|
2065
|
+
arg0.respond(arg1 >>> 0);
|
|
2066
|
+
}, arguments); },
|
|
2067
|
+
__wbg_resume_7cf56c82bfdf6c58: function() { return handleError(function (arg0) {
|
|
2068
|
+
const ret = arg0.resume();
|
|
2069
|
+
return ret;
|
|
2070
|
+
}, arguments); },
|
|
2071
|
+
__wbg_revokeObjectURL_c4a7ed8e1908b794: function() { return handleError(function (arg0, arg1) {
|
|
2072
|
+
URL.revokeObjectURL(getStringFromWasm0(arg0, arg1));
|
|
2073
|
+
}, arguments); },
|
|
2074
|
+
__wbg_scheduler_a17d41c9c822fc26: function(arg0) {
|
|
2075
|
+
const ret = arg0.scheduler;
|
|
2076
|
+
return ret;
|
|
2077
|
+
},
|
|
2078
|
+
__wbg_scheduler_b35fe73ba70e89cc: function(arg0) {
|
|
2079
|
+
const ret = arg0.scheduler;
|
|
2080
|
+
return ret;
|
|
2081
|
+
},
|
|
2082
|
+
__wbg_scrollTo_df1447f5745da84d: function(arg0, arg1, arg2) {
|
|
2083
|
+
arg0.scrollTo(arg1, arg2);
|
|
2084
|
+
},
|
|
2085
|
+
__wbg_scrollY_606b06b31582377e: function() { return handleError(function (arg0) {
|
|
2086
|
+
const ret = arg0.scrollY;
|
|
2087
|
+
return ret;
|
|
2088
|
+
}, arguments); },
|
|
2089
|
+
__wbg_sdpMLineIndex_3fa92395295af3fe: function(arg0) {
|
|
2090
|
+
const ret = arg0.sdpMLineIndex;
|
|
2091
|
+
return isLikeNone(ret) ? 0xFFFFFF : ret;
|
|
2092
|
+
},
|
|
2093
|
+
__wbg_sdpMid_42cef31288107503: function(arg0, arg1) {
|
|
2094
|
+
const ret = arg1.sdpMid;
|
|
2095
|
+
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2096
|
+
var len1 = WASM_VECTOR_LEN;
|
|
2097
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2098
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2099
|
+
},
|
|
2100
|
+
__wbg_sdp_acedb57955e33565: function(arg0, arg1) {
|
|
2101
|
+
const ret = arg1.sdp;
|
|
2102
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2103
|
+
const len1 = WASM_VECTOR_LEN;
|
|
2104
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2105
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2106
|
+
},
|
|
2107
|
+
__wbg_searchParams_00e062a06e105925: function(arg0) {
|
|
2108
|
+
const ret = arg0.searchParams;
|
|
2109
|
+
return ret;
|
|
2110
|
+
},
|
|
2111
|
+
__wbg_search_b51196e2c214ec4e: function() { return handleError(function (arg0, arg1) {
|
|
2112
|
+
const ret = arg1.search;
|
|
2113
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2114
|
+
const len1 = WASM_VECTOR_LEN;
|
|
2115
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2116
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2117
|
+
}, arguments); },
|
|
2118
|
+
__wbg_send_0a82e94c7ac2c328: function() { return handleError(function (arg0, arg1) {
|
|
2119
|
+
arg0.send(arg1);
|
|
2120
|
+
}, arguments); },
|
|
2121
|
+
__wbg_send_0ce014a8c4b53081: function() { return handleError(function (arg0, arg1) {
|
|
2122
|
+
arg0.send(arg1);
|
|
2123
|
+
}, arguments); },
|
|
2124
|
+
__wbg_send_4a1dc66e8653e5ed: function() { return handleError(function (arg0, arg1, arg2) {
|
|
2125
|
+
arg0.send(getStringFromWasm0(arg1, arg2));
|
|
2126
|
+
}, arguments); },
|
|
2127
|
+
__wbg_sessionStorage_891b5c7a37f15d67: function() { return handleError(function (arg0) {
|
|
2128
|
+
const ret = arg0.sessionStorage;
|
|
2129
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2130
|
+
}, arguments); },
|
|
2131
|
+
__wbg_setAttribute_f20d3b966749ab64: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
2132
|
+
arg0.setAttribute(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
2133
|
+
}, arguments); },
|
|
2134
|
+
__wbg_setBindGroup_0fb411b7d1ec4966: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6) {
|
|
2135
|
+
arg0.setBindGroup(arg1 >>> 0, arg2, getArrayU32FromWasm0(arg3, arg4), arg5, arg6 >>> 0);
|
|
2136
|
+
},
|
|
2137
|
+
__wbg_setBindGroup_1c6bfc705c95f81f: function(arg0, arg1, arg2) {
|
|
2138
|
+
arg0.setBindGroup(arg1 >>> 0, arg2);
|
|
2139
|
+
},
|
|
2140
|
+
__wbg_setBindGroup_2ec8db65419ec50c: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6) {
|
|
2141
|
+
arg0.setBindGroup(arg1 >>> 0, arg2, getArrayU32FromWasm0(arg3, arg4), arg5, arg6 >>> 0);
|
|
2142
|
+
},
|
|
2143
|
+
__wbg_setBindGroup_3afbefd496741277: function(arg0, arg1, arg2) {
|
|
2144
|
+
arg0.setBindGroup(arg1 >>> 0, arg2);
|
|
2145
|
+
},
|
|
2146
|
+
__wbg_setBindGroup_4ac51c0e16178380: function(arg0, arg1, arg2) {
|
|
2147
|
+
arg0.setBindGroup(arg1 >>> 0, arg2);
|
|
2148
|
+
},
|
|
2149
|
+
__wbg_setBindGroup_c2fbfec522cc7572: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6) {
|
|
2150
|
+
arg0.setBindGroup(arg1 >>> 0, arg2, getArrayU32FromWasm0(arg3, arg4), arg5, arg6 >>> 0);
|
|
2151
|
+
},
|
|
2152
|
+
__wbg_setBlendConstant_00bed453ac51c91b: function(arg0, arg1) {
|
|
2153
|
+
arg0.setBlendConstant(arg1);
|
|
2154
|
+
},
|
|
2155
|
+
__wbg_setIndexBuffer_42017bb879ab062b: function(arg0, arg1, arg2, arg3) {
|
|
2156
|
+
arg0.setIndexBuffer(arg1, __wbindgen_enum_GpuIndexFormat[arg2], arg3);
|
|
2157
|
+
},
|
|
2158
|
+
__wbg_setIndexBuffer_4876c05f77106bb6: function(arg0, arg1, arg2, arg3, arg4) {
|
|
2159
|
+
arg0.setIndexBuffer(arg1, __wbindgen_enum_GpuIndexFormat[arg2], arg3, arg4);
|
|
2160
|
+
},
|
|
2161
|
+
__wbg_setIndexBuffer_8c79ee0b0b6460fa: function(arg0, arg1, arg2, arg3) {
|
|
2162
|
+
arg0.setIndexBuffer(arg1, __wbindgen_enum_GpuIndexFormat[arg2], arg3);
|
|
2163
|
+
},
|
|
2164
|
+
__wbg_setIndexBuffer_e10a7cf5d063fdab: function(arg0, arg1, arg2, arg3, arg4) {
|
|
2165
|
+
arg0.setIndexBuffer(arg1, __wbindgen_enum_GpuIndexFormat[arg2], arg3, arg4);
|
|
2166
|
+
},
|
|
2167
|
+
__wbg_setItem_5f84aeef0d7f3c17: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
2168
|
+
arg0.setItem(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
2169
|
+
}, arguments); },
|
|
2170
|
+
__wbg_setLocalDescription_07a0dcd3fc1356ea: function(arg0, arg1) {
|
|
2171
|
+
const ret = arg0.setLocalDescription(arg1);
|
|
2172
|
+
return ret;
|
|
2173
|
+
},
|
|
2174
|
+
__wbg_setPipeline_5c5a949bf12f8a5f: function(arg0, arg1) {
|
|
2175
|
+
arg0.setPipeline(arg1);
|
|
2176
|
+
},
|
|
2177
|
+
__wbg_setPipeline_c4793bebd98b8e56: function(arg0, arg1) {
|
|
2178
|
+
arg0.setPipeline(arg1);
|
|
2179
|
+
},
|
|
2180
|
+
__wbg_setPipeline_ce7a683c2c94919d: function(arg0, arg1) {
|
|
2181
|
+
arg0.setPipeline(arg1);
|
|
2182
|
+
},
|
|
2183
|
+
__wbg_setPointerCapture_b6e6a21fc0db7621: function() { return handleError(function (arg0, arg1) {
|
|
2184
|
+
arg0.setPointerCapture(arg1);
|
|
2185
|
+
}, arguments); },
|
|
2186
|
+
__wbg_setProperty_ef29d2aa64a04d2b: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
2187
|
+
arg0.setProperty(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
2188
|
+
}, arguments); },
|
|
2189
|
+
__wbg_setRemoteDescription_f6ae20a261ee7b22: function(arg0, arg1) {
|
|
2190
|
+
const ret = arg0.setRemoteDescription(arg1);
|
|
2191
|
+
return ret;
|
|
2192
|
+
},
|
|
2193
|
+
__wbg_setScissorRect_cf24179de05b8393: function(arg0, arg1, arg2, arg3, arg4) {
|
|
2194
|
+
arg0.setScissorRect(arg1 >>> 0, arg2 >>> 0, arg3 >>> 0, arg4 >>> 0);
|
|
2195
|
+
},
|
|
2196
|
+
__wbg_setSelectionRange_d7858ccc0a353c99: function() { return handleError(function (arg0, arg1, arg2) {
|
|
2197
|
+
arg0.setSelectionRange(arg1 >>> 0, arg2 >>> 0);
|
|
2198
|
+
}, arguments); },
|
|
2199
|
+
__wbg_setStencilReference_7a98f054e2f31f54: function(arg0, arg1) {
|
|
2200
|
+
arg0.setStencilReference(arg1 >>> 0);
|
|
2201
|
+
},
|
|
2202
|
+
__wbg_setTimeout_647865935a499f8b: function() { return handleError(function (arg0, arg1) {
|
|
2203
|
+
const ret = arg0.setTimeout(arg1);
|
|
2204
|
+
return ret;
|
|
2205
|
+
}, arguments); },
|
|
2206
|
+
__wbg_setTimeout_7f7035ad0b026458: function() { return handleError(function (arg0, arg1, arg2) {
|
|
2207
|
+
const ret = arg0.setTimeout(arg1, arg2);
|
|
2208
|
+
return ret;
|
|
2209
|
+
}, arguments); },
|
|
2210
|
+
__wbg_setTimeout_ef24d2fc3ad97385: function() { return handleError(function (arg0, arg1) {
|
|
2211
|
+
const ret = setTimeout(arg0, arg1);
|
|
2212
|
+
return ret;
|
|
2213
|
+
}, arguments); },
|
|
2214
|
+
__wbg_setTimeout_f757f00851f76c42: function(arg0, arg1) {
|
|
2215
|
+
const ret = setTimeout(arg0, arg1);
|
|
2216
|
+
return ret;
|
|
2217
|
+
},
|
|
2218
|
+
__wbg_setVertexBuffer_06dd033f8e75af24: function(arg0, arg1, arg2, arg3) {
|
|
2219
|
+
arg0.setVertexBuffer(arg1 >>> 0, arg2, arg3);
|
|
2220
|
+
},
|
|
2221
|
+
__wbg_setVertexBuffer_c973cd35605098e4: function(arg0, arg1, arg2, arg3, arg4) {
|
|
2222
|
+
arg0.setVertexBuffer(arg1 >>> 0, arg2, arg3, arg4);
|
|
2223
|
+
},
|
|
2224
|
+
__wbg_setVertexBuffer_e80315ecd1774568: function(arg0, arg1, arg2, arg3) {
|
|
2225
|
+
arg0.setVertexBuffer(arg1 >>> 0, arg2, arg3);
|
|
2226
|
+
},
|
|
2227
|
+
__wbg_setVertexBuffer_ef41a6013dba1352: function(arg0, arg1, arg2, arg3, arg4) {
|
|
2228
|
+
arg0.setVertexBuffer(arg1 >>> 0, arg2, arg3, arg4);
|
|
2229
|
+
},
|
|
2230
|
+
__wbg_setViewport_75637b1c9a301986: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6) {
|
|
2231
|
+
arg0.setViewport(arg1, arg2, arg3, arg4, arg5, arg6);
|
|
2232
|
+
},
|
|
2233
|
+
__wbg_set_47ebe5038df191ef: function(arg0, arg1, arg2, arg3, arg4) {
|
|
2234
|
+
arg0.set(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
2235
|
+
},
|
|
2236
|
+
__wbg_set_7eaa4f96924fd6b3: function() { return handleError(function (arg0, arg1, arg2) {
|
|
2237
|
+
const ret = Reflect.set(arg0, arg1, arg2);
|
|
2238
|
+
return ret;
|
|
2239
|
+
}, arguments); },
|
|
2240
|
+
__wbg_set_8c0b3ffcf05d61c2: function(arg0, arg1, arg2) {
|
|
2241
|
+
arg0.set(getArrayU8FromWasm0(arg1, arg2));
|
|
2242
|
+
},
|
|
2243
|
+
__wbg_set_binaryType_3dcf8281ec100a8f: function(arg0, arg1) {
|
|
2244
|
+
arg0.binaryType = __wbindgen_enum_BinaryType[arg1];
|
|
2245
|
+
},
|
|
2246
|
+
__wbg_set_body_a3d856b097dfda04: function(arg0, arg1) {
|
|
2247
|
+
arg0.body = arg1;
|
|
2248
|
+
},
|
|
2249
|
+
__wbg_set_box_6a730e6c216d512c: function(arg0, arg1) {
|
|
2250
|
+
arg0.box = __wbindgen_enum_ResizeObserverBoxOptions[arg1];
|
|
2251
|
+
},
|
|
2252
|
+
__wbg_set_buffer_ea42becad62e7650: function(arg0, arg1) {
|
|
2253
|
+
arg0.buffer = arg1;
|
|
2254
|
+
},
|
|
2255
|
+
__wbg_set_cache_ec7e430c6056ebda: function(arg0, arg1) {
|
|
2256
|
+
arg0.cache = __wbindgen_enum_RequestCache[arg1];
|
|
2257
|
+
},
|
|
2258
|
+
__wbg_set_candidate_42cb20c28dc6d5a4: function(arg0, arg1, arg2) {
|
|
2259
|
+
arg0.candidate = getStringFromWasm0(arg1, arg2);
|
|
2260
|
+
},
|
|
2261
|
+
__wbg_set_capture_271d6acb719615b3: function(arg0, arg1) {
|
|
2262
|
+
arg0.capture = arg1 !== 0;
|
|
2263
|
+
},
|
|
2264
|
+
__wbg_set_credential_52c3ab3f0bcd00e8: function(arg0, arg1, arg2) {
|
|
2265
|
+
arg0.credential = getStringFromWasm0(arg1, arg2);
|
|
2266
|
+
},
|
|
2267
|
+
__wbg_set_credentials_ed63183445882c65: function(arg0, arg1) {
|
|
2268
|
+
arg0.credentials = __wbindgen_enum_RequestCredentials[arg1];
|
|
2269
|
+
},
|
|
2270
|
+
__wbg_set_cursor_8d686ff9dd99a325: function(arg0, arg1, arg2) {
|
|
2271
|
+
arg0.cursor = getStringFromWasm0(arg1, arg2);
|
|
2272
|
+
},
|
|
2273
|
+
__wbg_set_duration_bfef0b021dc8fd5b: function(arg0, arg1) {
|
|
2274
|
+
arg0.duration = arg1;
|
|
2275
|
+
},
|
|
2276
|
+
__wbg_set_e80615d7a9a43981: function(arg0, arg1, arg2) {
|
|
2277
|
+
arg0.set(arg1, arg2 >>> 0);
|
|
2278
|
+
},
|
|
2279
|
+
__wbg_set_headers_3c8fecc693b75327: function(arg0, arg1) {
|
|
2280
|
+
arg0.headers = arg1;
|
|
2281
|
+
},
|
|
2282
|
+
__wbg_set_height_98a1a397672657e2: function(arg0, arg1) {
|
|
2283
|
+
arg0.height = arg1 >>> 0;
|
|
2284
|
+
},
|
|
2285
|
+
__wbg_set_height_b6548a01bdcb689a: function(arg0, arg1) {
|
|
2286
|
+
arg0.height = arg1 >>> 0;
|
|
2287
|
+
},
|
|
2288
|
+
__wbg_set_href_6cc49f8c2c9dbdaf: function() { return handleError(function (arg0, arg1, arg2) {
|
|
2289
|
+
arg0.href = getStringFromWasm0(arg1, arg2);
|
|
2290
|
+
}, arguments); },
|
|
2291
|
+
__wbg_set_ice_servers_79d9cedfbe60f514: function(arg0, arg1) {
|
|
2292
|
+
arg0.iceServers = arg1;
|
|
2293
|
+
},
|
|
2294
|
+
__wbg_set_iterations_b84d4d3302a291a0: function(arg0, arg1) {
|
|
2295
|
+
arg0.iterations = arg1;
|
|
2296
|
+
},
|
|
2297
|
+
__wbg_set_max_packet_life_time_a4a5ff0fcfdf9380: function(arg0, arg1) {
|
|
2298
|
+
arg0.maxPacketLifeTime = arg1;
|
|
2299
|
+
},
|
|
2300
|
+
__wbg_set_max_retransmits_61c36b2a6b0caeaa: function(arg0, arg1) {
|
|
2301
|
+
arg0.maxRetransmits = arg1;
|
|
2302
|
+
},
|
|
2303
|
+
__wbg_set_method_8c015e8bcafd7be1: function(arg0, arg1, arg2) {
|
|
2304
|
+
arg0.method = getStringFromWasm0(arg1, arg2);
|
|
2305
|
+
},
|
|
2306
|
+
__wbg_set_mode_5a87f2c809cf37c2: function(arg0, arg1) {
|
|
2307
|
+
arg0.mode = __wbindgen_enum_RequestMode[arg1];
|
|
2308
|
+
},
|
|
2309
|
+
__wbg_set_onclose_4cf3c22c1efd06d4: function(arg0, arg1) {
|
|
2310
|
+
arg0.onclose = arg1;
|
|
2311
|
+
},
|
|
2312
|
+
__wbg_set_onclose_8da801226bdd7a7b: function(arg0, arg1) {
|
|
2313
|
+
arg0.onclose = arg1;
|
|
2314
|
+
},
|
|
2315
|
+
__wbg_set_onconnectionstatechange_c74710e5e5301ae4: function(arg0, arg1) {
|
|
2316
|
+
arg0.onconnectionstatechange = arg1;
|
|
2317
|
+
},
|
|
2318
|
+
__wbg_set_ondatachannel_6bceadff84efc789: function(arg0, arg1) {
|
|
2319
|
+
arg0.ondatachannel = arg1;
|
|
2320
|
+
},
|
|
2321
|
+
__wbg_set_onerror_492780fd0d8591f5: function(arg0, arg1) {
|
|
2322
|
+
arg0.onerror = arg1;
|
|
2323
|
+
},
|
|
2324
|
+
__wbg_set_onerror_901ca711f94a5bbb: function(arg0, arg1) {
|
|
2325
|
+
arg0.onerror = arg1;
|
|
2326
|
+
},
|
|
2327
|
+
__wbg_set_onerror_b6593af87743742f: function(arg0, arg1) {
|
|
2328
|
+
arg0.onerror = arg1;
|
|
2329
|
+
},
|
|
2330
|
+
__wbg_set_onicecandidate_1675289910a093f4: function(arg0, arg1) {
|
|
2331
|
+
arg0.onicecandidate = arg1;
|
|
2332
|
+
},
|
|
2333
|
+
__wbg_set_oniceconnectionstatechange_f338c505c84c3a63: function(arg0, arg1) {
|
|
2334
|
+
arg0.oniceconnectionstatechange = arg1;
|
|
2335
|
+
},
|
|
2336
|
+
__wbg_set_onicegatheringstatechange_dce3e5dfa8a8d392: function(arg0, arg1) {
|
|
2337
|
+
arg0.onicegatheringstatechange = arg1;
|
|
2338
|
+
},
|
|
2339
|
+
__wbg_set_onmessage_234251e7fb7c6975: function(arg0, arg1) {
|
|
2340
|
+
arg0.onmessage = arg1;
|
|
2341
|
+
},
|
|
2342
|
+
__wbg_set_onmessage_6f80ab771bf151aa: function(arg0, arg1) {
|
|
2343
|
+
arg0.onmessage = arg1;
|
|
2344
|
+
},
|
|
2345
|
+
__wbg_set_onmessage_d5dc11c291025af6: function(arg0, arg1) {
|
|
2346
|
+
arg0.onmessage = arg1;
|
|
2347
|
+
},
|
|
2348
|
+
__wbg_set_onmessage_f939f8b6d08ca76b: function(arg0, arg1) {
|
|
2349
|
+
arg0.onmessage = arg1;
|
|
2350
|
+
},
|
|
2351
|
+
__wbg_set_onmessageerror_e96918540d225dc3: function(arg0, arg1) {
|
|
2352
|
+
arg0.onmessageerror = arg1;
|
|
2353
|
+
},
|
|
2354
|
+
__wbg_set_onopen_34e3e24cf9337ddd: function(arg0, arg1) {
|
|
2355
|
+
arg0.onopen = arg1;
|
|
2356
|
+
},
|
|
2357
|
+
__wbg_set_onopen_d0eb44607253e86f: function(arg0, arg1) {
|
|
2358
|
+
arg0.onopen = arg1;
|
|
2359
|
+
},
|
|
2360
|
+
__wbg_set_onuncapturederror_5c20c4125b115c22: function(arg0, arg1) {
|
|
2361
|
+
arg0.onuncapturederror = arg1;
|
|
2362
|
+
},
|
|
2363
|
+
__wbg_set_ordered_e1c97a68487e0afe: function(arg0, arg1) {
|
|
2364
|
+
arg0.ordered = arg1 !== 0;
|
|
2365
|
+
},
|
|
2366
|
+
__wbg_set_passive_9e672435b71b9c78: function(arg0, arg1) {
|
|
2367
|
+
arg0.passive = arg1 !== 0;
|
|
2368
|
+
},
|
|
2369
|
+
__wbg_set_premultiply_alpha_696b545e0615f655: function(arg0, arg1) {
|
|
2370
|
+
arg0.premultiplyAlpha = __wbindgen_enum_PremultiplyAlpha[arg1];
|
|
2371
|
+
},
|
|
2372
|
+
__wbg_set_sdp_7f6ec5fc907f5e41: function(arg0, arg1, arg2) {
|
|
2373
|
+
arg0.sdp = getStringFromWasm0(arg1, arg2);
|
|
2374
|
+
},
|
|
2375
|
+
__wbg_set_sdp_m_line_index_64e6ac2bddf908b7: function(arg0, arg1) {
|
|
2376
|
+
arg0.sdpMLineIndex = arg1 === 0xFFFFFF ? undefined : arg1;
|
|
2377
|
+
},
|
|
2378
|
+
__wbg_set_sdp_mid_5485885258073796: function(arg0, arg1, arg2) {
|
|
2379
|
+
arg0.sdpMid = arg1 === 0 ? undefined : getStringFromWasm0(arg1, arg2);
|
|
2380
|
+
},
|
|
2381
|
+
__wbg_set_signal_0cebecb698f25d21: function(arg0, arg1) {
|
|
2382
|
+
arg0.signal = arg1;
|
|
2383
|
+
},
|
|
2384
|
+
__wbg_set_src_f257a96103ac1ac6: function(arg0, arg1, arg2) {
|
|
2385
|
+
arg0.src = getStringFromWasm0(arg1, arg2);
|
|
2386
|
+
},
|
|
2387
|
+
__wbg_set_textContent_1e964492a2410e92: function(arg0, arg1, arg2) {
|
|
2388
|
+
arg0.textContent = arg1 === 0 ? undefined : getStringFromWasm0(arg1, arg2);
|
|
2389
|
+
},
|
|
2390
|
+
__wbg_set_type_1d0a0fec5f5a03bc: function(arg0, arg1) {
|
|
2391
|
+
arg0.type = __wbindgen_enum_RtcSdpType[arg1];
|
|
2392
|
+
},
|
|
2393
|
+
__wbg_set_type_33e79f1b45a78c37: function(arg0, arg1, arg2) {
|
|
2394
|
+
arg0.type = getStringFromWasm0(arg1, arg2);
|
|
2395
|
+
},
|
|
2396
|
+
__wbg_set_type_c96ec5d2b134f310: function(arg0, arg1) {
|
|
2397
|
+
arg0.type = __wbindgen_enum_WorkerType[arg1];
|
|
2398
|
+
},
|
|
2399
|
+
__wbg_set_urls_82091b358c280ee8: function(arg0, arg1) {
|
|
2400
|
+
arg0.urls = arg1;
|
|
2401
|
+
},
|
|
2402
|
+
__wbg_set_username_7366a6fbcec5a880: function(arg0, arg1, arg2) {
|
|
2403
|
+
arg0.username = getStringFromWasm0(arg1, arg2);
|
|
2404
|
+
},
|
|
2405
|
+
__wbg_set_value_4379db49464da2c7: function(arg0, arg1) {
|
|
2406
|
+
arg0.value = arg1;
|
|
2407
|
+
},
|
|
2408
|
+
__wbg_set_value_d621a056e7640299: function(arg0, arg1, arg2) {
|
|
2409
|
+
arg0.value = getStringFromWasm0(arg1, arg2);
|
|
2410
|
+
},
|
|
2411
|
+
__wbg_set_width_576343a4a7f2cf28: function(arg0, arg1) {
|
|
2412
|
+
arg0.width = arg1 >>> 0;
|
|
2413
|
+
},
|
|
2414
|
+
__wbg_set_width_c0fcaa2da53cd540: function(arg0, arg1) {
|
|
2415
|
+
arg0.width = arg1 >>> 0;
|
|
2416
|
+
},
|
|
2417
|
+
__wbg_shiftKey_5256a2168f9dc186: function(arg0) {
|
|
2418
|
+
const ret = arg0.shiftKey;
|
|
2419
|
+
return ret;
|
|
2420
|
+
},
|
|
2421
|
+
__wbg_shiftKey_ec106aa0755af421: function(arg0) {
|
|
2422
|
+
const ret = arg0.shiftKey;
|
|
2423
|
+
return ret;
|
|
2424
|
+
},
|
|
2425
|
+
__wbg_sign_f17cfbdf047e857e: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
2426
|
+
const ret = arg0.sign(getStringFromWasm0(arg1, arg2), arg3, arg4);
|
|
2427
|
+
return ret;
|
|
2428
|
+
}, arguments); },
|
|
2429
|
+
__wbg_signal_166e1da31adcac18: function(arg0) {
|
|
2430
|
+
const ret = arg0.signal;
|
|
2431
|
+
return ret;
|
|
2432
|
+
},
|
|
2433
|
+
__wbg_size_b5c1b72884cb3fa5: function(arg0) {
|
|
2434
|
+
const ret = arg0.size;
|
|
2435
|
+
return ret;
|
|
2436
|
+
},
|
|
2437
|
+
__wbg_stack_3b0d974bbf31e44f: function(arg0, arg1) {
|
|
2438
|
+
const ret = arg1.stack;
|
|
2439
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2440
|
+
const len1 = WASM_VECTOR_LEN;
|
|
2441
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2442
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2443
|
+
},
|
|
2444
|
+
__wbg_start_3c999c7b8e2bbd60: function() { return handleError(function (arg0) {
|
|
2445
|
+
arg0.start();
|
|
2446
|
+
}, arguments); },
|
|
2447
|
+
__wbg_start_f837ba2bac4733b5: function(arg0) {
|
|
2448
|
+
arg0.start();
|
|
2449
|
+
},
|
|
2450
|
+
__wbg_static_accessor_GLOBAL_8adb955bd33fac2f: function() {
|
|
2451
|
+
const ret = typeof global === 'undefined' ? null : global;
|
|
2452
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2453
|
+
},
|
|
2454
|
+
__wbg_static_accessor_GLOBAL_THIS_ad356e0db91c7913: function() {
|
|
2455
|
+
const ret = typeof globalThis === 'undefined' ? null : globalThis;
|
|
2456
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2457
|
+
},
|
|
2458
|
+
__wbg_static_accessor_SELF_f207c857566db248: function() {
|
|
2459
|
+
const ret = typeof self === 'undefined' ? null : self;
|
|
2460
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2461
|
+
},
|
|
2462
|
+
__wbg_static_accessor_WINDOW_bb9f1ba69d61b386: function() {
|
|
2463
|
+
const ret = typeof window === 'undefined' ? null : window;
|
|
2464
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2465
|
+
},
|
|
2466
|
+
__wbg_status_318629ab93a22955: function(arg0) {
|
|
2467
|
+
const ret = arg0.status;
|
|
2468
|
+
return ret;
|
|
2469
|
+
},
|
|
2470
|
+
__wbg_stopImmediatePropagation_cbc5963c55234fe1: function(arg0) {
|
|
2471
|
+
arg0.stopImmediatePropagation();
|
|
2472
|
+
},
|
|
2473
|
+
__wbg_stopPropagation_bab00a24a73a0c56: function(arg0) {
|
|
2474
|
+
arg0.stopPropagation();
|
|
2475
|
+
},
|
|
2476
|
+
__wbg_stop_05004cbe19efa805: function() { return handleError(function (arg0) {
|
|
2477
|
+
arg0.stop();
|
|
2478
|
+
}, arguments); },
|
|
2479
|
+
__wbg_stringify_5ae93966a84901ac: function() { return handleError(function (arg0) {
|
|
2480
|
+
const ret = JSON.stringify(arg0);
|
|
2481
|
+
return ret;
|
|
2482
|
+
}, arguments); },
|
|
2483
|
+
__wbg_style_b01fc765f98b99ff: function(arg0) {
|
|
2484
|
+
const ret = arg0.style;
|
|
2485
|
+
return ret;
|
|
2486
|
+
},
|
|
2487
|
+
__wbg_subarray_a068d24e39478a8a: function(arg0, arg1, arg2) {
|
|
2488
|
+
const ret = arg0.subarray(arg1 >>> 0, arg2 >>> 0);
|
|
2489
|
+
return ret;
|
|
2490
|
+
},
|
|
2491
|
+
__wbg_submit_6ffa2ed48b3eaecf: function(arg0, arg1) {
|
|
2492
|
+
arg0.submit(arg1);
|
|
2493
|
+
},
|
|
2494
|
+
__wbg_subtle_c060fa3eb5c6248d: function(arg0) {
|
|
2495
|
+
const ret = arg0.subtle;
|
|
2496
|
+
return ret;
|
|
2497
|
+
},
|
|
2498
|
+
__wbg_terminate_8d65e3d9758359c7: function(arg0) {
|
|
2499
|
+
arg0.terminate();
|
|
2500
|
+
},
|
|
2501
|
+
__wbg_textContent_75b4506705c8c793: function(arg0, arg1) {
|
|
2502
|
+
const ret = arg1.textContent;
|
|
2503
|
+
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2504
|
+
var len1 = WASM_VECTOR_LEN;
|
|
2505
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2506
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2507
|
+
},
|
|
2508
|
+
__wbg_text_372f5b91442c50f9: function() { return handleError(function (arg0) {
|
|
2509
|
+
const ret = arg0.text();
|
|
2510
|
+
return ret;
|
|
2511
|
+
}, arguments); },
|
|
2512
|
+
__wbg_then_098abe61755d12f6: function(arg0, arg1) {
|
|
2513
|
+
const ret = arg0.then(arg1);
|
|
2514
|
+
return ret;
|
|
2515
|
+
},
|
|
2516
|
+
__wbg_then_1d7a5273811a5cea: function(arg0, arg1) {
|
|
2517
|
+
const ret = arg0.then(arg1);
|
|
2518
|
+
return ret;
|
|
2519
|
+
},
|
|
2520
|
+
__wbg_then_9e335f6dd892bc11: function(arg0, arg1, arg2) {
|
|
2521
|
+
const ret = arg0.then(arg1, arg2);
|
|
2522
|
+
return ret;
|
|
2523
|
+
},
|
|
2524
|
+
__wbg_then_bc59d1943397ca4e: function(arg0, arg1, arg2) {
|
|
2525
|
+
const ret = arg0.then(arg1, arg2);
|
|
2526
|
+
return ret;
|
|
2527
|
+
},
|
|
2528
|
+
__wbg_timeOrigin_2eba83a74dfcf8ec: function(arg0) {
|
|
2529
|
+
const ret = arg0.timeOrigin;
|
|
2530
|
+
return ret;
|
|
2531
|
+
},
|
|
2532
|
+
__wbg_toBlob_b7bc2b08e11beff6: function() { return handleError(function (arg0, arg1) {
|
|
2533
|
+
arg0.toBlob(arg1);
|
|
2534
|
+
}, arguments); },
|
|
2535
|
+
__wbg_toISOString_87e7eaab337f7dcc: function(arg0) {
|
|
2536
|
+
const ret = arg0.toISOString();
|
|
2537
|
+
return ret;
|
|
2538
|
+
},
|
|
2539
|
+
__wbg_toString_3272fa0dfd05dd87: function(arg0) {
|
|
2540
|
+
const ret = arg0.toString();
|
|
2541
|
+
return ret;
|
|
2542
|
+
},
|
|
2543
|
+
__wbg_transferFromImageBitmap_9f9bd42ea0f80770: function(arg0, arg1) {
|
|
2544
|
+
arg0.transferFromImageBitmap(arg1);
|
|
2545
|
+
},
|
|
2546
|
+
__wbg_type_6179b003ae8606bd: function(arg0, arg1) {
|
|
2547
|
+
const ret = arg1.type;
|
|
2548
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2549
|
+
const len1 = WASM_VECTOR_LEN;
|
|
2550
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2551
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2552
|
+
},
|
|
2553
|
+
__wbg_type_ba6bfed8f5073b9e: function(arg0) {
|
|
2554
|
+
const ret = arg0.type;
|
|
2555
|
+
return (__wbindgen_enum_GpuCompilationMessageType.indexOf(ret) + 1 || 4) - 1;
|
|
2556
|
+
},
|
|
2557
|
+
__wbg_unmap_d610a495d70ebb5e: function(arg0) {
|
|
2558
|
+
arg0.unmap();
|
|
2559
|
+
},
|
|
2560
|
+
__wbg_unobserve_397ea595cb8bfdd0: function(arg0, arg1) {
|
|
2561
|
+
arg0.unobserve(arg1);
|
|
2562
|
+
},
|
|
2563
|
+
__wbg_url_7fefc1820fba4e0c: function(arg0, arg1) {
|
|
2564
|
+
const ret = arg1.url;
|
|
2565
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2566
|
+
const len1 = WASM_VECTOR_LEN;
|
|
2567
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2568
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2569
|
+
},
|
|
2570
|
+
__wbg_usage_92ae9f7605bb82c1: function(arg0) {
|
|
2571
|
+
const ret = arg0.usage;
|
|
2572
|
+
return ret;
|
|
2573
|
+
},
|
|
2574
|
+
__wbg_userAgentData_31b8f893e8977e94: function(arg0) {
|
|
2575
|
+
const ret = arg0.userAgentData;
|
|
2576
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2577
|
+
},
|
|
2578
|
+
__wbg_userAgent_161a5f2d2a8dee61: function() { return handleError(function (arg0, arg1) {
|
|
2579
|
+
const ret = arg1.userAgent;
|
|
2580
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2581
|
+
const len1 = WASM_VECTOR_LEN;
|
|
2582
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2583
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2584
|
+
}, arguments); },
|
|
2585
|
+
__wbg_valueOf_5c6da6c9a85f34dc: function(arg0) {
|
|
2586
|
+
const ret = arg0.valueOf();
|
|
2587
|
+
return ret;
|
|
2588
|
+
},
|
|
2589
|
+
__wbg_value_21fc78aab0322612: function(arg0) {
|
|
2590
|
+
const ret = arg0.value;
|
|
2591
|
+
return ret;
|
|
2592
|
+
},
|
|
2593
|
+
__wbg_value_8a368d5467debd73: function(arg0, arg1) {
|
|
2594
|
+
const ret = arg1.value;
|
|
2595
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2596
|
+
const len1 = WASM_VECTOR_LEN;
|
|
2597
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2598
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2599
|
+
},
|
|
2600
|
+
__wbg_verify_ac40d613077f460d: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
2601
|
+
const ret = arg0.verify(getStringFromWasm0(arg1, arg2), arg3, arg4, arg5);
|
|
2602
|
+
return ret;
|
|
2603
|
+
}, arguments); },
|
|
2604
|
+
__wbg_versions_276b2795b1c6a219: function(arg0) {
|
|
2605
|
+
const ret = arg0.versions;
|
|
2606
|
+
return ret;
|
|
2607
|
+
},
|
|
2608
|
+
__wbg_view_f68a712e7315f8b2: function(arg0) {
|
|
2609
|
+
const ret = arg0.view;
|
|
2610
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2611
|
+
},
|
|
2612
|
+
__wbg_visibilityState_8b47c97faee36457: function(arg0) {
|
|
2613
|
+
const ret = arg0.visibilityState;
|
|
2614
|
+
return (__wbindgen_enum_VisibilityState.indexOf(ret) + 1 || 3) - 1;
|
|
2615
|
+
},
|
|
2616
|
+
__wbg_warn_347cfc2732f5ddda: function(arg0, arg1) {
|
|
2617
|
+
console.warn(arg0, arg1);
|
|
2618
|
+
},
|
|
2619
|
+
__wbg_warn_69424c2d92a2fa73: function(arg0) {
|
|
2620
|
+
console.warn(arg0);
|
|
2621
|
+
},
|
|
2622
|
+
__wbg_webkitFullscreenElement_4055d847f8ff064e: function(arg0) {
|
|
2623
|
+
const ret = arg0.webkitFullscreenElement;
|
|
2624
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2625
|
+
},
|
|
2626
|
+
__wbg_webkitRequestFullscreen_c4ec4df7be373ffd: function(arg0) {
|
|
2627
|
+
arg0.webkitRequestFullscreen();
|
|
2628
|
+
},
|
|
2629
|
+
__wbg_width_4d6fc7fecd877217: function(arg0) {
|
|
2630
|
+
const ret = arg0.width;
|
|
2631
|
+
return ret;
|
|
2632
|
+
},
|
|
2633
|
+
__wbg_width_9824c1a2c17d3ebd: function(arg0) {
|
|
2634
|
+
const ret = arg0.width;
|
|
2635
|
+
return ret;
|
|
2636
|
+
},
|
|
2637
|
+
__wbg_writeBuffer_28f398e6955ad305: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
2638
|
+
arg0.writeBuffer(arg1, arg2, arg3, arg4, arg5);
|
|
2639
|
+
},
|
|
2640
|
+
__wbg_writeText_9a7de75ffb2482e6: function(arg0, arg1, arg2) {
|
|
2641
|
+
const ret = arg0.writeText(getStringFromWasm0(arg1, arg2));
|
|
2642
|
+
return ret;
|
|
2643
|
+
},
|
|
2644
|
+
__wbg_writeTexture_4eafae0e29b3eac0: function(arg0, arg1, arg2, arg3, arg4) {
|
|
2645
|
+
arg0.writeTexture(arg1, arg2, arg3, arg4);
|
|
2646
|
+
},
|
|
2647
|
+
__wbindgen_cast_0000000000000001: function(arg0, arg1) {
|
|
2648
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 2143, function: Function { arguments: [Externref, Externref], shim_idx: 2147, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
2649
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h042ad3005b9d55a6, wasm_bindgen__convert__closures_____invoke__h94cbd1b5f6302697);
|
|
2650
|
+
return ret;
|
|
2651
|
+
},
|
|
2652
|
+
__wbindgen_cast_0000000000000002: function(arg0, arg1) {
|
|
2653
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 2143, function: Function { arguments: [NamedExternref("ErrorEvent")], shim_idx: 2144, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
2654
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h042ad3005b9d55a6, wasm_bindgen__convert__closures_____invoke__h230801f31144964a);
|
|
2655
|
+
return ret;
|
|
2656
|
+
},
|
|
2657
|
+
__wbindgen_cast_0000000000000003: function(arg0, arg1) {
|
|
2658
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 2143, function: Function { arguments: [NamedExternref("Event")], shim_idx: 2144, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
2659
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h042ad3005b9d55a6, wasm_bindgen__convert__closures_____invoke__h230801f31144964a_2);
|
|
2660
|
+
return ret;
|
|
2661
|
+
},
|
|
2662
|
+
__wbindgen_cast_0000000000000004: function(arg0, arg1) {
|
|
2663
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 2143, function: Function { arguments: [NamedExternref("RTCDataChannelEvent")], shim_idx: 2144, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
2664
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h042ad3005b9d55a6, wasm_bindgen__convert__closures_____invoke__h230801f31144964a_3);
|
|
2665
|
+
return ret;
|
|
2666
|
+
},
|
|
2667
|
+
__wbindgen_cast_0000000000000005: function(arg0, arg1) {
|
|
2668
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 2143, function: Function { arguments: [NamedExternref("RTCPeerConnectionIceEvent")], shim_idx: 2144, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
2669
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h042ad3005b9d55a6, wasm_bindgen__convert__closures_____invoke__h230801f31144964a_4);
|
|
2670
|
+
return ret;
|
|
2671
|
+
},
|
|
2672
|
+
__wbindgen_cast_0000000000000006: function(arg0, arg1) {
|
|
2673
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 2602, function: Function { arguments: [], shim_idx: 2603, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
2674
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h17a277c51bb51813, wasm_bindgen__convert__closures_____invoke__h659f4c721b86f42c);
|
|
2675
|
+
return ret;
|
|
2676
|
+
},
|
|
2677
|
+
__wbindgen_cast_0000000000000007: function(arg0, arg1) {
|
|
2678
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 3192, function: Function { arguments: [String], shim_idx: 3193, ret: Unit, inner_ret: Some(Unit) }, mutable: false }) -> Externref`.
|
|
2679
|
+
const ret = makeClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h925400c2c567eb80, wasm_bindgen__convert__closures_____invoke__h565d6b66bcb3c25c);
|
|
2680
|
+
return ret;
|
|
2681
|
+
},
|
|
2682
|
+
__wbindgen_cast_0000000000000008: function(arg0, arg1) {
|
|
2683
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 3270, function: Function { arguments: [NamedExternref("MessageEvent")], shim_idx: 3271, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
2684
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h9b3b47830657a8ed, wasm_bindgen__convert__closures_____invoke__hfb64fcc207989551);
|
|
2685
|
+
return ret;
|
|
2686
|
+
},
|
|
2687
|
+
__wbindgen_cast_0000000000000009: function(arg0, arg1) {
|
|
2688
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 3352, function: Function { arguments: [Externref], shim_idx: 3353, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
2689
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h4c6ab0d0852bf9f7, wasm_bindgen__convert__closures_____invoke__h719a023b3100fd4c);
|
|
2690
|
+
return ret;
|
|
2691
|
+
},
|
|
2692
|
+
__wbindgen_cast_000000000000000a: function(arg0, arg1) {
|
|
2693
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 3352, function: Function { arguments: [NamedExternref("GPUUncapturedErrorEvent")], shim_idx: 3353, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
2694
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h4c6ab0d0852bf9f7, wasm_bindgen__convert__closures_____invoke__h719a023b3100fd4c_9);
|
|
2695
|
+
return ret;
|
|
2696
|
+
},
|
|
2697
|
+
__wbindgen_cast_000000000000000b: function(arg0, arg1) {
|
|
2698
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 3588, function: Function { arguments: [Externref], shim_idx: 3589, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
2699
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h0fed2d1f7635c2f5, wasm_bindgen__convert__closures_____invoke__h023b53cca5e9d36e);
|
|
2700
|
+
return ret;
|
|
2701
|
+
},
|
|
2702
|
+
__wbindgen_cast_000000000000000c: function(arg0, arg1) {
|
|
2703
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 3588, function: Function { arguments: [NamedExternref("Array<any>"), NamedExternref("ResizeObserver")], shim_idx: 3598, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
2704
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h0fed2d1f7635c2f5, wasm_bindgen__convert__closures_____invoke__ha73e5db2c2b6e381);
|
|
2705
|
+
return ret;
|
|
2706
|
+
},
|
|
2707
|
+
__wbindgen_cast_000000000000000d: function(arg0, arg1) {
|
|
2708
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 3588, function: Function { arguments: [NamedExternref("Array<any>")], shim_idx: 3589, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
2709
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h0fed2d1f7635c2f5, wasm_bindgen__convert__closures_____invoke__h023b53cca5e9d36e_12);
|
|
2710
|
+
return ret;
|
|
2711
|
+
},
|
|
2712
|
+
__wbindgen_cast_000000000000000e: function(arg0, arg1) {
|
|
2713
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 3588, function: Function { arguments: [NamedExternref("Event")], shim_idx: 3589, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
2714
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h0fed2d1f7635c2f5, wasm_bindgen__convert__closures_____invoke__h023b53cca5e9d36e_13);
|
|
2715
|
+
return ret;
|
|
2716
|
+
},
|
|
2717
|
+
__wbindgen_cast_000000000000000f: function(arg0, arg1) {
|
|
2718
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 3588, function: Function { arguments: [NamedExternref("FocusEvent")], shim_idx: 3589, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
2719
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h0fed2d1f7635c2f5, wasm_bindgen__convert__closures_____invoke__h023b53cca5e9d36e_14);
|
|
2720
|
+
return ret;
|
|
2721
|
+
},
|
|
2722
|
+
__wbindgen_cast_0000000000000010: function(arg0, arg1) {
|
|
2723
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 3588, function: Function { arguments: [NamedExternref("KeyboardEvent")], shim_idx: 3589, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
2724
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h0fed2d1f7635c2f5, wasm_bindgen__convert__closures_____invoke__h023b53cca5e9d36e_15);
|
|
2725
|
+
return ret;
|
|
2726
|
+
},
|
|
2727
|
+
__wbindgen_cast_0000000000000011: function(arg0, arg1) {
|
|
2728
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 3588, function: Function { arguments: [NamedExternref("PageTransitionEvent")], shim_idx: 3589, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
2729
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h0fed2d1f7635c2f5, wasm_bindgen__convert__closures_____invoke__h023b53cca5e9d36e_16);
|
|
2730
|
+
return ret;
|
|
2731
|
+
},
|
|
2732
|
+
__wbindgen_cast_0000000000000012: function(arg0, arg1) {
|
|
2733
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 3588, function: Function { arguments: [NamedExternref("PointerEvent")], shim_idx: 3589, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
2734
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h0fed2d1f7635c2f5, wasm_bindgen__convert__closures_____invoke__h023b53cca5e9d36e_17);
|
|
2735
|
+
return ret;
|
|
2736
|
+
},
|
|
2737
|
+
__wbindgen_cast_0000000000000013: function(arg0, arg1) {
|
|
2738
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 3588, function: Function { arguments: [NamedExternref("WheelEvent")], shim_idx: 3589, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
2739
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h0fed2d1f7635c2f5, wasm_bindgen__convert__closures_____invoke__h023b53cca5e9d36e_18);
|
|
2740
|
+
return ret;
|
|
2741
|
+
},
|
|
2742
|
+
__wbindgen_cast_0000000000000014: function(arg0, arg1) {
|
|
2743
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 3588, function: Function { arguments: [Option(NamedExternref("Blob"))], shim_idx: 3602, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
2744
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h0fed2d1f7635c2f5, wasm_bindgen__convert__closures_____invoke__hd9c373bc00363316);
|
|
2745
|
+
return ret;
|
|
2746
|
+
},
|
|
2747
|
+
__wbindgen_cast_0000000000000015: function(arg0, arg1) {
|
|
2748
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 3588, function: Function { arguments: [], shim_idx: 3592, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
2749
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h0fed2d1f7635c2f5, wasm_bindgen__convert__closures_____invoke__h32f18397ef483a59);
|
|
2750
|
+
return ret;
|
|
2751
|
+
},
|
|
2752
|
+
__wbindgen_cast_0000000000000016: function(arg0, arg1) {
|
|
2753
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 4976, function: Function { arguments: [], shim_idx: 4977, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
2754
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__hf809af396483004d, wasm_bindgen__convert__closures_____invoke__h2f9cd05605e4a2db);
|
|
2755
|
+
return ret;
|
|
2756
|
+
},
|
|
2757
|
+
__wbindgen_cast_0000000000000017: function(arg0, arg1) {
|
|
2758
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 5047, function: Function { arguments: [Externref], shim_idx: 5048, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
2759
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__hb5431e947b7a6aec, wasm_bindgen__convert__closures_____invoke__h2819dfb01981ad79);
|
|
2760
|
+
return ret;
|
|
2761
|
+
},
|
|
2762
|
+
__wbindgen_cast_0000000000000018: function(arg0, arg1) {
|
|
2763
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 5066, function: Function { arguments: [Externref], shim_idx: 5067, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
2764
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h205759260389ccd0, wasm_bindgen__convert__closures_____invoke__hded3ad7bdef546a1);
|
|
2765
|
+
return ret;
|
|
2766
|
+
},
|
|
2767
|
+
__wbindgen_cast_0000000000000019: function(arg0, arg1) {
|
|
2768
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 7, function: Function { arguments: [NamedExternref("MouseEvent")], shim_idx: 10, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
2769
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h0cd374b964da0682, wasm_bindgen__convert__closures_____invoke__h7f85845aafa30203);
|
|
2770
|
+
return ret;
|
|
2771
|
+
},
|
|
2772
|
+
__wbindgen_cast_000000000000001a: function(arg0, arg1) {
|
|
2773
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 7, function: Function { arguments: [String], shim_idx: 8, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
2774
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h0cd374b964da0682, wasm_bindgen__convert__closures_____invoke__hc5e85a6ffb556dd3);
|
|
2775
|
+
return ret;
|
|
2776
|
+
},
|
|
2777
|
+
__wbindgen_cast_000000000000001b: function(arg0, arg1) {
|
|
2778
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 7, function: Function { arguments: [U32, U32, F64], shim_idx: 12, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
2779
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h0cd374b964da0682, wasm_bindgen__convert__closures_____invoke__h2774a57ff1bf6744);
|
|
2780
|
+
return ret;
|
|
2781
|
+
},
|
|
2782
|
+
__wbindgen_cast_000000000000001c: function(arg0) {
|
|
2783
|
+
// Cast intrinsic for `F64 -> Externref`.
|
|
2784
|
+
const ret = arg0;
|
|
2785
|
+
return ret;
|
|
2786
|
+
},
|
|
2787
|
+
__wbindgen_cast_000000000000001d: function(arg0, arg1) {
|
|
2788
|
+
// Cast intrinsic for `Ref(Slice(U8)) -> NamedExternref("Uint8Array")`.
|
|
2789
|
+
const ret = getArrayU8FromWasm0(arg0, arg1);
|
|
2790
|
+
return ret;
|
|
2791
|
+
},
|
|
2792
|
+
__wbindgen_cast_000000000000001e: function(arg0, arg1) {
|
|
2793
|
+
// Cast intrinsic for `Ref(String) -> Externref`.
|
|
2794
|
+
const ret = getStringFromWasm0(arg0, arg1);
|
|
2795
|
+
return ret;
|
|
2796
|
+
},
|
|
2797
|
+
__wbindgen_init_externref_table: function() {
|
|
2798
|
+
const table = wasm.__wbindgen_externrefs;
|
|
2799
|
+
const offset = table.grow(4);
|
|
2800
|
+
table.set(0, undefined);
|
|
2801
|
+
table.set(offset + 0, undefined);
|
|
2802
|
+
table.set(offset + 1, null);
|
|
2803
|
+
table.set(offset + 2, true);
|
|
2804
|
+
table.set(offset + 3, false);
|
|
2805
|
+
},
|
|
2806
|
+
};
|
|
2807
|
+
return {
|
|
2808
|
+
__proto__: null,
|
|
2809
|
+
"./oriverse_wgpu_bg.js": import0,
|
|
2810
|
+
"./snippets/oriverse_wgpu-255445ce6d9a0851/inline1.js": import1,
|
|
2811
|
+
"./snippets/oriverse_wgpu-255445ce6d9a0851/inline0.js": import2,
|
|
2812
|
+
"./snippets/oriverse_market_client-0cd3013288f3c49c/inline0.js": import3,
|
|
2813
|
+
"./snippets/oriverse_networking_shared-e43478064e11e46c/inline0.js": import4,
|
|
2814
|
+
};
|
|
2815
|
+
}
|
|
2816
|
+
|
|
2817
|
+
const lAudioContext = (typeof AudioContext !== 'undefined' ? AudioContext : (typeof webkitAudioContext !== 'undefined' ? webkitAudioContext : undefined));
|
|
2818
|
+
function wasm_bindgen__convert__closures_____invoke__h659f4c721b86f42c(arg0, arg1) {
|
|
2819
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h659f4c721b86f42c(arg0, arg1);
|
|
2820
|
+
}
|
|
2821
|
+
|
|
2822
|
+
function wasm_bindgen__convert__closures_____invoke__h32f18397ef483a59(arg0, arg1) {
|
|
2823
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h32f18397ef483a59(arg0, arg1);
|
|
2824
|
+
}
|
|
2825
|
+
|
|
2826
|
+
function wasm_bindgen__convert__closures_____invoke__h2f9cd05605e4a2db(arg0, arg1) {
|
|
2827
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h2f9cd05605e4a2db(arg0, arg1);
|
|
2828
|
+
}
|
|
2829
|
+
|
|
2830
|
+
function wasm_bindgen__convert__closures_____invoke__h230801f31144964a(arg0, arg1, arg2) {
|
|
2831
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h230801f31144964a(arg0, arg1, arg2);
|
|
2832
|
+
}
|
|
2833
|
+
|
|
2834
|
+
function wasm_bindgen__convert__closures_____invoke__h230801f31144964a_2(arg0, arg1, arg2) {
|
|
2835
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h230801f31144964a_2(arg0, arg1, arg2);
|
|
2836
|
+
}
|
|
2837
|
+
|
|
2838
|
+
function wasm_bindgen__convert__closures_____invoke__h230801f31144964a_3(arg0, arg1, arg2) {
|
|
2839
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h230801f31144964a_3(arg0, arg1, arg2);
|
|
2840
|
+
}
|
|
2841
|
+
|
|
2842
|
+
function wasm_bindgen__convert__closures_____invoke__h230801f31144964a_4(arg0, arg1, arg2) {
|
|
2843
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h230801f31144964a_4(arg0, arg1, arg2);
|
|
2844
|
+
}
|
|
2845
|
+
|
|
2846
|
+
function wasm_bindgen__convert__closures_____invoke__hfb64fcc207989551(arg0, arg1, arg2) {
|
|
2847
|
+
wasm.wasm_bindgen__convert__closures_____invoke__hfb64fcc207989551(arg0, arg1, arg2);
|
|
2848
|
+
}
|
|
2849
|
+
|
|
2850
|
+
function wasm_bindgen__convert__closures_____invoke__h719a023b3100fd4c(arg0, arg1, arg2) {
|
|
2851
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h719a023b3100fd4c(arg0, arg1, arg2);
|
|
2852
|
+
}
|
|
2853
|
+
|
|
2854
|
+
function wasm_bindgen__convert__closures_____invoke__h719a023b3100fd4c_9(arg0, arg1, arg2) {
|
|
2855
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h719a023b3100fd4c_9(arg0, arg1, arg2);
|
|
2856
|
+
}
|
|
2857
|
+
|
|
2858
|
+
function wasm_bindgen__convert__closures_____invoke__h023b53cca5e9d36e(arg0, arg1, arg2) {
|
|
2859
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h023b53cca5e9d36e(arg0, arg1, arg2);
|
|
2860
|
+
}
|
|
2861
|
+
|
|
2862
|
+
function wasm_bindgen__convert__closures_____invoke__h023b53cca5e9d36e_12(arg0, arg1, arg2) {
|
|
2863
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h023b53cca5e9d36e_12(arg0, arg1, arg2);
|
|
2864
|
+
}
|
|
2865
|
+
|
|
2866
|
+
function wasm_bindgen__convert__closures_____invoke__h023b53cca5e9d36e_13(arg0, arg1, arg2) {
|
|
2867
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h023b53cca5e9d36e_13(arg0, arg1, arg2);
|
|
2868
|
+
}
|
|
2869
|
+
|
|
2870
|
+
function wasm_bindgen__convert__closures_____invoke__h023b53cca5e9d36e_14(arg0, arg1, arg2) {
|
|
2871
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h023b53cca5e9d36e_14(arg0, arg1, arg2);
|
|
2872
|
+
}
|
|
2873
|
+
|
|
2874
|
+
function wasm_bindgen__convert__closures_____invoke__h023b53cca5e9d36e_15(arg0, arg1, arg2) {
|
|
2875
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h023b53cca5e9d36e_15(arg0, arg1, arg2);
|
|
2876
|
+
}
|
|
2877
|
+
|
|
2878
|
+
function wasm_bindgen__convert__closures_____invoke__h023b53cca5e9d36e_16(arg0, arg1, arg2) {
|
|
2879
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h023b53cca5e9d36e_16(arg0, arg1, arg2);
|
|
2880
|
+
}
|
|
2881
|
+
|
|
2882
|
+
function wasm_bindgen__convert__closures_____invoke__h023b53cca5e9d36e_17(arg0, arg1, arg2) {
|
|
2883
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h023b53cca5e9d36e_17(arg0, arg1, arg2);
|
|
2884
|
+
}
|
|
2885
|
+
|
|
2886
|
+
function wasm_bindgen__convert__closures_____invoke__h023b53cca5e9d36e_18(arg0, arg1, arg2) {
|
|
2887
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h023b53cca5e9d36e_18(arg0, arg1, arg2);
|
|
2888
|
+
}
|
|
2889
|
+
|
|
2890
|
+
function wasm_bindgen__convert__closures_____invoke__h2819dfb01981ad79(arg0, arg1, arg2) {
|
|
2891
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h2819dfb01981ad79(arg0, arg1, arg2);
|
|
2892
|
+
}
|
|
2893
|
+
|
|
2894
|
+
function wasm_bindgen__convert__closures_____invoke__h7f85845aafa30203(arg0, arg1, arg2) {
|
|
2895
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h7f85845aafa30203(arg0, arg1, arg2);
|
|
2896
|
+
}
|
|
2897
|
+
|
|
2898
|
+
function wasm_bindgen__convert__closures_____invoke__hded3ad7bdef546a1(arg0, arg1, arg2) {
|
|
2899
|
+
const ret = wasm.wasm_bindgen__convert__closures_____invoke__hded3ad7bdef546a1(arg0, arg1, arg2);
|
|
2900
|
+
if (ret[1]) {
|
|
2901
|
+
throw takeFromExternrefTable0(ret[0]);
|
|
2902
|
+
}
|
|
2903
|
+
}
|
|
2904
|
+
|
|
2905
|
+
function wasm_bindgen__convert__closures_____invoke__h94cbd1b5f6302697(arg0, arg1, arg2, arg3) {
|
|
2906
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h94cbd1b5f6302697(arg0, arg1, arg2, arg3);
|
|
2907
|
+
}
|
|
2908
|
+
|
|
2909
|
+
function wasm_bindgen__convert__closures_____invoke__ha73e5db2c2b6e381(arg0, arg1, arg2, arg3) {
|
|
2910
|
+
wasm.wasm_bindgen__convert__closures_____invoke__ha73e5db2c2b6e381(arg0, arg1, arg2, arg3);
|
|
2911
|
+
}
|
|
2912
|
+
|
|
2913
|
+
function wasm_bindgen__convert__closures_____invoke__h1723b3b073a90d0a(arg0, arg1, arg2, arg3) {
|
|
2914
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h1723b3b073a90d0a(arg0, arg1, arg2, arg3);
|
|
2915
|
+
}
|
|
2916
|
+
|
|
2917
|
+
function wasm_bindgen__convert__closures_____invoke__hd9c373bc00363316(arg0, arg1, arg2) {
|
|
2918
|
+
wasm.wasm_bindgen__convert__closures_____invoke__hd9c373bc00363316(arg0, arg1, isLikeNone(arg2) ? 0 : addToExternrefTable0(arg2));
|
|
2919
|
+
}
|
|
2920
|
+
|
|
2921
|
+
function wasm_bindgen__convert__closures_____invoke__h565d6b66bcb3c25c(arg0, arg1, arg2) {
|
|
2922
|
+
const ptr0 = passStringToWasm0(arg2, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2923
|
+
const len0 = WASM_VECTOR_LEN;
|
|
2924
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h565d6b66bcb3c25c(arg0, arg1, ptr0, len0);
|
|
2925
|
+
}
|
|
2926
|
+
|
|
2927
|
+
function wasm_bindgen__convert__closures_____invoke__hc5e85a6ffb556dd3(arg0, arg1, arg2) {
|
|
2928
|
+
const ptr0 = passStringToWasm0(arg2, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2929
|
+
const len0 = WASM_VECTOR_LEN;
|
|
2930
|
+
wasm.wasm_bindgen__convert__closures_____invoke__hc5e85a6ffb556dd3(arg0, arg1, ptr0, len0);
|
|
2931
|
+
}
|
|
2932
|
+
|
|
2933
|
+
function wasm_bindgen__convert__closures_____invoke__h2774a57ff1bf6744(arg0, arg1, arg2, arg3, arg4) {
|
|
2934
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h2774a57ff1bf6744(arg0, arg1, arg2, arg3, arg4);
|
|
2935
|
+
}
|
|
2936
|
+
|
|
2937
|
+
|
|
2938
|
+
const __wbindgen_enum_BinaryType = ["blob", "arraybuffer"];
|
|
2939
|
+
|
|
2940
|
+
|
|
2941
|
+
const __wbindgen_enum_GpuCompilationMessageType = ["error", "warning", "info"];
|
|
2942
|
+
|
|
2943
|
+
|
|
2944
|
+
const __wbindgen_enum_GpuDeviceLostReason = ["unknown", "destroyed"];
|
|
2945
|
+
|
|
2946
|
+
|
|
2947
|
+
const __wbindgen_enum_GpuErrorFilter = ["validation", "out-of-memory", "internal"];
|
|
2948
|
+
|
|
2949
|
+
|
|
2950
|
+
const __wbindgen_enum_GpuIndexFormat = ["uint16", "uint32"];
|
|
2951
|
+
|
|
2952
|
+
|
|
2953
|
+
const __wbindgen_enum_GpuTextureFormat = ["r8unorm", "r8snorm", "r8uint", "r8sint", "r16uint", "r16sint", "r16float", "rg8unorm", "rg8snorm", "rg8uint", "rg8sint", "r32uint", "r32sint", "r32float", "rg16uint", "rg16sint", "rg16float", "rgba8unorm", "rgba8unorm-srgb", "rgba8snorm", "rgba8uint", "rgba8sint", "bgra8unorm", "bgra8unorm-srgb", "rgb9e5ufloat", "rgb10a2uint", "rgb10a2unorm", "rg11b10ufloat", "rg32uint", "rg32sint", "rg32float", "rgba16uint", "rgba16sint", "rgba16float", "rgba32uint", "rgba32sint", "rgba32float", "stencil8", "depth16unorm", "depth24plus", "depth24plus-stencil8", "depth32float", "depth32float-stencil8", "bc1-rgba-unorm", "bc1-rgba-unorm-srgb", "bc2-rgba-unorm", "bc2-rgba-unorm-srgb", "bc3-rgba-unorm", "bc3-rgba-unorm-srgb", "bc4-r-unorm", "bc4-r-snorm", "bc5-rg-unorm", "bc5-rg-snorm", "bc6h-rgb-ufloat", "bc6h-rgb-float", "bc7-rgba-unorm", "bc7-rgba-unorm-srgb", "etc2-rgb8unorm", "etc2-rgb8unorm-srgb", "etc2-rgb8a1unorm", "etc2-rgb8a1unorm-srgb", "etc2-rgba8unorm", "etc2-rgba8unorm-srgb", "eac-r11unorm", "eac-r11snorm", "eac-rg11unorm", "eac-rg11snorm", "astc-4x4-unorm", "astc-4x4-unorm-srgb", "astc-5x4-unorm", "astc-5x4-unorm-srgb", "astc-5x5-unorm", "astc-5x5-unorm-srgb", "astc-6x5-unorm", "astc-6x5-unorm-srgb", "astc-6x6-unorm", "astc-6x6-unorm-srgb", "astc-8x5-unorm", "astc-8x5-unorm-srgb", "astc-8x6-unorm", "astc-8x6-unorm-srgb", "astc-8x8-unorm", "astc-8x8-unorm-srgb", "astc-10x5-unorm", "astc-10x5-unorm-srgb", "astc-10x6-unorm", "astc-10x6-unorm-srgb", "astc-10x8-unorm", "astc-10x8-unorm-srgb", "astc-10x10-unorm", "astc-10x10-unorm-srgb", "astc-12x10-unorm", "astc-12x10-unorm-srgb", "astc-12x12-unorm", "astc-12x12-unorm-srgb"];
|
|
2954
|
+
|
|
2955
|
+
|
|
2956
|
+
const __wbindgen_enum_PremultiplyAlpha = ["none", "premultiply", "default"];
|
|
2957
|
+
|
|
2958
|
+
|
|
2959
|
+
const __wbindgen_enum_ReadableStreamType = ["bytes"];
|
|
2960
|
+
|
|
2961
|
+
|
|
2962
|
+
const __wbindgen_enum_RequestCache = ["default", "no-store", "reload", "no-cache", "force-cache", "only-if-cached"];
|
|
2963
|
+
|
|
2964
|
+
|
|
2965
|
+
const __wbindgen_enum_RequestCredentials = ["omit", "same-origin", "include"];
|
|
2966
|
+
|
|
2967
|
+
|
|
2968
|
+
const __wbindgen_enum_RequestMode = ["same-origin", "no-cors", "cors", "navigate"];
|
|
2969
|
+
|
|
2970
|
+
|
|
2971
|
+
const __wbindgen_enum_ResizeObserverBoxOptions = ["border-box", "content-box", "device-pixel-content-box"];
|
|
2972
|
+
|
|
2973
|
+
|
|
2974
|
+
const __wbindgen_enum_RtcDataChannelState = ["connecting", "open", "closing", "closed"];
|
|
2975
|
+
|
|
2976
|
+
|
|
2977
|
+
const __wbindgen_enum_RtcIceConnectionState = ["new", "checking", "connected", "completed", "failed", "disconnected", "closed"];
|
|
2978
|
+
|
|
2979
|
+
|
|
2980
|
+
const __wbindgen_enum_RtcIceGatheringState = ["new", "gathering", "complete"];
|
|
2981
|
+
|
|
2982
|
+
|
|
2983
|
+
const __wbindgen_enum_RtcPeerConnectionState = ["closed", "failed", "disconnected", "new", "connecting", "connected"];
|
|
2984
|
+
|
|
2985
|
+
|
|
2986
|
+
const __wbindgen_enum_RtcSdpType = ["offer", "pranswer", "answer", "rollback"];
|
|
2987
|
+
|
|
2988
|
+
|
|
2989
|
+
const __wbindgen_enum_VisibilityState = ["hidden", "visible"];
|
|
2990
|
+
|
|
2991
|
+
|
|
2992
|
+
const __wbindgen_enum_WorkerType = ["classic", "module"];
|
|
2993
|
+
const IntoUnderlyingByteSourceFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
2994
|
+
? { register: () => {}, unregister: () => {} }
|
|
2995
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_intounderlyingbytesource_free(ptr >>> 0, 1));
|
|
2996
|
+
const IntoUnderlyingSinkFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
2997
|
+
? { register: () => {}, unregister: () => {} }
|
|
2998
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_intounderlyingsink_free(ptr >>> 0, 1));
|
|
2999
|
+
const IntoUnderlyingSourceFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
3000
|
+
? { register: () => {}, unregister: () => {} }
|
|
3001
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_intounderlyingsource_free(ptr >>> 0, 1));
|
|
3002
|
+
|
|
3003
|
+
function addToExternrefTable0(obj) {
|
|
3004
|
+
const idx = wasm.__externref_table_alloc();
|
|
3005
|
+
wasm.__wbindgen_externrefs.set(idx, obj);
|
|
3006
|
+
return idx;
|
|
3007
|
+
}
|
|
3008
|
+
|
|
3009
|
+
const CLOSURE_DTORS = (typeof FinalizationRegistry === 'undefined')
|
|
3010
|
+
? { register: () => {}, unregister: () => {} }
|
|
3011
|
+
: new FinalizationRegistry(state => state.dtor(state.a, state.b));
|
|
3012
|
+
|
|
3013
|
+
function debugString(val) {
|
|
3014
|
+
// primitive types
|
|
3015
|
+
const type = typeof val;
|
|
3016
|
+
if (type == 'number' || type == 'boolean' || val == null) {
|
|
3017
|
+
return `${val}`;
|
|
3018
|
+
}
|
|
3019
|
+
if (type == 'string') {
|
|
3020
|
+
return `"${val}"`;
|
|
3021
|
+
}
|
|
3022
|
+
if (type == 'symbol') {
|
|
3023
|
+
const description = val.description;
|
|
3024
|
+
if (description == null) {
|
|
3025
|
+
return 'Symbol';
|
|
3026
|
+
} else {
|
|
3027
|
+
return `Symbol(${description})`;
|
|
3028
|
+
}
|
|
3029
|
+
}
|
|
3030
|
+
if (type == 'function') {
|
|
3031
|
+
const name = val.name;
|
|
3032
|
+
if (typeof name == 'string' && name.length > 0) {
|
|
3033
|
+
return `Function(${name})`;
|
|
3034
|
+
} else {
|
|
3035
|
+
return 'Function';
|
|
3036
|
+
}
|
|
3037
|
+
}
|
|
3038
|
+
// objects
|
|
3039
|
+
if (Array.isArray(val)) {
|
|
3040
|
+
const length = val.length;
|
|
3041
|
+
let debug = '[';
|
|
3042
|
+
if (length > 0) {
|
|
3043
|
+
debug += debugString(val[0]);
|
|
3044
|
+
}
|
|
3045
|
+
for(let i = 1; i < length; i++) {
|
|
3046
|
+
debug += ', ' + debugString(val[i]);
|
|
3047
|
+
}
|
|
3048
|
+
debug += ']';
|
|
3049
|
+
return debug;
|
|
3050
|
+
}
|
|
3051
|
+
// Test for built-in
|
|
3052
|
+
const builtInMatches = /\[object ([^\]]+)\]/.exec(toString.call(val));
|
|
3053
|
+
let className;
|
|
3054
|
+
if (builtInMatches && builtInMatches.length > 1) {
|
|
3055
|
+
className = builtInMatches[1];
|
|
3056
|
+
} else {
|
|
3057
|
+
// Failed to match the standard '[object ClassName]'
|
|
3058
|
+
return toString.call(val);
|
|
3059
|
+
}
|
|
3060
|
+
if (className == 'Object') {
|
|
3061
|
+
// we're a user defined class or Object
|
|
3062
|
+
// JSON.stringify avoids problems with cycles, and is generally much
|
|
3063
|
+
// easier than looping through ownProperties of `val`.
|
|
3064
|
+
try {
|
|
3065
|
+
return 'Object(' + JSON.stringify(val) + ')';
|
|
3066
|
+
} catch (_) {
|
|
3067
|
+
return 'Object';
|
|
3068
|
+
}
|
|
3069
|
+
}
|
|
3070
|
+
// errors
|
|
3071
|
+
if (val instanceof Error) {
|
|
3072
|
+
return `${val.name}: ${val.message}\n${val.stack}`;
|
|
3073
|
+
}
|
|
3074
|
+
// TODO we could test for more things here, like `Set`s and `Map`s.
|
|
3075
|
+
return className;
|
|
3076
|
+
}
|
|
3077
|
+
|
|
3078
|
+
function getArrayU32FromWasm0(ptr, len) {
|
|
3079
|
+
ptr = ptr >>> 0;
|
|
3080
|
+
return getUint32ArrayMemory0().subarray(ptr / 4, ptr / 4 + len);
|
|
3081
|
+
}
|
|
3082
|
+
|
|
3083
|
+
function getArrayU8FromWasm0(ptr, len) {
|
|
3084
|
+
ptr = ptr >>> 0;
|
|
3085
|
+
return getUint8ArrayMemory0().subarray(ptr / 1, ptr / 1 + len);
|
|
3086
|
+
}
|
|
3087
|
+
|
|
3088
|
+
function getClampedArrayU8FromWasm0(ptr, len) {
|
|
3089
|
+
ptr = ptr >>> 0;
|
|
3090
|
+
return getUint8ClampedArrayMemory0().subarray(ptr / 1, ptr / 1 + len);
|
|
3091
|
+
}
|
|
3092
|
+
|
|
3093
|
+
let cachedDataViewMemory0 = null;
|
|
3094
|
+
function getDataViewMemory0() {
|
|
3095
|
+
if (cachedDataViewMemory0 === null || cachedDataViewMemory0.buffer.detached === true || (cachedDataViewMemory0.buffer.detached === undefined && cachedDataViewMemory0.buffer !== wasm.memory.buffer)) {
|
|
3096
|
+
cachedDataViewMemory0 = new DataView(wasm.memory.buffer);
|
|
3097
|
+
}
|
|
3098
|
+
return cachedDataViewMemory0;
|
|
3099
|
+
}
|
|
3100
|
+
|
|
3101
|
+
function getStringFromWasm0(ptr, len) {
|
|
3102
|
+
ptr = ptr >>> 0;
|
|
3103
|
+
return decodeText(ptr, len);
|
|
3104
|
+
}
|
|
3105
|
+
|
|
3106
|
+
let cachedUint32ArrayMemory0 = null;
|
|
3107
|
+
function getUint32ArrayMemory0() {
|
|
3108
|
+
if (cachedUint32ArrayMemory0 === null || cachedUint32ArrayMemory0.byteLength === 0) {
|
|
3109
|
+
cachedUint32ArrayMemory0 = new Uint32Array(wasm.memory.buffer);
|
|
3110
|
+
}
|
|
3111
|
+
return cachedUint32ArrayMemory0;
|
|
3112
|
+
}
|
|
3113
|
+
|
|
3114
|
+
let cachedUint8ArrayMemory0 = null;
|
|
3115
|
+
function getUint8ArrayMemory0() {
|
|
3116
|
+
if (cachedUint8ArrayMemory0 === null || cachedUint8ArrayMemory0.byteLength === 0) {
|
|
3117
|
+
cachedUint8ArrayMemory0 = new Uint8Array(wasm.memory.buffer);
|
|
3118
|
+
}
|
|
3119
|
+
return cachedUint8ArrayMemory0;
|
|
3120
|
+
}
|
|
3121
|
+
|
|
3122
|
+
let cachedUint8ClampedArrayMemory0 = null;
|
|
3123
|
+
function getUint8ClampedArrayMemory0() {
|
|
3124
|
+
if (cachedUint8ClampedArrayMemory0 === null || cachedUint8ClampedArrayMemory0.byteLength === 0) {
|
|
3125
|
+
cachedUint8ClampedArrayMemory0 = new Uint8ClampedArray(wasm.memory.buffer);
|
|
3126
|
+
}
|
|
3127
|
+
return cachedUint8ClampedArrayMemory0;
|
|
3128
|
+
}
|
|
3129
|
+
|
|
3130
|
+
function handleError(f, args) {
|
|
3131
|
+
try {
|
|
3132
|
+
return f.apply(this, args);
|
|
3133
|
+
} catch (e) {
|
|
3134
|
+
const idx = addToExternrefTable0(e);
|
|
3135
|
+
wasm.__wbindgen_exn_store(idx);
|
|
3136
|
+
}
|
|
3137
|
+
}
|
|
3138
|
+
|
|
3139
|
+
function isLikeNone(x) {
|
|
3140
|
+
return x === undefined || x === null;
|
|
3141
|
+
}
|
|
3142
|
+
|
|
3143
|
+
function makeClosure(arg0, arg1, dtor, f) {
|
|
3144
|
+
const state = { a: arg0, b: arg1, cnt: 1, dtor };
|
|
3145
|
+
const real = (...args) => {
|
|
3146
|
+
|
|
3147
|
+
// First up with a closure we increment the internal reference
|
|
3148
|
+
// count. This ensures that the Rust closure environment won't
|
|
3149
|
+
// be deallocated while we're invoking it.
|
|
3150
|
+
state.cnt++;
|
|
3151
|
+
try {
|
|
3152
|
+
return f(state.a, state.b, ...args);
|
|
3153
|
+
} finally {
|
|
3154
|
+
real._wbg_cb_unref();
|
|
3155
|
+
}
|
|
3156
|
+
};
|
|
3157
|
+
real._wbg_cb_unref = () => {
|
|
3158
|
+
if (--state.cnt === 0) {
|
|
3159
|
+
state.dtor(state.a, state.b);
|
|
3160
|
+
state.a = 0;
|
|
3161
|
+
CLOSURE_DTORS.unregister(state);
|
|
3162
|
+
}
|
|
3163
|
+
};
|
|
3164
|
+
CLOSURE_DTORS.register(real, state, state);
|
|
3165
|
+
return real;
|
|
3166
|
+
}
|
|
3167
|
+
|
|
3168
|
+
function makeMutClosure(arg0, arg1, dtor, f) {
|
|
3169
|
+
const state = { a: arg0, b: arg1, cnt: 1, dtor };
|
|
3170
|
+
const real = (...args) => {
|
|
3171
|
+
|
|
3172
|
+
// First up with a closure we increment the internal reference
|
|
3173
|
+
// count. This ensures that the Rust closure environment won't
|
|
3174
|
+
// be deallocated while we're invoking it.
|
|
3175
|
+
state.cnt++;
|
|
3176
|
+
const a = state.a;
|
|
3177
|
+
state.a = 0;
|
|
3178
|
+
try {
|
|
3179
|
+
return f(a, state.b, ...args);
|
|
3180
|
+
} finally {
|
|
3181
|
+
state.a = a;
|
|
3182
|
+
real._wbg_cb_unref();
|
|
3183
|
+
}
|
|
3184
|
+
};
|
|
3185
|
+
real._wbg_cb_unref = () => {
|
|
3186
|
+
if (--state.cnt === 0) {
|
|
3187
|
+
state.dtor(state.a, state.b);
|
|
3188
|
+
state.a = 0;
|
|
3189
|
+
CLOSURE_DTORS.unregister(state);
|
|
3190
|
+
}
|
|
3191
|
+
};
|
|
3192
|
+
CLOSURE_DTORS.register(real, state, state);
|
|
3193
|
+
return real;
|
|
3194
|
+
}
|
|
3195
|
+
|
|
3196
|
+
function passStringToWasm0(arg, malloc, realloc) {
|
|
3197
|
+
if (realloc === undefined) {
|
|
3198
|
+
const buf = cachedTextEncoder.encode(arg);
|
|
3199
|
+
const ptr = malloc(buf.length, 1) >>> 0;
|
|
3200
|
+
getUint8ArrayMemory0().subarray(ptr, ptr + buf.length).set(buf);
|
|
3201
|
+
WASM_VECTOR_LEN = buf.length;
|
|
3202
|
+
return ptr;
|
|
3203
|
+
}
|
|
3204
|
+
|
|
3205
|
+
let len = arg.length;
|
|
3206
|
+
let ptr = malloc(len, 1) >>> 0;
|
|
3207
|
+
|
|
3208
|
+
const mem = getUint8ArrayMemory0();
|
|
3209
|
+
|
|
3210
|
+
let offset = 0;
|
|
3211
|
+
|
|
3212
|
+
for (; offset < len; offset++) {
|
|
3213
|
+
const code = arg.charCodeAt(offset);
|
|
3214
|
+
if (code > 0x7F) break;
|
|
3215
|
+
mem[ptr + offset] = code;
|
|
3216
|
+
}
|
|
3217
|
+
if (offset !== len) {
|
|
3218
|
+
if (offset !== 0) {
|
|
3219
|
+
arg = arg.slice(offset);
|
|
3220
|
+
}
|
|
3221
|
+
ptr = realloc(ptr, len, len = offset + arg.length * 3, 1) >>> 0;
|
|
3222
|
+
const view = getUint8ArrayMemory0().subarray(ptr + offset, ptr + len);
|
|
3223
|
+
const ret = cachedTextEncoder.encodeInto(arg, view);
|
|
3224
|
+
|
|
3225
|
+
offset += ret.written;
|
|
3226
|
+
ptr = realloc(ptr, len, offset, 1) >>> 0;
|
|
3227
|
+
}
|
|
3228
|
+
|
|
3229
|
+
WASM_VECTOR_LEN = offset;
|
|
3230
|
+
return ptr;
|
|
3231
|
+
}
|
|
3232
|
+
|
|
3233
|
+
function takeFromExternrefTable0(idx) {
|
|
3234
|
+
const value = wasm.__wbindgen_externrefs.get(idx);
|
|
3235
|
+
wasm.__externref_table_dealloc(idx);
|
|
3236
|
+
return value;
|
|
3237
|
+
}
|
|
3238
|
+
|
|
3239
|
+
let cachedTextDecoder = new TextDecoder('utf-8', { ignoreBOM: true, fatal: true });
|
|
3240
|
+
cachedTextDecoder.decode();
|
|
3241
|
+
const MAX_SAFARI_DECODE_BYTES = 2146435072;
|
|
3242
|
+
let numBytesDecoded = 0;
|
|
3243
|
+
function decodeText(ptr, len) {
|
|
3244
|
+
numBytesDecoded += len;
|
|
3245
|
+
if (numBytesDecoded >= MAX_SAFARI_DECODE_BYTES) {
|
|
3246
|
+
cachedTextDecoder = new TextDecoder('utf-8', { ignoreBOM: true, fatal: true });
|
|
3247
|
+
cachedTextDecoder.decode();
|
|
3248
|
+
numBytesDecoded = len;
|
|
3249
|
+
}
|
|
3250
|
+
return cachedTextDecoder.decode(getUint8ArrayMemory0().subarray(ptr, ptr + len));
|
|
3251
|
+
}
|
|
3252
|
+
|
|
3253
|
+
const cachedTextEncoder = new TextEncoder();
|
|
3254
|
+
|
|
3255
|
+
if (!('encodeInto' in cachedTextEncoder)) {
|
|
3256
|
+
cachedTextEncoder.encodeInto = function (arg, view) {
|
|
3257
|
+
const buf = cachedTextEncoder.encode(arg);
|
|
3258
|
+
view.set(buf);
|
|
3259
|
+
return {
|
|
3260
|
+
read: arg.length,
|
|
3261
|
+
written: buf.length
|
|
3262
|
+
};
|
|
3263
|
+
};
|
|
3264
|
+
}
|
|
3265
|
+
|
|
3266
|
+
let WASM_VECTOR_LEN = 0;
|
|
3267
|
+
|
|
3268
|
+
let wasmModule, wasm;
|
|
3269
|
+
function __wbg_finalize_init(instance, module) {
|
|
3270
|
+
wasm = instance.exports;
|
|
3271
|
+
wasmModule = module;
|
|
3272
|
+
cachedDataViewMemory0 = null;
|
|
3273
|
+
cachedUint32ArrayMemory0 = null;
|
|
3274
|
+
cachedUint8ArrayMemory0 = null;
|
|
3275
|
+
cachedUint8ClampedArrayMemory0 = null;
|
|
3276
|
+
wasm.__wbindgen_start();
|
|
3277
|
+
return wasm;
|
|
3278
|
+
}
|
|
3279
|
+
|
|
3280
|
+
async function __wbg_load(module, imports) {
|
|
3281
|
+
if (typeof Response === 'function' && module instanceof Response) {
|
|
3282
|
+
if (typeof WebAssembly.instantiateStreaming === 'function') {
|
|
3283
|
+
try {
|
|
3284
|
+
return await WebAssembly.instantiateStreaming(module, imports);
|
|
3285
|
+
} catch (e) {
|
|
3286
|
+
const validResponse = module.ok && expectedResponseType(module.type);
|
|
3287
|
+
|
|
3288
|
+
if (validResponse && module.headers.get('Content-Type') !== 'application/wasm') {
|
|
3289
|
+
console.warn("`WebAssembly.instantiateStreaming` failed because your server does not serve Wasm with `application/wasm` MIME type. Falling back to `WebAssembly.instantiate` which is slower. Original error:\n", e);
|
|
3290
|
+
|
|
3291
|
+
} else { throw e; }
|
|
3292
|
+
}
|
|
3293
|
+
}
|
|
3294
|
+
|
|
3295
|
+
const bytes = await module.arrayBuffer();
|
|
3296
|
+
return await WebAssembly.instantiate(bytes, imports);
|
|
3297
|
+
} else {
|
|
3298
|
+
const instance = await WebAssembly.instantiate(module, imports);
|
|
3299
|
+
|
|
3300
|
+
if (instance instanceof WebAssembly.Instance) {
|
|
3301
|
+
return { instance, module };
|
|
3302
|
+
} else {
|
|
3303
|
+
return instance;
|
|
3304
|
+
}
|
|
3305
|
+
}
|
|
3306
|
+
|
|
3307
|
+
function expectedResponseType(type) {
|
|
3308
|
+
switch (type) {
|
|
3309
|
+
case 'basic': case 'cors': case 'default': return true;
|
|
3310
|
+
}
|
|
3311
|
+
return false;
|
|
3312
|
+
}
|
|
3313
|
+
}
|
|
3314
|
+
|
|
3315
|
+
function initSync(module) {
|
|
3316
|
+
if (wasm !== undefined) return wasm;
|
|
3317
|
+
|
|
3318
|
+
|
|
3319
|
+
if (module !== undefined) {
|
|
3320
|
+
if (Object.getPrototypeOf(module) === Object.prototype) {
|
|
3321
|
+
({module} = module)
|
|
3322
|
+
} else {
|
|
3323
|
+
console.warn('using deprecated parameters for `initSync()`; pass a single object instead')
|
|
3324
|
+
}
|
|
3325
|
+
}
|
|
3326
|
+
|
|
3327
|
+
const imports = __wbg_get_imports();
|
|
3328
|
+
if (!(module instanceof WebAssembly.Module)) {
|
|
3329
|
+
module = new WebAssembly.Module(module);
|
|
3330
|
+
}
|
|
3331
|
+
const instance = new WebAssembly.Instance(module, imports);
|
|
3332
|
+
return __wbg_finalize_init(instance, module);
|
|
3333
|
+
}
|
|
3334
|
+
|
|
3335
|
+
async function __wbg_init(module_or_path) {
|
|
3336
|
+
if (wasm !== undefined) return wasm;
|
|
3337
|
+
|
|
3338
|
+
|
|
3339
|
+
if (module_or_path !== undefined) {
|
|
3340
|
+
if (Object.getPrototypeOf(module_or_path) === Object.prototype) {
|
|
3341
|
+
({module_or_path} = module_or_path)
|
|
3342
|
+
} else {
|
|
3343
|
+
console.warn('using deprecated parameters for the initialization function; pass a single object instead')
|
|
3344
|
+
}
|
|
3345
|
+
}
|
|
3346
|
+
|
|
3347
|
+
if (module_or_path === undefined) {
|
|
3348
|
+
module_or_path = new URL('oriverse_wgpu_bg.wasm', import.meta.url);
|
|
3349
|
+
}
|
|
3350
|
+
const imports = __wbg_get_imports();
|
|
3351
|
+
|
|
3352
|
+
if (typeof module_or_path === 'string' || (typeof Request === 'function' && module_or_path instanceof Request) || (typeof URL === 'function' && module_or_path instanceof URL)) {
|
|
3353
|
+
module_or_path = fetch(module_or_path);
|
|
3354
|
+
}
|
|
3355
|
+
|
|
3356
|
+
const { instance, module } = await __wbg_load(await module_or_path, imports);
|
|
3357
|
+
|
|
3358
|
+
return __wbg_finalize_init(instance, module);
|
|
3359
|
+
}
|
|
3360
|
+
|
|
3361
|
+
export { initSync, __wbg_init as default };
|