@rerun-io/web-viewer 0.18.1 → 0.19.0-alpha.2
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/README.md +1 -1
- package/index.d.ts +4 -0
- package/index.d.ts.map +1 -1
- package/index.js +1 -2
- package/index.js.map +1 -1
- package/index.ts +6 -2
- package/package.json +1 -1
- package/re_viewer.d.ts +24 -26
- package/re_viewer.js +1767 -1574
- package/re_viewer_bg.wasm +0 -0
- package/re_viewer_bg.wasm.d.ts +20 -19
package/re_viewer.js
CHANGED
|
@@ -10,13 +10,13 @@ export default function() {
|
|
|
10
10
|
|
|
11
11
|
let WASM_VECTOR_LEN = 0;
|
|
12
12
|
|
|
13
|
-
let
|
|
13
|
+
let cachedUint8ArrayMemory0 = null;
|
|
14
14
|
|
|
15
|
-
function
|
|
16
|
-
if (
|
|
17
|
-
|
|
15
|
+
function getUint8ArrayMemory0() {
|
|
16
|
+
if (cachedUint8ArrayMemory0 === null || cachedUint8ArrayMemory0.byteLength === 0) {
|
|
17
|
+
cachedUint8ArrayMemory0 = new Uint8Array(wasm.memory.buffer);
|
|
18
18
|
}
|
|
19
|
-
return
|
|
19
|
+
return cachedUint8ArrayMemory0;
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
const cachedTextEncoder = (typeof TextEncoder !== 'undefined' ? new TextEncoder('utf-8') : { encode: () => { throw Error('TextEncoder not available') } } );
|
|
@@ -39,7 +39,7 @@ export default function() {
|
|
|
39
39
|
if (realloc === undefined) {
|
|
40
40
|
const buf = cachedTextEncoder.encode(arg);
|
|
41
41
|
const ptr = malloc(buf.length, 1) >>> 0;
|
|
42
|
-
|
|
42
|
+
getUint8ArrayMemory0().subarray(ptr, ptr + buf.length).set(buf);
|
|
43
43
|
WASM_VECTOR_LEN = buf.length;
|
|
44
44
|
return ptr;
|
|
45
45
|
}
|
|
@@ -47,7 +47,7 @@ export default function() {
|
|
|
47
47
|
let len = arg.length;
|
|
48
48
|
let ptr = malloc(len, 1) >>> 0;
|
|
49
49
|
|
|
50
|
-
const mem =
|
|
50
|
+
const mem = getUint8ArrayMemory0();
|
|
51
51
|
|
|
52
52
|
let offset = 0;
|
|
53
53
|
|
|
@@ -62,7 +62,7 @@ export default function() {
|
|
|
62
62
|
arg = arg.slice(offset);
|
|
63
63
|
}
|
|
64
64
|
ptr = realloc(ptr, len, len = offset + arg.length * 3, 1) >>> 0;
|
|
65
|
-
const view =
|
|
65
|
+
const view = getUint8ArrayMemory0().subarray(ptr + offset, ptr + len);
|
|
66
66
|
const ret = encodeString(arg, view);
|
|
67
67
|
|
|
68
68
|
offset += ret.written;
|
|
@@ -77,13 +77,13 @@ export default function() {
|
|
|
77
77
|
return x === undefined || x === null;
|
|
78
78
|
}
|
|
79
79
|
|
|
80
|
-
let
|
|
80
|
+
let cachedDataViewMemory0 = null;
|
|
81
81
|
|
|
82
|
-
function
|
|
83
|
-
if (
|
|
84
|
-
|
|
82
|
+
function getDataViewMemory0() {
|
|
83
|
+
if (cachedDataViewMemory0 === null || cachedDataViewMemory0.buffer.detached === true || (cachedDataViewMemory0.buffer.detached === undefined && cachedDataViewMemory0.buffer !== wasm.memory.buffer)) {
|
|
84
|
+
cachedDataViewMemory0 = new DataView(wasm.memory.buffer);
|
|
85
85
|
}
|
|
86
|
-
return
|
|
86
|
+
return cachedDataViewMemory0;
|
|
87
87
|
}
|
|
88
88
|
|
|
89
89
|
const cachedTextDecoder = (typeof TextDecoder !== 'undefined' ? new TextDecoder('utf-8', { ignoreBOM: true, fatal: true }) : { decode: () => { throw Error('TextDecoder not available') } } );
|
|
@@ -92,16 +92,7 @@ export default function() {
|
|
|
92
92
|
|
|
93
93
|
function getStringFromWasm0(ptr, len) {
|
|
94
94
|
ptr = ptr >>> 0;
|
|
95
|
-
return cachedTextDecoder.decode(
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
let cachedFloat64Memory0 = null;
|
|
99
|
-
|
|
100
|
-
function getFloat64Memory0() {
|
|
101
|
-
if (cachedFloat64Memory0 === null || cachedFloat64Memory0.byteLength === 0) {
|
|
102
|
-
cachedFloat64Memory0 = new Float64Array(wasm.memory.buffer);
|
|
103
|
-
}
|
|
104
|
-
return cachedFloat64Memory0;
|
|
95
|
+
return cachedTextDecoder.decode(getUint8ArrayMemory0().subarray(ptr, ptr + len));
|
|
105
96
|
}
|
|
106
97
|
|
|
107
98
|
function debugString(val) {
|
|
@@ -199,18 +190,21 @@ function makeMutClosure(arg0, arg1, dtor, f) {
|
|
|
199
190
|
CLOSURE_DTORS.register(real, state, state);
|
|
200
191
|
return real;
|
|
201
192
|
}
|
|
193
|
+
function __wbg_adapter_46(arg0, arg1) {
|
|
194
|
+
wasm._dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h17be7cca397b4ed3(arg0, arg1);
|
|
195
|
+
}
|
|
202
196
|
|
|
203
197
|
function takeFromExternrefTable0(idx) {
|
|
204
198
|
const value = wasm.__wbindgen_export_2.get(idx);
|
|
205
199
|
wasm.__externref_table_dealloc(idx);
|
|
206
200
|
return value;
|
|
207
201
|
}
|
|
208
|
-
function
|
|
202
|
+
function __wbg_adapter_49(arg0, arg1, arg2) {
|
|
209
203
|
try {
|
|
210
204
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
211
|
-
wasm.
|
|
212
|
-
var r0 =
|
|
213
|
-
var r1 =
|
|
205
|
+
wasm.closure549_externref_shim(retptr, arg0, arg1, arg2);
|
|
206
|
+
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
|
|
207
|
+
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
|
|
214
208
|
if (r1) {
|
|
215
209
|
throw takeFromExternrefTable0(r0);
|
|
216
210
|
}
|
|
@@ -219,16 +213,12 @@ function __wbg_adapter_46(arg0, arg1, arg2) {
|
|
|
219
213
|
}
|
|
220
214
|
}
|
|
221
215
|
|
|
222
|
-
function __wbg_adapter_49(arg0, arg1) {
|
|
223
|
-
wasm.wasm_bindgen__convert__closures__invoke0_mut__h9b75a0ab28e1eea5(arg0, arg1);
|
|
224
|
-
}
|
|
225
|
-
|
|
226
216
|
function __wbg_adapter_52(arg0, arg1) {
|
|
227
217
|
try {
|
|
228
218
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
229
|
-
wasm.
|
|
230
|
-
var r0 =
|
|
231
|
-
var r1 =
|
|
219
|
+
wasm._dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__he0da33c1926a6213(retptr, arg0, arg1);
|
|
220
|
+
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
|
|
221
|
+
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
|
|
232
222
|
if (r1) {
|
|
233
223
|
throw takeFromExternrefTable0(r0);
|
|
234
224
|
}
|
|
@@ -238,35 +228,60 @@ function __wbg_adapter_52(arg0, arg1) {
|
|
|
238
228
|
}
|
|
239
229
|
|
|
240
230
|
function __wbg_adapter_55(arg0, arg1, arg2) {
|
|
241
|
-
wasm.
|
|
231
|
+
wasm.closure5028_externref_shim(arg0, arg1, arg2);
|
|
242
232
|
}
|
|
243
233
|
|
|
244
234
|
function __wbg_adapter_60(arg0, arg1) {
|
|
245
|
-
wasm.
|
|
235
|
+
wasm._dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h856baf669d0650a8(arg0, arg1);
|
|
246
236
|
}
|
|
247
237
|
|
|
248
238
|
function __wbg_adapter_63(arg0, arg1) {
|
|
249
|
-
wasm.
|
|
239
|
+
wasm._dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__ha28c5a2c57e79949(arg0, arg1);
|
|
250
240
|
}
|
|
251
241
|
|
|
242
|
+
function makeClosure(arg0, arg1, dtor, f) {
|
|
243
|
+
const state = { a: arg0, b: arg1, cnt: 1, dtor };
|
|
244
|
+
const real = (...args) => {
|
|
245
|
+
// First up with a closure we increment the internal reference
|
|
246
|
+
// count. This ensures that the Rust closure environment won't
|
|
247
|
+
// be deallocated while we're invoking it.
|
|
248
|
+
state.cnt++;
|
|
249
|
+
try {
|
|
250
|
+
return f(state.a, state.b, ...args);
|
|
251
|
+
} finally {
|
|
252
|
+
if (--state.cnt === 0) {
|
|
253
|
+
wasm.__wbindgen_export_3.get(state.dtor)(state.a, state.b);
|
|
254
|
+
state.a = 0;
|
|
255
|
+
CLOSURE_DTORS.unregister(state);
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
};
|
|
259
|
+
real.original = state;
|
|
260
|
+
CLOSURE_DTORS.register(real, state, state);
|
|
261
|
+
return real;
|
|
262
|
+
}
|
|
252
263
|
function __wbg_adapter_66(arg0, arg1, arg2) {
|
|
253
|
-
wasm.
|
|
264
|
+
wasm.closure7227_externref_shim(arg0, arg1, arg2);
|
|
254
265
|
}
|
|
255
266
|
|
|
256
267
|
function __wbg_adapter_71(arg0, arg1, arg2) {
|
|
257
|
-
wasm.
|
|
268
|
+
wasm.closure8348_externref_shim(arg0, arg1, arg2);
|
|
258
269
|
}
|
|
259
270
|
|
|
260
|
-
function
|
|
261
|
-
wasm.
|
|
271
|
+
function __wbg_adapter_76(arg0, arg1, arg2) {
|
|
272
|
+
wasm.closure11741_externref_shim(arg0, arg1, arg2);
|
|
262
273
|
}
|
|
263
274
|
|
|
264
|
-
function
|
|
265
|
-
wasm.
|
|
275
|
+
function __wbg_adapter_85(arg0, arg1, arg2) {
|
|
276
|
+
wasm.closure14646_externref_shim(arg0, arg1, arg2);
|
|
266
277
|
}
|
|
267
278
|
|
|
268
|
-
function
|
|
269
|
-
wasm.
|
|
279
|
+
function __wbg_adapter_88(arg0, arg1, arg2) {
|
|
280
|
+
wasm.closure14697_externref_shim(arg0, arg1, arg2);
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
function __wbg_adapter_91(arg0, arg1, arg2) {
|
|
284
|
+
wasm.closure14731_externref_shim(arg0, arg1, arg2);
|
|
270
285
|
}
|
|
271
286
|
|
|
272
287
|
function addToExternrefTable0(obj) {
|
|
@@ -286,7 +301,7 @@ function handleError(f, args) {
|
|
|
286
301
|
|
|
287
302
|
function passArray8ToWasm0(arg, malloc) {
|
|
288
303
|
const ptr = malloc(arg.length * 1, 1) >>> 0;
|
|
289
|
-
|
|
304
|
+
getUint8ArrayMemory0().set(arg, ptr / 1);
|
|
290
305
|
WASM_VECTOR_LEN = arg.length;
|
|
291
306
|
return ptr;
|
|
292
307
|
}
|
|
@@ -304,47 +319,56 @@ __exports.set_email = function(email) {
|
|
|
304
319
|
wasm.set_email(ptr0, len0);
|
|
305
320
|
};
|
|
306
321
|
|
|
307
|
-
let
|
|
322
|
+
let cachedUint32ArrayMemory0 = null;
|
|
308
323
|
|
|
309
|
-
function
|
|
310
|
-
if (
|
|
311
|
-
|
|
324
|
+
function getUint32ArrayMemory0() {
|
|
325
|
+
if (cachedUint32ArrayMemory0 === null || cachedUint32ArrayMemory0.byteLength === 0) {
|
|
326
|
+
cachedUint32ArrayMemory0 = new Uint32Array(wasm.memory.buffer);
|
|
312
327
|
}
|
|
313
|
-
return
|
|
328
|
+
return cachedUint32ArrayMemory0;
|
|
314
329
|
}
|
|
315
330
|
|
|
316
331
|
function getArrayU32FromWasm0(ptr, len) {
|
|
317
332
|
ptr = ptr >>> 0;
|
|
318
|
-
return
|
|
333
|
+
return getUint32ArrayMemory0().subarray(ptr / 4, ptr / 4 + len);
|
|
319
334
|
}
|
|
320
335
|
|
|
321
336
|
function notDefined(what) { return () => { throw new Error(`${what} is not defined`); }; }
|
|
322
337
|
|
|
323
|
-
|
|
338
|
+
let cachedFloat32ArrayMemory0 = null;
|
|
339
|
+
|
|
340
|
+
function getFloat32ArrayMemory0() {
|
|
341
|
+
if (cachedFloat32ArrayMemory0 === null || cachedFloat32ArrayMemory0.byteLength === 0) {
|
|
342
|
+
cachedFloat32ArrayMemory0 = new Float32Array(wasm.memory.buffer);
|
|
343
|
+
}
|
|
344
|
+
return cachedFloat32ArrayMemory0;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
function getArrayF32FromWasm0(ptr, len) {
|
|
324
348
|
ptr = ptr >>> 0;
|
|
325
|
-
return
|
|
349
|
+
return getFloat32ArrayMemory0().subarray(ptr / 4, ptr / 4 + len);
|
|
326
350
|
}
|
|
327
351
|
|
|
328
|
-
let
|
|
352
|
+
let cachedInt32ArrayMemory0 = null;
|
|
329
353
|
|
|
330
|
-
function
|
|
331
|
-
if (
|
|
332
|
-
|
|
354
|
+
function getInt32ArrayMemory0() {
|
|
355
|
+
if (cachedInt32ArrayMemory0 === null || cachedInt32ArrayMemory0.byteLength === 0) {
|
|
356
|
+
cachedInt32ArrayMemory0 = new Int32Array(wasm.memory.buffer);
|
|
333
357
|
}
|
|
334
|
-
return
|
|
358
|
+
return cachedInt32ArrayMemory0;
|
|
335
359
|
}
|
|
336
360
|
|
|
337
|
-
function
|
|
361
|
+
function getArrayI32FromWasm0(ptr, len) {
|
|
338
362
|
ptr = ptr >>> 0;
|
|
339
|
-
return
|
|
363
|
+
return getInt32ArrayMemory0().subarray(ptr / 4, ptr / 4 + len);
|
|
340
364
|
}
|
|
341
|
-
function
|
|
342
|
-
wasm.
|
|
365
|
+
function __wbg_adapter_1470(arg0, arg1, arg2, arg3) {
|
|
366
|
+
wasm.closure17425_externref_shim(arg0, arg1, arg2, arg3);
|
|
343
367
|
}
|
|
344
368
|
|
|
345
369
|
const IntoUnderlyingByteSourceFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
346
370
|
? { register: () => {}, unregister: () => {} }
|
|
347
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_intounderlyingbytesource_free(ptr >>> 0));
|
|
371
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_intounderlyingbytesource_free(ptr >>> 0, 1));
|
|
348
372
|
/**
|
|
349
373
|
*/
|
|
350
374
|
class IntoUnderlyingByteSource {
|
|
@@ -358,7 +382,7 @@ class IntoUnderlyingByteSource {
|
|
|
358
382
|
|
|
359
383
|
free() {
|
|
360
384
|
const ptr = this.__destroy_into_raw();
|
|
361
|
-
wasm.__wbg_intounderlyingbytesource_free(ptr);
|
|
385
|
+
wasm.__wbg_intounderlyingbytesource_free(ptr, 0);
|
|
362
386
|
}
|
|
363
387
|
/**
|
|
364
388
|
* @returns {string}
|
|
@@ -369,8 +393,8 @@ class IntoUnderlyingByteSource {
|
|
|
369
393
|
try {
|
|
370
394
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
371
395
|
wasm.intounderlyingbytesource_type(retptr, this.__wbg_ptr);
|
|
372
|
-
var r0 =
|
|
373
|
-
var r1 =
|
|
396
|
+
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
|
|
397
|
+
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
|
|
374
398
|
deferred1_0 = r0;
|
|
375
399
|
deferred1_1 = r1;
|
|
376
400
|
return getStringFromWasm0(r0, r1);
|
|
@@ -411,7 +435,7 @@ __exports.IntoUnderlyingByteSource = IntoUnderlyingByteSource;
|
|
|
411
435
|
|
|
412
436
|
const IntoUnderlyingSinkFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
413
437
|
? { register: () => {}, unregister: () => {} }
|
|
414
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_intounderlyingsink_free(ptr >>> 0));
|
|
438
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_intounderlyingsink_free(ptr >>> 0, 1));
|
|
415
439
|
/**
|
|
416
440
|
*/
|
|
417
441
|
class IntoUnderlyingSink {
|
|
@@ -425,7 +449,7 @@ class IntoUnderlyingSink {
|
|
|
425
449
|
|
|
426
450
|
free() {
|
|
427
451
|
const ptr = this.__destroy_into_raw();
|
|
428
|
-
wasm.__wbg_intounderlyingsink_free(ptr);
|
|
452
|
+
wasm.__wbg_intounderlyingsink_free(ptr, 0);
|
|
429
453
|
}
|
|
430
454
|
/**
|
|
431
455
|
* @param {any} chunk
|
|
@@ -457,7 +481,7 @@ __exports.IntoUnderlyingSink = IntoUnderlyingSink;
|
|
|
457
481
|
|
|
458
482
|
const IntoUnderlyingSourceFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
459
483
|
? { register: () => {}, unregister: () => {} }
|
|
460
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_intounderlyingsource_free(ptr >>> 0));
|
|
484
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_intounderlyingsource_free(ptr >>> 0, 1));
|
|
461
485
|
/**
|
|
462
486
|
*/
|
|
463
487
|
class IntoUnderlyingSource {
|
|
@@ -471,7 +495,7 @@ class IntoUnderlyingSource {
|
|
|
471
495
|
|
|
472
496
|
free() {
|
|
473
497
|
const ptr = this.__destroy_into_raw();
|
|
474
|
-
wasm.__wbg_intounderlyingsource_free(ptr);
|
|
498
|
+
wasm.__wbg_intounderlyingsource_free(ptr, 0);
|
|
475
499
|
}
|
|
476
500
|
/**
|
|
477
501
|
* @param {ReadableStreamDefaultController} controller
|
|
@@ -492,7 +516,7 @@ __exports.IntoUnderlyingSource = IntoUnderlyingSource;
|
|
|
492
516
|
|
|
493
517
|
const WebHandleFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
494
518
|
? { register: () => {}, unregister: () => {} }
|
|
495
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_webhandle_free(ptr >>> 0));
|
|
519
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_webhandle_free(ptr >>> 0, 1));
|
|
496
520
|
/**
|
|
497
521
|
*/
|
|
498
522
|
class WebHandle {
|
|
@@ -506,7 +530,7 @@ class WebHandle {
|
|
|
506
530
|
|
|
507
531
|
free() {
|
|
508
532
|
const ptr = this.__destroy_into_raw();
|
|
509
|
-
wasm.__wbg_webhandle_free(ptr);
|
|
533
|
+
wasm.__wbg_webhandle_free(ptr, 0);
|
|
510
534
|
}
|
|
511
535
|
/**
|
|
512
536
|
* @param {any} app_options
|
|
@@ -515,29 +539,25 @@ class WebHandle {
|
|
|
515
539
|
try {
|
|
516
540
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
517
541
|
wasm.webhandle_new(retptr, app_options);
|
|
518
|
-
var r0 =
|
|
519
|
-
var r1 =
|
|
520
|
-
var r2 =
|
|
542
|
+
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
|
|
543
|
+
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
|
|
544
|
+
var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
|
|
521
545
|
if (r2) {
|
|
522
546
|
throw takeFromExternrefTable0(r1);
|
|
523
547
|
}
|
|
524
548
|
this.__wbg_ptr = r0 >>> 0;
|
|
549
|
+
WebHandleFinalization.register(this, this.__wbg_ptr, this);
|
|
525
550
|
return this;
|
|
526
551
|
} finally {
|
|
527
552
|
wasm.__wbindgen_add_to_stack_pointer(16);
|
|
528
553
|
}
|
|
529
554
|
}
|
|
530
555
|
/**
|
|
531
|
-
*
|
|
532
|
-
* - `manifest_url` is an optional URL to an `examples_manifest.json` file over http.
|
|
533
|
-
* - `force_wgpu_backend` is an optional string to force a specific backend, either `webgl` or `webgpu`.
|
|
534
|
-
* @param {string} canvas_id
|
|
556
|
+
* @param {any} canvas
|
|
535
557
|
* @returns {Promise<void>}
|
|
536
558
|
*/
|
|
537
|
-
start(
|
|
538
|
-
const
|
|
539
|
-
const len0 = WASM_VECTOR_LEN;
|
|
540
|
-
const ret = wasm.webhandle_start(this.__wbg_ptr, ptr0, len0);
|
|
559
|
+
start(canvas) {
|
|
560
|
+
const ret = wasm.webhandle_start(this.__wbg_ptr, canvas);
|
|
541
561
|
return ret;
|
|
542
562
|
}
|
|
543
563
|
/**
|
|
@@ -558,8 +578,8 @@ class WebHandle {
|
|
|
558
578
|
var ptr1 = isLikeNone(state) ? 0 : passStringToWasm0(state, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
559
579
|
var len1 = WASM_VECTOR_LEN;
|
|
560
580
|
wasm.webhandle_override_panel_state(retptr, this.__wbg_ptr, ptr0, len0, ptr1, len1);
|
|
561
|
-
var r0 =
|
|
562
|
-
var r1 =
|
|
581
|
+
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
|
|
582
|
+
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
|
|
563
583
|
if (r1) {
|
|
564
584
|
throw takeFromExternrefTable0(r0);
|
|
565
585
|
}
|
|
@@ -586,8 +606,8 @@ class WebHandle {
|
|
|
586
606
|
try {
|
|
587
607
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
588
608
|
wasm.webhandle_panic_message(retptr, this.__wbg_ptr);
|
|
589
|
-
var r0 =
|
|
590
|
-
var r1 =
|
|
609
|
+
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
|
|
610
|
+
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
|
|
591
611
|
let v1;
|
|
592
612
|
if (r0 !== 0) {
|
|
593
613
|
v1 = getStringFromWasm0(r0, r1).slice();
|
|
@@ -605,8 +625,8 @@ class WebHandle {
|
|
|
605
625
|
try {
|
|
606
626
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
607
627
|
wasm.webhandle_panic_callstack(retptr, this.__wbg_ptr);
|
|
608
|
-
var r0 =
|
|
609
|
-
var r1 =
|
|
628
|
+
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
|
|
629
|
+
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
|
|
610
630
|
let v1;
|
|
611
631
|
if (r0 !== 0) {
|
|
612
632
|
v1 = getStringFromWasm0(r0, r1).slice();
|
|
@@ -716,18 +736,44 @@ async function __wbg_load(module, imports) {
|
|
|
716
736
|
function __wbg_get_imports() {
|
|
717
737
|
const imports = {};
|
|
718
738
|
imports.wbg = {};
|
|
739
|
+
imports.wbg.__wbindgen_cb_drop = function(arg0) {
|
|
740
|
+
const obj = arg0.original;
|
|
741
|
+
if (obj.cnt-- == 1) {
|
|
742
|
+
obj.a = 0;
|
|
743
|
+
return true;
|
|
744
|
+
}
|
|
745
|
+
const ret = false;
|
|
746
|
+
return ret;
|
|
747
|
+
};
|
|
719
748
|
imports.wbg.__wbindgen_string_get = function(arg0, arg1) {
|
|
720
749
|
const obj = arg1;
|
|
721
750
|
const ret = typeof(obj) === 'string' ? obj : undefined;
|
|
722
751
|
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
723
752
|
var len1 = WASM_VECTOR_LEN;
|
|
724
|
-
|
|
725
|
-
|
|
753
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
754
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
726
755
|
};
|
|
727
756
|
imports.wbg.__wbindgen_error_new = function(arg0, arg1) {
|
|
728
757
|
const ret = new Error(getStringFromWasm0(arg0, arg1));
|
|
729
758
|
return ret;
|
|
730
759
|
};
|
|
760
|
+
imports.wbg.__wbindgen_string_new = function(arg0, arg1) {
|
|
761
|
+
const ret = getStringFromWasm0(arg0, arg1);
|
|
762
|
+
return ret;
|
|
763
|
+
};
|
|
764
|
+
imports.wbg.__wbindgen_is_function = function(arg0) {
|
|
765
|
+
const ret = typeof(arg0) === 'function';
|
|
766
|
+
return ret;
|
|
767
|
+
};
|
|
768
|
+
imports.wbg.__wbindgen_boolean_get = function(arg0) {
|
|
769
|
+
const v = arg0;
|
|
770
|
+
const ret = typeof(v) === 'boolean' ? (v ? 1 : 0) : 2;
|
|
771
|
+
return ret;
|
|
772
|
+
};
|
|
773
|
+
imports.wbg.__wbindgen_is_falsy = function(arg0) {
|
|
774
|
+
const ret = !arg0;
|
|
775
|
+
return ret;
|
|
776
|
+
};
|
|
731
777
|
imports.wbg.__wbindgen_is_undefined = function(arg0) {
|
|
732
778
|
const ret = arg0 === undefined;
|
|
733
779
|
return ret;
|
|
@@ -741,48 +787,22 @@ function __wbg_get_imports() {
|
|
|
741
787
|
const ret = typeof(val) === 'object' && val !== null;
|
|
742
788
|
return ret;
|
|
743
789
|
};
|
|
744
|
-
imports.wbg.
|
|
790
|
+
imports.wbg.__wbg_structuredClone_18baaed52ee4f3dc = function() { return handleError(function (arg0) {
|
|
745
791
|
const ret = window.structuredClone(arg0);
|
|
746
792
|
return ret;
|
|
747
793
|
}, arguments) };
|
|
748
|
-
imports.wbg.
|
|
749
|
-
const ret =
|
|
750
|
-
return ret;
|
|
751
|
-
};
|
|
752
|
-
imports.wbg.__wbindgen_is_function = function(arg0) {
|
|
753
|
-
const ret = typeof(arg0) === 'function';
|
|
754
|
-
return ret;
|
|
755
|
-
};
|
|
756
|
-
imports.wbg.__wbindgen_cb_drop = function(arg0) {
|
|
757
|
-
const obj = arg0.original;
|
|
758
|
-
if (obj.cnt-- == 1) {
|
|
759
|
-
obj.a = 0;
|
|
760
|
-
return true;
|
|
761
|
-
}
|
|
762
|
-
const ret = false;
|
|
763
|
-
return ret;
|
|
764
|
-
};
|
|
765
|
-
imports.wbg.__wbindgen_boolean_get = function(arg0) {
|
|
766
|
-
const v = arg0;
|
|
767
|
-
const ret = typeof(v) === 'boolean' ? (v ? 1 : 0) : 2;
|
|
794
|
+
imports.wbg.__wbindgen_in = function(arg0, arg1) {
|
|
795
|
+
const ret = arg0 in arg1;
|
|
768
796
|
return ret;
|
|
769
797
|
};
|
|
770
798
|
imports.wbg.__wbindgen_is_string = function(arg0) {
|
|
771
799
|
const ret = typeof(arg0) === 'string';
|
|
772
800
|
return ret;
|
|
773
801
|
};
|
|
774
|
-
imports.wbg.__wbindgen_in = function(arg0, arg1) {
|
|
775
|
-
const ret = arg0 in arg1;
|
|
776
|
-
return ret;
|
|
777
|
-
};
|
|
778
802
|
imports.wbg.__wbindgen_number_new = function(arg0) {
|
|
779
803
|
const ret = arg0;
|
|
780
804
|
return ret;
|
|
781
805
|
};
|
|
782
|
-
imports.wbg.__wbindgen_is_falsy = function(arg0) {
|
|
783
|
-
const ret = !arg0;
|
|
784
|
-
return ret;
|
|
785
|
-
};
|
|
786
806
|
imports.wbg.__wbindgen_jsval_loose_eq = function(arg0, arg1) {
|
|
787
807
|
const ret = arg0 == arg1;
|
|
788
808
|
return ret;
|
|
@@ -790,8 +810,8 @@ function __wbg_get_imports() {
|
|
|
790
810
|
imports.wbg.__wbindgen_number_get = function(arg0, arg1) {
|
|
791
811
|
const obj = arg1;
|
|
792
812
|
const ret = typeof(obj) === 'number' ? obj : undefined;
|
|
793
|
-
|
|
794
|
-
|
|
813
|
+
getDataViewMemory0().setFloat64(arg0 + 8 * 1, isLikeNone(ret) ? 0 : ret, true);
|
|
814
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
795
815
|
};
|
|
796
816
|
imports.wbg.__wbindgen_as_number = function(arg0) {
|
|
797
817
|
const ret = +arg0;
|
|
@@ -804,7 +824,7 @@ function __wbg_get_imports() {
|
|
|
804
824
|
imports.wbg.__wbg_set_f975102236d3c502 = function(arg0, arg1, arg2) {
|
|
805
825
|
arg0[arg1] = arg2;
|
|
806
826
|
};
|
|
807
|
-
imports.wbg.
|
|
827
|
+
imports.wbg.__wbg_error_ecb8b2ef9f17fff0 = function(arg0, arg1) {
|
|
808
828
|
let deferred0_0;
|
|
809
829
|
let deferred0_1;
|
|
810
830
|
try {
|
|
@@ -815,29 +835,29 @@ function __wbg_get_imports() {
|
|
|
815
835
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
816
836
|
}
|
|
817
837
|
};
|
|
818
|
-
imports.wbg.
|
|
838
|
+
imports.wbg.__wbg_new_5a0c9fd4e0a0fcbe = function() {
|
|
819
839
|
const ret = new Error();
|
|
820
840
|
return ret;
|
|
821
841
|
};
|
|
822
|
-
imports.wbg.
|
|
842
|
+
imports.wbg.__wbg_stack_97b8ae9669382e90 = function(arg0, arg1) {
|
|
823
843
|
const ret = arg1.stack;
|
|
824
844
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
825
845
|
const len1 = WASM_VECTOR_LEN;
|
|
826
|
-
|
|
827
|
-
|
|
846
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
847
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
828
848
|
};
|
|
829
|
-
imports.wbg.
|
|
849
|
+
imports.wbg.__wbg_new_ca6c6ac47864c1dd = function() {
|
|
830
850
|
const ret = new Error();
|
|
831
851
|
return ret;
|
|
832
852
|
};
|
|
833
|
-
imports.wbg.
|
|
853
|
+
imports.wbg.__wbg_stack_3225ca4eb5f07647 = function(arg0, arg1) {
|
|
834
854
|
const ret = arg1.stack;
|
|
835
855
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
836
856
|
const len1 = WASM_VECTOR_LEN;
|
|
837
|
-
|
|
838
|
-
|
|
857
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
858
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
839
859
|
};
|
|
840
|
-
imports.wbg.
|
|
860
|
+
imports.wbg.__wbg_instanceof_GpuAdapter_ba82c448cfa55608 = function(arg0) {
|
|
841
861
|
let result;
|
|
842
862
|
try {
|
|
843
863
|
result = arg0 instanceof GPUAdapter;
|
|
@@ -847,7 +867,7 @@ function __wbg_get_imports() {
|
|
|
847
867
|
const ret = result;
|
|
848
868
|
return ret;
|
|
849
869
|
};
|
|
850
|
-
imports.wbg.
|
|
870
|
+
imports.wbg.__wbg_instanceof_GpuDeviceLostInfo_c7232ceb822b15d6 = function(arg0) {
|
|
851
871
|
let result;
|
|
852
872
|
try {
|
|
853
873
|
result = arg0 instanceof GPUDeviceLostInfo;
|
|
@@ -857,505 +877,532 @@ function __wbg_get_imports() {
|
|
|
857
877
|
const ret = result;
|
|
858
878
|
return ret;
|
|
859
879
|
};
|
|
860
|
-
imports.wbg.
|
|
861
|
-
|
|
880
|
+
imports.wbg.__wbg_instanceof_GpuValidationError_05482398d349fd2d = function(arg0) {
|
|
881
|
+
let result;
|
|
882
|
+
try {
|
|
883
|
+
result = arg0 instanceof GPUValidationError;
|
|
884
|
+
} catch (_) {
|
|
885
|
+
result = false;
|
|
886
|
+
}
|
|
887
|
+
const ret = result;
|
|
862
888
|
return ret;
|
|
863
889
|
};
|
|
864
|
-
imports.wbg.
|
|
865
|
-
const ret =
|
|
890
|
+
imports.wbg.__wbg_message_4bd9ef09b3092122 = function(arg0, arg1) {
|
|
891
|
+
const ret = arg1.message;
|
|
892
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
893
|
+
const len1 = WASM_VECTOR_LEN;
|
|
894
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
895
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
896
|
+
};
|
|
897
|
+
imports.wbg.__wbg_instanceof_GpuOutOfMemoryError_658135cd3b3f08e2 = function(arg0) {
|
|
898
|
+
let result;
|
|
899
|
+
try {
|
|
900
|
+
result = arg0 instanceof GPUOutOfMemoryError;
|
|
901
|
+
} catch (_) {
|
|
902
|
+
result = false;
|
|
903
|
+
}
|
|
904
|
+
const ret = result;
|
|
866
905
|
return ret;
|
|
867
906
|
};
|
|
868
|
-
imports.wbg.
|
|
869
|
-
const ret = arg0.
|
|
907
|
+
imports.wbg.__wbg_type_c3e79de7c41f03c2 = function(arg0) {
|
|
908
|
+
const ret = arg0.type;
|
|
909
|
+
return {"error":0,"warning":1,"info":2,}[ret] ?? 3;
|
|
910
|
+
};
|
|
911
|
+
imports.wbg.__wbg_offset_47f9a19926637c8e = function(arg0) {
|
|
912
|
+
const ret = arg0.offset;
|
|
870
913
|
return ret;
|
|
871
914
|
};
|
|
872
|
-
imports.wbg.
|
|
873
|
-
const ret = arg0.
|
|
915
|
+
imports.wbg.__wbg_length_ff62902e8840f82f = function(arg0) {
|
|
916
|
+
const ret = arg0.length;
|
|
874
917
|
return ret;
|
|
875
918
|
};
|
|
876
|
-
imports.wbg.
|
|
877
|
-
const ret = arg0.
|
|
919
|
+
imports.wbg.__wbg_lineNum_06a4c70c1027df81 = function(arg0) {
|
|
920
|
+
const ret = arg0.lineNum;
|
|
878
921
|
return ret;
|
|
879
922
|
};
|
|
880
|
-
imports.wbg.
|
|
881
|
-
const ret =
|
|
923
|
+
imports.wbg.__wbg_message_0ff806941d54e1d2 = function(arg0, arg1) {
|
|
924
|
+
const ret = arg1.message;
|
|
925
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
926
|
+
const len1 = WASM_VECTOR_LEN;
|
|
927
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
928
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
929
|
+
};
|
|
930
|
+
imports.wbg.__wbg_getMappedRange_08e71df297c66a50 = function(arg0, arg1, arg2) {
|
|
931
|
+
const ret = arg0.getMappedRange(arg1, arg2);
|
|
882
932
|
return ret;
|
|
883
933
|
};
|
|
884
|
-
imports.wbg.
|
|
885
|
-
|
|
934
|
+
imports.wbg.__wbg_dispatchWorkgroups_f0fd90dcd4a506fa = function(arg0, arg1, arg2, arg3) {
|
|
935
|
+
arg0.dispatchWorkgroups(arg1 >>> 0, arg2 >>> 0, arg3 >>> 0);
|
|
936
|
+
};
|
|
937
|
+
imports.wbg.__wbg_dispatchWorkgroupsIndirect_567a84763f6a0b87 = function(arg0, arg1, arg2) {
|
|
938
|
+
arg0.dispatchWorkgroupsIndirect(arg1, arg2);
|
|
939
|
+
};
|
|
940
|
+
imports.wbg.__wbg_end_bbe499813ce72830 = function(arg0) {
|
|
941
|
+
arg0.end();
|
|
942
|
+
};
|
|
943
|
+
imports.wbg.__wbg_setPipeline_4d0e04e7370f0e2e = function(arg0, arg1) {
|
|
944
|
+
arg0.setPipeline(arg1);
|
|
945
|
+
};
|
|
946
|
+
imports.wbg.__wbg_setBindGroup_48300d51a3d74853 = function(arg0, arg1, arg2) {
|
|
947
|
+
arg0.setBindGroup(arg1 >>> 0, arg2);
|
|
948
|
+
};
|
|
949
|
+
imports.wbg.__wbg_setBindGroup_d79f4f1d5e43c06f = function(arg0, arg1, arg2, arg3, arg4, arg5, arg6) {
|
|
950
|
+
arg0.setBindGroup(arg1 >>> 0, arg2, getArrayU32FromWasm0(arg3, arg4), arg5, arg6 >>> 0);
|
|
951
|
+
};
|
|
952
|
+
imports.wbg.__wbg_getBindGroupLayout_0194b7a790ac805d = function(arg0, arg1) {
|
|
953
|
+
const ret = arg0.getBindGroupLayout(arg1 >>> 0);
|
|
886
954
|
return ret;
|
|
887
955
|
};
|
|
888
|
-
imports.wbg.
|
|
889
|
-
const ret = arg0.
|
|
956
|
+
imports.wbg.__wbg_reason_436ee862de561851 = function(arg0) {
|
|
957
|
+
const ret = arg0.reason;
|
|
958
|
+
return {"unknown":0,"destroyed":1,}[ret] ?? 2;
|
|
959
|
+
};
|
|
960
|
+
imports.wbg.__wbg_message_54cb97c0fd1579bf = function(arg0, arg1) {
|
|
961
|
+
const ret = arg1.message;
|
|
962
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
963
|
+
const len1 = WASM_VECTOR_LEN;
|
|
964
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
965
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
966
|
+
};
|
|
967
|
+
imports.wbg.__wbg_getCompilationInfo_adcb4d74ed54d1f9 = function(arg0) {
|
|
968
|
+
const ret = arg0.getCompilationInfo();
|
|
890
969
|
return ret;
|
|
891
970
|
};
|
|
892
|
-
imports.wbg.
|
|
893
|
-
const ret = arg0.
|
|
971
|
+
imports.wbg.__wbg_features_e7f12cb6c5258238 = function(arg0) {
|
|
972
|
+
const ret = arg0.features;
|
|
894
973
|
return ret;
|
|
895
974
|
};
|
|
896
|
-
imports.wbg.
|
|
897
|
-
const ret = arg0.
|
|
975
|
+
imports.wbg.__wbg_limits_622a6ae19a037dbf = function(arg0) {
|
|
976
|
+
const ret = arg0.limits;
|
|
898
977
|
return ret;
|
|
899
978
|
};
|
|
900
|
-
imports.wbg.
|
|
901
|
-
const ret = arg0.
|
|
979
|
+
imports.wbg.__wbg_requestDevice_1c8e4f0fe8729328 = function(arg0, arg1) {
|
|
980
|
+
const ret = arg0.requestDevice(arg1);
|
|
902
981
|
return ret;
|
|
903
982
|
};
|
|
904
|
-
imports.wbg.
|
|
905
|
-
const ret = arg0.
|
|
983
|
+
imports.wbg.__wbg_finish_5be91110098e071c = function(arg0) {
|
|
984
|
+
const ret = arg0.finish();
|
|
906
985
|
return ret;
|
|
907
986
|
};
|
|
908
|
-
imports.wbg.
|
|
909
|
-
const ret = arg0.
|
|
987
|
+
imports.wbg.__wbg_finish_667443ed0047f53a = function(arg0, arg1) {
|
|
988
|
+
const ret = arg0.finish(arg1);
|
|
910
989
|
return ret;
|
|
911
990
|
};
|
|
912
|
-
imports.wbg.
|
|
913
|
-
|
|
991
|
+
imports.wbg.__wbg_setBindGroup_de4812744c6ebb6c = function(arg0, arg1, arg2) {
|
|
992
|
+
arg0.setBindGroup(arg1 >>> 0, arg2);
|
|
993
|
+
};
|
|
994
|
+
imports.wbg.__wbg_setBindGroup_92581920e209bf52 = function(arg0, arg1, arg2, arg3, arg4, arg5, arg6) {
|
|
995
|
+
arg0.setBindGroup(arg1 >>> 0, arg2, getArrayU32FromWasm0(arg3, arg4), arg5, arg6 >>> 0);
|
|
996
|
+
};
|
|
997
|
+
imports.wbg.__wbg_draw_29abcb466fee48b4 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
998
|
+
arg0.draw(arg1 >>> 0, arg2 >>> 0, arg3 >>> 0, arg4 >>> 0);
|
|
999
|
+
};
|
|
1000
|
+
imports.wbg.__wbg_drawIndexed_34b06707991ddaf7 = function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
1001
|
+
arg0.drawIndexed(arg1 >>> 0, arg2 >>> 0, arg3 >>> 0, arg4, arg5 >>> 0);
|
|
1002
|
+
};
|
|
1003
|
+
imports.wbg.__wbg_drawIndexedIndirect_4b7b51fa979657ca = function(arg0, arg1, arg2) {
|
|
1004
|
+
arg0.drawIndexedIndirect(arg1, arg2);
|
|
1005
|
+
};
|
|
1006
|
+
imports.wbg.__wbg_drawIndirect_0054fe754e8e46e9 = function(arg0, arg1, arg2) {
|
|
1007
|
+
arg0.drawIndirect(arg1, arg2);
|
|
1008
|
+
};
|
|
1009
|
+
imports.wbg.__wbg_setIndexBuffer_91b6f5eb1a43df9b = function(arg0, arg1, arg2, arg3) {
|
|
1010
|
+
arg0.setIndexBuffer(arg1, ["uint16","uint32",][arg2], arg3);
|
|
1011
|
+
};
|
|
1012
|
+
imports.wbg.__wbg_setIndexBuffer_5bce79843be8653d = function(arg0, arg1, arg2, arg3, arg4) {
|
|
1013
|
+
arg0.setIndexBuffer(arg1, ["uint16","uint32",][arg2], arg3, arg4);
|
|
1014
|
+
};
|
|
1015
|
+
imports.wbg.__wbg_setPipeline_6174c2e8900fe24a = function(arg0, arg1) {
|
|
1016
|
+
arg0.setPipeline(arg1);
|
|
1017
|
+
};
|
|
1018
|
+
imports.wbg.__wbg_setVertexBuffer_d9b48c3489dcfa22 = function(arg0, arg1, arg2, arg3) {
|
|
1019
|
+
arg0.setVertexBuffer(arg1 >>> 0, arg2, arg3);
|
|
1020
|
+
};
|
|
1021
|
+
imports.wbg.__wbg_setVertexBuffer_330ab505b9dfc64b = function(arg0, arg1, arg2, arg3, arg4) {
|
|
1022
|
+
arg0.setVertexBuffer(arg1 >>> 0, arg2, arg3, arg4);
|
|
1023
|
+
};
|
|
1024
|
+
imports.wbg.__wbg_gpu_7d756a02ad45027d = function(arg0) {
|
|
1025
|
+
const ret = arg0.gpu;
|
|
914
1026
|
return ret;
|
|
915
1027
|
};
|
|
916
|
-
imports.wbg.
|
|
917
|
-
const ret = arg0.
|
|
1028
|
+
imports.wbg.__wbg_createView_87e589e1574ba76c = function(arg0, arg1) {
|
|
1029
|
+
const ret = arg0.createView(arg1);
|
|
918
1030
|
return ret;
|
|
919
1031
|
};
|
|
920
|
-
imports.wbg.
|
|
921
|
-
|
|
1032
|
+
imports.wbg.__wbg_destroy_b040948312c539a9 = function(arg0) {
|
|
1033
|
+
arg0.destroy();
|
|
1034
|
+
};
|
|
1035
|
+
imports.wbg.__wbg_error_520ca6f621497012 = function(arg0) {
|
|
1036
|
+
const ret = arg0.error;
|
|
922
1037
|
return ret;
|
|
923
1038
|
};
|
|
924
|
-
imports.wbg.
|
|
925
|
-
|
|
1039
|
+
imports.wbg.__wbg_instanceof_GpuCanvasContext_1eacd2a8c6b36ada = function(arg0) {
|
|
1040
|
+
let result;
|
|
1041
|
+
try {
|
|
1042
|
+
result = arg0 instanceof GPUCanvasContext;
|
|
1043
|
+
} catch (_) {
|
|
1044
|
+
result = false;
|
|
1045
|
+
}
|
|
1046
|
+
const ret = result;
|
|
926
1047
|
return ret;
|
|
927
1048
|
};
|
|
928
|
-
imports.wbg.
|
|
929
|
-
|
|
1049
|
+
imports.wbg.__wbg_configure_48cfbf148a9998c2 = function(arg0, arg1) {
|
|
1050
|
+
arg0.configure(arg1);
|
|
1051
|
+
};
|
|
1052
|
+
imports.wbg.__wbg_getCurrentTexture_1c8e29bec577927d = function(arg0) {
|
|
1053
|
+
const ret = arg0.getCurrentTexture();
|
|
930
1054
|
return ret;
|
|
931
1055
|
};
|
|
932
|
-
imports.wbg.
|
|
933
|
-
const ret = arg0.
|
|
1056
|
+
imports.wbg.__wbg_features_b1971639ec1a77f7 = function(arg0) {
|
|
1057
|
+
const ret = arg0.features;
|
|
934
1058
|
return ret;
|
|
935
1059
|
};
|
|
936
|
-
imports.wbg.
|
|
937
|
-
const ret = arg0.
|
|
1060
|
+
imports.wbg.__wbg_limits_e806d307d42a9dde = function(arg0) {
|
|
1061
|
+
const ret = arg0.limits;
|
|
938
1062
|
return ret;
|
|
939
1063
|
};
|
|
940
|
-
imports.wbg.
|
|
941
|
-
const ret = arg0.
|
|
1064
|
+
imports.wbg.__wbg_queue_e124eaca54d285d4 = function(arg0) {
|
|
1065
|
+
const ret = arg0.queue;
|
|
942
1066
|
return ret;
|
|
943
1067
|
};
|
|
944
|
-
imports.wbg.
|
|
945
|
-
const ret = arg0.
|
|
1068
|
+
imports.wbg.__wbg_lost_02e8ddfb37103cc2 = function(arg0) {
|
|
1069
|
+
const ret = arg0.lost;
|
|
946
1070
|
return ret;
|
|
947
1071
|
};
|
|
948
|
-
imports.wbg.
|
|
949
|
-
|
|
1072
|
+
imports.wbg.__wbg_setonuncapturederror_c702acc9eeeb9613 = function(arg0, arg1) {
|
|
1073
|
+
arg0.onuncapturederror = arg1;
|
|
1074
|
+
};
|
|
1075
|
+
imports.wbg.__wbg_createBindGroup_f93afa3a0a06b10e = function(arg0, arg1) {
|
|
1076
|
+
const ret = arg0.createBindGroup(arg1);
|
|
950
1077
|
return ret;
|
|
951
1078
|
};
|
|
952
|
-
imports.wbg.
|
|
953
|
-
const ret = arg0.
|
|
1079
|
+
imports.wbg.__wbg_createBindGroupLayout_4243a95be946d48a = function(arg0, arg1) {
|
|
1080
|
+
const ret = arg0.createBindGroupLayout(arg1);
|
|
954
1081
|
return ret;
|
|
955
1082
|
};
|
|
956
|
-
imports.wbg.
|
|
957
|
-
const ret = arg0.
|
|
1083
|
+
imports.wbg.__wbg_createBuffer_44406243485760b1 = function(arg0, arg1) {
|
|
1084
|
+
const ret = arg0.createBuffer(arg1);
|
|
958
1085
|
return ret;
|
|
959
1086
|
};
|
|
960
|
-
imports.wbg.
|
|
961
|
-
const ret = arg0.
|
|
1087
|
+
imports.wbg.__wbg_createCommandEncoder_c7eddb5143f91992 = function(arg0, arg1) {
|
|
1088
|
+
const ret = arg0.createCommandEncoder(arg1);
|
|
962
1089
|
return ret;
|
|
963
1090
|
};
|
|
964
|
-
imports.wbg.
|
|
965
|
-
const ret = arg0.
|
|
1091
|
+
imports.wbg.__wbg_createComputePipeline_fb60500f9a96e290 = function(arg0, arg1) {
|
|
1092
|
+
const ret = arg0.createComputePipeline(arg1);
|
|
966
1093
|
return ret;
|
|
967
1094
|
};
|
|
968
|
-
imports.wbg.
|
|
969
|
-
const ret = arg0.
|
|
1095
|
+
imports.wbg.__wbg_createPipelineLayout_bcb406883550f9cc = function(arg0, arg1) {
|
|
1096
|
+
const ret = arg0.createPipelineLayout(arg1);
|
|
970
1097
|
return ret;
|
|
971
1098
|
};
|
|
972
|
-
imports.wbg.
|
|
973
|
-
const ret = arg0.
|
|
1099
|
+
imports.wbg.__wbg_createQuerySet_4040f9ea5a2ac03c = function(arg0, arg1) {
|
|
1100
|
+
const ret = arg0.createQuerySet(arg1);
|
|
974
1101
|
return ret;
|
|
975
1102
|
};
|
|
976
|
-
imports.wbg.
|
|
977
|
-
const ret = arg0.
|
|
1103
|
+
imports.wbg.__wbg_createRenderBundleEncoder_d9644450ab4cad8f = function(arg0, arg1) {
|
|
1104
|
+
const ret = arg0.createRenderBundleEncoder(arg1);
|
|
978
1105
|
return ret;
|
|
979
1106
|
};
|
|
980
|
-
imports.wbg.
|
|
981
|
-
const ret = arg0.
|
|
1107
|
+
imports.wbg.__wbg_createRenderPipeline_7ca396c186d8d06a = function(arg0, arg1) {
|
|
1108
|
+
const ret = arg0.createRenderPipeline(arg1);
|
|
982
1109
|
return ret;
|
|
983
1110
|
};
|
|
984
|
-
imports.wbg.
|
|
985
|
-
const ret = arg0.
|
|
1111
|
+
imports.wbg.__wbg_createSampler_ed81ff565caa903a = function(arg0, arg1) {
|
|
1112
|
+
const ret = arg0.createSampler(arg1);
|
|
1113
|
+
return ret;
|
|
1114
|
+
};
|
|
1115
|
+
imports.wbg.__wbg_createShaderModule_cda89eb5c1073627 = function(arg0, arg1) {
|
|
1116
|
+
const ret = arg0.createShaderModule(arg1);
|
|
1117
|
+
return ret;
|
|
1118
|
+
};
|
|
1119
|
+
imports.wbg.__wbg_createTexture_06106f81b60e5462 = function(arg0, arg1) {
|
|
1120
|
+
const ret = arg0.createTexture(arg1);
|
|
986
1121
|
return ret;
|
|
987
1122
|
};
|
|
988
|
-
imports.wbg.
|
|
1123
|
+
imports.wbg.__wbg_destroy_2a8c41712abac4cb = function(arg0) {
|
|
989
1124
|
arg0.destroy();
|
|
990
1125
|
};
|
|
991
|
-
imports.wbg.
|
|
1126
|
+
imports.wbg.__wbg_popErrorScope_6d6b4abc95412374 = function(arg0) {
|
|
1127
|
+
const ret = arg0.popErrorScope();
|
|
1128
|
+
return ret;
|
|
1129
|
+
};
|
|
1130
|
+
imports.wbg.__wbg_pushErrorScope_3dc565fa86fee870 = function(arg0, arg1) {
|
|
1131
|
+
arg0.pushErrorScope(["validation","out-of-memory","internal",][arg1]);
|
|
1132
|
+
};
|
|
1133
|
+
imports.wbg.__wbg_getPreferredCanvasFormat_d55bc32b5a6b948a = function(arg0) {
|
|
1134
|
+
const ret = arg0.getPreferredCanvasFormat();
|
|
1135
|
+
return {"r8unorm":0,"r8snorm":1,"r8uint":2,"r8sint":3,"r16uint":4,"r16sint":5,"r16float":6,"rg8unorm":7,"rg8snorm":8,"rg8uint":9,"rg8sint":10,"r32uint":11,"r32sint":12,"r32float":13,"rg16uint":14,"rg16sint":15,"rg16float":16,"rgba8unorm":17,"rgba8unorm-srgb":18,"rgba8snorm":19,"rgba8uint":20,"rgba8sint":21,"bgra8unorm":22,"bgra8unorm-srgb":23,"rgb9e5ufloat":24,"rgb10a2uint":25,"rgb10a2unorm":26,"rg11b10ufloat":27,"rg32uint":28,"rg32sint":29,"rg32float":30,"rgba16uint":31,"rgba16sint":32,"rgba16float":33,"rgba32uint":34,"rgba32sint":35,"rgba32float":36,"stencil8":37,"depth16unorm":38,"depth24plus":39,"depth24plus-stencil8":40,"depth32float":41,"depth32float-stencil8":42,"bc1-rgba-unorm":43,"bc1-rgba-unorm-srgb":44,"bc2-rgba-unorm":45,"bc2-rgba-unorm-srgb":46,"bc3-rgba-unorm":47,"bc3-rgba-unorm-srgb":48,"bc4-r-unorm":49,"bc4-r-snorm":50,"bc5-rg-unorm":51,"bc5-rg-snorm":52,"bc6h-rgb-ufloat":53,"bc6h-rgb-float":54,"bc7-rgba-unorm":55,"bc7-rgba-unorm-srgb":56,"etc2-rgb8unorm":57,"etc2-rgb8unorm-srgb":58,"etc2-rgb8a1unorm":59,"etc2-rgb8a1unorm-srgb":60,"etc2-rgba8unorm":61,"etc2-rgba8unorm-srgb":62,"eac-r11unorm":63,"eac-r11snorm":64,"eac-rg11unorm":65,"eac-rg11snorm":66,"astc-4x4-unorm":67,"astc-4x4-unorm-srgb":68,"astc-5x4-unorm":69,"astc-5x4-unorm-srgb":70,"astc-5x5-unorm":71,"astc-5x5-unorm-srgb":72,"astc-6x5-unorm":73,"astc-6x5-unorm-srgb":74,"astc-6x6-unorm":75,"astc-6x6-unorm-srgb":76,"astc-8x5-unorm":77,"astc-8x5-unorm-srgb":78,"astc-8x6-unorm":79,"astc-8x6-unorm-srgb":80,"astc-8x8-unorm":81,"astc-8x8-unorm-srgb":82,"astc-10x5-unorm":83,"astc-10x5-unorm-srgb":84,"astc-10x6-unorm":85,"astc-10x6-unorm-srgb":86,"astc-10x8-unorm":87,"astc-10x8-unorm-srgb":88,"astc-10x10-unorm":89,"astc-10x10-unorm-srgb":90,"astc-12x10-unorm":91,"astc-12x10-unorm-srgb":92,"astc-12x12-unorm":93,"astc-12x12-unorm-srgb":94,}[ret] ?? 95;
|
|
1136
|
+
};
|
|
1137
|
+
imports.wbg.__wbg_requestAdapter_8413757c51a35b1d = function(arg0, arg1) {
|
|
1138
|
+
const ret = arg0.requestAdapter(arg1);
|
|
1139
|
+
return ret;
|
|
1140
|
+
};
|
|
1141
|
+
imports.wbg.__wbg_size_61d4fa05868b79cd = function(arg0) {
|
|
992
1142
|
const ret = arg0.size;
|
|
993
1143
|
return ret;
|
|
994
1144
|
};
|
|
995
|
-
imports.wbg.
|
|
1145
|
+
imports.wbg.__wbg_usage_5043ac06189fbe53 = function(arg0) {
|
|
996
1146
|
const ret = arg0.usage;
|
|
997
1147
|
return ret;
|
|
998
1148
|
};
|
|
999
|
-
imports.wbg.
|
|
1149
|
+
imports.wbg.__wbg_destroy_387cb19081689594 = function(arg0) {
|
|
1000
1150
|
arg0.destroy();
|
|
1001
1151
|
};
|
|
1002
|
-
imports.wbg.
|
|
1003
|
-
const ret = arg0.getMappedRange(arg1, arg2);
|
|
1004
|
-
return ret;
|
|
1005
|
-
};
|
|
1006
|
-
imports.wbg.__wbg_mapAsync_3b0a03a892fb22b3 = function(arg0, arg1, arg2, arg3) {
|
|
1152
|
+
imports.wbg.__wbg_mapAsync_98ce4986e2f6d4af = function(arg0, arg1, arg2, arg3) {
|
|
1007
1153
|
const ret = arg0.mapAsync(arg1 >>> 0, arg2, arg3);
|
|
1008
1154
|
return ret;
|
|
1009
1155
|
};
|
|
1010
|
-
imports.wbg.
|
|
1156
|
+
imports.wbg.__wbg_unmap_efca7885e5daff78 = function(arg0) {
|
|
1011
1157
|
arg0.unmap();
|
|
1012
1158
|
};
|
|
1013
|
-
imports.wbg.
|
|
1014
|
-
|
|
1015
|
-
try {
|
|
1016
|
-
result = arg0 instanceof GPUValidationError;
|
|
1017
|
-
} catch (_) {
|
|
1018
|
-
result = false;
|
|
1019
|
-
}
|
|
1020
|
-
const ret = result;
|
|
1159
|
+
imports.wbg.__wbg_messages_6833dfd0ae6a0a7c = function(arg0) {
|
|
1160
|
+
const ret = arg0.messages;
|
|
1021
1161
|
return ret;
|
|
1022
1162
|
};
|
|
1023
|
-
imports.wbg.
|
|
1024
|
-
const ret = arg1
|
|
1025
|
-
|
|
1026
|
-
const len1 = WASM_VECTOR_LEN;
|
|
1027
|
-
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
1028
|
-
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
1163
|
+
imports.wbg.__wbg_getBindGroupLayout_1490d5a61f4fd56b = function(arg0, arg1) {
|
|
1164
|
+
const ret = arg0.getBindGroupLayout(arg1 >>> 0);
|
|
1165
|
+
return ret;
|
|
1029
1166
|
};
|
|
1030
|
-
imports.wbg.
|
|
1031
|
-
|
|
1032
|
-
try {
|
|
1033
|
-
result = arg0 instanceof GPUOutOfMemoryError;
|
|
1034
|
-
} catch (_) {
|
|
1035
|
-
result = false;
|
|
1036
|
-
}
|
|
1037
|
-
const ret = result;
|
|
1038
|
-
return ret;
|
|
1039
|
-
};
|
|
1040
|
-
imports.wbg.__wbg_getPreferredCanvasFormat_012ef9f3b0238ffa = function(arg0) {
|
|
1041
|
-
const ret = arg0.getPreferredCanvasFormat();
|
|
1042
|
-
return ret;
|
|
1043
|
-
};
|
|
1044
|
-
imports.wbg.__wbg_requestAdapter_e6f12701c7a38391 = function(arg0, arg1) {
|
|
1045
|
-
const ret = arg0.requestAdapter(arg1);
|
|
1046
|
-
return ret;
|
|
1047
|
-
};
|
|
1048
|
-
imports.wbg.__wbg_end_e3cea1776c95d64f = function(arg0) {
|
|
1049
|
-
arg0.end();
|
|
1050
|
-
};
|
|
1051
|
-
imports.wbg.__wbg_executeBundles_16985086317c358a = function(arg0, arg1) {
|
|
1052
|
-
arg0.executeBundles(arg1);
|
|
1053
|
-
};
|
|
1054
|
-
imports.wbg.__wbg_setBlendConstant_496a0b5cc772c236 = function(arg0, arg1) {
|
|
1055
|
-
arg0.setBlendConstant(arg1);
|
|
1056
|
-
};
|
|
1057
|
-
imports.wbg.__wbg_setScissorRect_9b7e673d03036c37 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
1058
|
-
arg0.setScissorRect(arg1 >>> 0, arg2 >>> 0, arg3 >>> 0, arg4 >>> 0);
|
|
1059
|
-
};
|
|
1060
|
-
imports.wbg.__wbg_setStencilReference_b4b1f7e586967a4d = function(arg0, arg1) {
|
|
1061
|
-
arg0.setStencilReference(arg1 >>> 0);
|
|
1062
|
-
};
|
|
1063
|
-
imports.wbg.__wbg_setViewport_85d18ceefd5180eb = function(arg0, arg1, arg2, arg3, arg4, arg5, arg6) {
|
|
1064
|
-
arg0.setViewport(arg1, arg2, arg3, arg4, arg5, arg6);
|
|
1065
|
-
};
|
|
1066
|
-
imports.wbg.__wbg_setBindGroup_c6ab2e9583489b58 = function(arg0, arg1, arg2) {
|
|
1067
|
-
arg0.setBindGroup(arg1 >>> 0, arg2);
|
|
1068
|
-
};
|
|
1069
|
-
imports.wbg.__wbg_setBindGroup_0bf976b9657f99bd = function(arg0, arg1, arg2, arg3, arg4, arg5, arg6) {
|
|
1070
|
-
arg0.setBindGroup(arg1 >>> 0, arg2, getArrayU32FromWasm0(arg3, arg4), arg5, arg6 >>> 0);
|
|
1071
|
-
};
|
|
1072
|
-
imports.wbg.__wbg_draw_540a514f996a5d0d = function(arg0, arg1, arg2, arg3, arg4) {
|
|
1073
|
-
arg0.draw(arg1 >>> 0, arg2 >>> 0, arg3 >>> 0, arg4 >>> 0);
|
|
1074
|
-
};
|
|
1075
|
-
imports.wbg.__wbg_drawIndexed_f717a07602ee2d18 = function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
1076
|
-
arg0.drawIndexed(arg1 >>> 0, arg2 >>> 0, arg3 >>> 0, arg4, arg5 >>> 0);
|
|
1077
|
-
};
|
|
1078
|
-
imports.wbg.__wbg_drawIndexedIndirect_bb5585ec7f45d269 = function(arg0, arg1, arg2) {
|
|
1079
|
-
arg0.drawIndexedIndirect(arg1, arg2);
|
|
1080
|
-
};
|
|
1081
|
-
imports.wbg.__wbg_drawIndirect_c588ff54fb149aee = function(arg0, arg1, arg2) {
|
|
1082
|
-
arg0.drawIndirect(arg1, arg2);
|
|
1083
|
-
};
|
|
1084
|
-
imports.wbg.__wbg_setIndexBuffer_ea39707d8842fe03 = function(arg0, arg1, arg2, arg3) {
|
|
1085
|
-
arg0.setIndexBuffer(arg1, arg2, arg3);
|
|
1086
|
-
};
|
|
1087
|
-
imports.wbg.__wbg_setIndexBuffer_04ba4ea48c8f80be = function(arg0, arg1, arg2, arg3, arg4) {
|
|
1088
|
-
arg0.setIndexBuffer(arg1, arg2, arg3, arg4);
|
|
1089
|
-
};
|
|
1090
|
-
imports.wbg.__wbg_setPipeline_d7c9c55035f118a6 = function(arg0, arg1) {
|
|
1091
|
-
arg0.setPipeline(arg1);
|
|
1092
|
-
};
|
|
1093
|
-
imports.wbg.__wbg_setVertexBuffer_907c60acf6dca161 = function(arg0, arg1, arg2, arg3) {
|
|
1094
|
-
arg0.setVertexBuffer(arg1 >>> 0, arg2, arg3);
|
|
1095
|
-
};
|
|
1096
|
-
imports.wbg.__wbg_setVertexBuffer_9a336bb112a33317 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
1097
|
-
arg0.setVertexBuffer(arg1 >>> 0, arg2, arg3, arg4);
|
|
1098
|
-
};
|
|
1099
|
-
imports.wbg.__wbg_dispatchWorkgroups_4bc133944e89d5e0 = function(arg0, arg1, arg2, arg3) {
|
|
1100
|
-
arg0.dispatchWorkgroups(arg1 >>> 0, arg2 >>> 0, arg3 >>> 0);
|
|
1101
|
-
};
|
|
1102
|
-
imports.wbg.__wbg_dispatchWorkgroupsIndirect_8050acb60dd74a34 = function(arg0, arg1, arg2) {
|
|
1103
|
-
arg0.dispatchWorkgroupsIndirect(arg1, arg2);
|
|
1104
|
-
};
|
|
1105
|
-
imports.wbg.__wbg_end_28d311f5d435aa6d = function(arg0) {
|
|
1106
|
-
arg0.end();
|
|
1107
|
-
};
|
|
1108
|
-
imports.wbg.__wbg_setPipeline_8630b264a9c4ec4b = function(arg0, arg1) {
|
|
1109
|
-
arg0.setPipeline(arg1);
|
|
1167
|
+
imports.wbg.__wbg_copyExternalImageToTexture_e192d56d70996ad4 = function(arg0, arg1, arg2, arg3) {
|
|
1168
|
+
arg0.copyExternalImageToTexture(arg1, arg2, arg3);
|
|
1110
1169
|
};
|
|
1111
|
-
imports.wbg.
|
|
1112
|
-
arg0.
|
|
1170
|
+
imports.wbg.__wbg_submit_4283b63806c5d15e = function(arg0, arg1) {
|
|
1171
|
+
arg0.submit(arg1);
|
|
1113
1172
|
};
|
|
1114
|
-
imports.wbg.
|
|
1115
|
-
arg0.
|
|
1173
|
+
imports.wbg.__wbg_writeBuffer_6ce87bc6ff22a2b5 = function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
1174
|
+
arg0.writeBuffer(arg1, arg2, arg3, arg4, arg5);
|
|
1116
1175
|
};
|
|
1117
|
-
imports.wbg.
|
|
1118
|
-
|
|
1119
|
-
return ret;
|
|
1176
|
+
imports.wbg.__wbg_writeTexture_3708ced0dd386721 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
1177
|
+
arg0.writeTexture(arg1, arg2, arg3, arg4);
|
|
1120
1178
|
};
|
|
1121
|
-
imports.wbg.
|
|
1122
|
-
const ret = arg1.
|
|
1179
|
+
imports.wbg.__wbg_label_81cb6c4ebcba5f4d = function(arg0, arg1) {
|
|
1180
|
+
const ret = arg1.label;
|
|
1123
1181
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1124
1182
|
const len1 = WASM_VECTOR_LEN;
|
|
1125
|
-
|
|
1126
|
-
|
|
1183
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1184
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1127
1185
|
};
|
|
1128
|
-
imports.wbg.
|
|
1129
|
-
const ret = arg0.
|
|
1186
|
+
imports.wbg.__wbg_beginComputePass_df50d9ddd5f32a63 = function(arg0, arg1) {
|
|
1187
|
+
const ret = arg0.beginComputePass(arg1);
|
|
1130
1188
|
return ret;
|
|
1131
1189
|
};
|
|
1132
|
-
imports.wbg.
|
|
1133
|
-
const ret = arg0.
|
|
1190
|
+
imports.wbg.__wbg_beginRenderPass_14284a54cee2063b = function(arg0, arg1) {
|
|
1191
|
+
const ret = arg0.beginRenderPass(arg1);
|
|
1134
1192
|
return ret;
|
|
1135
1193
|
};
|
|
1136
|
-
imports.wbg.
|
|
1137
|
-
arg0.
|
|
1138
|
-
};
|
|
1139
|
-
imports.wbg.__wbg_setBindGroup_f70bb0d0a5ace56d = function(arg0, arg1, arg2, arg3, arg4, arg5, arg6) {
|
|
1140
|
-
arg0.setBindGroup(arg1 >>> 0, arg2, getArrayU32FromWasm0(arg3, arg4), arg5, arg6 >>> 0);
|
|
1194
|
+
imports.wbg.__wbg_clearBuffer_a5ccb106665ad51e = function(arg0, arg1, arg2) {
|
|
1195
|
+
arg0.clearBuffer(arg1, arg2);
|
|
1141
1196
|
};
|
|
1142
|
-
imports.wbg.
|
|
1143
|
-
arg0.
|
|
1197
|
+
imports.wbg.__wbg_clearBuffer_f06a69a0aa134d24 = function(arg0, arg1, arg2, arg3) {
|
|
1198
|
+
arg0.clearBuffer(arg1, arg2, arg3);
|
|
1144
1199
|
};
|
|
1145
|
-
imports.wbg.
|
|
1146
|
-
arg0.
|
|
1200
|
+
imports.wbg.__wbg_copyBufferToBuffer_f0736fef84f76be5 = function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
1201
|
+
arg0.copyBufferToBuffer(arg1, arg2, arg3, arg4, arg5);
|
|
1147
1202
|
};
|
|
1148
|
-
imports.wbg.
|
|
1149
|
-
arg0.
|
|
1203
|
+
imports.wbg.__wbg_copyBufferToTexture_aedde01ad3786b4f = function(arg0, arg1, arg2, arg3) {
|
|
1204
|
+
arg0.copyBufferToTexture(arg1, arg2, arg3);
|
|
1150
1205
|
};
|
|
1151
|
-
imports.wbg.
|
|
1152
|
-
arg0.
|
|
1206
|
+
imports.wbg.__wbg_copyTextureToBuffer_268207d3e09dfa81 = function(arg0, arg1, arg2, arg3) {
|
|
1207
|
+
arg0.copyTextureToBuffer(arg1, arg2, arg3);
|
|
1153
1208
|
};
|
|
1154
|
-
imports.wbg.
|
|
1155
|
-
arg0.
|
|
1209
|
+
imports.wbg.__wbg_copyTextureToTexture_7ea3d6de0a82ce7f = function(arg0, arg1, arg2, arg3) {
|
|
1210
|
+
arg0.copyTextureToTexture(arg1, arg2, arg3);
|
|
1156
1211
|
};
|
|
1157
|
-
imports.wbg.
|
|
1158
|
-
arg0.
|
|
1212
|
+
imports.wbg.__wbg_finish_7ad9d3e23124bbc6 = function(arg0) {
|
|
1213
|
+
const ret = arg0.finish();
|
|
1214
|
+
return ret;
|
|
1159
1215
|
};
|
|
1160
|
-
imports.wbg.
|
|
1161
|
-
arg0.
|
|
1216
|
+
imports.wbg.__wbg_finish_78696a2f194fbb7a = function(arg0, arg1) {
|
|
1217
|
+
const ret = arg0.finish(arg1);
|
|
1218
|
+
return ret;
|
|
1162
1219
|
};
|
|
1163
|
-
imports.wbg.
|
|
1164
|
-
arg0.
|
|
1220
|
+
imports.wbg.__wbg_resolveQuerySet_7354946ea63dacbb = function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
1221
|
+
arg0.resolveQuerySet(arg1, arg2 >>> 0, arg3 >>> 0, arg4, arg5 >>> 0);
|
|
1165
1222
|
};
|
|
1166
|
-
imports.wbg.
|
|
1167
|
-
arg0.
|
|
1223
|
+
imports.wbg.__wbg_has_14b751afdcf0a341 = function(arg0, arg1, arg2) {
|
|
1224
|
+
const ret = arg0.has(getStringFromWasm0(arg1, arg2));
|
|
1225
|
+
return ret;
|
|
1168
1226
|
};
|
|
1169
|
-
imports.wbg.
|
|
1170
|
-
const ret = arg0.
|
|
1227
|
+
imports.wbg.__wbg_maxTextureDimension1D_71c238385d79f287 = function(arg0) {
|
|
1228
|
+
const ret = arg0.maxTextureDimension1D;
|
|
1171
1229
|
return ret;
|
|
1172
1230
|
};
|
|
1173
|
-
imports.wbg.
|
|
1174
|
-
const ret = arg0.
|
|
1231
|
+
imports.wbg.__wbg_maxTextureDimension2D_ce910a0ea6c7213b = function(arg0) {
|
|
1232
|
+
const ret = arg0.maxTextureDimension2D;
|
|
1175
1233
|
return ret;
|
|
1176
1234
|
};
|
|
1177
|
-
imports.wbg.
|
|
1178
|
-
const ret = arg0.
|
|
1235
|
+
imports.wbg.__wbg_maxTextureDimension3D_76032d2a97af63ac = function(arg0) {
|
|
1236
|
+
const ret = arg0.maxTextureDimension3D;
|
|
1179
1237
|
return ret;
|
|
1180
1238
|
};
|
|
1181
|
-
imports.wbg.
|
|
1182
|
-
const ret = arg0.
|
|
1239
|
+
imports.wbg.__wbg_maxTextureArrayLayers_b561668f7e1ebacc = function(arg0) {
|
|
1240
|
+
const ret = arg0.maxTextureArrayLayers;
|
|
1183
1241
|
return ret;
|
|
1184
1242
|
};
|
|
1185
|
-
imports.wbg.
|
|
1186
|
-
|
|
1187
|
-
try {
|
|
1188
|
-
result = arg0 instanceof GPUCanvasContext;
|
|
1189
|
-
} catch (_) {
|
|
1190
|
-
result = false;
|
|
1191
|
-
}
|
|
1192
|
-
const ret = result;
|
|
1243
|
+
imports.wbg.__wbg_maxBindGroups_d2b688642140a1bb = function(arg0) {
|
|
1244
|
+
const ret = arg0.maxBindGroups;
|
|
1193
1245
|
return ret;
|
|
1194
1246
|
};
|
|
1195
|
-
imports.wbg.
|
|
1196
|
-
const ret = arg0.
|
|
1247
|
+
imports.wbg.__wbg_maxBindingsPerBindGroup_a3e9e404dd893c83 = function(arg0) {
|
|
1248
|
+
const ret = arg0.maxBindingsPerBindGroup;
|
|
1197
1249
|
return ret;
|
|
1198
1250
|
};
|
|
1199
|
-
imports.wbg.
|
|
1200
|
-
const ret = arg0.
|
|
1251
|
+
imports.wbg.__wbg_maxDynamicUniformBuffersPerPipelineLayout_98a8fbca367148bf = function(arg0) {
|
|
1252
|
+
const ret = arg0.maxDynamicUniformBuffersPerPipelineLayout;
|
|
1201
1253
|
return ret;
|
|
1202
1254
|
};
|
|
1203
|
-
imports.wbg.
|
|
1204
|
-
const ret = arg0.
|
|
1255
|
+
imports.wbg.__wbg_maxDynamicStorageBuffersPerPipelineLayout_0dec6aea74b472ad = function(arg0) {
|
|
1256
|
+
const ret = arg0.maxDynamicStorageBuffersPerPipelineLayout;
|
|
1205
1257
|
return ret;
|
|
1206
1258
|
};
|
|
1207
|
-
imports.wbg.
|
|
1208
|
-
const ret = arg0.
|
|
1259
|
+
imports.wbg.__wbg_maxSampledTexturesPerShaderStage_7a0712465c0a12b4 = function(arg0) {
|
|
1260
|
+
const ret = arg0.maxSampledTexturesPerShaderStage;
|
|
1209
1261
|
return ret;
|
|
1210
1262
|
};
|
|
1211
|
-
imports.wbg.
|
|
1212
|
-
const ret = arg0.
|
|
1263
|
+
imports.wbg.__wbg_maxSamplersPerShaderStage_6716e9792fc2a833 = function(arg0) {
|
|
1264
|
+
const ret = arg0.maxSamplersPerShaderStage;
|
|
1213
1265
|
return ret;
|
|
1214
1266
|
};
|
|
1215
|
-
imports.wbg.
|
|
1216
|
-
arg0.
|
|
1267
|
+
imports.wbg.__wbg_maxStorageBuffersPerShaderStage_640d34738978a4ff = function(arg0) {
|
|
1268
|
+
const ret = arg0.maxStorageBuffersPerShaderStage;
|
|
1269
|
+
return ret;
|
|
1217
1270
|
};
|
|
1218
|
-
imports.wbg.
|
|
1219
|
-
const ret = arg0.
|
|
1271
|
+
imports.wbg.__wbg_maxStorageTexturesPerShaderStage_6614a1e40f7e2827 = function(arg0) {
|
|
1272
|
+
const ret = arg0.maxStorageTexturesPerShaderStage;
|
|
1220
1273
|
return ret;
|
|
1221
1274
|
};
|
|
1222
|
-
imports.wbg.
|
|
1223
|
-
const ret = arg0.
|
|
1275
|
+
imports.wbg.__wbg_maxUniformBuffersPerShaderStage_1ff2f3c6468374ae = function(arg0) {
|
|
1276
|
+
const ret = arg0.maxUniformBuffersPerShaderStage;
|
|
1224
1277
|
return ret;
|
|
1225
1278
|
};
|
|
1226
|
-
imports.wbg.
|
|
1227
|
-
const ret = arg0.
|
|
1279
|
+
imports.wbg.__wbg_maxUniformBufferBindingSize_8830a8df4f730637 = function(arg0) {
|
|
1280
|
+
const ret = arg0.maxUniformBufferBindingSize;
|
|
1228
1281
|
return ret;
|
|
1229
1282
|
};
|
|
1230
|
-
imports.wbg.
|
|
1231
|
-
const ret = arg0.
|
|
1283
|
+
imports.wbg.__wbg_maxStorageBufferBindingSize_10b6eb49372335bc = function(arg0) {
|
|
1284
|
+
const ret = arg0.maxStorageBufferBindingSize;
|
|
1232
1285
|
return ret;
|
|
1233
1286
|
};
|
|
1234
|
-
imports.wbg.
|
|
1235
|
-
const ret = arg0.
|
|
1287
|
+
imports.wbg.__wbg_maxVertexBuffers_9f97f2a89863a431 = function(arg0) {
|
|
1288
|
+
const ret = arg0.maxVertexBuffers;
|
|
1236
1289
|
return ret;
|
|
1237
1290
|
};
|
|
1238
|
-
imports.wbg.
|
|
1239
|
-
const ret = arg0.
|
|
1291
|
+
imports.wbg.__wbg_maxBufferSize_1c8b836056558ebf = function(arg0) {
|
|
1292
|
+
const ret = arg0.maxBufferSize;
|
|
1240
1293
|
return ret;
|
|
1241
1294
|
};
|
|
1242
|
-
imports.wbg.
|
|
1243
|
-
const ret = arg0.
|
|
1295
|
+
imports.wbg.__wbg_maxVertexAttributes_cff466bbace9aa7c = function(arg0) {
|
|
1296
|
+
const ret = arg0.maxVertexAttributes;
|
|
1244
1297
|
return ret;
|
|
1245
1298
|
};
|
|
1246
|
-
imports.wbg.
|
|
1247
|
-
const ret = arg0.
|
|
1299
|
+
imports.wbg.__wbg_maxVertexBufferArrayStride_fb650714a5bd0e68 = function(arg0) {
|
|
1300
|
+
const ret = arg0.maxVertexBufferArrayStride;
|
|
1248
1301
|
return ret;
|
|
1249
1302
|
};
|
|
1250
|
-
imports.wbg.
|
|
1251
|
-
const ret = arg0.
|
|
1303
|
+
imports.wbg.__wbg_minUniformBufferOffsetAlignment_0168a0d08b19afbe = function(arg0) {
|
|
1304
|
+
const ret = arg0.minUniformBufferOffsetAlignment;
|
|
1252
1305
|
return ret;
|
|
1253
1306
|
};
|
|
1254
|
-
imports.wbg.
|
|
1255
|
-
const ret = arg0.
|
|
1307
|
+
imports.wbg.__wbg_minStorageBufferOffsetAlignment_3b63a59f37f275f8 = function(arg0) {
|
|
1308
|
+
const ret = arg0.minStorageBufferOffsetAlignment;
|
|
1256
1309
|
return ret;
|
|
1257
1310
|
};
|
|
1258
|
-
imports.wbg.
|
|
1259
|
-
const ret = arg0.
|
|
1311
|
+
imports.wbg.__wbg_maxInterStageShaderComponents_db659eaa3b248a74 = function(arg0) {
|
|
1312
|
+
const ret = arg0.maxInterStageShaderComponents;
|
|
1260
1313
|
return ret;
|
|
1261
1314
|
};
|
|
1262
|
-
imports.wbg.
|
|
1263
|
-
const ret = arg0.
|
|
1315
|
+
imports.wbg.__wbg_maxColorAttachments_e821b856b5cba24e = function(arg0) {
|
|
1316
|
+
const ret = arg0.maxColorAttachments;
|
|
1264
1317
|
return ret;
|
|
1265
1318
|
};
|
|
1266
|
-
imports.wbg.
|
|
1267
|
-
const ret = arg0.
|
|
1319
|
+
imports.wbg.__wbg_maxColorAttachmentBytesPerSample_ab770042dd82a5bf = function(arg0) {
|
|
1320
|
+
const ret = arg0.maxColorAttachmentBytesPerSample;
|
|
1268
1321
|
return ret;
|
|
1269
1322
|
};
|
|
1270
|
-
imports.wbg.
|
|
1271
|
-
const ret = arg0.
|
|
1323
|
+
imports.wbg.__wbg_maxComputeWorkgroupStorageSize_e6773eb1cbfa7a83 = function(arg0) {
|
|
1324
|
+
const ret = arg0.maxComputeWorkgroupStorageSize;
|
|
1272
1325
|
return ret;
|
|
1273
1326
|
};
|
|
1274
|
-
imports.wbg.
|
|
1275
|
-
const ret = arg0.
|
|
1327
|
+
imports.wbg.__wbg_maxComputeInvocationsPerWorkgroup_4ed447998b195973 = function(arg0) {
|
|
1328
|
+
const ret = arg0.maxComputeInvocationsPerWorkgroup;
|
|
1276
1329
|
return ret;
|
|
1277
1330
|
};
|
|
1278
|
-
imports.wbg.
|
|
1279
|
-
arg0.
|
|
1331
|
+
imports.wbg.__wbg_maxComputeWorkgroupSizeX_de94f4925b26c73c = function(arg0) {
|
|
1332
|
+
const ret = arg0.maxComputeWorkgroupSizeX;
|
|
1333
|
+
return ret;
|
|
1280
1334
|
};
|
|
1281
|
-
imports.wbg.
|
|
1282
|
-
const ret = arg0.
|
|
1335
|
+
imports.wbg.__wbg_maxComputeWorkgroupSizeY_cb75de6b450c8915 = function(arg0) {
|
|
1336
|
+
const ret = arg0.maxComputeWorkgroupSizeY;
|
|
1283
1337
|
return ret;
|
|
1284
1338
|
};
|
|
1285
|
-
imports.wbg.
|
|
1286
|
-
|
|
1339
|
+
imports.wbg.__wbg_maxComputeWorkgroupSizeZ_6277d18773d70891 = function(arg0) {
|
|
1340
|
+
const ret = arg0.maxComputeWorkgroupSizeZ;
|
|
1341
|
+
return ret;
|
|
1287
1342
|
};
|
|
1288
|
-
imports.wbg.
|
|
1289
|
-
arg0.
|
|
1343
|
+
imports.wbg.__wbg_maxComputeWorkgroupsPerDimension_baef21641827881d = function(arg0) {
|
|
1344
|
+
const ret = arg0.maxComputeWorkgroupsPerDimension;
|
|
1345
|
+
return ret;
|
|
1290
1346
|
};
|
|
1291
|
-
imports.wbg.
|
|
1292
|
-
const ret = arg0.
|
|
1347
|
+
imports.wbg.__wbg_Window_4d1f8d969d639a22 = function(arg0) {
|
|
1348
|
+
const ret = arg0.Window;
|
|
1293
1349
|
return ret;
|
|
1294
1350
|
};
|
|
1295
|
-
imports.wbg.
|
|
1296
|
-
const ret = arg0.
|
|
1351
|
+
imports.wbg.__wbg_WorkerGlobalScope_c4f12290f7d2efed = function(arg0) {
|
|
1352
|
+
const ret = arg0.WorkerGlobalScope;
|
|
1297
1353
|
return ret;
|
|
1298
1354
|
};
|
|
1299
|
-
imports.wbg.
|
|
1300
|
-
arg0.
|
|
1355
|
+
imports.wbg.__wbg_setPipeline_8f2f5c316ddb7f68 = function(arg0, arg1) {
|
|
1356
|
+
arg0.setPipeline(arg1);
|
|
1301
1357
|
};
|
|
1302
|
-
imports.wbg.
|
|
1303
|
-
arg0.
|
|
1358
|
+
imports.wbg.__wbg_setBindGroup_da48569994113ec3 = function(arg0, arg1, arg2) {
|
|
1359
|
+
arg0.setBindGroup(arg1 >>> 0, arg2);
|
|
1304
1360
|
};
|
|
1305
|
-
imports.wbg.
|
|
1306
|
-
arg0.
|
|
1361
|
+
imports.wbg.__wbg_setBindGroup_1c3dd07b998fa943 = function(arg0, arg1, arg2, arg3, arg4, arg5, arg6) {
|
|
1362
|
+
arg0.setBindGroup(arg1 >>> 0, arg2, getArrayU32FromWasm0(arg3, arg4), arg5, arg6 >>> 0);
|
|
1307
1363
|
};
|
|
1308
|
-
imports.wbg.
|
|
1309
|
-
arg0.
|
|
1364
|
+
imports.wbg.__wbg_setIndexBuffer_1dc175abfd5d9be9 = function(arg0, arg1, arg2, arg3) {
|
|
1365
|
+
arg0.setIndexBuffer(arg1, ["uint16","uint32",][arg2], arg3);
|
|
1310
1366
|
};
|
|
1311
|
-
imports.wbg.
|
|
1312
|
-
|
|
1313
|
-
return ret;
|
|
1367
|
+
imports.wbg.__wbg_setIndexBuffer_a0fcb26f210351b7 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
1368
|
+
arg0.setIndexBuffer(arg1, ["uint16","uint32",][arg2], arg3, arg4);
|
|
1314
1369
|
};
|
|
1315
|
-
imports.wbg.
|
|
1316
|
-
|
|
1317
|
-
return ret;
|
|
1370
|
+
imports.wbg.__wbg_setVertexBuffer_c347f9618d3f056a = function(arg0, arg1, arg2, arg3) {
|
|
1371
|
+
arg0.setVertexBuffer(arg1 >>> 0, arg2, arg3);
|
|
1318
1372
|
};
|
|
1319
|
-
imports.wbg.
|
|
1320
|
-
|
|
1321
|
-
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1322
|
-
const len1 = WASM_VECTOR_LEN;
|
|
1323
|
-
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
1324
|
-
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
1373
|
+
imports.wbg.__wbg_setVertexBuffer_40da6368898587db = function(arg0, arg1, arg2, arg3, arg4) {
|
|
1374
|
+
arg0.setVertexBuffer(arg1 >>> 0, arg2, arg3, arg4);
|
|
1325
1375
|
};
|
|
1326
|
-
imports.wbg.
|
|
1327
|
-
|
|
1328
|
-
return ret;
|
|
1376
|
+
imports.wbg.__wbg_draw_a3e2be7a25d4af68 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
1377
|
+
arg0.draw(arg1 >>> 0, arg2 >>> 0, arg3 >>> 0, arg4 >>> 0);
|
|
1329
1378
|
};
|
|
1330
|
-
imports.wbg.
|
|
1331
|
-
|
|
1332
|
-
return ret;
|
|
1379
|
+
imports.wbg.__wbg_drawIndexed_f219cccc74b869c5 = function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
1380
|
+
arg0.drawIndexed(arg1 >>> 0, arg2 >>> 0, arg3 >>> 0, arg4, arg5 >>> 0);
|
|
1333
1381
|
};
|
|
1334
|
-
imports.wbg.
|
|
1335
|
-
arg0.
|
|
1382
|
+
imports.wbg.__wbg_drawIndirect_23fc0a72c5f1b993 = function(arg0, arg1, arg2) {
|
|
1383
|
+
arg0.drawIndirect(arg1, arg2);
|
|
1336
1384
|
};
|
|
1337
|
-
imports.wbg.
|
|
1338
|
-
arg0.
|
|
1385
|
+
imports.wbg.__wbg_drawIndexedIndirect_6839c0505e2eed2e = function(arg0, arg1, arg2) {
|
|
1386
|
+
arg0.drawIndexedIndirect(arg1, arg2);
|
|
1339
1387
|
};
|
|
1340
|
-
imports.wbg.
|
|
1341
|
-
arg0.
|
|
1388
|
+
imports.wbg.__wbg_setBlendConstant_fd172910ef2cc0c8 = function(arg0, arg1) {
|
|
1389
|
+
arg0.setBlendConstant(arg1);
|
|
1342
1390
|
};
|
|
1343
|
-
imports.wbg.
|
|
1344
|
-
arg0.
|
|
1391
|
+
imports.wbg.__wbg_setScissorRect_915b4534e3936f28 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
1392
|
+
arg0.setScissorRect(arg1 >>> 0, arg2 >>> 0, arg3 >>> 0, arg4 >>> 0);
|
|
1345
1393
|
};
|
|
1346
|
-
imports.wbg.
|
|
1347
|
-
arg0.
|
|
1394
|
+
imports.wbg.__wbg_setViewport_aff318ede051c64e = function(arg0, arg1, arg2, arg3, arg4, arg5, arg6) {
|
|
1395
|
+
arg0.setViewport(arg1, arg2, arg3, arg4, arg5, arg6);
|
|
1348
1396
|
};
|
|
1349
|
-
imports.wbg.
|
|
1350
|
-
arg0.
|
|
1397
|
+
imports.wbg.__wbg_setStencilReference_e2bb05496423e92e = function(arg0, arg1) {
|
|
1398
|
+
arg0.setStencilReference(arg1 >>> 0);
|
|
1351
1399
|
};
|
|
1352
|
-
imports.wbg.
|
|
1353
|
-
arg0.
|
|
1400
|
+
imports.wbg.__wbg_executeBundles_0f6b9b3accb5b6a7 = function(arg0, arg1) {
|
|
1401
|
+
arg0.executeBundles(arg1);
|
|
1402
|
+
};
|
|
1403
|
+
imports.wbg.__wbg_end_c97b7dbccda72e72 = function(arg0) {
|
|
1404
|
+
arg0.end();
|
|
1354
1405
|
};
|
|
1355
|
-
imports.wbg.__wbg_getReader_ab94afcb5cb7689a = function() { return handleError(function (arg0) {
|
|
1356
|
-
const ret = arg0.getReader();
|
|
1357
|
-
return ret;
|
|
1358
|
-
}, arguments) };
|
|
1359
1406
|
imports.wbg.__wbg_done_2ffa852272310e47 = function(arg0) {
|
|
1360
1407
|
const ret = arg0.done;
|
|
1361
1408
|
return ret;
|
|
@@ -1364,619 +1411,630 @@ function __wbg_get_imports() {
|
|
|
1364
1411
|
const ret = arg0.value;
|
|
1365
1412
|
return ret;
|
|
1366
1413
|
};
|
|
1414
|
+
imports.wbg.__wbg_getReader_ab94afcb5cb7689a = function() { return handleError(function (arg0) {
|
|
1415
|
+
const ret = arg0.getReader();
|
|
1416
|
+
return ret;
|
|
1417
|
+
}, arguments) };
|
|
1367
1418
|
imports.wbg.__wbg_queueMicrotask_481971b0d87f3dd4 = typeof queueMicrotask == 'function' ? queueMicrotask : notDefined('queueMicrotask');
|
|
1368
1419
|
imports.wbg.__wbg_queueMicrotask_3cbae2ec6b6cd3d6 = function(arg0) {
|
|
1369
1420
|
const ret = arg0.queueMicrotask;
|
|
1370
1421
|
return ret;
|
|
1371
1422
|
};
|
|
1372
|
-
imports.wbg.
|
|
1423
|
+
imports.wbg.__wbg_instanceof_WebGl2RenderingContext_62ccef896d9204fa = function(arg0) {
|
|
1373
1424
|
let result;
|
|
1374
1425
|
try {
|
|
1375
|
-
result = arg0 instanceof
|
|
1426
|
+
result = arg0 instanceof WebGL2RenderingContext;
|
|
1376
1427
|
} catch (_) {
|
|
1377
1428
|
result = false;
|
|
1378
1429
|
}
|
|
1379
1430
|
const ret = result;
|
|
1380
1431
|
return ret;
|
|
1381
1432
|
};
|
|
1382
|
-
imports.wbg.
|
|
1383
|
-
|
|
1384
|
-
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1433
|
+
imports.wbg.__wbg_beginQuery_2babccfce9472da4 = function(arg0, arg1, arg2) {
|
|
1434
|
+
arg0.beginQuery(arg1 >>> 0, arg2);
|
|
1385
1435
|
};
|
|
1386
|
-
imports.wbg.
|
|
1387
|
-
|
|
1388
|
-
return ret;
|
|
1436
|
+
imports.wbg.__wbg_bindBufferRange_ec55dd1088960c35 = function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
1437
|
+
arg0.bindBufferRange(arg1 >>> 0, arg2 >>> 0, arg3, arg4, arg5);
|
|
1389
1438
|
};
|
|
1390
|
-
imports.wbg.
|
|
1391
|
-
|
|
1392
|
-
return ret;
|
|
1393
|
-
}, arguments) };
|
|
1394
|
-
imports.wbg.__wbg_navigator_6c8fa55c5cc8796e = function(arg0) {
|
|
1395
|
-
const ret = arg0.navigator;
|
|
1396
|
-
return ret;
|
|
1439
|
+
imports.wbg.__wbg_bindSampler_f251f0dde3843dc4 = function(arg0, arg1, arg2) {
|
|
1440
|
+
arg0.bindSampler(arg1 >>> 0, arg2);
|
|
1397
1441
|
};
|
|
1398
|
-
imports.wbg.
|
|
1399
|
-
|
|
1400
|
-
return ret;
|
|
1442
|
+
imports.wbg.__wbg_bindVertexArray_bec56c40e9ec299d = function(arg0, arg1) {
|
|
1443
|
+
arg0.bindVertexArray(arg1);
|
|
1401
1444
|
};
|
|
1402
|
-
imports.wbg.
|
|
1403
|
-
|
|
1404
|
-
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1405
|
-
}, arguments) };
|
|
1406
|
-
imports.wbg.__wbg_performance_3298a9628a5c8aa4 = function(arg0) {
|
|
1407
|
-
const ret = arg0.performance;
|
|
1408
|
-
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1445
|
+
imports.wbg.__wbg_blitFramebuffer_cb1261c0e925d363 = function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) {
|
|
1446
|
+
arg0.blitFramebuffer(arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9 >>> 0, arg10 >>> 0);
|
|
1409
1447
|
};
|
|
1410
|
-
imports.wbg.
|
|
1411
|
-
|
|
1412
|
-
return ret;
|
|
1448
|
+
imports.wbg.__wbg_bufferData_f552c26392b9837d = function(arg0, arg1, arg2, arg3) {
|
|
1449
|
+
arg0.bufferData(arg1 >>> 0, arg2, arg3 >>> 0);
|
|
1413
1450
|
};
|
|
1414
|
-
imports.wbg.
|
|
1415
|
-
|
|
1416
|
-
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1417
|
-
}, arguments) };
|
|
1418
|
-
imports.wbg.__wbg_matchMedia_66bb21e3ef19270c = function() { return handleError(function (arg0, arg1, arg2) {
|
|
1419
|
-
const ret = arg0.matchMedia(getStringFromWasm0(arg1, arg2));
|
|
1420
|
-
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1421
|
-
}, arguments) };
|
|
1422
|
-
imports.wbg.__wbg_open_cc82b8aaf0c296c1 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
1423
|
-
const ret = arg0.open(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
1424
|
-
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1425
|
-
}, arguments) };
|
|
1426
|
-
imports.wbg.__wbg_cancelAnimationFrame_111532f326e480af = function() { return handleError(function (arg0, arg1) {
|
|
1427
|
-
arg0.cancelAnimationFrame(arg1);
|
|
1428
|
-
}, arguments) };
|
|
1429
|
-
imports.wbg.__wbg_requestAnimationFrame_549258cfa66011f0 = function() { return handleError(function (arg0, arg1) {
|
|
1430
|
-
const ret = arg0.requestAnimationFrame(arg1);
|
|
1431
|
-
return ret;
|
|
1432
|
-
}, arguments) };
|
|
1433
|
-
imports.wbg.__wbg_clearInterval_4368213fd2b325b0 = function(arg0, arg1) {
|
|
1434
|
-
arg0.clearInterval(arg1);
|
|
1451
|
+
imports.wbg.__wbg_bufferData_94ce174a81b32961 = function(arg0, arg1, arg2, arg3) {
|
|
1452
|
+
arg0.bufferData(arg1 >>> 0, arg2, arg3 >>> 0);
|
|
1435
1453
|
};
|
|
1436
|
-
imports.wbg.
|
|
1437
|
-
|
|
1438
|
-
return ret;
|
|
1454
|
+
imports.wbg.__wbg_bufferSubData_897bff8bd23ca0b4 = function(arg0, arg1, arg2, arg3) {
|
|
1455
|
+
arg0.bufferSubData(arg1 >>> 0, arg2, arg3);
|
|
1439
1456
|
};
|
|
1440
|
-
imports.wbg.
|
|
1441
|
-
|
|
1442
|
-
return ret;
|
|
1443
|
-
}, arguments) };
|
|
1444
|
-
imports.wbg.__wbg_instanceof_WebGl2RenderingContext_6b8f92d566ced9e1 = function(arg0) {
|
|
1445
|
-
let result;
|
|
1446
|
-
try {
|
|
1447
|
-
result = arg0 instanceof WebGL2RenderingContext;
|
|
1448
|
-
} catch (_) {
|
|
1449
|
-
result = false;
|
|
1450
|
-
}
|
|
1451
|
-
const ret = result;
|
|
1452
|
-
return ret;
|
|
1453
|
-
};
|
|
1454
|
-
imports.wbg.__wbg_beginQuery_3d6bb95151ccc499 = function(arg0, arg1, arg2) {
|
|
1455
|
-
arg0.beginQuery(arg1 >>> 0, arg2);
|
|
1456
|
-
};
|
|
1457
|
-
imports.wbg.__wbg_bindBufferRange_e7b7d4cd65a6f94d = function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
1458
|
-
arg0.bindBufferRange(arg1 >>> 0, arg2 >>> 0, arg3, arg4, arg5);
|
|
1459
|
-
};
|
|
1460
|
-
imports.wbg.__wbg_bindSampler_065f0bdf49888ff1 = function(arg0, arg1, arg2) {
|
|
1461
|
-
arg0.bindSampler(arg1 >>> 0, arg2);
|
|
1462
|
-
};
|
|
1463
|
-
imports.wbg.__wbg_bindVertexArray_239574d42dbbd203 = function(arg0, arg1) {
|
|
1464
|
-
arg0.bindVertexArray(arg1);
|
|
1465
|
-
};
|
|
1466
|
-
imports.wbg.__wbg_blitFramebuffer_4d77c70dcb183e0c = function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) {
|
|
1467
|
-
arg0.blitFramebuffer(arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9 >>> 0, arg10 >>> 0);
|
|
1468
|
-
};
|
|
1469
|
-
imports.wbg.__wbg_bufferData_194f0914aaada840 = function(arg0, arg1, arg2, arg3) {
|
|
1470
|
-
arg0.bufferData(arg1 >>> 0, arg2, arg3 >>> 0);
|
|
1471
|
-
};
|
|
1472
|
-
imports.wbg.__wbg_bufferData_c787516945ba48c2 = function(arg0, arg1, arg2, arg3) {
|
|
1473
|
-
arg0.bufferData(arg1 >>> 0, arg2, arg3 >>> 0);
|
|
1474
|
-
};
|
|
1475
|
-
imports.wbg.__wbg_bufferSubData_7f5ddd4fdc628963 = function(arg0, arg1, arg2, arg3) {
|
|
1476
|
-
arg0.bufferSubData(arg1 >>> 0, arg2, arg3);
|
|
1457
|
+
imports.wbg.__wbg_clearBufferfv_bd093a58afda7a8b = function(arg0, arg1, arg2, arg3, arg4) {
|
|
1458
|
+
arg0.clearBufferfv(arg1 >>> 0, arg2, getArrayF32FromWasm0(arg3, arg4));
|
|
1477
1459
|
};
|
|
1478
|
-
imports.wbg.
|
|
1460
|
+
imports.wbg.__wbg_clearBufferiv_18ffec9d148aaf4b = function(arg0, arg1, arg2, arg3, arg4) {
|
|
1479
1461
|
arg0.clearBufferiv(arg1 >>> 0, arg2, getArrayI32FromWasm0(arg3, arg4));
|
|
1480
1462
|
};
|
|
1481
|
-
imports.wbg.
|
|
1463
|
+
imports.wbg.__wbg_clearBufferuiv_8575fe1b1af9dd15 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
1482
1464
|
arg0.clearBufferuiv(arg1 >>> 0, arg2, getArrayU32FromWasm0(arg3, arg4));
|
|
1483
1465
|
};
|
|
1484
|
-
imports.wbg.
|
|
1466
|
+
imports.wbg.__wbg_clientWaitSync_8d3b836729fa705f = function(arg0, arg1, arg2, arg3) {
|
|
1485
1467
|
const ret = arg0.clientWaitSync(arg1, arg2 >>> 0, arg3 >>> 0);
|
|
1486
1468
|
return ret;
|
|
1487
1469
|
};
|
|
1488
|
-
imports.wbg.
|
|
1470
|
+
imports.wbg.__wbg_compressedTexSubImage2D_d2201c663eb7e7c0 = function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
|
|
1489
1471
|
arg0.compressedTexSubImage2D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7 >>> 0, arg8, arg9);
|
|
1490
1472
|
};
|
|
1491
|
-
imports.wbg.
|
|
1473
|
+
imports.wbg.__wbg_compressedTexSubImage2D_088b90b29f544ebc = function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
|
|
1492
1474
|
arg0.compressedTexSubImage2D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7 >>> 0, arg8);
|
|
1493
1475
|
};
|
|
1494
|
-
imports.wbg.
|
|
1476
|
+
imports.wbg.__wbg_compressedTexSubImage3D_8d64b364b8ed6808 = function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
|
|
1495
1477
|
arg0.compressedTexSubImage3D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9 >>> 0, arg10, arg11);
|
|
1496
1478
|
};
|
|
1497
|
-
imports.wbg.
|
|
1479
|
+
imports.wbg.__wbg_compressedTexSubImage3D_d2b94340686bbb79 = function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) {
|
|
1498
1480
|
arg0.compressedTexSubImage3D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9 >>> 0, arg10);
|
|
1499
1481
|
};
|
|
1500
|
-
imports.wbg.
|
|
1482
|
+
imports.wbg.__wbg_copyBufferSubData_026e82b392fb8df2 = function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
1501
1483
|
arg0.copyBufferSubData(arg1 >>> 0, arg2 >>> 0, arg3, arg4, arg5);
|
|
1502
1484
|
};
|
|
1503
|
-
imports.wbg.
|
|
1485
|
+
imports.wbg.__wbg_copyTexSubImage3D_f2471ef3614db8d4 = function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
|
|
1504
1486
|
arg0.copyTexSubImage3D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9);
|
|
1505
1487
|
};
|
|
1506
|
-
imports.wbg.
|
|
1488
|
+
imports.wbg.__wbg_createQuery_88b1a8cbfaeadcd4 = function(arg0) {
|
|
1507
1489
|
const ret = arg0.createQuery();
|
|
1508
1490
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1509
1491
|
};
|
|
1510
|
-
imports.wbg.
|
|
1492
|
+
imports.wbg.__wbg_createSampler_ece1b922a455bd52 = function(arg0) {
|
|
1511
1493
|
const ret = arg0.createSampler();
|
|
1512
1494
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1513
1495
|
};
|
|
1514
|
-
imports.wbg.
|
|
1496
|
+
imports.wbg.__wbg_createVertexArray_a3e58c38609ae150 = function(arg0) {
|
|
1515
1497
|
const ret = arg0.createVertexArray();
|
|
1516
1498
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1517
1499
|
};
|
|
1518
|
-
imports.wbg.
|
|
1500
|
+
imports.wbg.__wbg_deleteQuery_deba58de1a061092 = function(arg0, arg1) {
|
|
1519
1501
|
arg0.deleteQuery(arg1);
|
|
1520
1502
|
};
|
|
1521
|
-
imports.wbg.
|
|
1503
|
+
imports.wbg.__wbg_deleteSampler_341b638a62cece3e = function(arg0, arg1) {
|
|
1522
1504
|
arg0.deleteSampler(arg1);
|
|
1523
1505
|
};
|
|
1524
|
-
imports.wbg.
|
|
1506
|
+
imports.wbg.__wbg_deleteSync_ddf848c7dd5cb195 = function(arg0, arg1) {
|
|
1525
1507
|
arg0.deleteSync(arg1);
|
|
1526
1508
|
};
|
|
1527
|
-
imports.wbg.
|
|
1509
|
+
imports.wbg.__wbg_deleteVertexArray_81346dd52e54eb57 = function(arg0, arg1) {
|
|
1528
1510
|
arg0.deleteVertexArray(arg1);
|
|
1529
1511
|
};
|
|
1530
|
-
imports.wbg.
|
|
1512
|
+
imports.wbg.__wbg_drawArraysInstanced_c375d32782ea8d30 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
1531
1513
|
arg0.drawArraysInstanced(arg1 >>> 0, arg2, arg3, arg4);
|
|
1532
1514
|
};
|
|
1533
|
-
imports.wbg.
|
|
1515
|
+
imports.wbg.__wbg_drawBuffers_2744e46ab7e02d91 = function(arg0, arg1) {
|
|
1534
1516
|
arg0.drawBuffers(arg1);
|
|
1535
1517
|
};
|
|
1536
|
-
imports.wbg.
|
|
1518
|
+
imports.wbg.__wbg_drawElementsInstanced_a416af0d12f00837 = function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
1537
1519
|
arg0.drawElementsInstanced(arg1 >>> 0, arg2, arg3 >>> 0, arg4, arg5);
|
|
1538
1520
|
};
|
|
1539
|
-
imports.wbg.
|
|
1521
|
+
imports.wbg.__wbg_endQuery_7e240d815ced0387 = function(arg0, arg1) {
|
|
1540
1522
|
arg0.endQuery(arg1 >>> 0);
|
|
1541
1523
|
};
|
|
1542
|
-
imports.wbg.
|
|
1524
|
+
imports.wbg.__wbg_fenceSync_0a54247555048537 = function(arg0, arg1, arg2) {
|
|
1543
1525
|
const ret = arg0.fenceSync(arg1 >>> 0, arg2 >>> 0);
|
|
1544
1526
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1545
1527
|
};
|
|
1546
|
-
imports.wbg.
|
|
1528
|
+
imports.wbg.__wbg_framebufferTextureLayer_1b5119ac136418d2 = function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
1547
1529
|
arg0.framebufferTextureLayer(arg1 >>> 0, arg2 >>> 0, arg3, arg4, arg5);
|
|
1548
1530
|
};
|
|
1549
|
-
imports.wbg.
|
|
1531
|
+
imports.wbg.__wbg_getBufferSubData_5e2bbbbd18f18d52 = function(arg0, arg1, arg2, arg3) {
|
|
1550
1532
|
arg0.getBufferSubData(arg1 >>> 0, arg2, arg3);
|
|
1551
1533
|
};
|
|
1552
|
-
imports.wbg.
|
|
1534
|
+
imports.wbg.__wbg_getIndexedParameter_edda23e611d65abb = function() { return handleError(function (arg0, arg1, arg2) {
|
|
1553
1535
|
const ret = arg0.getIndexedParameter(arg1 >>> 0, arg2 >>> 0);
|
|
1554
1536
|
return ret;
|
|
1555
1537
|
}, arguments) };
|
|
1556
|
-
imports.wbg.
|
|
1538
|
+
imports.wbg.__wbg_getQueryParameter_ec854b270df79577 = function(arg0, arg1, arg2) {
|
|
1557
1539
|
const ret = arg0.getQueryParameter(arg1, arg2 >>> 0);
|
|
1558
1540
|
return ret;
|
|
1559
1541
|
};
|
|
1560
|
-
imports.wbg.
|
|
1542
|
+
imports.wbg.__wbg_getSyncParameter_cf9ca45e037f34f4 = function(arg0, arg1, arg2) {
|
|
1561
1543
|
const ret = arg0.getSyncParameter(arg1, arg2 >>> 0);
|
|
1562
1544
|
return ret;
|
|
1563
1545
|
};
|
|
1564
|
-
imports.wbg.
|
|
1546
|
+
imports.wbg.__wbg_getUniformBlockIndex_8eef3be68190327f = function(arg0, arg1, arg2, arg3) {
|
|
1565
1547
|
const ret = arg0.getUniformBlockIndex(arg1, getStringFromWasm0(arg2, arg3));
|
|
1566
1548
|
return ret;
|
|
1567
1549
|
};
|
|
1568
|
-
imports.wbg.
|
|
1550
|
+
imports.wbg.__wbg_invalidateFramebuffer_12eca43686968fe1 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
1569
1551
|
arg0.invalidateFramebuffer(arg1 >>> 0, arg2);
|
|
1570
1552
|
}, arguments) };
|
|
1571
|
-
imports.wbg.
|
|
1553
|
+
imports.wbg.__wbg_readBuffer_c6e1ba464c45ded1 = function(arg0, arg1) {
|
|
1572
1554
|
arg0.readBuffer(arg1 >>> 0);
|
|
1573
1555
|
};
|
|
1574
|
-
imports.wbg.
|
|
1556
|
+
imports.wbg.__wbg_readPixels_f589cb77c7641fb2 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
1575
1557
|
arg0.readPixels(arg1, arg2, arg3, arg4, arg5 >>> 0, arg6 >>> 0, arg7);
|
|
1576
1558
|
}, arguments) };
|
|
1577
|
-
imports.wbg.
|
|
1559
|
+
imports.wbg.__wbg_readPixels_74eff76a8a707954 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
1578
1560
|
arg0.readPixels(arg1, arg2, arg3, arg4, arg5 >>> 0, arg6 >>> 0, arg7);
|
|
1579
1561
|
}, arguments) };
|
|
1580
|
-
imports.wbg.
|
|
1562
|
+
imports.wbg.__wbg_renderbufferStorageMultisample_1e0f794803ff8352 = function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
1581
1563
|
arg0.renderbufferStorageMultisample(arg1 >>> 0, arg2, arg3 >>> 0, arg4, arg5);
|
|
1582
1564
|
};
|
|
1583
|
-
imports.wbg.
|
|
1565
|
+
imports.wbg.__wbg_samplerParameterf_f58c4ac221503b11 = function(arg0, arg1, arg2, arg3) {
|
|
1584
1566
|
arg0.samplerParameterf(arg1, arg2 >>> 0, arg3);
|
|
1585
1567
|
};
|
|
1586
|
-
imports.wbg.
|
|
1568
|
+
imports.wbg.__wbg_samplerParameteri_97baec154acb369e = function(arg0, arg1, arg2, arg3) {
|
|
1587
1569
|
arg0.samplerParameteri(arg1, arg2 >>> 0, arg3);
|
|
1588
1570
|
};
|
|
1589
|
-
imports.wbg.
|
|
1571
|
+
imports.wbg.__wbg_texImage2D_75effcb59fe5da7e = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
|
|
1590
1572
|
arg0.texImage2D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7 >>> 0, arg8 >>> 0, arg9);
|
|
1591
1573
|
}, arguments) };
|
|
1592
|
-
imports.wbg.
|
|
1574
|
+
imports.wbg.__wbg_texImage3D_335fce191a5faae5 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) {
|
|
1593
1575
|
arg0.texImage3D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7, arg8 >>> 0, arg9 >>> 0, arg10);
|
|
1594
1576
|
}, arguments) };
|
|
1595
|
-
imports.wbg.
|
|
1577
|
+
imports.wbg.__wbg_texStorage2D_6143bf0d71e869ce = function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
1596
1578
|
arg0.texStorage2D(arg1 >>> 0, arg2, arg3 >>> 0, arg4, arg5);
|
|
1597
1579
|
};
|
|
1598
|
-
imports.wbg.
|
|
1580
|
+
imports.wbg.__wbg_texStorage3D_5d6b3c6bfa977000 = function(arg0, arg1, arg2, arg3, arg4, arg5, arg6) {
|
|
1599
1581
|
arg0.texStorage3D(arg1 >>> 0, arg2, arg3 >>> 0, arg4, arg5, arg6);
|
|
1600
1582
|
};
|
|
1601
|
-
imports.wbg.
|
|
1583
|
+
imports.wbg.__wbg_texSubImage2D_be0166513e368886 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
|
|
1602
1584
|
arg0.texSubImage2D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7 >>> 0, arg8 >>> 0, arg9);
|
|
1603
1585
|
}, arguments) };
|
|
1604
|
-
imports.wbg.
|
|
1586
|
+
imports.wbg.__wbg_texSubImage2D_338d11db84a799ed = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
|
|
1605
1587
|
arg0.texSubImage2D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7 >>> 0, arg8 >>> 0, arg9);
|
|
1606
1588
|
}, arguments) };
|
|
1607
|
-
imports.wbg.
|
|
1589
|
+
imports.wbg.__wbg_texSubImage2D_bdc1e6e8b1feae8f = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
|
|
1608
1590
|
arg0.texSubImage2D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7 >>> 0, arg8 >>> 0, arg9);
|
|
1609
1591
|
}, arguments) };
|
|
1610
|
-
imports.wbg.
|
|
1592
|
+
imports.wbg.__wbg_texSubImage2D_edb828ed3708cfdd = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
|
|
1611
1593
|
arg0.texSubImage2D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7 >>> 0, arg8 >>> 0, arg9);
|
|
1612
1594
|
}, arguments) };
|
|
1613
|
-
imports.wbg.
|
|
1595
|
+
imports.wbg.__wbg_texSubImage2D_fbb08177c318e3f2 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
|
|
1614
1596
|
arg0.texSubImage2D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7 >>> 0, arg8 >>> 0, arg9);
|
|
1615
1597
|
}, arguments) };
|
|
1616
|
-
imports.wbg.
|
|
1598
|
+
imports.wbg.__wbg_texSubImage3D_c571236e8e9908d5 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
|
|
1617
1599
|
arg0.texSubImage3D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9 >>> 0, arg10 >>> 0, arg11);
|
|
1618
1600
|
}, arguments) };
|
|
1619
|
-
imports.wbg.
|
|
1601
|
+
imports.wbg.__wbg_texSubImage3D_d86e30d5f4ebc0e0 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
|
|
1620
1602
|
arg0.texSubImage3D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9 >>> 0, arg10 >>> 0, arg11);
|
|
1621
1603
|
}, arguments) };
|
|
1622
|
-
imports.wbg.
|
|
1604
|
+
imports.wbg.__wbg_texSubImage3D_b3526f28e3c2031e = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
|
|
1623
1605
|
arg0.texSubImage3D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9 >>> 0, arg10 >>> 0, arg11);
|
|
1624
1606
|
}, arguments) };
|
|
1625
|
-
imports.wbg.
|
|
1607
|
+
imports.wbg.__wbg_texSubImage3D_7a0f4d63809a0f6e = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
|
|
1626
1608
|
arg0.texSubImage3D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9 >>> 0, arg10 >>> 0, arg11);
|
|
1627
1609
|
}, arguments) };
|
|
1628
|
-
imports.wbg.
|
|
1610
|
+
imports.wbg.__wbg_texSubImage3D_9ee350bf3d5e61ad = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
|
|
1629
1611
|
arg0.texSubImage3D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9 >>> 0, arg10 >>> 0, arg11);
|
|
1630
1612
|
}, arguments) };
|
|
1631
|
-
imports.wbg.
|
|
1613
|
+
imports.wbg.__wbg_uniform1ui_010e62706e661170 = function(arg0, arg1, arg2) {
|
|
1632
1614
|
arg0.uniform1ui(arg1, arg2 >>> 0);
|
|
1633
1615
|
};
|
|
1634
|
-
imports.wbg.
|
|
1616
|
+
imports.wbg.__wbg_uniform2fv_83048fbc79c7f362 = function(arg0, arg1, arg2, arg3) {
|
|
1635
1617
|
arg0.uniform2fv(arg1, getArrayF32FromWasm0(arg2, arg3));
|
|
1636
1618
|
};
|
|
1637
|
-
imports.wbg.
|
|
1619
|
+
imports.wbg.__wbg_uniform2iv_31ff5561a5c51159 = function(arg0, arg1, arg2, arg3) {
|
|
1638
1620
|
arg0.uniform2iv(arg1, getArrayI32FromWasm0(arg2, arg3));
|
|
1639
1621
|
};
|
|
1640
|
-
imports.wbg.
|
|
1622
|
+
imports.wbg.__wbg_uniform2uiv_4b36f1c57b28c3c6 = function(arg0, arg1, arg2, arg3) {
|
|
1641
1623
|
arg0.uniform2uiv(arg1, getArrayU32FromWasm0(arg2, arg3));
|
|
1642
1624
|
};
|
|
1643
|
-
imports.wbg.
|
|
1625
|
+
imports.wbg.__wbg_uniform3fv_0ddd3ca056ab3d1f = function(arg0, arg1, arg2, arg3) {
|
|
1644
1626
|
arg0.uniform3fv(arg1, getArrayF32FromWasm0(arg2, arg3));
|
|
1645
1627
|
};
|
|
1646
|
-
imports.wbg.
|
|
1628
|
+
imports.wbg.__wbg_uniform3iv_eb887b2a339dda97 = function(arg0, arg1, arg2, arg3) {
|
|
1647
1629
|
arg0.uniform3iv(arg1, getArrayI32FromWasm0(arg2, arg3));
|
|
1648
1630
|
};
|
|
1649
|
-
imports.wbg.
|
|
1631
|
+
imports.wbg.__wbg_uniform3uiv_19cbb50d7afeb7d0 = function(arg0, arg1, arg2, arg3) {
|
|
1650
1632
|
arg0.uniform3uiv(arg1, getArrayU32FromWasm0(arg2, arg3));
|
|
1651
1633
|
};
|
|
1652
|
-
imports.wbg.
|
|
1634
|
+
imports.wbg.__wbg_uniform4fv_cf977e0dd611bbdd = function(arg0, arg1, arg2, arg3) {
|
|
1653
1635
|
arg0.uniform4fv(arg1, getArrayF32FromWasm0(arg2, arg3));
|
|
1654
1636
|
};
|
|
1655
|
-
imports.wbg.
|
|
1637
|
+
imports.wbg.__wbg_uniform4iv_b3a606d0b1b87dc9 = function(arg0, arg1, arg2, arg3) {
|
|
1656
1638
|
arg0.uniform4iv(arg1, getArrayI32FromWasm0(arg2, arg3));
|
|
1657
1639
|
};
|
|
1658
|
-
imports.wbg.
|
|
1640
|
+
imports.wbg.__wbg_uniform4uiv_cb256e285d564825 = function(arg0, arg1, arg2, arg3) {
|
|
1659
1641
|
arg0.uniform4uiv(arg1, getArrayU32FromWasm0(arg2, arg3));
|
|
1660
1642
|
};
|
|
1661
|
-
imports.wbg.
|
|
1643
|
+
imports.wbg.__wbg_uniformBlockBinding_744b2ad6a5f2cace = function(arg0, arg1, arg2, arg3) {
|
|
1662
1644
|
arg0.uniformBlockBinding(arg1, arg2 >>> 0, arg3 >>> 0);
|
|
1663
1645
|
};
|
|
1664
|
-
imports.wbg.
|
|
1646
|
+
imports.wbg.__wbg_uniformMatrix2fv_7e757aaedd0427cf = function(arg0, arg1, arg2, arg3, arg4) {
|
|
1665
1647
|
arg0.uniformMatrix2fv(arg1, arg2 !== 0, getArrayF32FromWasm0(arg3, arg4));
|
|
1666
1648
|
};
|
|
1667
|
-
imports.wbg.
|
|
1649
|
+
imports.wbg.__wbg_uniformMatrix2x3fv_91be1a9373d7c5ce = function(arg0, arg1, arg2, arg3, arg4) {
|
|
1668
1650
|
arg0.uniformMatrix2x3fv(arg1, arg2 !== 0, getArrayF32FromWasm0(arg3, arg4));
|
|
1669
1651
|
};
|
|
1670
|
-
imports.wbg.
|
|
1652
|
+
imports.wbg.__wbg_uniformMatrix2x4fv_b5ef5b5baced0e4f = function(arg0, arg1, arg2, arg3, arg4) {
|
|
1671
1653
|
arg0.uniformMatrix2x4fv(arg1, arg2 !== 0, getArrayF32FromWasm0(arg3, arg4));
|
|
1672
1654
|
};
|
|
1673
|
-
imports.wbg.
|
|
1655
|
+
imports.wbg.__wbg_uniformMatrix3fv_5eec5885a8d5de8b = function(arg0, arg1, arg2, arg3, arg4) {
|
|
1674
1656
|
arg0.uniformMatrix3fv(arg1, arg2 !== 0, getArrayF32FromWasm0(arg3, arg4));
|
|
1675
1657
|
};
|
|
1676
|
-
imports.wbg.
|
|
1658
|
+
imports.wbg.__wbg_uniformMatrix3x2fv_88709a0858bab333 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
1677
1659
|
arg0.uniformMatrix3x2fv(arg1, arg2 !== 0, getArrayF32FromWasm0(arg3, arg4));
|
|
1678
1660
|
};
|
|
1679
|
-
imports.wbg.
|
|
1661
|
+
imports.wbg.__wbg_uniformMatrix3x4fv_184c4f571cff1122 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
1680
1662
|
arg0.uniformMatrix3x4fv(arg1, arg2 !== 0, getArrayF32FromWasm0(arg3, arg4));
|
|
1681
1663
|
};
|
|
1682
|
-
imports.wbg.
|
|
1664
|
+
imports.wbg.__wbg_uniformMatrix4fv_ae100fc474463355 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
1683
1665
|
arg0.uniformMatrix4fv(arg1, arg2 !== 0, getArrayF32FromWasm0(arg3, arg4));
|
|
1684
1666
|
};
|
|
1685
|
-
imports.wbg.
|
|
1667
|
+
imports.wbg.__wbg_uniformMatrix4x2fv_e931df9c7cb32d55 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
1686
1668
|
arg0.uniformMatrix4x2fv(arg1, arg2 !== 0, getArrayF32FromWasm0(arg3, arg4));
|
|
1687
1669
|
};
|
|
1688
|
-
imports.wbg.
|
|
1670
|
+
imports.wbg.__wbg_uniformMatrix4x3fv_f78c83b4908c3e27 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
1689
1671
|
arg0.uniformMatrix4x3fv(arg1, arg2 !== 0, getArrayF32FromWasm0(arg3, arg4));
|
|
1690
1672
|
};
|
|
1691
|
-
imports.wbg.
|
|
1673
|
+
imports.wbg.__wbg_vertexAttribDivisor_48f4c9ce15c07063 = function(arg0, arg1, arg2) {
|
|
1692
1674
|
arg0.vertexAttribDivisor(arg1 >>> 0, arg2 >>> 0);
|
|
1693
1675
|
};
|
|
1694
|
-
imports.wbg.
|
|
1676
|
+
imports.wbg.__wbg_vertexAttribIPointer_78250ec98da971a2 = function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
1695
1677
|
arg0.vertexAttribIPointer(arg1 >>> 0, arg2, arg3 >>> 0, arg4, arg5);
|
|
1696
1678
|
};
|
|
1697
|
-
imports.wbg.
|
|
1679
|
+
imports.wbg.__wbg_activeTexture_067b93df6d1ed857 = function(arg0, arg1) {
|
|
1698
1680
|
arg0.activeTexture(arg1 >>> 0);
|
|
1699
1681
|
};
|
|
1700
|
-
imports.wbg.
|
|
1682
|
+
imports.wbg.__wbg_attachShader_396d529f1d7c9abc = function(arg0, arg1, arg2) {
|
|
1701
1683
|
arg0.attachShader(arg1, arg2);
|
|
1702
1684
|
};
|
|
1703
|
-
imports.wbg.
|
|
1685
|
+
imports.wbg.__wbg_bindAttribLocation_9e7dad25e51f58b1 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
1704
1686
|
arg0.bindAttribLocation(arg1, arg2 >>> 0, getStringFromWasm0(arg3, arg4));
|
|
1705
1687
|
};
|
|
1706
|
-
imports.wbg.
|
|
1688
|
+
imports.wbg.__wbg_bindBuffer_d6b05e0a99a752d4 = function(arg0, arg1, arg2) {
|
|
1707
1689
|
arg0.bindBuffer(arg1 >>> 0, arg2);
|
|
1708
1690
|
};
|
|
1709
|
-
imports.wbg.
|
|
1691
|
+
imports.wbg.__wbg_bindFramebuffer_f5e959313c29a7c6 = function(arg0, arg1, arg2) {
|
|
1710
1692
|
arg0.bindFramebuffer(arg1 >>> 0, arg2);
|
|
1711
1693
|
};
|
|
1712
|
-
imports.wbg.
|
|
1694
|
+
imports.wbg.__wbg_bindRenderbuffer_691cb14fc6248155 = function(arg0, arg1, arg2) {
|
|
1713
1695
|
arg0.bindRenderbuffer(arg1 >>> 0, arg2);
|
|
1714
1696
|
};
|
|
1715
|
-
imports.wbg.
|
|
1697
|
+
imports.wbg.__wbg_bindTexture_840f7fcfd0298dc4 = function(arg0, arg1, arg2) {
|
|
1716
1698
|
arg0.bindTexture(arg1 >>> 0, arg2);
|
|
1717
1699
|
};
|
|
1718
|
-
imports.wbg.
|
|
1700
|
+
imports.wbg.__wbg_blendColor_4c1f00a2e4f1a80d = function(arg0, arg1, arg2, arg3, arg4) {
|
|
1719
1701
|
arg0.blendColor(arg1, arg2, arg3, arg4);
|
|
1720
1702
|
};
|
|
1721
|
-
imports.wbg.
|
|
1703
|
+
imports.wbg.__wbg_blendEquation_e7b91e8e062fa502 = function(arg0, arg1) {
|
|
1722
1704
|
arg0.blendEquation(arg1 >>> 0);
|
|
1723
1705
|
};
|
|
1724
|
-
imports.wbg.
|
|
1706
|
+
imports.wbg.__wbg_blendEquationSeparate_272bfcd932055191 = function(arg0, arg1, arg2) {
|
|
1725
1707
|
arg0.blendEquationSeparate(arg1 >>> 0, arg2 >>> 0);
|
|
1726
1708
|
};
|
|
1727
|
-
imports.wbg.
|
|
1709
|
+
imports.wbg.__wbg_blendFunc_6a7b81c06098c023 = function(arg0, arg1, arg2) {
|
|
1728
1710
|
arg0.blendFunc(arg1 >>> 0, arg2 >>> 0);
|
|
1729
1711
|
};
|
|
1730
|
-
imports.wbg.
|
|
1712
|
+
imports.wbg.__wbg_blendFuncSeparate_f81dd232d266e735 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
1731
1713
|
arg0.blendFuncSeparate(arg1 >>> 0, arg2 >>> 0, arg3 >>> 0, arg4 >>> 0);
|
|
1732
1714
|
};
|
|
1733
|
-
imports.wbg.
|
|
1715
|
+
imports.wbg.__wbg_clear_7a2a7ca897047e8d = function(arg0, arg1) {
|
|
1734
1716
|
arg0.clear(arg1 >>> 0);
|
|
1735
1717
|
};
|
|
1736
|
-
imports.wbg.
|
|
1737
|
-
arg0.clearColor(arg1, arg2, arg3, arg4);
|
|
1738
|
-
};
|
|
1739
|
-
imports.wbg.__wbg_clearDepth_f5b4a73c4b8050eb = function(arg0, arg1) {
|
|
1718
|
+
imports.wbg.__wbg_clearDepth_a65e67fdeb1f3ff9 = function(arg0, arg1) {
|
|
1740
1719
|
arg0.clearDepth(arg1);
|
|
1741
1720
|
};
|
|
1742
|
-
imports.wbg.
|
|
1721
|
+
imports.wbg.__wbg_clearStencil_1f24aec5432f38ba = function(arg0, arg1) {
|
|
1743
1722
|
arg0.clearStencil(arg1);
|
|
1744
1723
|
};
|
|
1745
|
-
imports.wbg.
|
|
1724
|
+
imports.wbg.__wbg_colorMask_7c2aafdec5441392 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
1746
1725
|
arg0.colorMask(arg1 !== 0, arg2 !== 0, arg3 !== 0, arg4 !== 0);
|
|
1747
1726
|
};
|
|
1748
|
-
imports.wbg.
|
|
1727
|
+
imports.wbg.__wbg_compileShader_77ef81728b1c03f6 = function(arg0, arg1) {
|
|
1749
1728
|
arg0.compileShader(arg1);
|
|
1750
1729
|
};
|
|
1751
|
-
imports.wbg.
|
|
1730
|
+
imports.wbg.__wbg_copyTexSubImage2D_d3b3d3b235c88d33 = function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
|
|
1752
1731
|
arg0.copyTexSubImage2D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7, arg8);
|
|
1753
1732
|
};
|
|
1754
|
-
imports.wbg.
|
|
1733
|
+
imports.wbg.__wbg_createBuffer_7b18852edffb3ab4 = function(arg0) {
|
|
1755
1734
|
const ret = arg0.createBuffer();
|
|
1756
1735
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1757
1736
|
};
|
|
1758
|
-
imports.wbg.
|
|
1737
|
+
imports.wbg.__wbg_createFramebuffer_a12847edac092647 = function(arg0) {
|
|
1759
1738
|
const ret = arg0.createFramebuffer();
|
|
1760
1739
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1761
1740
|
};
|
|
1762
|
-
imports.wbg.
|
|
1741
|
+
imports.wbg.__wbg_createProgram_73611dc7a72c4ee2 = function(arg0) {
|
|
1763
1742
|
const ret = arg0.createProgram();
|
|
1764
1743
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1765
1744
|
};
|
|
1766
|
-
imports.wbg.
|
|
1745
|
+
imports.wbg.__wbg_createRenderbuffer_e7bd95fedc0bbcb5 = function(arg0) {
|
|
1767
1746
|
const ret = arg0.createRenderbuffer();
|
|
1768
1747
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1769
1748
|
};
|
|
1770
|
-
imports.wbg.
|
|
1749
|
+
imports.wbg.__wbg_createShader_f10ffabbfd8e2c8c = function(arg0, arg1) {
|
|
1771
1750
|
const ret = arg0.createShader(arg1 >>> 0);
|
|
1772
1751
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1773
1752
|
};
|
|
1774
|
-
imports.wbg.
|
|
1753
|
+
imports.wbg.__wbg_createTexture_2426b031baa26a82 = function(arg0) {
|
|
1775
1754
|
const ret = arg0.createTexture();
|
|
1776
1755
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1777
1756
|
};
|
|
1778
|
-
imports.wbg.
|
|
1757
|
+
imports.wbg.__wbg_cullFace_fbafcb7763a2d6aa = function(arg0, arg1) {
|
|
1779
1758
|
arg0.cullFace(arg1 >>> 0);
|
|
1780
1759
|
};
|
|
1781
|
-
imports.wbg.
|
|
1760
|
+
imports.wbg.__wbg_deleteBuffer_27b0fb5ed68afbe4 = function(arg0, arg1) {
|
|
1782
1761
|
arg0.deleteBuffer(arg1);
|
|
1783
1762
|
};
|
|
1784
|
-
imports.wbg.
|
|
1763
|
+
imports.wbg.__wbg_deleteFramebuffer_c0d511b2fc07620d = function(arg0, arg1) {
|
|
1785
1764
|
arg0.deleteFramebuffer(arg1);
|
|
1786
1765
|
};
|
|
1787
|
-
imports.wbg.
|
|
1766
|
+
imports.wbg.__wbg_deleteProgram_c3238b647d849334 = function(arg0, arg1) {
|
|
1788
1767
|
arg0.deleteProgram(arg1);
|
|
1789
1768
|
};
|
|
1790
|
-
imports.wbg.
|
|
1769
|
+
imports.wbg.__wbg_deleteRenderbuffer_325417b497c5ae27 = function(arg0, arg1) {
|
|
1791
1770
|
arg0.deleteRenderbuffer(arg1);
|
|
1792
1771
|
};
|
|
1793
|
-
imports.wbg.
|
|
1772
|
+
imports.wbg.__wbg_deleteShader_da06706168cf00dc = function(arg0, arg1) {
|
|
1794
1773
|
arg0.deleteShader(arg1);
|
|
1795
1774
|
};
|
|
1796
|
-
imports.wbg.
|
|
1775
|
+
imports.wbg.__wbg_deleteTexture_cdd844345a2559bb = function(arg0, arg1) {
|
|
1797
1776
|
arg0.deleteTexture(arg1);
|
|
1798
1777
|
};
|
|
1799
|
-
imports.wbg.
|
|
1778
|
+
imports.wbg.__wbg_depthFunc_2f1df7eb8339f5a3 = function(arg0, arg1) {
|
|
1800
1779
|
arg0.depthFunc(arg1 >>> 0);
|
|
1801
1780
|
};
|
|
1802
|
-
imports.wbg.
|
|
1781
|
+
imports.wbg.__wbg_depthMask_a301dd9951c6056c = function(arg0, arg1) {
|
|
1803
1782
|
arg0.depthMask(arg1 !== 0);
|
|
1804
1783
|
};
|
|
1805
|
-
imports.wbg.
|
|
1784
|
+
imports.wbg.__wbg_depthRange_85c249bf5c81856c = function(arg0, arg1, arg2) {
|
|
1806
1785
|
arg0.depthRange(arg1, arg2);
|
|
1807
1786
|
};
|
|
1808
|
-
imports.wbg.
|
|
1787
|
+
imports.wbg.__wbg_disable_8908871f2334e76b = function(arg0, arg1) {
|
|
1809
1788
|
arg0.disable(arg1 >>> 0);
|
|
1810
1789
|
};
|
|
1811
|
-
imports.wbg.
|
|
1790
|
+
imports.wbg.__wbg_disableVertexAttribArray_79a5010f18eb84cb = function(arg0, arg1) {
|
|
1812
1791
|
arg0.disableVertexAttribArray(arg1 >>> 0);
|
|
1813
1792
|
};
|
|
1814
|
-
imports.wbg.
|
|
1793
|
+
imports.wbg.__wbg_drawArrays_7a8f5031b1fe80ff = function(arg0, arg1, arg2, arg3) {
|
|
1815
1794
|
arg0.drawArrays(arg1 >>> 0, arg2, arg3);
|
|
1816
1795
|
};
|
|
1817
|
-
imports.wbg.
|
|
1796
|
+
imports.wbg.__wbg_enable_541ed84c1e7d269d = function(arg0, arg1) {
|
|
1818
1797
|
arg0.enable(arg1 >>> 0);
|
|
1819
1798
|
};
|
|
1820
|
-
imports.wbg.
|
|
1799
|
+
imports.wbg.__wbg_enableVertexAttribArray_06043f51b716ed9d = function(arg0, arg1) {
|
|
1821
1800
|
arg0.enableVertexAttribArray(arg1 >>> 0);
|
|
1822
1801
|
};
|
|
1823
|
-
imports.wbg.
|
|
1802
|
+
imports.wbg.__wbg_framebufferRenderbuffer_f7c592ad40667f89 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
1824
1803
|
arg0.framebufferRenderbuffer(arg1 >>> 0, arg2 >>> 0, arg3 >>> 0, arg4);
|
|
1825
1804
|
};
|
|
1826
|
-
imports.wbg.
|
|
1805
|
+
imports.wbg.__wbg_framebufferTexture2D_5b524fe6135d5fe8 = function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
1827
1806
|
arg0.framebufferTexture2D(arg1 >>> 0, arg2 >>> 0, arg3 >>> 0, arg4, arg5);
|
|
1828
1807
|
};
|
|
1829
|
-
imports.wbg.
|
|
1808
|
+
imports.wbg.__wbg_frontFace_54ccf43770ae1011 = function(arg0, arg1) {
|
|
1830
1809
|
arg0.frontFace(arg1 >>> 0);
|
|
1831
1810
|
};
|
|
1832
|
-
imports.wbg.
|
|
1811
|
+
imports.wbg.__wbg_getExtension_095ef1e6c9d8d8ab = function() { return handleError(function (arg0, arg1, arg2) {
|
|
1833
1812
|
const ret = arg0.getExtension(getStringFromWasm0(arg1, arg2));
|
|
1834
1813
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1835
1814
|
}, arguments) };
|
|
1836
|
-
imports.wbg.
|
|
1815
|
+
imports.wbg.__wbg_getParameter_cfaed180705b9280 = function() { return handleError(function (arg0, arg1) {
|
|
1837
1816
|
const ret = arg0.getParameter(arg1 >>> 0);
|
|
1838
1817
|
return ret;
|
|
1839
1818
|
}, arguments) };
|
|
1840
|
-
imports.wbg.
|
|
1819
|
+
imports.wbg.__wbg_getProgramInfoLog_fe796f3a9512a8e3 = function(arg0, arg1, arg2) {
|
|
1841
1820
|
const ret = arg1.getProgramInfoLog(arg2);
|
|
1842
1821
|
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1843
1822
|
var len1 = WASM_VECTOR_LEN;
|
|
1844
|
-
|
|
1845
|
-
|
|
1823
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1824
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1846
1825
|
};
|
|
1847
|
-
imports.wbg.
|
|
1826
|
+
imports.wbg.__wbg_getProgramParameter_9df6cbbb1343b27d = function(arg0, arg1, arg2) {
|
|
1848
1827
|
const ret = arg0.getProgramParameter(arg1, arg2 >>> 0);
|
|
1849
1828
|
return ret;
|
|
1850
1829
|
};
|
|
1851
|
-
imports.wbg.
|
|
1830
|
+
imports.wbg.__wbg_getShaderInfoLog_a7ca51b89a4dafab = function(arg0, arg1, arg2) {
|
|
1852
1831
|
const ret = arg1.getShaderInfoLog(arg2);
|
|
1853
1832
|
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1854
1833
|
var len1 = WASM_VECTOR_LEN;
|
|
1855
|
-
|
|
1856
|
-
|
|
1834
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1835
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1857
1836
|
};
|
|
1858
|
-
imports.wbg.
|
|
1837
|
+
imports.wbg.__wbg_getShaderParameter_806970126d526c29 = function(arg0, arg1, arg2) {
|
|
1859
1838
|
const ret = arg0.getShaderParameter(arg1, arg2 >>> 0);
|
|
1860
1839
|
return ret;
|
|
1861
1840
|
};
|
|
1862
|
-
imports.wbg.
|
|
1841
|
+
imports.wbg.__wbg_getSupportedExtensions_e1788ac835b7e81a = function(arg0) {
|
|
1863
1842
|
const ret = arg0.getSupportedExtensions();
|
|
1864
1843
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1865
1844
|
};
|
|
1866
|
-
imports.wbg.
|
|
1845
|
+
imports.wbg.__wbg_getUniformLocation_6a59ad54df3bba8e = function(arg0, arg1, arg2, arg3) {
|
|
1867
1846
|
const ret = arg0.getUniformLocation(arg1, getStringFromWasm0(arg2, arg3));
|
|
1868
1847
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1869
1848
|
};
|
|
1870
|
-
imports.wbg.
|
|
1849
|
+
imports.wbg.__wbg_linkProgram_56a5d97f63b1f56d = function(arg0, arg1) {
|
|
1871
1850
|
arg0.linkProgram(arg1);
|
|
1872
1851
|
};
|
|
1873
|
-
imports.wbg.
|
|
1852
|
+
imports.wbg.__wbg_pixelStorei_3a600280eab03e3c = function(arg0, arg1, arg2) {
|
|
1874
1853
|
arg0.pixelStorei(arg1 >>> 0, arg2);
|
|
1875
1854
|
};
|
|
1876
|
-
imports.wbg.
|
|
1855
|
+
imports.wbg.__wbg_polygonOffset_ebf1b1bd8db53e65 = function(arg0, arg1, arg2) {
|
|
1877
1856
|
arg0.polygonOffset(arg1, arg2);
|
|
1878
1857
|
};
|
|
1879
|
-
imports.wbg.
|
|
1858
|
+
imports.wbg.__wbg_renderbufferStorage_3c5e469d82dfe89b = function(arg0, arg1, arg2, arg3, arg4) {
|
|
1880
1859
|
arg0.renderbufferStorage(arg1 >>> 0, arg2 >>> 0, arg3, arg4);
|
|
1881
1860
|
};
|
|
1882
|
-
imports.wbg.
|
|
1861
|
+
imports.wbg.__wbg_scissor_2b172ca4e459dd16 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
1883
1862
|
arg0.scissor(arg1, arg2, arg3, arg4);
|
|
1884
1863
|
};
|
|
1885
|
-
imports.wbg.
|
|
1864
|
+
imports.wbg.__wbg_shaderSource_b92b2b5c29126344 = function(arg0, arg1, arg2, arg3) {
|
|
1886
1865
|
arg0.shaderSource(arg1, getStringFromWasm0(arg2, arg3));
|
|
1887
1866
|
};
|
|
1888
|
-
imports.wbg.
|
|
1867
|
+
imports.wbg.__wbg_stencilFuncSeparate_25b5dd967d72b6e5 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
1889
1868
|
arg0.stencilFuncSeparate(arg1 >>> 0, arg2 >>> 0, arg3, arg4 >>> 0);
|
|
1890
1869
|
};
|
|
1891
|
-
imports.wbg.
|
|
1870
|
+
imports.wbg.__wbg_stencilMask_702162181d88081f = function(arg0, arg1) {
|
|
1892
1871
|
arg0.stencilMask(arg1 >>> 0);
|
|
1893
1872
|
};
|
|
1894
|
-
imports.wbg.
|
|
1873
|
+
imports.wbg.__wbg_stencilMaskSeparate_1f803a440e789b81 = function(arg0, arg1, arg2) {
|
|
1895
1874
|
arg0.stencilMaskSeparate(arg1 >>> 0, arg2 >>> 0);
|
|
1896
1875
|
};
|
|
1897
|
-
imports.wbg.
|
|
1876
|
+
imports.wbg.__wbg_stencilOpSeparate_52b401966f916a0f = function(arg0, arg1, arg2, arg3, arg4) {
|
|
1898
1877
|
arg0.stencilOpSeparate(arg1 >>> 0, arg2 >>> 0, arg3 >>> 0, arg4 >>> 0);
|
|
1899
1878
|
};
|
|
1900
|
-
imports.wbg.
|
|
1879
|
+
imports.wbg.__wbg_texParameteri_531d0268109950ba = function(arg0, arg1, arg2, arg3) {
|
|
1901
1880
|
arg0.texParameteri(arg1 >>> 0, arg2 >>> 0, arg3);
|
|
1902
1881
|
};
|
|
1903
|
-
imports.wbg.
|
|
1882
|
+
imports.wbg.__wbg_uniform1f_81b570bf6358ae6c = function(arg0, arg1, arg2) {
|
|
1904
1883
|
arg0.uniform1f(arg1, arg2);
|
|
1905
1884
|
};
|
|
1906
|
-
imports.wbg.
|
|
1885
|
+
imports.wbg.__wbg_uniform1i_ded3be13f5d8f11a = function(arg0, arg1, arg2) {
|
|
1907
1886
|
arg0.uniform1i(arg1, arg2);
|
|
1908
1887
|
};
|
|
1909
|
-
imports.wbg.
|
|
1888
|
+
imports.wbg.__wbg_uniform4f_bdbb7cf56fc94cbb = function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
1910
1889
|
arg0.uniform4f(arg1, arg2, arg3, arg4, arg5);
|
|
1911
1890
|
};
|
|
1912
|
-
imports.wbg.
|
|
1891
|
+
imports.wbg.__wbg_useProgram_001c6b9208b683d3 = function(arg0, arg1) {
|
|
1913
1892
|
arg0.useProgram(arg1);
|
|
1914
1893
|
};
|
|
1915
|
-
imports.wbg.
|
|
1894
|
+
imports.wbg.__wbg_vertexAttribPointer_b435a034ff758637 = function(arg0, arg1, arg2, arg3, arg4, arg5, arg6) {
|
|
1916
1895
|
arg0.vertexAttribPointer(arg1 >>> 0, arg2, arg3 >>> 0, arg4 !== 0, arg5, arg6);
|
|
1917
1896
|
};
|
|
1918
|
-
imports.wbg.
|
|
1897
|
+
imports.wbg.__wbg_viewport_536c78dd69c44351 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
1919
1898
|
arg0.viewport(arg1, arg2, arg3, arg4);
|
|
1920
1899
|
};
|
|
1921
|
-
imports.wbg.
|
|
1900
|
+
imports.wbg.__wbg_instanceof_Window_5012736c80a01584 = function(arg0) {
|
|
1922
1901
|
let result;
|
|
1923
1902
|
try {
|
|
1924
|
-
result = arg0 instanceof
|
|
1903
|
+
result = arg0 instanceof Window;
|
|
1925
1904
|
} catch (_) {
|
|
1926
1905
|
result = false;
|
|
1927
1906
|
}
|
|
1928
1907
|
const ret = result;
|
|
1929
1908
|
return ret;
|
|
1930
1909
|
};
|
|
1931
|
-
imports.wbg.
|
|
1932
|
-
const ret =
|
|
1933
|
-
|
|
1934
|
-
const len1 = WASM_VECTOR_LEN;
|
|
1935
|
-
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
1936
|
-
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
1910
|
+
imports.wbg.__wbg_document_8554450897a855b9 = function(arg0) {
|
|
1911
|
+
const ret = arg0.document;
|
|
1912
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1937
1913
|
};
|
|
1938
|
-
imports.wbg.
|
|
1939
|
-
|
|
1914
|
+
imports.wbg.__wbg_location_af118da6c50d4c3f = function(arg0) {
|
|
1915
|
+
const ret = arg0.location;
|
|
1916
|
+
return ret;
|
|
1940
1917
|
};
|
|
1941
|
-
imports.wbg.
|
|
1942
|
-
|
|
1918
|
+
imports.wbg.__wbg_history_489e13d0b625263c = function() { return handleError(function (arg0) {
|
|
1919
|
+
const ret = arg0.history;
|
|
1920
|
+
return ret;
|
|
1921
|
+
}, arguments) };
|
|
1922
|
+
imports.wbg.__wbg_navigator_6210380287bf8581 = function(arg0) {
|
|
1923
|
+
const ret = arg0.navigator;
|
|
1924
|
+
return ret;
|
|
1943
1925
|
};
|
|
1944
|
-
imports.wbg.
|
|
1945
|
-
const ret = arg0.
|
|
1926
|
+
imports.wbg.__wbg_devicePixelRatio_7ba8bc80d46340bd = function(arg0) {
|
|
1927
|
+
const ret = arg0.devicePixelRatio;
|
|
1946
1928
|
return ret;
|
|
1947
1929
|
};
|
|
1948
|
-
imports.wbg.
|
|
1949
|
-
arg0.
|
|
1930
|
+
imports.wbg.__wbg_localStorage_90db5cb66e840248 = function() { return handleError(function (arg0) {
|
|
1931
|
+
const ret = arg0.localStorage;
|
|
1932
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1933
|
+
}, arguments) };
|
|
1934
|
+
imports.wbg.__wbg_performance_fa12dc8712926291 = function(arg0) {
|
|
1935
|
+
const ret = arg0.performance;
|
|
1936
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1950
1937
|
};
|
|
1951
|
-
imports.wbg.
|
|
1938
|
+
imports.wbg.__wbg_isSecureContext_80defc491f0c2d6a = function(arg0) {
|
|
1939
|
+
const ret = arg0.isSecureContext;
|
|
1940
|
+
return ret;
|
|
1941
|
+
};
|
|
1942
|
+
imports.wbg.__wbg_getComputedStyle_ba4609b39055f674 = function() { return handleError(function (arg0, arg1) {
|
|
1943
|
+
const ret = arg0.getComputedStyle(arg1);
|
|
1944
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1945
|
+
}, arguments) };
|
|
1946
|
+
imports.wbg.__wbg_matchMedia_170d35fd154463b2 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
1947
|
+
const ret = arg0.matchMedia(getStringFromWasm0(arg1, arg2));
|
|
1948
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1949
|
+
}, arguments) };
|
|
1950
|
+
imports.wbg.__wbg_open_43b3c6577af2a808 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
1951
|
+
const ret = arg0.open(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
1952
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1953
|
+
}, arguments) };
|
|
1954
|
+
imports.wbg.__wbg_cancelAnimationFrame_f80ecdad075d1d55 = function() { return handleError(function (arg0, arg1) {
|
|
1955
|
+
arg0.cancelAnimationFrame(arg1);
|
|
1956
|
+
}, arguments) };
|
|
1957
|
+
imports.wbg.__wbg_requestAnimationFrame_b4b782250b9c2c88 = function() { return handleError(function (arg0, arg1) {
|
|
1958
|
+
const ret = arg0.requestAnimationFrame(arg1);
|
|
1959
|
+
return ret;
|
|
1960
|
+
}, arguments) };
|
|
1961
|
+
imports.wbg.__wbg_clearInterval_df3409c32c572e85 = function(arg0, arg1) {
|
|
1962
|
+
arg0.clearInterval(arg1);
|
|
1963
|
+
};
|
|
1964
|
+
imports.wbg.__wbg_fetch_f3adf866d8944b41 = function(arg0, arg1) {
|
|
1965
|
+
const ret = arg0.fetch(arg1);
|
|
1966
|
+
return ret;
|
|
1967
|
+
};
|
|
1968
|
+
imports.wbg.__wbg_setTimeout_73b734ca971c19f4 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
1969
|
+
const ret = arg0.setTimeout(arg1, arg2);
|
|
1970
|
+
return ret;
|
|
1971
|
+
}, arguments) };
|
|
1972
|
+
imports.wbg.__wbg_body_b3bb488e8e54bf4b = function(arg0) {
|
|
1952
1973
|
const ret = arg0.body;
|
|
1953
1974
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1954
1975
|
};
|
|
1955
|
-
imports.wbg.
|
|
1976
|
+
imports.wbg.__wbg_hidden_b3b8c1dc2ee4fc2a = function(arg0) {
|
|
1977
|
+
const ret = arg0.hidden;
|
|
1978
|
+
return ret;
|
|
1979
|
+
};
|
|
1980
|
+
imports.wbg.__wbg_activeElement_1036a8ddc10ec3f1 = function(arg0) {
|
|
1956
1981
|
const ret = arg0.activeElement;
|
|
1957
1982
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1958
1983
|
};
|
|
1959
|
-
imports.wbg.
|
|
1984
|
+
imports.wbg.__wbg_createElement_5921e9eb06b9ec89 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
1960
1985
|
const ret = arg0.createElement(getStringFromWasm0(arg1, arg2));
|
|
1961
1986
|
return ret;
|
|
1962
1987
|
}, arguments) };
|
|
1963
|
-
imports.wbg.
|
|
1988
|
+
imports.wbg.__wbg_getElementById_f56c8e6a15a6926d = function(arg0, arg1, arg2) {
|
|
1964
1989
|
const ret = arg0.getElementById(getStringFromWasm0(arg1, arg2));
|
|
1965
1990
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1966
1991
|
};
|
|
1967
|
-
imports.wbg.
|
|
1992
|
+
imports.wbg.__wbg_querySelector_e21c39150aa72078 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
1968
1993
|
const ret = arg0.querySelector(getStringFromWasm0(arg1, arg2));
|
|
1969
1994
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1970
1995
|
}, arguments) };
|
|
1971
|
-
imports.wbg.
|
|
1996
|
+
imports.wbg.__wbg_querySelectorAll_52447cbab6df8bae = function() { return handleError(function (arg0, arg1, arg2) {
|
|
1972
1997
|
const ret = arg0.querySelectorAll(getStringFromWasm0(arg1, arg2));
|
|
1973
1998
|
return ret;
|
|
1974
1999
|
}, arguments) };
|
|
1975
|
-
imports.wbg.
|
|
2000
|
+
imports.wbg.__wbg_elementFromPoint_a7b17c0b42d50842 = function(arg0, arg1, arg2) {
|
|
1976
2001
|
const ret = arg0.elementFromPoint(arg1, arg2);
|
|
1977
2002
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1978
2003
|
};
|
|
1979
|
-
imports.wbg.
|
|
2004
|
+
imports.wbg.__wbg_instanceof_Element_cc034878d52a64fa = function(arg0) {
|
|
2005
|
+
let result;
|
|
2006
|
+
try {
|
|
2007
|
+
result = arg0 instanceof Element;
|
|
2008
|
+
} catch (_) {
|
|
2009
|
+
result = false;
|
|
2010
|
+
}
|
|
2011
|
+
const ret = result;
|
|
2012
|
+
return ret;
|
|
2013
|
+
};
|
|
2014
|
+
imports.wbg.__wbg_id_8071f78aa2301217 = function(arg0, arg1) {
|
|
2015
|
+
const ret = arg1.id;
|
|
2016
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2017
|
+
const len1 = WASM_VECTOR_LEN;
|
|
2018
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2019
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2020
|
+
};
|
|
2021
|
+
imports.wbg.__wbg_setid_b43ed506c9b1e9c5 = function(arg0, arg1, arg2) {
|
|
2022
|
+
arg0.id = getStringFromWasm0(arg1, arg2);
|
|
2023
|
+
};
|
|
2024
|
+
imports.wbg.__wbg_setinnerHTML_ea7e3c6a3c4790c6 = function(arg0, arg1, arg2) {
|
|
2025
|
+
arg0.innerHTML = getStringFromWasm0(arg1, arg2);
|
|
2026
|
+
};
|
|
2027
|
+
imports.wbg.__wbg_getBoundingClientRect_35fc4d8fa10e0463 = function(arg0) {
|
|
2028
|
+
const ret = arg0.getBoundingClientRect();
|
|
2029
|
+
return ret;
|
|
2030
|
+
};
|
|
2031
|
+
imports.wbg.__wbg_setAttribute_d5540a19be09f8dc = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
2032
|
+
arg0.setAttribute(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
2033
|
+
}, arguments) };
|
|
2034
|
+
imports.wbg.__wbg_remove_5b68b70c39041e2a = function(arg0) {
|
|
2035
|
+
arg0.remove();
|
|
2036
|
+
};
|
|
2037
|
+
imports.wbg.__wbg_instanceof_HtmlElement_ee6cb55e6b90ae79 = function(arg0) {
|
|
1980
2038
|
let result;
|
|
1981
2039
|
try {
|
|
1982
2040
|
result = arg0 instanceof HTMLElement;
|
|
@@ -1986,1092 +2044,1206 @@ function __wbg_get_imports() {
|
|
|
1986
2044
|
const ret = result;
|
|
1987
2045
|
return ret;
|
|
1988
2046
|
};
|
|
1989
|
-
imports.wbg.
|
|
2047
|
+
imports.wbg.__wbg_setinnerText_69255282a5d7ed93 = function(arg0, arg1, arg2) {
|
|
1990
2048
|
arg0.innerText = getStringFromWasm0(arg1, arg2);
|
|
1991
2049
|
};
|
|
1992
|
-
imports.wbg.
|
|
2050
|
+
imports.wbg.__wbg_settabIndex_f6fb98fef6cbb39b = function(arg0, arg1) {
|
|
1993
2051
|
arg0.tabIndex = arg1;
|
|
1994
2052
|
};
|
|
1995
|
-
imports.wbg.
|
|
2053
|
+
imports.wbg.__wbg_style_e06c9e03355741e9 = function(arg0) {
|
|
1996
2054
|
const ret = arg0.style;
|
|
1997
2055
|
return ret;
|
|
1998
2056
|
};
|
|
1999
|
-
imports.wbg.
|
|
2057
|
+
imports.wbg.__wbg_offsetTop_3f1fbd1d48327b28 = function(arg0) {
|
|
2058
|
+
const ret = arg0.offsetTop;
|
|
2059
|
+
return ret;
|
|
2060
|
+
};
|
|
2061
|
+
imports.wbg.__wbg_setonclick_cdd25d3e6e7636a0 = function(arg0, arg1) {
|
|
2000
2062
|
arg0.onclick = arg1;
|
|
2001
2063
|
};
|
|
2002
|
-
imports.wbg.
|
|
2064
|
+
imports.wbg.__wbg_blur_2097e550054a8dc8 = function() { return handleError(function (arg0) {
|
|
2003
2065
|
arg0.blur();
|
|
2004
2066
|
}, arguments) };
|
|
2005
|
-
imports.wbg.
|
|
2067
|
+
imports.wbg.__wbg_focus_06621101cc79f5d8 = function() { return handleError(function (arg0) {
|
|
2006
2068
|
arg0.focus();
|
|
2007
2069
|
}, arguments) };
|
|
2008
|
-
imports.wbg.
|
|
2009
|
-
|
|
2010
|
-
return ret;
|
|
2070
|
+
imports.wbg.__wbg_framebufferTextureMultiviewOVR_32295d56731dd362 = function(arg0, arg1, arg2, arg3, arg4, arg5, arg6) {
|
|
2071
|
+
arg0.framebufferTextureMultiviewOVR(arg1 >>> 0, arg2 >>> 0, arg3, arg4, arg5, arg6);
|
|
2011
2072
|
};
|
|
2012
|
-
imports.wbg.
|
|
2013
|
-
|
|
2014
|
-
return ret;
|
|
2073
|
+
imports.wbg.__wbg_bufferData_fc33089cf05a6c5a = function(arg0, arg1, arg2, arg3) {
|
|
2074
|
+
arg0.bufferData(arg1 >>> 0, arg2, arg3 >>> 0);
|
|
2015
2075
|
};
|
|
2016
|
-
imports.wbg.
|
|
2017
|
-
|
|
2018
|
-
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2076
|
+
imports.wbg.__wbg_bufferData_0db2a74470353a96 = function(arg0, arg1, arg2, arg3) {
|
|
2077
|
+
arg0.bufferData(arg1 >>> 0, arg2, arg3 >>> 0);
|
|
2019
2078
|
};
|
|
2020
|
-
imports.wbg.
|
|
2021
|
-
|
|
2022
|
-
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2023
|
-
const len1 = WASM_VECTOR_LEN;
|
|
2024
|
-
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
2025
|
-
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
2026
|
-
}, arguments) };
|
|
2027
|
-
imports.wbg.__wbg_length_a23c520109d9ba0a = function(arg0) {
|
|
2028
|
-
const ret = arg0.length;
|
|
2029
|
-
return ret;
|
|
2079
|
+
imports.wbg.__wbg_bufferSubData_944883045753ee61 = function(arg0, arg1, arg2, arg3) {
|
|
2080
|
+
arg0.bufferSubData(arg1 >>> 0, arg2, arg3);
|
|
2030
2081
|
};
|
|
2031
|
-
imports.wbg.
|
|
2032
|
-
|
|
2033
|
-
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2082
|
+
imports.wbg.__wbg_compressedTexSubImage2D_678be4671393a94b = function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
|
|
2083
|
+
arg0.compressedTexSubImage2D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7 >>> 0, arg8);
|
|
2034
2084
|
};
|
|
2035
|
-
imports.wbg.
|
|
2036
|
-
arg0.
|
|
2085
|
+
imports.wbg.__wbg_readPixels_0c5ad23c72dbe1b8 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
2086
|
+
arg0.readPixels(arg1, arg2, arg3, arg4, arg5 >>> 0, arg6 >>> 0, arg7);
|
|
2037
2087
|
}, arguments) };
|
|
2038
|
-
imports.wbg.
|
|
2039
|
-
arg0.
|
|
2088
|
+
imports.wbg.__wbg_texImage2D_d704e7eee22d1e6b = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
|
|
2089
|
+
arg0.texImage2D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7 >>> 0, arg8 >>> 0, arg9);
|
|
2040
2090
|
}, arguments) };
|
|
2041
|
-
imports.wbg.
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
result = false;
|
|
2047
|
-
}
|
|
2048
|
-
const ret = result;
|
|
2049
|
-
return ret;
|
|
2091
|
+
imports.wbg.__wbg_texSubImage2D_bed4633ee03b384d = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
|
|
2092
|
+
arg0.texSubImage2D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7 >>> 0, arg8 >>> 0, arg9);
|
|
2093
|
+
}, arguments) };
|
|
2094
|
+
imports.wbg.__wbg_uniform2fv_b73144e507d90a92 = function(arg0, arg1, arg2, arg3) {
|
|
2095
|
+
arg0.uniform2fv(arg1, getArrayF32FromWasm0(arg2, arg3));
|
|
2050
2096
|
};
|
|
2051
|
-
imports.wbg.
|
|
2052
|
-
arg0.
|
|
2097
|
+
imports.wbg.__wbg_uniform2iv_27f3fc3aefa41fa7 = function(arg0, arg1, arg2, arg3) {
|
|
2098
|
+
arg0.uniform2iv(arg1, getArrayI32FromWasm0(arg2, arg3));
|
|
2053
2099
|
};
|
|
2054
|
-
imports.wbg.
|
|
2055
|
-
arg0.
|
|
2100
|
+
imports.wbg.__wbg_uniform3fv_5df1d945c0bbfe20 = function(arg0, arg1, arg2, arg3) {
|
|
2101
|
+
arg0.uniform3fv(arg1, getArrayF32FromWasm0(arg2, arg3));
|
|
2056
2102
|
};
|
|
2057
|
-
imports.wbg.
|
|
2058
|
-
|
|
2059
|
-
return ret;
|
|
2103
|
+
imports.wbg.__wbg_uniform3iv_03be54fcc4468fc4 = function(arg0, arg1, arg2, arg3) {
|
|
2104
|
+
arg0.uniform3iv(arg1, getArrayI32FromWasm0(arg2, arg3));
|
|
2060
2105
|
};
|
|
2061
|
-
imports.wbg.
|
|
2062
|
-
arg0.
|
|
2106
|
+
imports.wbg.__wbg_uniform4fv_d87e4ea9ef6cf6de = function(arg0, arg1, arg2, arg3) {
|
|
2107
|
+
arg0.uniform4fv(arg1, getArrayF32FromWasm0(arg2, arg3));
|
|
2063
2108
|
};
|
|
2064
|
-
imports.wbg.
|
|
2065
|
-
|
|
2066
|
-
return ret;
|
|
2109
|
+
imports.wbg.__wbg_uniform4iv_965df9fa4c8ab47e = function(arg0, arg1, arg2, arg3) {
|
|
2110
|
+
arg0.uniform4iv(arg1, getArrayI32FromWasm0(arg2, arg3));
|
|
2067
2111
|
};
|
|
2068
|
-
imports.wbg.
|
|
2069
|
-
|
|
2070
|
-
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2071
|
-
const len1 = WASM_VECTOR_LEN;
|
|
2072
|
-
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
2073
|
-
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
2112
|
+
imports.wbg.__wbg_uniformMatrix2fv_8646addaa18ba00b = function(arg0, arg1, arg2, arg3, arg4) {
|
|
2113
|
+
arg0.uniformMatrix2fv(arg1, arg2 !== 0, getArrayF32FromWasm0(arg3, arg4));
|
|
2074
2114
|
};
|
|
2075
|
-
imports.wbg.
|
|
2076
|
-
|
|
2077
|
-
return ret;
|
|
2115
|
+
imports.wbg.__wbg_uniformMatrix3fv_917f07d03e8b1db5 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
2116
|
+
arg0.uniformMatrix3fv(arg1, arg2 !== 0, getArrayF32FromWasm0(arg3, arg4));
|
|
2078
2117
|
};
|
|
2079
|
-
imports.wbg.
|
|
2080
|
-
|
|
2081
|
-
return ret;
|
|
2082
|
-
}, arguments) };
|
|
2083
|
-
imports.wbg.__wbg_createObjectURL_ad8244759309f204 = function() { return handleError(function (arg0, arg1) {
|
|
2084
|
-
const ret = URL.createObjectURL(arg1);
|
|
2085
|
-
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2086
|
-
const len1 = WASM_VECTOR_LEN;
|
|
2087
|
-
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
2088
|
-
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
2089
|
-
}, arguments) };
|
|
2090
|
-
imports.wbg.__wbg_state_9cc3f933b7d50acb = function() { return handleError(function (arg0) {
|
|
2091
|
-
const ret = arg0.state;
|
|
2092
|
-
return ret;
|
|
2093
|
-
}, arguments) };
|
|
2094
|
-
imports.wbg.__wbg_back_eed6c9ffd402e26e = function() { return handleError(function (arg0) {
|
|
2095
|
-
arg0.back();
|
|
2096
|
-
}, arguments) };
|
|
2097
|
-
imports.wbg.__wbg_forward_124e6df53a7e8a2c = function() { return handleError(function (arg0) {
|
|
2098
|
-
arg0.forward();
|
|
2099
|
-
}, arguments) };
|
|
2100
|
-
imports.wbg.__wbg_pushState_b8e8d346f8bb33fd = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
2101
|
-
arg0.pushState(arg1, getStringFromWasm0(arg2, arg3), arg4 === 0 ? undefined : getStringFromWasm0(arg4, arg5));
|
|
2102
|
-
}, arguments) };
|
|
2103
|
-
imports.wbg.__wbg_instanceof_HtmlInputElement_307512fe1252c849 = function(arg0) {
|
|
2104
|
-
let result;
|
|
2105
|
-
try {
|
|
2106
|
-
result = arg0 instanceof HTMLInputElement;
|
|
2107
|
-
} catch (_) {
|
|
2108
|
-
result = false;
|
|
2109
|
-
}
|
|
2110
|
-
const ret = result;
|
|
2111
|
-
return ret;
|
|
2118
|
+
imports.wbg.__wbg_uniformMatrix4fv_46c1f9033bbb1a5e = function(arg0, arg1, arg2, arg3, arg4) {
|
|
2119
|
+
arg0.uniformMatrix4fv(arg1, arg2 !== 0, getArrayF32FromWasm0(arg3, arg4));
|
|
2112
2120
|
};
|
|
2113
|
-
imports.wbg.
|
|
2114
|
-
arg0.
|
|
2121
|
+
imports.wbg.__wbg_activeTexture_b967ed47a8083daa = function(arg0, arg1) {
|
|
2122
|
+
arg0.activeTexture(arg1 >>> 0);
|
|
2115
2123
|
};
|
|
2116
|
-
imports.wbg.
|
|
2117
|
-
|
|
2118
|
-
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2124
|
+
imports.wbg.__wbg_attachShader_2b5810fc1d23ebe7 = function(arg0, arg1, arg2) {
|
|
2125
|
+
arg0.attachShader(arg1, arg2);
|
|
2119
2126
|
};
|
|
2120
|
-
imports.wbg.
|
|
2121
|
-
arg0.
|
|
2127
|
+
imports.wbg.__wbg_bindAttribLocation_0018ec2a523f139f = function(arg0, arg1, arg2, arg3, arg4) {
|
|
2128
|
+
arg0.bindAttribLocation(arg1, arg2 >>> 0, getStringFromWasm0(arg3, arg4));
|
|
2122
2129
|
};
|
|
2123
|
-
imports.wbg.
|
|
2124
|
-
arg0.
|
|
2130
|
+
imports.wbg.__wbg_bindBuffer_1f581c747176e7d7 = function(arg0, arg1, arg2) {
|
|
2131
|
+
arg0.bindBuffer(arg1 >>> 0, arg2);
|
|
2125
2132
|
};
|
|
2126
|
-
imports.wbg.
|
|
2127
|
-
|
|
2128
|
-
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2129
|
-
const len1 = WASM_VECTOR_LEN;
|
|
2130
|
-
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
2131
|
-
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
2133
|
+
imports.wbg.__wbg_bindFramebuffer_8cba9964befd2a6d = function(arg0, arg1, arg2) {
|
|
2134
|
+
arg0.bindFramebuffer(arg1 >>> 0, arg2);
|
|
2132
2135
|
};
|
|
2133
|
-
imports.wbg.
|
|
2134
|
-
arg0.
|
|
2136
|
+
imports.wbg.__wbg_bindRenderbuffer_297ae310683dc32b = function(arg0, arg1, arg2) {
|
|
2137
|
+
arg0.bindRenderbuffer(arg1 >>> 0, arg2);
|
|
2135
2138
|
};
|
|
2136
|
-
imports.wbg.
|
|
2137
|
-
arg0.
|
|
2139
|
+
imports.wbg.__wbg_bindTexture_bffa89324927e23a = function(arg0, arg1, arg2) {
|
|
2140
|
+
arg0.bindTexture(arg1 >>> 0, arg2);
|
|
2138
2141
|
};
|
|
2139
|
-
imports.wbg.
|
|
2140
|
-
|
|
2141
|
-
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2142
|
+
imports.wbg.__wbg_blendColor_c876d94aa784bef7 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
2143
|
+
arg0.blendColor(arg1, arg2, arg3, arg4);
|
|
2142
2144
|
};
|
|
2143
|
-
imports.wbg.
|
|
2144
|
-
arg0.
|
|
2145
|
+
imports.wbg.__wbg_blendEquation_4f3b8eb0b07cab21 = function(arg0, arg1) {
|
|
2146
|
+
arg0.blendEquation(arg1 >>> 0);
|
|
2145
2147
|
};
|
|
2146
|
-
imports.wbg.
|
|
2147
|
-
arg0.
|
|
2148
|
-
}, arguments) };
|
|
2149
|
-
imports.wbg.__wbg_enqueue_ea194723156c0cc2 = function() { return handleError(function (arg0, arg1) {
|
|
2150
|
-
arg0.enqueue(arg1);
|
|
2151
|
-
}, arguments) };
|
|
2152
|
-
imports.wbg.__wbg_instanceof_ResizeObserverSize_54b26135ae24a941 = function(arg0) {
|
|
2153
|
-
let result;
|
|
2154
|
-
try {
|
|
2155
|
-
result = arg0 instanceof ResizeObserverSize;
|
|
2156
|
-
} catch (_) {
|
|
2157
|
-
result = false;
|
|
2158
|
-
}
|
|
2159
|
-
const ret = result;
|
|
2160
|
-
return ret;
|
|
2148
|
+
imports.wbg.__wbg_blendEquationSeparate_95241ffd0f6ab09e = function(arg0, arg1, arg2) {
|
|
2149
|
+
arg0.blendEquationSeparate(arg1 >>> 0, arg2 >>> 0);
|
|
2161
2150
|
};
|
|
2162
|
-
imports.wbg.
|
|
2163
|
-
|
|
2164
|
-
return ret;
|
|
2151
|
+
imports.wbg.__wbg_blendFunc_f31d0f0d227137e0 = function(arg0, arg1, arg2) {
|
|
2152
|
+
arg0.blendFunc(arg1 >>> 0, arg2 >>> 0);
|
|
2165
2153
|
};
|
|
2166
|
-
imports.wbg.
|
|
2167
|
-
|
|
2168
|
-
return ret;
|
|
2154
|
+
imports.wbg.__wbg_blendFuncSeparate_2b607032f14b9381 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
2155
|
+
arg0.blendFuncSeparate(arg1 >>> 0, arg2 >>> 0, arg3 >>> 0, arg4 >>> 0);
|
|
2169
2156
|
};
|
|
2170
|
-
imports.wbg.
|
|
2171
|
-
|
|
2172
|
-
return ret;
|
|
2157
|
+
imports.wbg.__wbg_clear_780c4e5384fe3fc6 = function(arg0, arg1) {
|
|
2158
|
+
arg0.clear(arg1 >>> 0);
|
|
2173
2159
|
};
|
|
2174
|
-
imports.wbg.
|
|
2175
|
-
|
|
2176
|
-
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2177
|
-
const len1 = WASM_VECTOR_LEN;
|
|
2178
|
-
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
2179
|
-
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
2160
|
+
imports.wbg.__wbg_clearDepth_92f7c7d02e50df24 = function(arg0, arg1) {
|
|
2161
|
+
arg0.clearDepth(arg1);
|
|
2180
2162
|
};
|
|
2181
|
-
imports.wbg.
|
|
2182
|
-
|
|
2183
|
-
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2184
|
-
const len1 = WASM_VECTOR_LEN;
|
|
2185
|
-
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
2186
|
-
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
2163
|
+
imports.wbg.__wbg_clearStencil_78b0b3c82001b542 = function(arg0, arg1) {
|
|
2164
|
+
arg0.clearStencil(arg1);
|
|
2187
2165
|
};
|
|
2188
|
-
imports.wbg.
|
|
2189
|
-
|
|
2190
|
-
return ret;
|
|
2166
|
+
imports.wbg.__wbg_colorMask_6a64eb75df60e2cf = function(arg0, arg1, arg2, arg3, arg4) {
|
|
2167
|
+
arg0.colorMask(arg1 !== 0, arg2 !== 0, arg3 !== 0, arg4 !== 0);
|
|
2191
2168
|
};
|
|
2192
|
-
imports.wbg.
|
|
2193
|
-
|
|
2194
|
-
return ret;
|
|
2169
|
+
imports.wbg.__wbg_compileShader_043cc8b99c2efc21 = function(arg0, arg1) {
|
|
2170
|
+
arg0.compileShader(arg1);
|
|
2195
2171
|
};
|
|
2196
|
-
imports.wbg.
|
|
2197
|
-
|
|
2172
|
+
imports.wbg.__wbg_copyTexSubImage2D_8f6644e7df89a307 = function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
|
|
2173
|
+
arg0.copyTexSubImage2D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7, arg8);
|
|
2174
|
+
};
|
|
2175
|
+
imports.wbg.__wbg_createBuffer_9571c039ba6696c6 = function(arg0) {
|
|
2176
|
+
const ret = arg0.createBuffer();
|
|
2198
2177
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2199
2178
|
};
|
|
2200
|
-
imports.wbg.
|
|
2201
|
-
const ret = arg0.
|
|
2202
|
-
return ret;
|
|
2179
|
+
imports.wbg.__wbg_createFramebuffer_20f79ec189ef2060 = function(arg0) {
|
|
2180
|
+
const ret = arg0.createFramebuffer();
|
|
2181
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2203
2182
|
};
|
|
2204
|
-
imports.wbg.
|
|
2205
|
-
|
|
2183
|
+
imports.wbg.__wbg_createProgram_2c3a8969b5a76988 = function(arg0) {
|
|
2184
|
+
const ret = arg0.createProgram();
|
|
2185
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2206
2186
|
};
|
|
2207
|
-
imports.wbg.
|
|
2208
|
-
|
|
2187
|
+
imports.wbg.__wbg_createRenderbuffer_620bdfb7867926e8 = function(arg0) {
|
|
2188
|
+
const ret = arg0.createRenderbuffer();
|
|
2189
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2209
2190
|
};
|
|
2210
|
-
imports.wbg.
|
|
2211
|
-
arg0.
|
|
2191
|
+
imports.wbg.__wbg_createShader_af087106532661d9 = function(arg0, arg1) {
|
|
2192
|
+
const ret = arg0.createShader(arg1 >>> 0);
|
|
2193
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2212
2194
|
};
|
|
2213
|
-
imports.wbg.
|
|
2214
|
-
|
|
2195
|
+
imports.wbg.__wbg_createTexture_e49c36c5f31925a3 = function(arg0) {
|
|
2196
|
+
const ret = arg0.createTexture();
|
|
2197
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2215
2198
|
};
|
|
2216
|
-
imports.wbg.
|
|
2217
|
-
arg0.
|
|
2199
|
+
imports.wbg.__wbg_cullFace_ccad99c645b704eb = function(arg0, arg1) {
|
|
2200
|
+
arg0.cullFace(arg1 >>> 0);
|
|
2218
2201
|
};
|
|
2219
|
-
imports.wbg.
|
|
2220
|
-
|
|
2202
|
+
imports.wbg.__wbg_deleteBuffer_898974b9db136e43 = function(arg0, arg1) {
|
|
2203
|
+
arg0.deleteBuffer(arg1);
|
|
2204
|
+
};
|
|
2205
|
+
imports.wbg.__wbg_deleteFramebuffer_d632dfba2c1f5c75 = function(arg0, arg1) {
|
|
2206
|
+
arg0.deleteFramebuffer(arg1);
|
|
2207
|
+
};
|
|
2208
|
+
imports.wbg.__wbg_deleteProgram_5f938b0667141206 = function(arg0, arg1) {
|
|
2209
|
+
arg0.deleteProgram(arg1);
|
|
2210
|
+
};
|
|
2211
|
+
imports.wbg.__wbg_deleteRenderbuffer_ccae7372581ae424 = function(arg0, arg1) {
|
|
2212
|
+
arg0.deleteRenderbuffer(arg1);
|
|
2213
|
+
};
|
|
2214
|
+
imports.wbg.__wbg_deleteShader_b9bb71cfb1a65a0d = function(arg0, arg1) {
|
|
2215
|
+
arg0.deleteShader(arg1);
|
|
2216
|
+
};
|
|
2217
|
+
imports.wbg.__wbg_deleteTexture_558c751a66bd2f16 = function(arg0, arg1) {
|
|
2218
|
+
arg0.deleteTexture(arg1);
|
|
2219
|
+
};
|
|
2220
|
+
imports.wbg.__wbg_depthFunc_5398fbc3f56db827 = function(arg0, arg1) {
|
|
2221
|
+
arg0.depthFunc(arg1 >>> 0);
|
|
2222
|
+
};
|
|
2223
|
+
imports.wbg.__wbg_depthMask_9b58af067c6393e9 = function(arg0, arg1) {
|
|
2224
|
+
arg0.depthMask(arg1 !== 0);
|
|
2225
|
+
};
|
|
2226
|
+
imports.wbg.__wbg_depthRange_29f0e12388f0eacb = function(arg0, arg1, arg2) {
|
|
2227
|
+
arg0.depthRange(arg1, arg2);
|
|
2228
|
+
};
|
|
2229
|
+
imports.wbg.__wbg_disable_d73e59fee5b5e973 = function(arg0, arg1) {
|
|
2230
|
+
arg0.disable(arg1 >>> 0);
|
|
2231
|
+
};
|
|
2232
|
+
imports.wbg.__wbg_disableVertexAttribArray_b9d8ae826c70526f = function(arg0, arg1) {
|
|
2233
|
+
arg0.disableVertexAttribArray(arg1 >>> 0);
|
|
2234
|
+
};
|
|
2235
|
+
imports.wbg.__wbg_drawArrays_532f4e0a4547dd1f = function(arg0, arg1, arg2, arg3) {
|
|
2236
|
+
arg0.drawArrays(arg1 >>> 0, arg2, arg3);
|
|
2237
|
+
};
|
|
2238
|
+
imports.wbg.__wbg_enable_68b3fa03a633259a = function(arg0, arg1) {
|
|
2239
|
+
arg0.enable(arg1 >>> 0);
|
|
2240
|
+
};
|
|
2241
|
+
imports.wbg.__wbg_enableVertexAttribArray_52c23a516be565c0 = function(arg0, arg1) {
|
|
2242
|
+
arg0.enableVertexAttribArray(arg1 >>> 0);
|
|
2243
|
+
};
|
|
2244
|
+
imports.wbg.__wbg_framebufferRenderbuffer_fee6ceb2330389b7 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
2245
|
+
arg0.framebufferRenderbuffer(arg1 >>> 0, arg2 >>> 0, arg3 >>> 0, arg4);
|
|
2246
|
+
};
|
|
2247
|
+
imports.wbg.__wbg_framebufferTexture2D_ae81a33228e46de6 = function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
2248
|
+
arg0.framebufferTexture2D(arg1 >>> 0, arg2 >>> 0, arg3 >>> 0, arg4, arg5);
|
|
2249
|
+
};
|
|
2250
|
+
imports.wbg.__wbg_frontFace_358bf8c6c5159d54 = function(arg0, arg1) {
|
|
2251
|
+
arg0.frontFace(arg1 >>> 0);
|
|
2252
|
+
};
|
|
2253
|
+
imports.wbg.__wbg_getParameter_8df84a84197f2148 = function() { return handleError(function (arg0, arg1) {
|
|
2254
|
+
const ret = arg0.getParameter(arg1 >>> 0);
|
|
2221
2255
|
return ret;
|
|
2222
2256
|
}, arguments) };
|
|
2223
|
-
imports.wbg.
|
|
2224
|
-
|
|
2225
|
-
|
|
2226
|
-
|
|
2227
|
-
|
|
2228
|
-
|
|
2257
|
+
imports.wbg.__wbg_getProgramInfoLog_22296c36addf7a70 = function(arg0, arg1, arg2) {
|
|
2258
|
+
const ret = arg1.getProgramInfoLog(arg2);
|
|
2259
|
+
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2260
|
+
var len1 = WASM_VECTOR_LEN;
|
|
2261
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2262
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2229
2263
|
};
|
|
2230
|
-
imports.wbg.
|
|
2231
|
-
arg0.
|
|
2264
|
+
imports.wbg.__wbg_getProgramParameter_ab2954ca517d8589 = function(arg0, arg1, arg2) {
|
|
2265
|
+
const ret = arg0.getProgramParameter(arg1, arg2 >>> 0);
|
|
2266
|
+
return ret;
|
|
2232
2267
|
};
|
|
2233
|
-
imports.wbg.
|
|
2234
|
-
|
|
2268
|
+
imports.wbg.__wbg_getShaderInfoLog_935361c52a919c15 = function(arg0, arg1, arg2) {
|
|
2269
|
+
const ret = arg1.getShaderInfoLog(arg2);
|
|
2270
|
+
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2271
|
+
var len1 = WASM_VECTOR_LEN;
|
|
2272
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2273
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2235
2274
|
};
|
|
2236
|
-
imports.wbg.
|
|
2237
|
-
const ret =
|
|
2238
|
-
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2239
|
-
const len1 = WASM_VECTOR_LEN;
|
|
2240
|
-
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
2241
|
-
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
2242
|
-
}, arguments) };
|
|
2243
|
-
imports.wbg.__wbg_setProperty_ea7d15a2b591aa97 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
2244
|
-
arg0.setProperty(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
2245
|
-
}, arguments) };
|
|
2246
|
-
imports.wbg.__wbg_instanceof_HtmlButtonElement_534f7aa847dae46f = function(arg0) {
|
|
2247
|
-
let result;
|
|
2248
|
-
try {
|
|
2249
|
-
result = arg0 instanceof HTMLButtonElement;
|
|
2250
|
-
} catch (_) {
|
|
2251
|
-
result = false;
|
|
2252
|
-
}
|
|
2253
|
-
const ret = result;
|
|
2275
|
+
imports.wbg.__wbg_getShaderParameter_cedb1ec0d8052eff = function(arg0, arg1, arg2) {
|
|
2276
|
+
const ret = arg0.getShaderParameter(arg1, arg2 >>> 0);
|
|
2254
2277
|
return ret;
|
|
2255
2278
|
};
|
|
2256
|
-
imports.wbg.
|
|
2257
|
-
const ret = arg0.
|
|
2279
|
+
imports.wbg.__wbg_getUniformLocation_9cd213015cf8f29f = function(arg0, arg1, arg2, arg3) {
|
|
2280
|
+
const ret = arg0.getUniformLocation(arg1, getStringFromWasm0(arg2, arg3));
|
|
2258
2281
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2259
2282
|
};
|
|
2260
|
-
imports.wbg.
|
|
2261
|
-
|
|
2262
|
-
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2263
|
-
const len1 = WASM_VECTOR_LEN;
|
|
2264
|
-
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
2265
|
-
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
2266
|
-
}, arguments) };
|
|
2267
|
-
imports.wbg.__wbg_touches_c0f077e3c2429577 = function(arg0) {
|
|
2268
|
-
const ret = arg0.touches;
|
|
2269
|
-
return ret;
|
|
2283
|
+
imports.wbg.__wbg_linkProgram_1f18bca817bb6edb = function(arg0, arg1) {
|
|
2284
|
+
arg0.linkProgram(arg1);
|
|
2270
2285
|
};
|
|
2271
|
-
imports.wbg.
|
|
2272
|
-
|
|
2273
|
-
return ret;
|
|
2286
|
+
imports.wbg.__wbg_pixelStorei_2498331e094ff305 = function(arg0, arg1, arg2) {
|
|
2287
|
+
arg0.pixelStorei(arg1 >>> 0, arg2);
|
|
2274
2288
|
};
|
|
2275
|
-
imports.wbg.
|
|
2276
|
-
|
|
2277
|
-
return ret;
|
|
2289
|
+
imports.wbg.__wbg_polygonOffset_6d8d69a8d60e5b82 = function(arg0, arg1, arg2) {
|
|
2290
|
+
arg0.polygonOffset(arg1, arg2);
|
|
2278
2291
|
};
|
|
2279
|
-
imports.wbg.
|
|
2280
|
-
|
|
2281
|
-
return ret;
|
|
2292
|
+
imports.wbg.__wbg_renderbufferStorage_8c3882aa73deada9 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
2293
|
+
arg0.renderbufferStorage(arg1 >>> 0, arg2 >>> 0, arg3, arg4);
|
|
2282
2294
|
};
|
|
2283
|
-
imports.wbg.
|
|
2284
|
-
|
|
2285
|
-
return ret;
|
|
2295
|
+
imports.wbg.__wbg_scissor_d06b14c4966727fa = function(arg0, arg1, arg2, arg3, arg4) {
|
|
2296
|
+
arg0.scissor(arg1, arg2, arg3, arg4);
|
|
2286
2297
|
};
|
|
2287
|
-
imports.wbg.
|
|
2288
|
-
|
|
2289
|
-
return ret;
|
|
2298
|
+
imports.wbg.__wbg_shaderSource_d447b31057e4f64c = function(arg0, arg1, arg2, arg3) {
|
|
2299
|
+
arg0.shaderSource(arg1, getStringFromWasm0(arg2, arg3));
|
|
2290
2300
|
};
|
|
2291
|
-
imports.wbg.
|
|
2292
|
-
|
|
2293
|
-
return ret;
|
|
2301
|
+
imports.wbg.__wbg_stencilFuncSeparate_55376d035e74caf1 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
2302
|
+
arg0.stencilFuncSeparate(arg1 >>> 0, arg2 >>> 0, arg3, arg4 >>> 0);
|
|
2294
2303
|
};
|
|
2295
|
-
imports.wbg.
|
|
2296
|
-
|
|
2297
|
-
return ret;
|
|
2304
|
+
imports.wbg.__wbg_stencilMask_f55f160fc49b981a = function(arg0, arg1) {
|
|
2305
|
+
arg0.stencilMask(arg1 >>> 0);
|
|
2298
2306
|
};
|
|
2299
|
-
imports.wbg.
|
|
2307
|
+
imports.wbg.__wbg_stencilMaskSeparate_578fd1281f54081e = function(arg0, arg1, arg2) {
|
|
2308
|
+
arg0.stencilMaskSeparate(arg1 >>> 0, arg2 >>> 0);
|
|
2309
|
+
};
|
|
2310
|
+
imports.wbg.__wbg_stencilOpSeparate_ea6f96abd32aae5b = function(arg0, arg1, arg2, arg3, arg4) {
|
|
2311
|
+
arg0.stencilOpSeparate(arg1 >>> 0, arg2 >>> 0, arg3 >>> 0, arg4 >>> 0);
|
|
2312
|
+
};
|
|
2313
|
+
imports.wbg.__wbg_texParameteri_83ad7181b62f4997 = function(arg0, arg1, arg2, arg3) {
|
|
2314
|
+
arg0.texParameteri(arg1 >>> 0, arg2 >>> 0, arg3);
|
|
2315
|
+
};
|
|
2316
|
+
imports.wbg.__wbg_uniform1f_509b4ba100d75456 = function(arg0, arg1, arg2) {
|
|
2317
|
+
arg0.uniform1f(arg1, arg2);
|
|
2318
|
+
};
|
|
2319
|
+
imports.wbg.__wbg_uniform1i_7f6e60c975d21e0a = function(arg0, arg1, arg2) {
|
|
2320
|
+
arg0.uniform1i(arg1, arg2);
|
|
2321
|
+
};
|
|
2322
|
+
imports.wbg.__wbg_uniform4f_f9a7809965964840 = function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
2323
|
+
arg0.uniform4f(arg1, arg2, arg3, arg4, arg5);
|
|
2324
|
+
};
|
|
2325
|
+
imports.wbg.__wbg_useProgram_d4616618ac6d0652 = function(arg0, arg1) {
|
|
2326
|
+
arg0.useProgram(arg1);
|
|
2327
|
+
};
|
|
2328
|
+
imports.wbg.__wbg_vertexAttribPointer_fcbfe42523d724ca = function(arg0, arg1, arg2, arg3, arg4, arg5, arg6) {
|
|
2329
|
+
arg0.vertexAttribPointer(arg1 >>> 0, arg2, arg3 >>> 0, arg4 !== 0, arg5, arg6);
|
|
2330
|
+
};
|
|
2331
|
+
imports.wbg.__wbg_viewport_efc09c09d4f3cc48 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
2332
|
+
arg0.viewport(arg1, arg2, arg3, arg4);
|
|
2333
|
+
};
|
|
2334
|
+
imports.wbg.__wbg_getSupportedProfiles_13c2c2008a14070f = function(arg0) {
|
|
2335
|
+
const ret = arg0.getSupportedProfiles();
|
|
2336
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2337
|
+
};
|
|
2338
|
+
imports.wbg.__wbg_setbox_0d838a2d268b7fac = function(arg0, arg1) {
|
|
2339
|
+
arg0.box = ["border-box","content-box","device-pixel-content-box",][arg1];
|
|
2340
|
+
};
|
|
2341
|
+
imports.wbg.__wbg_instanceof_Blob_a959e04f44007d16 = function(arg0) {
|
|
2300
2342
|
let result;
|
|
2301
2343
|
try {
|
|
2302
|
-
result = arg0 instanceof
|
|
2344
|
+
result = arg0 instanceof Blob;
|
|
2303
2345
|
} catch (_) {
|
|
2304
2346
|
result = false;
|
|
2305
2347
|
}
|
|
2306
2348
|
const ret = result;
|
|
2307
2349
|
return ret;
|
|
2308
2350
|
};
|
|
2309
|
-
imports.wbg.
|
|
2310
|
-
const ret = arg0.
|
|
2351
|
+
imports.wbg.__wbg_size_8bb43f42080caff8 = function(arg0) {
|
|
2352
|
+
const ret = arg0.size;
|
|
2311
2353
|
return ret;
|
|
2312
2354
|
};
|
|
2313
|
-
imports.wbg.
|
|
2314
|
-
|
|
2355
|
+
imports.wbg.__wbg_type_942eb9d383a1178d = function(arg0, arg1) {
|
|
2356
|
+
const ret = arg1.type;
|
|
2357
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2358
|
+
const len1 = WASM_VECTOR_LEN;
|
|
2359
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2360
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2315
2361
|
};
|
|
2316
|
-
imports.wbg.
|
|
2317
|
-
const ret = arg0
|
|
2362
|
+
imports.wbg.__wbg_newwithu8arraysequenceandoptions_c8bc456a23f02fca = function() { return handleError(function (arg0, arg1) {
|
|
2363
|
+
const ret = new Blob(arg0, arg1);
|
|
2364
|
+
return ret;
|
|
2365
|
+
}, arguments) };
|
|
2366
|
+
imports.wbg.__wbg_arrayBuffer_c421744ca0e5f0bb = function(arg0) {
|
|
2367
|
+
const ret = arg0.arrayBuffer();
|
|
2318
2368
|
return ret;
|
|
2319
2369
|
};
|
|
2320
|
-
imports.wbg.
|
|
2321
|
-
|
|
2370
|
+
imports.wbg.__wbg_items_10520d7d65f12510 = function(arg0) {
|
|
2371
|
+
const ret = arg0.items;
|
|
2372
|
+
return ret;
|
|
2322
2373
|
};
|
|
2323
|
-
imports.wbg.
|
|
2324
|
-
const ret = arg0.
|
|
2325
|
-
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2326
|
-
}, arguments) };
|
|
2327
|
-
imports.wbg.__wbg_getContext_fec464290556673c = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
2328
|
-
const ret = arg0.getContext(getStringFromWasm0(arg1, arg2), arg3);
|
|
2374
|
+
imports.wbg.__wbg_files_a4b6a9811697ac84 = function(arg0) {
|
|
2375
|
+
const ret = arg0.files;
|
|
2329
2376
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2377
|
+
};
|
|
2378
|
+
imports.wbg.__wbg_getData_b768ea3ff59e2a13 = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
2379
|
+
const ret = arg1.getData(getStringFromWasm0(arg2, arg3));
|
|
2380
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2381
|
+
const len1 = WASM_VECTOR_LEN;
|
|
2382
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2383
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2330
2384
|
}, arguments) };
|
|
2331
|
-
imports.wbg.
|
|
2332
|
-
const ret =
|
|
2333
|
-
|
|
2385
|
+
imports.wbg.__wbg_message_fde1ade05259137c = function(arg0, arg1) {
|
|
2386
|
+
const ret = arg1.message;
|
|
2387
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2388
|
+
const len1 = WASM_VECTOR_LEN;
|
|
2389
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2390
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2334
2391
|
};
|
|
2335
|
-
imports.wbg.
|
|
2336
|
-
arg0.
|
|
2392
|
+
imports.wbg.__wbg_error_f4a23af7ac524546 = function(arg0) {
|
|
2393
|
+
const ret = arg0.error;
|
|
2394
|
+
return ret;
|
|
2395
|
+
};
|
|
2396
|
+
imports.wbg.__wbg_addEventListener_e167f012cbedfa4e = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
2397
|
+
arg0.addEventListener(getStringFromWasm0(arg1, arg2), arg3);
|
|
2337
2398
|
}, arguments) };
|
|
2338
|
-
imports.wbg.
|
|
2339
|
-
|
|
2340
|
-
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2341
|
-
var len1 = WASM_VECTOR_LEN;
|
|
2342
|
-
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
2343
|
-
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
2399
|
+
imports.wbg.__wbg_removeEventListener_b6cef5ad085bea8f = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
2400
|
+
arg0.removeEventListener(getStringFromWasm0(arg1, arg2), arg3);
|
|
2344
2401
|
}, arguments) };
|
|
2345
|
-
imports.wbg.
|
|
2346
|
-
|
|
2402
|
+
imports.wbg.__wbg_state_b863826253700666 = function() { return handleError(function (arg0) {
|
|
2403
|
+
const ret = arg0.state;
|
|
2404
|
+
return ret;
|
|
2347
2405
|
}, arguments) };
|
|
2348
|
-
imports.wbg.
|
|
2349
|
-
|
|
2406
|
+
imports.wbg.__wbg_back_2b44401f98571e5e = function() { return handleError(function (arg0) {
|
|
2407
|
+
arg0.back();
|
|
2350
2408
|
}, arguments) };
|
|
2351
|
-
imports.wbg.
|
|
2352
|
-
|
|
2409
|
+
imports.wbg.__wbg_forward_5d07c36d03f1d798 = function() { return handleError(function (arg0) {
|
|
2410
|
+
arg0.forward();
|
|
2411
|
+
}, arguments) };
|
|
2412
|
+
imports.wbg.__wbg_pushState_fc8b2d0c45854901 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
2413
|
+
arg0.pushState(arg1, getStringFromWasm0(arg2, arg3), arg4 === 0 ? undefined : getStringFromWasm0(arg4, arg5));
|
|
2414
|
+
}, arguments) };
|
|
2415
|
+
imports.wbg.__wbg_new_42acb42ec2ace97c = function() { return handleError(function (arg0) {
|
|
2416
|
+
const ret = new ResizeObserver(arg0);
|
|
2353
2417
|
return ret;
|
|
2418
|
+
}, arguments) };
|
|
2419
|
+
imports.wbg.__wbg_disconnect_1dbf7e19d9590abd = function(arg0) {
|
|
2420
|
+
arg0.disconnect();
|
|
2354
2421
|
};
|
|
2355
|
-
imports.wbg.
|
|
2356
|
-
|
|
2357
|
-
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2358
|
-
};
|
|
2359
|
-
imports.wbg.__wbg_get_cbca0027ab731230 = function(arg0, arg1) {
|
|
2360
|
-
const ret = arg0[arg1 >>> 0];
|
|
2361
|
-
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2422
|
+
imports.wbg.__wbg_observe_60f3631b2f7c6d8b = function(arg0, arg1, arg2) {
|
|
2423
|
+
arg0.observe(arg1, arg2);
|
|
2362
2424
|
};
|
|
2363
|
-
imports.wbg.
|
|
2364
|
-
const ret = new
|
|
2425
|
+
imports.wbg.__wbg_new_641501f88c20bbcd = function() { return handleError(function (arg0) {
|
|
2426
|
+
const ret = new EncodedVideoChunk(arg0);
|
|
2365
2427
|
return ret;
|
|
2366
2428
|
}, arguments) };
|
|
2367
|
-
imports.wbg.
|
|
2368
|
-
|
|
2429
|
+
imports.wbg.__wbg_instanceof_HtmlInputElement_88bf515ab1d9511d = function(arg0) {
|
|
2430
|
+
let result;
|
|
2431
|
+
try {
|
|
2432
|
+
result = arg0 instanceof HTMLInputElement;
|
|
2433
|
+
} catch (_) {
|
|
2434
|
+
result = false;
|
|
2435
|
+
}
|
|
2436
|
+
const ret = result;
|
|
2437
|
+
return ret;
|
|
2369
2438
|
};
|
|
2370
|
-
imports.wbg.
|
|
2371
|
-
arg0.
|
|
2439
|
+
imports.wbg.__wbg_setaccept_ecbe2b14b78fc505 = function(arg0, arg1, arg2) {
|
|
2440
|
+
arg0.accept = getStringFromWasm0(arg1, arg2);
|
|
2372
2441
|
};
|
|
2373
|
-
imports.wbg.
|
|
2374
|
-
|
|
2375
|
-
return ret;
|
|
2442
|
+
imports.wbg.__wbg_setautofocus_7aec271950af807b = function(arg0, arg1) {
|
|
2443
|
+
arg0.autofocus = arg1 !== 0;
|
|
2376
2444
|
};
|
|
2377
|
-
imports.wbg.
|
|
2378
|
-
const ret = arg0.
|
|
2379
|
-
return ret;
|
|
2445
|
+
imports.wbg.__wbg_files_b94d8f21e2b53924 = function(arg0) {
|
|
2446
|
+
const ret = arg0.files;
|
|
2447
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2380
2448
|
};
|
|
2381
|
-
imports.wbg.
|
|
2382
|
-
|
|
2383
|
-
|
|
2449
|
+
imports.wbg.__wbg_setmultiple_d67da734cbada979 = function(arg0, arg1) {
|
|
2450
|
+
arg0.multiple = arg1 !== 0;
|
|
2451
|
+
};
|
|
2452
|
+
imports.wbg.__wbg_settype_c348825948b36c71 = function(arg0, arg1, arg2) {
|
|
2453
|
+
arg0.type = getStringFromWasm0(arg1, arg2);
|
|
2454
|
+
};
|
|
2455
|
+
imports.wbg.__wbg_value_d4a95e7a0d390578 = function(arg0, arg1) {
|
|
2456
|
+
const ret = arg1.value;
|
|
2457
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2458
|
+
const len1 = WASM_VECTOR_LEN;
|
|
2459
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2460
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2461
|
+
};
|
|
2462
|
+
imports.wbg.__wbg_setvalue_688819688274bec0 = function(arg0, arg1, arg2) {
|
|
2463
|
+
arg0.value = getStringFromWasm0(arg1, arg2);
|
|
2384
2464
|
};
|
|
2385
|
-
imports.wbg.
|
|
2465
|
+
imports.wbg.__wbg_instanceof_ResizeObserverEntry_2c660d999b961603 = function(arg0) {
|
|
2386
2466
|
let result;
|
|
2387
2467
|
try {
|
|
2388
|
-
result = arg0 instanceof
|
|
2468
|
+
result = arg0 instanceof ResizeObserverEntry;
|
|
2389
2469
|
} catch (_) {
|
|
2390
2470
|
result = false;
|
|
2391
2471
|
}
|
|
2392
2472
|
const ret = result;
|
|
2393
2473
|
return ret;
|
|
2394
2474
|
};
|
|
2395
|
-
imports.wbg.
|
|
2396
|
-
const ret = arg0.
|
|
2475
|
+
imports.wbg.__wbg_contentRect_c1a9045c459744d9 = function(arg0) {
|
|
2476
|
+
const ret = arg0.contentRect;
|
|
2397
2477
|
return ret;
|
|
2398
2478
|
};
|
|
2399
|
-
imports.wbg.
|
|
2400
|
-
const ret =
|
|
2401
|
-
|
|
2402
|
-
const len1 = WASM_VECTOR_LEN;
|
|
2403
|
-
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
2404
|
-
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
2479
|
+
imports.wbg.__wbg_contentBoxSize_a2d93ded171ea1de = function(arg0) {
|
|
2480
|
+
const ret = arg0.contentBoxSize;
|
|
2481
|
+
return ret;
|
|
2405
2482
|
};
|
|
2406
|
-
imports.wbg.
|
|
2407
|
-
const ret =
|
|
2483
|
+
imports.wbg.__wbg_devicePixelContentBoxSize_8d531ca6a4331b28 = function(arg0) {
|
|
2484
|
+
const ret = arg0.devicePixelContentBoxSize;
|
|
2408
2485
|
return ret;
|
|
2486
|
+
};
|
|
2487
|
+
imports.wbg.__wbg_getItem_cab39762abab3e70 = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
2488
|
+
const ret = arg1.getItem(getStringFromWasm0(arg2, arg3));
|
|
2489
|
+
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2490
|
+
var len1 = WASM_VECTOR_LEN;
|
|
2491
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2492
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2409
2493
|
}, arguments) };
|
|
2410
|
-
imports.wbg.
|
|
2411
|
-
|
|
2494
|
+
imports.wbg.__wbg_setItem_9482185c870abba6 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
2495
|
+
arg0.setItem(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
2496
|
+
}, arguments) };
|
|
2497
|
+
imports.wbg.__wbg_delete_0441826dbfb45509 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
2498
|
+
delete arg0[getStringFromWasm0(arg1, arg2)];
|
|
2499
|
+
}, arguments) };
|
|
2500
|
+
imports.wbg.__wbg_touches_91ecfe75e4e0bff0 = function(arg0) {
|
|
2501
|
+
const ret = arg0.touches;
|
|
2412
2502
|
return ret;
|
|
2413
2503
|
};
|
|
2414
|
-
imports.wbg.
|
|
2415
|
-
const ret = arg0.
|
|
2504
|
+
imports.wbg.__wbg_changedTouches_8a2627b3dec12eed = function(arg0) {
|
|
2505
|
+
const ret = arg0.changedTouches;
|
|
2416
2506
|
return ret;
|
|
2417
|
-
}, arguments) };
|
|
2418
|
-
imports.wbg.__wbg_setonload_0af77109dbfaa065 = function(arg0, arg1) {
|
|
2419
|
-
arg0.onload = arg1;
|
|
2420
2507
|
};
|
|
2421
|
-
imports.wbg.
|
|
2422
|
-
arg0.
|
|
2508
|
+
imports.wbg.__wbg_setbody_734cb3d7ee8e6e96 = function(arg0, arg1) {
|
|
2509
|
+
arg0.body = arg1;
|
|
2423
2510
|
};
|
|
2424
|
-
imports.wbg.
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2511
|
+
imports.wbg.__wbg_setmethod_dc68a742c2db5c6a = function(arg0, arg1, arg2) {
|
|
2512
|
+
arg0.method = getStringFromWasm0(arg1, arg2);
|
|
2513
|
+
};
|
|
2514
|
+
imports.wbg.__wbg_setmode_a781aae2bd3df202 = function(arg0, arg1) {
|
|
2515
|
+
arg0.mode = ["same-origin","no-cors","cors","navigate",][arg1];
|
|
2516
|
+
};
|
|
2517
|
+
imports.wbg.__wbg_drawArraysInstancedANGLE_7c668fc363789760 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
2518
|
+
arg0.drawArraysInstancedANGLE(arg1 >>> 0, arg2, arg3, arg4);
|
|
2519
|
+
};
|
|
2520
|
+
imports.wbg.__wbg_drawElementsInstancedANGLE_7d0baa058556f76c = function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
2521
|
+
arg0.drawElementsInstancedANGLE(arg1 >>> 0, arg2, arg3 >>> 0, arg4, arg5);
|
|
2522
|
+
};
|
|
2523
|
+
imports.wbg.__wbg_vertexAttribDivisorANGLE_ff0ade84fc10084b = function(arg0, arg1, arg2) {
|
|
2524
|
+
arg0.vertexAttribDivisorANGLE(arg1 >>> 0, arg2 >>> 0);
|
|
2525
|
+
};
|
|
2526
|
+
imports.wbg.__wbg_data_ee8c1a738c70cbe1 = function(arg0, arg1) {
|
|
2527
|
+
const ret = arg1.data;
|
|
2528
|
+
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2529
|
+
var len1 = WASM_VECTOR_LEN;
|
|
2530
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2531
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2532
|
+
};
|
|
2533
|
+
imports.wbg.__wbg_length_dbcf0a2509bc8271 = function(arg0) {
|
|
2534
|
+
const ret = arg0.length;
|
|
2433
2535
|
return ret;
|
|
2434
2536
|
};
|
|
2435
|
-
imports.wbg.
|
|
2436
|
-
const ret = arg0
|
|
2437
|
-
return ret;
|
|
2537
|
+
imports.wbg.__wbg_get_39fc1e9743f29cdd = function(arg0, arg1) {
|
|
2538
|
+
const ret = arg0[arg1 >>> 0];
|
|
2539
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2540
|
+
};
|
|
2541
|
+
imports.wbg.__wbg_preventDefault_c55d86c27b2dfa6e = function(arg0) {
|
|
2542
|
+
arg0.preventDefault();
|
|
2438
2543
|
};
|
|
2439
|
-
imports.wbg.
|
|
2440
|
-
|
|
2544
|
+
imports.wbg.__wbg_stopPropagation_dd0d50059627b362 = function(arg0) {
|
|
2545
|
+
arg0.stopPropagation();
|
|
2546
|
+
};
|
|
2547
|
+
imports.wbg.__wbg_set_b3c7c6d2e5e783d6 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
2548
|
+
arg0.set(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
2549
|
+
}, arguments) };
|
|
2550
|
+
imports.wbg.__wbg_clientX_3967ecd5e962e1b2 = function(arg0) {
|
|
2551
|
+
const ret = arg0.clientX;
|
|
2441
2552
|
return ret;
|
|
2442
2553
|
};
|
|
2443
|
-
imports.wbg.
|
|
2444
|
-
const ret = arg0.
|
|
2554
|
+
imports.wbg.__wbg_clientY_37d418b8d9c0bb52 = function(arg0) {
|
|
2555
|
+
const ret = arg0.clientY;
|
|
2445
2556
|
return ret;
|
|
2446
2557
|
};
|
|
2447
|
-
imports.wbg.
|
|
2558
|
+
imports.wbg.__wbg_ctrlKey_957c6c31b62b4550 = function(arg0) {
|
|
2448
2559
|
const ret = arg0.ctrlKey;
|
|
2449
2560
|
return ret;
|
|
2450
2561
|
};
|
|
2451
|
-
imports.wbg.
|
|
2562
|
+
imports.wbg.__wbg_shiftKey_8c0f9a5ca3ff8f93 = function(arg0) {
|
|
2452
2563
|
const ret = arg0.shiftKey;
|
|
2453
2564
|
return ret;
|
|
2454
2565
|
};
|
|
2455
|
-
imports.wbg.
|
|
2456
|
-
const ret = arg0.
|
|
2566
|
+
imports.wbg.__wbg_altKey_d3fbce7596aac8cf = function(arg0) {
|
|
2567
|
+
const ret = arg0.altKey;
|
|
2457
2568
|
return ret;
|
|
2458
2569
|
};
|
|
2459
|
-
imports.wbg.
|
|
2460
|
-
const ret = arg0.
|
|
2570
|
+
imports.wbg.__wbg_metaKey_be0158b14b1cef4a = function(arg0) {
|
|
2571
|
+
const ret = arg0.metaKey;
|
|
2461
2572
|
return ret;
|
|
2462
2573
|
};
|
|
2463
|
-
imports.wbg.
|
|
2464
|
-
const ret =
|
|
2465
|
-
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2466
|
-
const len1 = WASM_VECTOR_LEN;
|
|
2467
|
-
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
2468
|
-
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
2469
|
-
};
|
|
2470
|
-
imports.wbg.__wbg_matches_dd4fdea75008ad05 = function(arg0) {
|
|
2471
|
-
const ret = arg0.matches;
|
|
2574
|
+
imports.wbg.__wbg_button_460cdec9f2512a91 = function(arg0) {
|
|
2575
|
+
const ret = arg0.button;
|
|
2472
2576
|
return ret;
|
|
2473
2577
|
};
|
|
2474
|
-
imports.wbg.
|
|
2578
|
+
imports.wbg.__wbg_instanceof_ResizeObserverSize_200bcfcb71907f3f = function(arg0) {
|
|
2475
2579
|
let result;
|
|
2476
2580
|
try {
|
|
2477
|
-
result = arg0 instanceof
|
|
2581
|
+
result = arg0 instanceof ResizeObserverSize;
|
|
2478
2582
|
} catch (_) {
|
|
2479
2583
|
result = false;
|
|
2480
2584
|
}
|
|
2481
2585
|
const ret = result;
|
|
2482
2586
|
return ret;
|
|
2483
2587
|
};
|
|
2484
|
-
imports.wbg.
|
|
2485
|
-
const ret = arg0.
|
|
2588
|
+
imports.wbg.__wbg_inlineSize_322ab111c2b5c9e3 = function(arg0) {
|
|
2589
|
+
const ret = arg0.inlineSize;
|
|
2486
2590
|
return ret;
|
|
2487
2591
|
};
|
|
2488
|
-
imports.wbg.
|
|
2489
|
-
const ret = arg0.
|
|
2592
|
+
imports.wbg.__wbg_blockSize_981c4dfa6e1263a8 = function(arg0) {
|
|
2593
|
+
const ret = arg0.blockSize;
|
|
2490
2594
|
return ret;
|
|
2491
2595
|
};
|
|
2492
|
-
imports.wbg.
|
|
2493
|
-
|
|
2596
|
+
imports.wbg.__wbg_identifier_e39f89e9c0a1a3fc = function(arg0) {
|
|
2597
|
+
const ret = arg0.identifier;
|
|
2598
|
+
return ret;
|
|
2494
2599
|
};
|
|
2495
|
-
imports.wbg.
|
|
2496
|
-
const ret = arg0.
|
|
2600
|
+
imports.wbg.__wbg_clientX_6ea27dc5cef626dd = function(arg0) {
|
|
2601
|
+
const ret = arg0.clientX;
|
|
2497
2602
|
return ret;
|
|
2498
2603
|
};
|
|
2499
|
-
imports.wbg.
|
|
2500
|
-
|
|
2604
|
+
imports.wbg.__wbg_clientY_78f18a39f2f06125 = function(arg0) {
|
|
2605
|
+
const ret = arg0.clientY;
|
|
2606
|
+
return ret;
|
|
2501
2607
|
};
|
|
2502
|
-
imports.wbg.
|
|
2503
|
-
const ret = arg0.
|
|
2504
|
-
return
|
|
2505
|
-
}, arguments) };
|
|
2506
|
-
imports.wbg.__wbg_getContext_c9fc178d1fa6f8fe = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
2507
|
-
const ret = arg0.getContext(getStringFromWasm0(arg1, arg2), arg3);
|
|
2508
|
-
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2509
|
-
}, arguments) };
|
|
2510
|
-
imports.wbg.__wbg_drawBuffersWEBGL_4c663e042e093892 = function(arg0, arg1) {
|
|
2511
|
-
arg0.drawBuffersWEBGL(arg1);
|
|
2608
|
+
imports.wbg.__wbg_force_f43e873103b4f9c8 = function(arg0) {
|
|
2609
|
+
const ret = arg0.force;
|
|
2610
|
+
return ret;
|
|
2512
2611
|
};
|
|
2513
|
-
imports.wbg.
|
|
2514
|
-
|
|
2612
|
+
imports.wbg.__wbg_setdata_15d5fc7ac2d677ba = function(arg0, arg1) {
|
|
2613
|
+
arg0.data = arg1;
|
|
2614
|
+
};
|
|
2615
|
+
imports.wbg.__wbg_settimestamp_d47750cc8a1c3d3a = function(arg0, arg1) {
|
|
2616
|
+
arg0.timestamp = arg1;
|
|
2617
|
+
};
|
|
2618
|
+
imports.wbg.__wbg_settype_b2524af382b4b097 = function(arg0, arg1) {
|
|
2619
|
+
arg0.type = ["key","delta",][arg1];
|
|
2620
|
+
};
|
|
2621
|
+
imports.wbg.__wbg_setduration_611fb9e156dff581 = function(arg0, arg1) {
|
|
2622
|
+
arg0.duration = arg1;
|
|
2623
|
+
};
|
|
2624
|
+
imports.wbg.__wbg_writeText_20fb3f7393d34052 = function(arg0, arg1, arg2) {
|
|
2625
|
+
const ret = arg0.writeText(getStringFromWasm0(arg1, arg2));
|
|
2626
|
+
return ret;
|
|
2627
|
+
};
|
|
2628
|
+
imports.wbg.__wbg_type_2716f55e3b73bcf3 = function(arg0, arg1) {
|
|
2629
|
+
const ret = arg1.type;
|
|
2515
2630
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2516
2631
|
const len1 = WASM_VECTOR_LEN;
|
|
2517
|
-
|
|
2518
|
-
|
|
2632
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2633
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2519
2634
|
};
|
|
2520
|
-
imports.wbg.
|
|
2521
|
-
const ret = arg0.
|
|
2635
|
+
imports.wbg.__wbg_length_f2469772b8ec9ea3 = function(arg0) {
|
|
2636
|
+
const ret = arg0.length;
|
|
2637
|
+
return ret;
|
|
2638
|
+
};
|
|
2639
|
+
imports.wbg.__wbg_get_6d8ff52d2078d871 = function(arg0, arg1) {
|
|
2640
|
+
const ret = arg0[arg1 >>> 0];
|
|
2641
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2642
|
+
};
|
|
2643
|
+
imports.wbg.__wbg_matches_42eb40a28a316d0e = function(arg0) {
|
|
2644
|
+
const ret = arg0.matches;
|
|
2522
2645
|
return ret;
|
|
2523
2646
|
};
|
|
2524
|
-
imports.wbg.
|
|
2647
|
+
imports.wbg.__wbg_matches_95beaf2233aaf53d = function(arg0) {
|
|
2525
2648
|
const ret = arg0.matches;
|
|
2526
2649
|
return ret;
|
|
2527
2650
|
};
|
|
2528
|
-
imports.wbg.
|
|
2529
|
-
const ret = arg0.
|
|
2651
|
+
imports.wbg.__wbg_clipboard_0d7b5c390c14b0e6 = function(arg0) {
|
|
2652
|
+
const ret = arg0.clipboard;
|
|
2530
2653
|
return ret;
|
|
2654
|
+
};
|
|
2655
|
+
imports.wbg.__wbg_userAgent_58dedff4303aeb66 = function() { return handleError(function (arg0, arg1) {
|
|
2656
|
+
const ret = arg1.userAgent;
|
|
2657
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2658
|
+
const len1 = WASM_VECTOR_LEN;
|
|
2659
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2660
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2531
2661
|
}, arguments) };
|
|
2532
|
-
imports.wbg.
|
|
2533
|
-
const ret = arg0
|
|
2534
|
-
return
|
|
2662
|
+
imports.wbg.__wbg_now_a69647afb1f66247 = function(arg0) {
|
|
2663
|
+
const ret = arg0.now();
|
|
2664
|
+
return ret;
|
|
2535
2665
|
};
|
|
2536
|
-
imports.wbg.
|
|
2537
|
-
const ret =
|
|
2666
|
+
imports.wbg.__wbg_name_ed3cda975cce080d = function(arg0, arg1) {
|
|
2667
|
+
const ret = arg1.name;
|
|
2668
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2669
|
+
const len1 = WASM_VECTOR_LEN;
|
|
2670
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2671
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2672
|
+
};
|
|
2673
|
+
imports.wbg.__wbg_lastModified_74d26354812e6299 = function(arg0) {
|
|
2674
|
+
const ret = arg0.lastModified;
|
|
2538
2675
|
return ret;
|
|
2539
2676
|
};
|
|
2540
|
-
imports.wbg.
|
|
2677
|
+
imports.wbg.__wbg_instanceof_HtmlAnchorElement_7a88f0b97085fa30 = function(arg0) {
|
|
2541
2678
|
let result;
|
|
2542
2679
|
try {
|
|
2543
|
-
result = arg0 instanceof
|
|
2680
|
+
result = arg0 instanceof HTMLAnchorElement;
|
|
2544
2681
|
} catch (_) {
|
|
2545
2682
|
result = false;
|
|
2546
2683
|
}
|
|
2547
2684
|
const ret = result;
|
|
2548
2685
|
return ret;
|
|
2549
2686
|
};
|
|
2550
|
-
imports.wbg.
|
|
2551
|
-
|
|
2552
|
-
|
|
2687
|
+
imports.wbg.__wbg_setdownload_c4a56cf2790f498a = function(arg0, arg1, arg2) {
|
|
2688
|
+
arg0.download = getStringFromWasm0(arg1, arg2);
|
|
2689
|
+
};
|
|
2690
|
+
imports.wbg.__wbg_sethref_e76addd808540f69 = function(arg0, arg1, arg2) {
|
|
2691
|
+
arg0.href = getStringFromWasm0(arg1, arg2);
|
|
2692
|
+
};
|
|
2693
|
+
imports.wbg.__wbg_videoWidth_5f4190ae93af0dd6 = function(arg0) {
|
|
2694
|
+
const ret = arg0.videoWidth;
|
|
2695
|
+
return ret;
|
|
2696
|
+
};
|
|
2697
|
+
imports.wbg.__wbg_videoHeight_4fb4bdd27e02263a = function(arg0) {
|
|
2698
|
+
const ret = arg0.videoHeight;
|
|
2699
|
+
return ret;
|
|
2553
2700
|
};
|
|
2554
|
-
imports.wbg.
|
|
2701
|
+
imports.wbg.__wbg_href_9c2fe204628af7a3 = function() { return handleError(function (arg0, arg1) {
|
|
2555
2702
|
const ret = arg1.href;
|
|
2556
2703
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2557
2704
|
const len1 = WASM_VECTOR_LEN;
|
|
2558
|
-
|
|
2559
|
-
|
|
2705
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2706
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2560
2707
|
}, arguments) };
|
|
2561
|
-
imports.wbg.
|
|
2708
|
+
imports.wbg.__wbg_origin_648082c4831a5be8 = function() { return handleError(function (arg0, arg1) {
|
|
2562
2709
|
const ret = arg1.origin;
|
|
2563
2710
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2564
2711
|
const len1 = WASM_VECTOR_LEN;
|
|
2565
|
-
|
|
2566
|
-
|
|
2712
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2713
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2567
2714
|
}, arguments) };
|
|
2568
|
-
imports.wbg.
|
|
2715
|
+
imports.wbg.__wbg_protocol_787951293a197961 = function() { return handleError(function (arg0, arg1) {
|
|
2569
2716
|
const ret = arg1.protocol;
|
|
2570
2717
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2571
2718
|
const len1 = WASM_VECTOR_LEN;
|
|
2572
|
-
|
|
2573
|
-
|
|
2719
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2720
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2574
2721
|
}, arguments) };
|
|
2575
|
-
imports.wbg.
|
|
2722
|
+
imports.wbg.__wbg_host_a46347409a9511bd = function() { return handleError(function (arg0, arg1) {
|
|
2576
2723
|
const ret = arg1.host;
|
|
2577
2724
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2578
2725
|
const len1 = WASM_VECTOR_LEN;
|
|
2579
|
-
|
|
2580
|
-
|
|
2726
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2727
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2581
2728
|
}, arguments) };
|
|
2582
|
-
imports.wbg.
|
|
2729
|
+
imports.wbg.__wbg_hostname_d7ff17205929a46d = function() { return handleError(function (arg0, arg1) {
|
|
2583
2730
|
const ret = arg1.hostname;
|
|
2584
2731
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2585
2732
|
const len1 = WASM_VECTOR_LEN;
|
|
2586
|
-
|
|
2587
|
-
|
|
2733
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2734
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2588
2735
|
}, arguments) };
|
|
2589
|
-
imports.wbg.
|
|
2736
|
+
imports.wbg.__wbg_port_aeb48b36b706a841 = function() { return handleError(function (arg0, arg1) {
|
|
2590
2737
|
const ret = arg1.port;
|
|
2591
2738
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2592
2739
|
const len1 = WASM_VECTOR_LEN;
|
|
2593
|
-
|
|
2594
|
-
|
|
2740
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2741
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2595
2742
|
}, arguments) };
|
|
2596
|
-
imports.wbg.
|
|
2743
|
+
imports.wbg.__wbg_pathname_6e6871539b48a0e5 = function() { return handleError(function (arg0, arg1) {
|
|
2597
2744
|
const ret = arg1.pathname;
|
|
2598
2745
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2599
2746
|
const len1 = WASM_VECTOR_LEN;
|
|
2600
|
-
|
|
2601
|
-
|
|
2747
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2748
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2602
2749
|
}, arguments) };
|
|
2603
|
-
imports.wbg.
|
|
2750
|
+
imports.wbg.__wbg_search_20c15d493b8602c5 = function() { return handleError(function (arg0, arg1) {
|
|
2604
2751
|
const ret = arg1.search;
|
|
2605
2752
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2606
2753
|
const len1 = WASM_VECTOR_LEN;
|
|
2607
|
-
|
|
2608
|
-
|
|
2754
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2755
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2609
2756
|
}, arguments) };
|
|
2610
|
-
imports.wbg.
|
|
2757
|
+
imports.wbg.__wbg_hash_313d7fdf42f6e7d3 = function() { return handleError(function (arg0, arg1) {
|
|
2611
2758
|
const ret = arg1.hash;
|
|
2612
2759
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2613
2760
|
const len1 = WASM_VECTOR_LEN;
|
|
2614
|
-
|
|
2615
|
-
|
|
2761
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2762
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2616
2763
|
}, arguments) };
|
|
2617
|
-
imports.wbg.
|
|
2764
|
+
imports.wbg.__wbg_assign_01c9de4343368001 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
2618
2765
|
arg0.assign(getStringFromWasm0(arg1, arg2));
|
|
2619
2766
|
}, arguments) };
|
|
2620
|
-
imports.wbg.
|
|
2621
|
-
const ret = arg0.
|
|
2767
|
+
imports.wbg.__wbg_byobRequest_b32c77640da946ac = function(arg0) {
|
|
2768
|
+
const ret = arg0.byobRequest;
|
|
2769
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2770
|
+
};
|
|
2771
|
+
imports.wbg.__wbg_close_aca7442e6619206b = function() { return handleError(function (arg0) {
|
|
2772
|
+
arg0.close();
|
|
2773
|
+
}, arguments) };
|
|
2774
|
+
imports.wbg.__wbg_length_a547e4226b069330 = function(arg0) {
|
|
2775
|
+
const ret = arg0.length;
|
|
2622
2776
|
return ret;
|
|
2623
2777
|
};
|
|
2624
|
-
imports.wbg.
|
|
2625
|
-
const ret =
|
|
2778
|
+
imports.wbg.__wbg_item_4a685286202e2739 = function(arg0, arg1) {
|
|
2779
|
+
const ret = arg0.item(arg1 >>> 0);
|
|
2780
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2781
|
+
};
|
|
2782
|
+
imports.wbg.__wbg_get_6bee5bc8192fd59e = function(arg0, arg1) {
|
|
2783
|
+
const ret = arg0[arg1 >>> 0];
|
|
2784
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2785
|
+
};
|
|
2786
|
+
imports.wbg.__wbg_new_ac9dbf743c2383ee = function() { return handleError(function () {
|
|
2787
|
+
const ret = new URLSearchParams();
|
|
2626
2788
|
return ret;
|
|
2627
2789
|
}, arguments) };
|
|
2628
|
-
imports.wbg.
|
|
2790
|
+
imports.wbg.__wbg_append_67f0e14e943b043f = function(arg0, arg1, arg2, arg3, arg4) {
|
|
2791
|
+
arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
2792
|
+
};
|
|
2793
|
+
imports.wbg.__wbg_set_7341de5a79099de7 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
2794
|
+
arg0.set(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
2795
|
+
};
|
|
2796
|
+
imports.wbg.__wbg_setcodec_37318daa485f1029 = function(arg0, arg1, arg2) {
|
|
2797
|
+
arg0.codec = getStringFromWasm0(arg1, arg2);
|
|
2798
|
+
};
|
|
2799
|
+
imports.wbg.__wbg_setcodedheight_37fdde863d4fed9d = function(arg0, arg1) {
|
|
2800
|
+
arg0.codedHeight = arg1 >>> 0;
|
|
2801
|
+
};
|
|
2802
|
+
imports.wbg.__wbg_setcodedwidth_f14b86753e987841 = function(arg0, arg1) {
|
|
2803
|
+
arg0.codedWidth = arg1 >>> 0;
|
|
2804
|
+
};
|
|
2805
|
+
imports.wbg.__wbg_setdescription_d536e2495a7cb4de = function(arg0, arg1) {
|
|
2806
|
+
arg0.description = arg1;
|
|
2807
|
+
};
|
|
2808
|
+
imports.wbg.__wbg_sethardwareacceleration_86551d0c91d501a1 = function(arg0, arg1) {
|
|
2809
|
+
arg0.hardwareAcceleration = ["no-preference","prefer-hardware","prefer-software",][arg1];
|
|
2810
|
+
};
|
|
2811
|
+
imports.wbg.__wbg_setoptimizeforlatency_8748c0101417bfb0 = function(arg0, arg1) {
|
|
2812
|
+
arg0.optimizeForLatency = arg1 !== 0;
|
|
2813
|
+
};
|
|
2814
|
+
imports.wbg.__wbg_seterror_374f6871e211a404 = function(arg0, arg1) {
|
|
2815
|
+
arg0.error = arg1;
|
|
2816
|
+
};
|
|
2817
|
+
imports.wbg.__wbg_setoutput_2b1793bf3fab4a0f = function(arg0, arg1) {
|
|
2818
|
+
arg0.output = arg1;
|
|
2819
|
+
};
|
|
2820
|
+
imports.wbg.__wbg_instanceof_DomException_1bbe86882eadb549 = function(arg0) {
|
|
2629
2821
|
let result;
|
|
2630
2822
|
try {
|
|
2631
|
-
result = arg0 instanceof
|
|
2823
|
+
result = arg0 instanceof DOMException;
|
|
2632
2824
|
} catch (_) {
|
|
2633
2825
|
result = false;
|
|
2634
2826
|
}
|
|
2635
2827
|
const ret = result;
|
|
2636
2828
|
return ret;
|
|
2637
2829
|
};
|
|
2638
|
-
imports.wbg.
|
|
2639
|
-
const ret = arg0.
|
|
2640
|
-
return ret;
|
|
2641
|
-
};
|
|
2642
|
-
imports.wbg.__wbg_contentBoxSize_c6294de1f1ca7e41 = function(arg0) {
|
|
2643
|
-
const ret = arg0.contentBoxSize;
|
|
2644
|
-
return ret;
|
|
2645
|
-
};
|
|
2646
|
-
imports.wbg.__wbg_devicePixelContentBoxSize_d5bcdcd5e96671f3 = function(arg0) {
|
|
2647
|
-
const ret = arg0.devicePixelContentBoxSize;
|
|
2830
|
+
imports.wbg.__wbg_code_4a4b2516783729c7 = function(arg0) {
|
|
2831
|
+
const ret = arg0.code;
|
|
2648
2832
|
return ret;
|
|
2649
2833
|
};
|
|
2650
|
-
imports.wbg.
|
|
2834
|
+
imports.wbg.__wbg_instanceof_HtmlCanvasElement_1a96a01603ec2d8b = function(arg0) {
|
|
2651
2835
|
let result;
|
|
2652
2836
|
try {
|
|
2653
|
-
result = arg0 instanceof
|
|
2837
|
+
result = arg0 instanceof HTMLCanvasElement;
|
|
2654
2838
|
} catch (_) {
|
|
2655
2839
|
result = false;
|
|
2656
2840
|
}
|
|
2657
2841
|
const ret = result;
|
|
2658
2842
|
return ret;
|
|
2659
2843
|
};
|
|
2660
|
-
imports.wbg.
|
|
2661
|
-
const ret =
|
|
2662
|
-
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2663
|
-
const len1 = WASM_VECTOR_LEN;
|
|
2664
|
-
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
2665
|
-
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
2666
|
-
};
|
|
2667
|
-
imports.wbg.__wbg_status_61a01141acd3cf74 = function(arg0) {
|
|
2668
|
-
const ret = arg0.status;
|
|
2669
|
-
return ret;
|
|
2670
|
-
};
|
|
2671
|
-
imports.wbg.__wbg_ok_38d7c30bbc66719e = function(arg0) {
|
|
2672
|
-
const ret = arg0.ok;
|
|
2844
|
+
imports.wbg.__wbg_width_53a5bd0268e99485 = function(arg0) {
|
|
2845
|
+
const ret = arg0.width;
|
|
2673
2846
|
return ret;
|
|
2674
2847
|
};
|
|
2675
|
-
imports.wbg.
|
|
2676
|
-
|
|
2677
|
-
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2678
|
-
const len1 = WASM_VECTOR_LEN;
|
|
2679
|
-
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
2680
|
-
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
2848
|
+
imports.wbg.__wbg_setwidth_e371a8d6b16ebe84 = function(arg0, arg1) {
|
|
2849
|
+
arg0.width = arg1 >>> 0;
|
|
2681
2850
|
};
|
|
2682
|
-
imports.wbg.
|
|
2683
|
-
const ret = arg0.
|
|
2851
|
+
imports.wbg.__wbg_height_6fb32e51e54037ae = function(arg0) {
|
|
2852
|
+
const ret = arg0.height;
|
|
2684
2853
|
return ret;
|
|
2685
2854
|
};
|
|
2686
|
-
imports.wbg.
|
|
2687
|
-
|
|
2688
|
-
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2855
|
+
imports.wbg.__wbg_setheight_ba99ad2df4295e89 = function(arg0, arg1) {
|
|
2856
|
+
arg0.height = arg1 >>> 0;
|
|
2689
2857
|
};
|
|
2690
|
-
imports.wbg.
|
|
2691
|
-
const ret = arg0.
|
|
2692
|
-
return ret;
|
|
2858
|
+
imports.wbg.__wbg_getContext_69ec873410cbba3c = function() { return handleError(function (arg0, arg1, arg2) {
|
|
2859
|
+
const ret = arg0.getContext(getStringFromWasm0(arg1, arg2));
|
|
2860
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2693
2861
|
}, arguments) };
|
|
2694
|
-
imports.wbg.
|
|
2695
|
-
const ret = arg0.
|
|
2862
|
+
imports.wbg.__wbg_getContext_70d493702d2b8f3e = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
2863
|
+
const ret = arg0.getContext(getStringFromWasm0(arg1, arg2), arg3);
|
|
2696
2864
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2697
|
-
};
|
|
2698
|
-
imports.wbg.__wbg_data_1d8005e6d66d881b = function(arg0, arg1) {
|
|
2699
|
-
const ret = arg1.data;
|
|
2700
|
-
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2701
|
-
var len1 = WASM_VECTOR_LEN;
|
|
2702
|
-
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
2703
|
-
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
2704
|
-
};
|
|
2705
|
-
imports.wbg.__wbg_preventDefault_b1a4aafc79409429 = function(arg0) {
|
|
2706
|
-
arg0.preventDefault();
|
|
2707
|
-
};
|
|
2708
|
-
imports.wbg.__wbg_stopPropagation_fa5b666049c9fd02 = function(arg0) {
|
|
2709
|
-
arg0.stopPropagation();
|
|
2710
|
-
};
|
|
2711
|
-
imports.wbg.__wbg_set_cb0e7a5c2dd66afd = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
2712
|
-
arg0.set(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
2713
2865
|
}, arguments) };
|
|
2714
|
-
imports.wbg.
|
|
2715
|
-
const ret = arg0.
|
|
2716
|
-
return ret;
|
|
2717
|
-
};
|
|
2718
|
-
imports.wbg.__wbg_videoHeight_e75550285bbbfdab = function(arg0) {
|
|
2719
|
-
const ret = arg0.videoHeight;
|
|
2720
|
-
return ret;
|
|
2721
|
-
};
|
|
2722
|
-
imports.wbg.__wbg_isComposing_71872de364b1e1b7 = function(arg0) {
|
|
2723
|
-
const ret = arg0.isComposing;
|
|
2724
|
-
return ret;
|
|
2725
|
-
};
|
|
2726
|
-
imports.wbg.__wbg_clientX_fef6bf7a6bcf41b8 = function(arg0) {
|
|
2727
|
-
const ret = arg0.clientX;
|
|
2866
|
+
imports.wbg.__wbg_keyCode_b06f25cc98035ed1 = function(arg0) {
|
|
2867
|
+
const ret = arg0.keyCode;
|
|
2728
2868
|
return ret;
|
|
2729
2869
|
};
|
|
2730
|
-
imports.wbg.
|
|
2731
|
-
const ret = arg0.
|
|
2870
|
+
imports.wbg.__wbg_altKey_5a6eb49ec8194792 = function(arg0) {
|
|
2871
|
+
const ret = arg0.altKey;
|
|
2732
2872
|
return ret;
|
|
2733
2873
|
};
|
|
2734
|
-
imports.wbg.
|
|
2874
|
+
imports.wbg.__wbg_ctrlKey_319ff2374dc7f372 = function(arg0) {
|
|
2735
2875
|
const ret = arg0.ctrlKey;
|
|
2736
2876
|
return ret;
|
|
2737
2877
|
};
|
|
2738
|
-
imports.wbg.
|
|
2878
|
+
imports.wbg.__wbg_shiftKey_f38dee34420e0d62 = function(arg0) {
|
|
2739
2879
|
const ret = arg0.shiftKey;
|
|
2740
2880
|
return ret;
|
|
2741
2881
|
};
|
|
2742
|
-
imports.wbg.
|
|
2743
|
-
const ret = arg0.altKey;
|
|
2744
|
-
return ret;
|
|
2745
|
-
};
|
|
2746
|
-
imports.wbg.__wbg_metaKey_86bfd3b0d3a8083f = function(arg0) {
|
|
2882
|
+
imports.wbg.__wbg_metaKey_00fdcfadf1968d45 = function(arg0) {
|
|
2747
2883
|
const ret = arg0.metaKey;
|
|
2748
2884
|
return ret;
|
|
2749
2885
|
};
|
|
2750
|
-
imports.wbg.
|
|
2751
|
-
const ret = arg0.
|
|
2752
|
-
return ret;
|
|
2753
|
-
};
|
|
2754
|
-
imports.wbg.__wbg_identifier_02d52b63cc6ddc4d = function(arg0) {
|
|
2755
|
-
const ret = arg0.identifier;
|
|
2756
|
-
return ret;
|
|
2757
|
-
};
|
|
2758
|
-
imports.wbg.__wbg_clientX_32cdd4a59d3eff3f = function(arg0) {
|
|
2759
|
-
const ret = arg0.clientX;
|
|
2760
|
-
return ret;
|
|
2761
|
-
};
|
|
2762
|
-
imports.wbg.__wbg_clientY_155c09997817066a = function(arg0) {
|
|
2763
|
-
const ret = arg0.clientY;
|
|
2764
|
-
return ret;
|
|
2765
|
-
};
|
|
2766
|
-
imports.wbg.__wbg_force_139077aa422a42a5 = function(arg0) {
|
|
2767
|
-
const ret = arg0.force;
|
|
2768
|
-
return ret;
|
|
2769
|
-
};
|
|
2770
|
-
imports.wbg.__wbg_framebufferTextureMultiviewOVR_a4eb1a11052508f4 = function(arg0, arg1, arg2, arg3, arg4, arg5, arg6) {
|
|
2771
|
-
arg0.framebufferTextureMultiviewOVR(arg1 >>> 0, arg2 >>> 0, arg3, arg4, arg5, arg6);
|
|
2772
|
-
};
|
|
2773
|
-
imports.wbg.__wbg_byobRequest_72fca99f9c32c193 = function(arg0) {
|
|
2774
|
-
const ret = arg0.byobRequest;
|
|
2775
|
-
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2776
|
-
};
|
|
2777
|
-
imports.wbg.__wbg_close_184931724d961ccc = function() { return handleError(function (arg0) {
|
|
2778
|
-
arg0.close();
|
|
2779
|
-
}, arguments) };
|
|
2780
|
-
imports.wbg.__wbg_new_61d4f20a1c08a45c = function() { return handleError(function (arg0) {
|
|
2781
|
-
const ret = new ResizeObserver(arg0);
|
|
2886
|
+
imports.wbg.__wbg_isComposing_1c9533ed199eaf7b = function(arg0) {
|
|
2887
|
+
const ret = arg0.isComposing;
|
|
2782
2888
|
return ret;
|
|
2783
|
-
}, arguments) };
|
|
2784
|
-
imports.wbg.__wbg_disconnect_6675f32e2ae8deb7 = function(arg0) {
|
|
2785
|
-
arg0.disconnect();
|
|
2786
|
-
};
|
|
2787
|
-
imports.wbg.__wbg_observe_dc0ebcd59ee7cd17 = function(arg0, arg1, arg2) {
|
|
2788
|
-
arg0.observe(arg1, arg2);
|
|
2789
|
-
};
|
|
2790
|
-
imports.wbg.__wbg_bufferData_bb9321e8fa042bac = function(arg0, arg1, arg2, arg3) {
|
|
2791
|
-
arg0.bufferData(arg1 >>> 0, arg2, arg3 >>> 0);
|
|
2792
|
-
};
|
|
2793
|
-
imports.wbg.__wbg_bufferData_5d1e6b8eaa7d23c8 = function(arg0, arg1, arg2, arg3) {
|
|
2794
|
-
arg0.bufferData(arg1 >>> 0, arg2, arg3 >>> 0);
|
|
2795
|
-
};
|
|
2796
|
-
imports.wbg.__wbg_bufferSubData_a6cea5e056662bd7 = function(arg0, arg1, arg2, arg3) {
|
|
2797
|
-
arg0.bufferSubData(arg1 >>> 0, arg2, arg3);
|
|
2798
|
-
};
|
|
2799
|
-
imports.wbg.__wbg_compressedTexSubImage2D_db8b170a99900aff = function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
|
|
2800
|
-
arg0.compressedTexSubImage2D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7 >>> 0, arg8);
|
|
2801
|
-
};
|
|
2802
|
-
imports.wbg.__wbg_readPixels_551d0505625c865b = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
2803
|
-
arg0.readPixels(arg1, arg2, arg3, arg4, arg5 >>> 0, arg6 >>> 0, arg7);
|
|
2804
|
-
}, arguments) };
|
|
2805
|
-
imports.wbg.__wbg_texImage2D_a14a3c7863e25c89 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
|
|
2806
|
-
arg0.texImage2D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7 >>> 0, arg8 >>> 0, arg9);
|
|
2807
|
-
}, arguments) };
|
|
2808
|
-
imports.wbg.__wbg_texSubImage2D_55a407e48f3a5cb4 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
|
|
2809
|
-
arg0.texSubImage2D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7 >>> 0, arg8 >>> 0, arg9);
|
|
2810
|
-
}, arguments) };
|
|
2811
|
-
imports.wbg.__wbg_uniform2fv_dcb8b73e2637092a = function(arg0, arg1, arg2, arg3) {
|
|
2812
|
-
arg0.uniform2fv(arg1, getArrayF32FromWasm0(arg2, arg3));
|
|
2813
|
-
};
|
|
2814
|
-
imports.wbg.__wbg_uniform2iv_fc73855d9dec793a = function(arg0, arg1, arg2, arg3) {
|
|
2815
|
-
arg0.uniform2iv(arg1, getArrayI32FromWasm0(arg2, arg3));
|
|
2816
|
-
};
|
|
2817
|
-
imports.wbg.__wbg_uniform3fv_3e32c897d3ed1eaa = function(arg0, arg1, arg2, arg3) {
|
|
2818
|
-
arg0.uniform3fv(arg1, getArrayF32FromWasm0(arg2, arg3));
|
|
2819
|
-
};
|
|
2820
|
-
imports.wbg.__wbg_uniform3iv_2b3fa9d97dff01a2 = function(arg0, arg1, arg2, arg3) {
|
|
2821
|
-
arg0.uniform3iv(arg1, getArrayI32FromWasm0(arg2, arg3));
|
|
2822
|
-
};
|
|
2823
|
-
imports.wbg.__wbg_uniform4fv_980ce05d950ee599 = function(arg0, arg1, arg2, arg3) {
|
|
2824
|
-
arg0.uniform4fv(arg1, getArrayF32FromWasm0(arg2, arg3));
|
|
2825
|
-
};
|
|
2826
|
-
imports.wbg.__wbg_uniform4iv_f112dcc4401f5469 = function(arg0, arg1, arg2, arg3) {
|
|
2827
|
-
arg0.uniform4iv(arg1, getArrayI32FromWasm0(arg2, arg3));
|
|
2828
|
-
};
|
|
2829
|
-
imports.wbg.__wbg_uniformMatrix2fv_4417ed4d88a140be = function(arg0, arg1, arg2, arg3, arg4) {
|
|
2830
|
-
arg0.uniformMatrix2fv(arg1, arg2 !== 0, getArrayF32FromWasm0(arg3, arg4));
|
|
2831
|
-
};
|
|
2832
|
-
imports.wbg.__wbg_uniformMatrix3fv_d46553a1248946b5 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
2833
|
-
arg0.uniformMatrix3fv(arg1, arg2 !== 0, getArrayF32FromWasm0(arg3, arg4));
|
|
2834
|
-
};
|
|
2835
|
-
imports.wbg.__wbg_uniformMatrix4fv_cd46ed81bccb0cb2 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
2836
|
-
arg0.uniformMatrix4fv(arg1, arg2 !== 0, getArrayF32FromWasm0(arg3, arg4));
|
|
2837
|
-
};
|
|
2838
|
-
imports.wbg.__wbg_activeTexture_5f084e1b3f14853e = function(arg0, arg1) {
|
|
2839
|
-
arg0.activeTexture(arg1 >>> 0);
|
|
2840
|
-
};
|
|
2841
|
-
imports.wbg.__wbg_attachShader_6397dc4fd87343d3 = function(arg0, arg1, arg2) {
|
|
2842
|
-
arg0.attachShader(arg1, arg2);
|
|
2843
|
-
};
|
|
2844
|
-
imports.wbg.__wbg_bindAttribLocation_7ab87f5815dce9f0 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
2845
|
-
arg0.bindAttribLocation(arg1, arg2 >>> 0, getStringFromWasm0(arg3, arg4));
|
|
2846
|
-
};
|
|
2847
|
-
imports.wbg.__wbg_bindBuffer_1e5043751efddd4f = function(arg0, arg1, arg2) {
|
|
2848
|
-
arg0.bindBuffer(arg1 >>> 0, arg2);
|
|
2849
|
-
};
|
|
2850
|
-
imports.wbg.__wbg_bindFramebuffer_c301d73a2c2842bb = function(arg0, arg1, arg2) {
|
|
2851
|
-
arg0.bindFramebuffer(arg1 >>> 0, arg2);
|
|
2852
|
-
};
|
|
2853
|
-
imports.wbg.__wbg_bindRenderbuffer_8ec7d02bd60bdfb2 = function(arg0, arg1, arg2) {
|
|
2854
|
-
arg0.bindRenderbuffer(arg1 >>> 0, arg2);
|
|
2855
|
-
};
|
|
2856
|
-
imports.wbg.__wbg_bindTexture_772f5eb022019d87 = function(arg0, arg1, arg2) {
|
|
2857
|
-
arg0.bindTexture(arg1 >>> 0, arg2);
|
|
2858
|
-
};
|
|
2859
|
-
imports.wbg.__wbg_blendColor_f25a274ecd388a1e = function(arg0, arg1, arg2, arg3, arg4) {
|
|
2860
|
-
arg0.blendColor(arg1, arg2, arg3, arg4);
|
|
2861
2889
|
};
|
|
2862
|
-
imports.wbg.
|
|
2863
|
-
|
|
2890
|
+
imports.wbg.__wbg_key_a626396efbca2b95 = function(arg0, arg1) {
|
|
2891
|
+
const ret = arg1.key;
|
|
2892
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2893
|
+
const len1 = WASM_VECTOR_LEN;
|
|
2894
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2895
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2864
2896
|
};
|
|
2865
|
-
imports.wbg.
|
|
2866
|
-
|
|
2897
|
+
imports.wbg.__wbg_instanceof_MessageEvent_9951ccea5e1f35a2 = function(arg0) {
|
|
2898
|
+
let result;
|
|
2899
|
+
try {
|
|
2900
|
+
result = arg0 instanceof MessageEvent;
|
|
2901
|
+
} catch (_) {
|
|
2902
|
+
result = false;
|
|
2903
|
+
}
|
|
2904
|
+
const ret = result;
|
|
2905
|
+
return ret;
|
|
2867
2906
|
};
|
|
2868
|
-
imports.wbg.
|
|
2869
|
-
|
|
2907
|
+
imports.wbg.__wbg_data_5c47a6985fefc490 = function(arg0) {
|
|
2908
|
+
const ret = arg0.data;
|
|
2909
|
+
return ret;
|
|
2870
2910
|
};
|
|
2871
|
-
imports.wbg.
|
|
2872
|
-
|
|
2911
|
+
imports.wbg.__wbg_width_a7c8cb533b26f0bf = function(arg0) {
|
|
2912
|
+
const ret = arg0.width;
|
|
2913
|
+
return ret;
|
|
2873
2914
|
};
|
|
2874
|
-
imports.wbg.
|
|
2875
|
-
arg0.
|
|
2915
|
+
imports.wbg.__wbg_setwidth_c20f1f8fcd5d93b4 = function(arg0, arg1) {
|
|
2916
|
+
arg0.width = arg1 >>> 0;
|
|
2876
2917
|
};
|
|
2877
|
-
imports.wbg.
|
|
2878
|
-
|
|
2918
|
+
imports.wbg.__wbg_height_affa017f56a8fb96 = function(arg0) {
|
|
2919
|
+
const ret = arg0.height;
|
|
2920
|
+
return ret;
|
|
2879
2921
|
};
|
|
2880
|
-
imports.wbg.
|
|
2881
|
-
arg0.
|
|
2922
|
+
imports.wbg.__wbg_setheight_a5e39c9d97429299 = function(arg0, arg1) {
|
|
2923
|
+
arg0.height = arg1 >>> 0;
|
|
2882
2924
|
};
|
|
2883
|
-
imports.wbg.
|
|
2884
|
-
arg0.
|
|
2925
|
+
imports.wbg.__wbg_getContext_bd2ece8a59fd4732 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
2926
|
+
const ret = arg0.getContext(getStringFromWasm0(arg1, arg2));
|
|
2927
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2928
|
+
}, arguments) };
|
|
2929
|
+
imports.wbg.__wbg_getContext_76f1b45238db4411 = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
2930
|
+
const ret = arg0.getContext(getStringFromWasm0(arg1, arg2), arg3);
|
|
2931
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2932
|
+
}, arguments) };
|
|
2933
|
+
imports.wbg.__wbg_instanceof_ReadableStream_7b49703629f1df3c = function(arg0) {
|
|
2934
|
+
let result;
|
|
2935
|
+
try {
|
|
2936
|
+
result = arg0 instanceof ReadableStream;
|
|
2937
|
+
} catch (_) {
|
|
2938
|
+
result = false;
|
|
2939
|
+
}
|
|
2940
|
+
const ret = result;
|
|
2941
|
+
return ret;
|
|
2885
2942
|
};
|
|
2886
|
-
imports.wbg.
|
|
2887
|
-
|
|
2943
|
+
imports.wbg.__wbg_view_2a901bda0727aeb3 = function(arg0) {
|
|
2944
|
+
const ret = arg0.view;
|
|
2945
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2888
2946
|
};
|
|
2889
|
-
imports.wbg.
|
|
2890
|
-
arg0.
|
|
2947
|
+
imports.wbg.__wbg_respond_a799bab31a44f2d7 = function() { return handleError(function (arg0, arg1) {
|
|
2948
|
+
arg0.respond(arg1 >>> 0);
|
|
2949
|
+
}, arguments) };
|
|
2950
|
+
imports.wbg.__wbg_drawBuffersWEBGL_ff53a7c3360f5716 = function(arg0, arg1) {
|
|
2951
|
+
arg0.drawBuffersWEBGL(arg1);
|
|
2891
2952
|
};
|
|
2892
|
-
imports.wbg.
|
|
2893
|
-
|
|
2953
|
+
imports.wbg.__wbg_deltaX_7f4a9de8338c7ca6 = function(arg0) {
|
|
2954
|
+
const ret = arg0.deltaX;
|
|
2955
|
+
return ret;
|
|
2894
2956
|
};
|
|
2895
|
-
imports.wbg.
|
|
2896
|
-
const ret = arg0.
|
|
2897
|
-
return
|
|
2957
|
+
imports.wbg.__wbg_deltaY_606f12aa66daba69 = function(arg0) {
|
|
2958
|
+
const ret = arg0.deltaY;
|
|
2959
|
+
return ret;
|
|
2898
2960
|
};
|
|
2899
|
-
imports.wbg.
|
|
2900
|
-
const ret = arg0.
|
|
2901
|
-
return
|
|
2961
|
+
imports.wbg.__wbg_deltaMode_d6b849e45efd0f5e = function(arg0) {
|
|
2962
|
+
const ret = arg0.deltaMode;
|
|
2963
|
+
return ret;
|
|
2902
2964
|
};
|
|
2903
|
-
imports.wbg.
|
|
2904
|
-
const ret = arg0.
|
|
2905
|
-
return
|
|
2965
|
+
imports.wbg.__wbg_navigator_db73b5b11a0c5c93 = function(arg0) {
|
|
2966
|
+
const ret = arg0.navigator;
|
|
2967
|
+
return ret;
|
|
2906
2968
|
};
|
|
2907
|
-
imports.wbg.
|
|
2908
|
-
const ret = arg0.
|
|
2969
|
+
imports.wbg.__wbg_clipboardData_93c130a72996456a = function(arg0) {
|
|
2970
|
+
const ret = arg0.clipboardData;
|
|
2909
2971
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2910
2972
|
};
|
|
2911
|
-
imports.wbg.
|
|
2912
|
-
const ret = arg0.
|
|
2913
|
-
return
|
|
2973
|
+
imports.wbg.__wbg_width_e7964a50b174d035 = function(arg0) {
|
|
2974
|
+
const ret = arg0.width;
|
|
2975
|
+
return ret;
|
|
2914
2976
|
};
|
|
2915
|
-
imports.wbg.
|
|
2916
|
-
const ret = arg0.
|
|
2917
|
-
return
|
|
2977
|
+
imports.wbg.__wbg_height_cd5c897b4d3fabe3 = function(arg0) {
|
|
2978
|
+
const ret = arg0.height;
|
|
2979
|
+
return ret;
|
|
2918
2980
|
};
|
|
2919
|
-
imports.wbg.
|
|
2920
|
-
arg0.
|
|
2981
|
+
imports.wbg.__wbg_top_322638693276a225 = function(arg0) {
|
|
2982
|
+
const ret = arg0.top;
|
|
2983
|
+
return ret;
|
|
2921
2984
|
};
|
|
2922
|
-
imports.wbg.
|
|
2923
|
-
arg0.
|
|
2985
|
+
imports.wbg.__wbg_right_8b5d6a4fd660b15f = function(arg0) {
|
|
2986
|
+
const ret = arg0.right;
|
|
2987
|
+
return ret;
|
|
2924
2988
|
};
|
|
2925
|
-
imports.wbg.
|
|
2926
|
-
arg0.
|
|
2989
|
+
imports.wbg.__wbg_bottom_9c5a8538fdbb5e16 = function(arg0) {
|
|
2990
|
+
const ret = arg0.bottom;
|
|
2991
|
+
return ret;
|
|
2927
2992
|
};
|
|
2928
|
-
imports.wbg.
|
|
2929
|
-
arg0.
|
|
2993
|
+
imports.wbg.__wbg_left_ec3af38bed003a86 = function(arg0) {
|
|
2994
|
+
const ret = arg0.left;
|
|
2995
|
+
return ret;
|
|
2930
2996
|
};
|
|
2931
|
-
imports.wbg.
|
|
2932
|
-
arg0.
|
|
2997
|
+
imports.wbg.__wbg_dataTransfer_2fb708051ee2c64c = function(arg0) {
|
|
2998
|
+
const ret = arg0.dataTransfer;
|
|
2999
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2933
3000
|
};
|
|
2934
|
-
imports.wbg.
|
|
2935
|
-
arg0.
|
|
3001
|
+
imports.wbg.__wbg_bindVertexArrayOES_37868a5a4265ea0a = function(arg0, arg1) {
|
|
3002
|
+
arg0.bindVertexArrayOES(arg1);
|
|
2936
3003
|
};
|
|
2937
|
-
imports.wbg.
|
|
2938
|
-
arg0.
|
|
3004
|
+
imports.wbg.__wbg_createVertexArrayOES_84334a02da216381 = function(arg0) {
|
|
3005
|
+
const ret = arg0.createVertexArrayOES();
|
|
3006
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2939
3007
|
};
|
|
2940
|
-
imports.wbg.
|
|
2941
|
-
arg0.
|
|
3008
|
+
imports.wbg.__wbg_deleteVertexArrayOES_e22f7a6baedc5300 = function(arg0, arg1) {
|
|
3009
|
+
arg0.deleteVertexArrayOES(arg1);
|
|
2942
3010
|
};
|
|
2943
|
-
imports.wbg.
|
|
2944
|
-
|
|
3011
|
+
imports.wbg.__wbg_new_c6a9ff2b3f853101 = function() { return handleError(function (arg0) {
|
|
3012
|
+
const ret = new VideoDecoder(arg0);
|
|
3013
|
+
return ret;
|
|
3014
|
+
}, arguments) };
|
|
3015
|
+
imports.wbg.__wbg_close_604d9311162d0976 = function() { return handleError(function (arg0) {
|
|
3016
|
+
arg0.close();
|
|
3017
|
+
}, arguments) };
|
|
3018
|
+
imports.wbg.__wbg_configure_ea3bd7b470b5f985 = function() { return handleError(function (arg0, arg1) {
|
|
3019
|
+
arg0.configure(arg1);
|
|
3020
|
+
}, arguments) };
|
|
3021
|
+
imports.wbg.__wbg_decode_322aa8c3136679d0 = function() { return handleError(function (arg0, arg1) {
|
|
3022
|
+
arg0.decode(arg1);
|
|
3023
|
+
}, arguments) };
|
|
3024
|
+
imports.wbg.__wbg_reset_946aa2e6c9cecbe2 = function() { return handleError(function (arg0) {
|
|
3025
|
+
arg0.reset();
|
|
3026
|
+
}, arguments) };
|
|
3027
|
+
imports.wbg.__wbg_error_09480e4aadca50ad = typeof console.error == 'function' ? console.error : notDefined('console.error');
|
|
3028
|
+
imports.wbg.__wbg_settype_b6ab7b74bd1908a1 = function(arg0, arg1, arg2) {
|
|
3029
|
+
arg0.type = getStringFromWasm0(arg1, arg2);
|
|
2945
3030
|
};
|
|
2946
|
-
imports.wbg.
|
|
2947
|
-
arg0.
|
|
3031
|
+
imports.wbg.__wbg_result_3869032b57f861ac = function() { return handleError(function (arg0) {
|
|
3032
|
+
const ret = arg0.result;
|
|
3033
|
+
return ret;
|
|
3034
|
+
}, arguments) };
|
|
3035
|
+
imports.wbg.__wbg_setonload_71d51f79887a9257 = function(arg0, arg1) {
|
|
3036
|
+
arg0.onload = arg1;
|
|
2948
3037
|
};
|
|
2949
|
-
imports.wbg.
|
|
2950
|
-
arg0.
|
|
3038
|
+
imports.wbg.__wbg_setonloadend_0c9330e0569633c0 = function(arg0, arg1) {
|
|
3039
|
+
arg0.onloadend = arg1;
|
|
2951
3040
|
};
|
|
2952
|
-
imports.wbg.
|
|
2953
|
-
|
|
3041
|
+
imports.wbg.__wbg_new_8515b7401632bd44 = function() { return handleError(function () {
|
|
3042
|
+
const ret = new FileReader();
|
|
3043
|
+
return ret;
|
|
3044
|
+
}, arguments) };
|
|
3045
|
+
imports.wbg.__wbg_readAsArrayBuffer_6475a86a924a8856 = function() { return handleError(function (arg0, arg1) {
|
|
3046
|
+
arg0.readAsArrayBuffer(arg1);
|
|
3047
|
+
}, arguments) };
|
|
3048
|
+
imports.wbg.__wbg_width_151910f38d746773 = function(arg0) {
|
|
3049
|
+
const ret = arg0.width;
|
|
3050
|
+
return ret;
|
|
2954
3051
|
};
|
|
2955
|
-
imports.wbg.
|
|
2956
|
-
|
|
3052
|
+
imports.wbg.__wbg_height_c1b4ecc1cfed30aa = function(arg0) {
|
|
3053
|
+
const ret = arg0.height;
|
|
3054
|
+
return ret;
|
|
2957
3055
|
};
|
|
2958
|
-
imports.wbg.
|
|
2959
|
-
arg0.
|
|
3056
|
+
imports.wbg.__wbg_state_fe5d8462e453ff63 = function(arg0) {
|
|
3057
|
+
const ret = arg0.state;
|
|
3058
|
+
return ret;
|
|
2960
3059
|
};
|
|
2961
|
-
imports.wbg.
|
|
2962
|
-
arg0.
|
|
3060
|
+
imports.wbg.__wbg_read_e48a676fb81ea800 = function(arg0) {
|
|
3061
|
+
const ret = arg0.read();
|
|
3062
|
+
return ret;
|
|
2963
3063
|
};
|
|
2964
|
-
imports.wbg.
|
|
2965
|
-
arg0.
|
|
3064
|
+
imports.wbg.__wbg_releaseLock_1d2d93e9dc8d76e2 = function(arg0) {
|
|
3065
|
+
arg0.releaseLock();
|
|
2966
3066
|
};
|
|
2967
|
-
imports.wbg.
|
|
2968
|
-
arg0.
|
|
3067
|
+
imports.wbg.__wbg_cancel_97a2795574a4f522 = function(arg0) {
|
|
3068
|
+
const ret = arg0.cancel();
|
|
3069
|
+
return ret;
|
|
2969
3070
|
};
|
|
2970
|
-
imports.wbg.
|
|
2971
|
-
arg0.
|
|
3071
|
+
imports.wbg.__wbg_headers_7d46f181de2aa1dd = function(arg0) {
|
|
3072
|
+
const ret = arg0.headers;
|
|
3073
|
+
return ret;
|
|
2972
3074
|
};
|
|
2973
|
-
imports.wbg.
|
|
2974
|
-
const ret = arg0
|
|
3075
|
+
imports.wbg.__wbg_newwithstrandinit_a31c69e4cc337183 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
3076
|
+
const ret = new Request(getStringFromWasm0(arg0, arg1), arg2);
|
|
2975
3077
|
return ret;
|
|
2976
3078
|
}, arguments) };
|
|
2977
|
-
imports.wbg.
|
|
2978
|
-
|
|
2979
|
-
|
|
2980
|
-
|
|
2981
|
-
|
|
2982
|
-
|
|
2983
|
-
|
|
2984
|
-
|
|
2985
|
-
const ret = arg0.getProgramParameter(arg1, arg2 >>> 0);
|
|
3079
|
+
imports.wbg.__wbg_instanceof_Response_e91b7eb7c611a9ae = function(arg0) {
|
|
3080
|
+
let result;
|
|
3081
|
+
try {
|
|
3082
|
+
result = arg0 instanceof Response;
|
|
3083
|
+
} catch (_) {
|
|
3084
|
+
result = false;
|
|
3085
|
+
}
|
|
3086
|
+
const ret = result;
|
|
2986
3087
|
return ret;
|
|
2987
3088
|
};
|
|
2988
|
-
imports.wbg.
|
|
2989
|
-
const ret = arg1.
|
|
2990
|
-
|
|
2991
|
-
|
|
2992
|
-
|
|
2993
|
-
|
|
3089
|
+
imports.wbg.__wbg_url_1bf85c8abeb8c92d = function(arg0, arg1) {
|
|
3090
|
+
const ret = arg1.url;
|
|
3091
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3092
|
+
const len1 = WASM_VECTOR_LEN;
|
|
3093
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3094
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2994
3095
|
};
|
|
2995
|
-
imports.wbg.
|
|
2996
|
-
const ret = arg0.
|
|
3096
|
+
imports.wbg.__wbg_status_ae8de515694c5c7c = function(arg0) {
|
|
3097
|
+
const ret = arg0.status;
|
|
2997
3098
|
return ret;
|
|
2998
3099
|
};
|
|
2999
|
-
imports.wbg.
|
|
3000
|
-
const ret = arg0.
|
|
3001
|
-
return
|
|
3100
|
+
imports.wbg.__wbg_ok_227b0624f5926a87 = function(arg0) {
|
|
3101
|
+
const ret = arg0.ok;
|
|
3102
|
+
return ret;
|
|
3002
3103
|
};
|
|
3003
|
-
imports.wbg.
|
|
3004
|
-
|
|
3104
|
+
imports.wbg.__wbg_statusText_2c9a12f90531c8ed = function(arg0, arg1) {
|
|
3105
|
+
const ret = arg1.statusText;
|
|
3106
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3107
|
+
const len1 = WASM_VECTOR_LEN;
|
|
3108
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3109
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3005
3110
|
};
|
|
3006
|
-
imports.wbg.
|
|
3007
|
-
|
|
3111
|
+
imports.wbg.__wbg_headers_5e283e8345689121 = function(arg0) {
|
|
3112
|
+
const ret = arg0.headers;
|
|
3113
|
+
return ret;
|
|
3008
3114
|
};
|
|
3009
|
-
imports.wbg.
|
|
3010
|
-
arg0.
|
|
3115
|
+
imports.wbg.__wbg_body_40b0ed27714d00ce = function(arg0) {
|
|
3116
|
+
const ret = arg0.body;
|
|
3117
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
3011
3118
|
};
|
|
3012
|
-
imports.wbg.
|
|
3013
|
-
arg0.
|
|
3119
|
+
imports.wbg.__wbg_arrayBuffer_a5fbad63cc7e663b = function() { return handleError(function (arg0) {
|
|
3120
|
+
const ret = arg0.arrayBuffer();
|
|
3121
|
+
return ret;
|
|
3122
|
+
}, arguments) };
|
|
3123
|
+
imports.wbg.__wbg_setonopen_7e770c87269cae90 = function(arg0, arg1) {
|
|
3124
|
+
arg0.onopen = arg1;
|
|
3014
3125
|
};
|
|
3015
|
-
imports.wbg.
|
|
3016
|
-
arg0.
|
|
3126
|
+
imports.wbg.__wbg_setonerror_5ec4625df3060159 = function(arg0, arg1) {
|
|
3127
|
+
arg0.onerror = arg1;
|
|
3017
3128
|
};
|
|
3018
|
-
imports.wbg.
|
|
3019
|
-
arg0.
|
|
3129
|
+
imports.wbg.__wbg_setonclose_40f935717ad6ffcd = function(arg0, arg1) {
|
|
3130
|
+
arg0.onclose = arg1;
|
|
3020
3131
|
};
|
|
3021
|
-
imports.wbg.
|
|
3022
|
-
arg0.
|
|
3132
|
+
imports.wbg.__wbg_setonmessage_b670c12ea34acd8b = function(arg0, arg1) {
|
|
3133
|
+
arg0.onmessage = arg1;
|
|
3023
3134
|
};
|
|
3024
|
-
imports.wbg.
|
|
3025
|
-
arg0.
|
|
3135
|
+
imports.wbg.__wbg_setbinaryType_d164a0be4c212c9c = function(arg0, arg1) {
|
|
3136
|
+
arg0.binaryType = ["blob","arraybuffer",][arg1];
|
|
3026
3137
|
};
|
|
3027
|
-
imports.wbg.
|
|
3028
|
-
|
|
3138
|
+
imports.wbg.__wbg_new_0bf4a5b0632517ed = function() { return handleError(function (arg0, arg1) {
|
|
3139
|
+
const ret = new WebSocket(getStringFromWasm0(arg0, arg1));
|
|
3140
|
+
return ret;
|
|
3141
|
+
}, arguments) };
|
|
3142
|
+
imports.wbg.__wbg_close_99bb12a22f16f79c = function() { return handleError(function (arg0) {
|
|
3143
|
+
arg0.close();
|
|
3144
|
+
}, arguments) };
|
|
3145
|
+
imports.wbg.__wbg_getPropertyValue_b0f0858c3b5f17dd = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
3146
|
+
const ret = arg1.getPropertyValue(getStringFromWasm0(arg2, arg3));
|
|
3147
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3148
|
+
const len1 = WASM_VECTOR_LEN;
|
|
3149
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3150
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3151
|
+
}, arguments) };
|
|
3152
|
+
imports.wbg.__wbg_setProperty_ff389e5a7fb9910e = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
3153
|
+
arg0.setProperty(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
3154
|
+
}, arguments) };
|
|
3155
|
+
imports.wbg.__wbg_instanceof_HtmlButtonElement_998267b26d794a1e = function(arg0) {
|
|
3156
|
+
let result;
|
|
3157
|
+
try {
|
|
3158
|
+
result = arg0 instanceof HTMLButtonElement;
|
|
3159
|
+
} catch (_) {
|
|
3160
|
+
result = false;
|
|
3161
|
+
}
|
|
3162
|
+
const ret = result;
|
|
3163
|
+
return ret;
|
|
3029
3164
|
};
|
|
3030
|
-
imports.wbg.
|
|
3031
|
-
|
|
3165
|
+
imports.wbg.__wbg_isComposing_ca7496e67564f5b9 = function(arg0) {
|
|
3166
|
+
const ret = arg0.isComposing;
|
|
3167
|
+
return ret;
|
|
3032
3168
|
};
|
|
3033
|
-
imports.wbg.
|
|
3034
|
-
arg0.
|
|
3169
|
+
imports.wbg.__wbg_appendChild_ac45d1abddf1b89b = function() { return handleError(function (arg0, arg1) {
|
|
3170
|
+
const ret = arg0.appendChild(arg1);
|
|
3171
|
+
return ret;
|
|
3172
|
+
}, arguments) };
|
|
3173
|
+
imports.wbg.__wbg_get_fe289e3950b3978a = function(arg0, arg1) {
|
|
3174
|
+
const ret = arg0[arg1 >>> 0];
|
|
3175
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
3035
3176
|
};
|
|
3036
|
-
imports.wbg.
|
|
3037
|
-
arg0.
|
|
3177
|
+
imports.wbg.__wbg_close_cef2400b120c9c73 = function() { return handleError(function (arg0) {
|
|
3178
|
+
arg0.close();
|
|
3179
|
+
}, arguments) };
|
|
3180
|
+
imports.wbg.__wbg_enqueue_6f3d433b5e457aea = function() { return handleError(function (arg0, arg1) {
|
|
3181
|
+
arg0.enqueue(arg1);
|
|
3182
|
+
}, arguments) };
|
|
3183
|
+
imports.wbg.__wbg_href_f1d20018a97415a0 = function(arg0, arg1) {
|
|
3184
|
+
const ret = arg1.href;
|
|
3185
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3186
|
+
const len1 = WASM_VECTOR_LEN;
|
|
3187
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3188
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3038
3189
|
};
|
|
3039
|
-
imports.wbg.
|
|
3040
|
-
arg0.
|
|
3190
|
+
imports.wbg.__wbg_searchParams_8b40e0942f870b44 = function(arg0) {
|
|
3191
|
+
const ret = arg0.searchParams;
|
|
3192
|
+
return ret;
|
|
3041
3193
|
};
|
|
3042
|
-
imports.wbg.
|
|
3043
|
-
|
|
3194
|
+
imports.wbg.__wbg_new_33db4be5d9963ec1 = function() { return handleError(function (arg0, arg1) {
|
|
3195
|
+
const ret = new URL(getStringFromWasm0(arg0, arg1));
|
|
3196
|
+
return ret;
|
|
3197
|
+
}, arguments) };
|
|
3198
|
+
imports.wbg.__wbg_createObjectURL_ca544150f40fb1bf = function() { return handleError(function (arg0, arg1) {
|
|
3199
|
+
const ret = URL.createObjectURL(arg1);
|
|
3200
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3201
|
+
const len1 = WASM_VECTOR_LEN;
|
|
3202
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3203
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3204
|
+
}, arguments) };
|
|
3205
|
+
imports.wbg.__wbg_displayWidth_d9aadf05c3b7f971 = function(arg0) {
|
|
3206
|
+
const ret = arg0.displayWidth;
|
|
3207
|
+
return ret;
|
|
3044
3208
|
};
|
|
3045
|
-
imports.wbg.
|
|
3046
|
-
arg0.
|
|
3209
|
+
imports.wbg.__wbg_displayHeight_8f8335b85311e287 = function(arg0) {
|
|
3210
|
+
const ret = arg0.displayHeight;
|
|
3211
|
+
return ret;
|
|
3047
3212
|
};
|
|
3048
|
-
imports.wbg.
|
|
3049
|
-
|
|
3213
|
+
imports.wbg.__wbg_duration_af309291b596dd12 = function(arg0, arg1) {
|
|
3214
|
+
const ret = arg1.duration;
|
|
3215
|
+
getDataViewMemory0().setFloat64(arg0 + 8 * 1, isLikeNone(ret) ? 0 : ret, true);
|
|
3216
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
3050
3217
|
};
|
|
3051
|
-
imports.wbg.
|
|
3052
|
-
|
|
3218
|
+
imports.wbg.__wbg_timestamp_18f6858fe9b39044 = function(arg0, arg1) {
|
|
3219
|
+
const ret = arg1.timestamp;
|
|
3220
|
+
getDataViewMemory0().setFloat64(arg0 + 8 * 1, isLikeNone(ret) ? 0 : ret, true);
|
|
3221
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
3053
3222
|
};
|
|
3054
|
-
imports.wbg.
|
|
3055
|
-
const ret = arg0.
|
|
3056
|
-
return
|
|
3223
|
+
imports.wbg.__wbg_clone_a3397c70f7a8f1c5 = function() { return handleError(function (arg0) {
|
|
3224
|
+
const ret = arg0.clone();
|
|
3225
|
+
return ret;
|
|
3226
|
+
}, arguments) };
|
|
3227
|
+
imports.wbg.__wbg_close_d40a9ae3f32e4879 = function(arg0) {
|
|
3228
|
+
arg0.close();
|
|
3057
3229
|
};
|
|
3058
|
-
imports.wbg.
|
|
3230
|
+
imports.wbg.__wbg_warn_92e83f7c7e59bc59 = function(arg0, arg1) {
|
|
3059
3231
|
console.warn(getStringFromWasm0(arg0, arg1));
|
|
3060
3232
|
};
|
|
3061
|
-
imports.wbg.
|
|
3233
|
+
imports.wbg.__wbg_info_53da98840fdd2349 = function(arg0, arg1) {
|
|
3062
3234
|
console.info(getStringFromWasm0(arg0, arg1));
|
|
3063
3235
|
};
|
|
3064
|
-
imports.wbg.
|
|
3236
|
+
imports.wbg.__wbg_debug_585fc88c9e84d79c = function(arg0, arg1) {
|
|
3065
3237
|
console.debug(getStringFromWasm0(arg0, arg1));
|
|
3066
3238
|
};
|
|
3067
|
-
imports.wbg.
|
|
3239
|
+
imports.wbg.__wbg_trace_53d2c875c3cace30 = function(arg0, arg1) {
|
|
3068
3240
|
console.trace(getStringFromWasm0(arg0, arg1));
|
|
3069
3241
|
};
|
|
3070
|
-
imports.wbg.
|
|
3242
|
+
imports.wbg.__wbg_performance_a1b8bde2ee512264 = function(arg0) {
|
|
3071
3243
|
const ret = arg0.performance;
|
|
3072
3244
|
return ret;
|
|
3073
3245
|
};
|
|
3074
|
-
imports.wbg.
|
|
3246
|
+
imports.wbg.__wbg_now_abd80e969af37148 = function(arg0) {
|
|
3075
3247
|
const ret = arg0.now();
|
|
3076
3248
|
return ret;
|
|
3077
3249
|
};
|
|
@@ -3091,108 +3263,108 @@ function __wbg_get_imports() {
|
|
|
3091
3263
|
const ret = arg0.node;
|
|
3092
3264
|
return ret;
|
|
3093
3265
|
};
|
|
3094
|
-
imports.wbg.__wbg_msCrypto_adbc770ec9eca9c7 = function(arg0) {
|
|
3095
|
-
const ret = arg0.msCrypto;
|
|
3096
|
-
return ret;
|
|
3097
|
-
};
|
|
3098
3266
|
imports.wbg.__wbg_require_f05d779769764e82 = function() { return handleError(function () {
|
|
3099
3267
|
const ret = module.require;
|
|
3100
3268
|
return ret;
|
|
3101
3269
|
}, arguments) };
|
|
3270
|
+
imports.wbg.__wbg_msCrypto_adbc770ec9eca9c7 = function(arg0) {
|
|
3271
|
+
const ret = arg0.msCrypto;
|
|
3272
|
+
return ret;
|
|
3273
|
+
};
|
|
3102
3274
|
imports.wbg.__wbg_randomFillSync_e950366c42764a07 = function() { return handleError(function (arg0, arg1) {
|
|
3103
3275
|
arg0.randomFillSync(arg1);
|
|
3104
3276
|
}, arguments) };
|
|
3105
3277
|
imports.wbg.__wbg_getRandomValues_3774744e221a22ad = function() { return handleError(function (arg0, arg1) {
|
|
3106
3278
|
arg0.getRandomValues(arg1);
|
|
3107
3279
|
}, arguments) };
|
|
3108
|
-
imports.wbg.
|
|
3280
|
+
imports.wbg.__wbg_get_3baa728f9d58d3f6 = function(arg0, arg1) {
|
|
3109
3281
|
const ret = arg0[arg1 >>> 0];
|
|
3110
3282
|
return ret;
|
|
3111
3283
|
};
|
|
3112
|
-
imports.wbg.
|
|
3284
|
+
imports.wbg.__wbg_length_ae22078168b726f5 = function(arg0) {
|
|
3113
3285
|
const ret = arg0.length;
|
|
3114
3286
|
return ret;
|
|
3115
3287
|
};
|
|
3116
|
-
imports.wbg.
|
|
3288
|
+
imports.wbg.__wbg_new_a220cf903aa02ca2 = function() {
|
|
3117
3289
|
const ret = new Array();
|
|
3118
3290
|
return ret;
|
|
3119
3291
|
};
|
|
3120
|
-
imports.wbg.
|
|
3292
|
+
imports.wbg.__wbg_newnoargs_76313bd6ff35d0f2 = function(arg0, arg1) {
|
|
3121
3293
|
const ret = new Function(getStringFromWasm0(arg0, arg1));
|
|
3122
3294
|
return ret;
|
|
3123
3295
|
};
|
|
3124
|
-
imports.wbg.
|
|
3296
|
+
imports.wbg.__wbg_next_de3e9db4440638b2 = function(arg0) {
|
|
3125
3297
|
const ret = arg0.next;
|
|
3126
3298
|
return ret;
|
|
3127
3299
|
};
|
|
3128
|
-
imports.wbg.
|
|
3300
|
+
imports.wbg.__wbg_next_f9cb570345655b9a = function() { return handleError(function (arg0) {
|
|
3129
3301
|
const ret = arg0.next();
|
|
3130
3302
|
return ret;
|
|
3131
3303
|
}, arguments) };
|
|
3132
|
-
imports.wbg.
|
|
3304
|
+
imports.wbg.__wbg_done_bfda7aa8f252b39f = function(arg0) {
|
|
3133
3305
|
const ret = arg0.done;
|
|
3134
3306
|
return ret;
|
|
3135
3307
|
};
|
|
3136
|
-
imports.wbg.
|
|
3308
|
+
imports.wbg.__wbg_value_6d39332ab4788d86 = function(arg0) {
|
|
3137
3309
|
const ret = arg0.value;
|
|
3138
3310
|
return ret;
|
|
3139
3311
|
};
|
|
3140
|
-
imports.wbg.
|
|
3312
|
+
imports.wbg.__wbg_iterator_888179a48810a9fe = function() {
|
|
3141
3313
|
const ret = Symbol.iterator;
|
|
3142
3314
|
return ret;
|
|
3143
3315
|
};
|
|
3144
|
-
imports.wbg.
|
|
3316
|
+
imports.wbg.__wbg_get_224d16597dbbfd96 = function() { return handleError(function (arg0, arg1) {
|
|
3145
3317
|
const ret = Reflect.get(arg0, arg1);
|
|
3146
3318
|
return ret;
|
|
3147
3319
|
}, arguments) };
|
|
3148
|
-
imports.wbg.
|
|
3320
|
+
imports.wbg.__wbg_call_1084a111329e68ce = function() { return handleError(function (arg0, arg1) {
|
|
3149
3321
|
const ret = arg0.call(arg1);
|
|
3150
3322
|
return ret;
|
|
3151
3323
|
}, arguments) };
|
|
3152
|
-
imports.wbg.
|
|
3324
|
+
imports.wbg.__wbg_new_525245e2b9901204 = function() {
|
|
3153
3325
|
const ret = new Object();
|
|
3154
3326
|
return ret;
|
|
3155
3327
|
};
|
|
3156
|
-
imports.wbg.
|
|
3328
|
+
imports.wbg.__wbg_self_3093d5d1f7bcb682 = function() { return handleError(function () {
|
|
3157
3329
|
const ret = self.self;
|
|
3158
3330
|
return ret;
|
|
3159
3331
|
}, arguments) };
|
|
3160
|
-
imports.wbg.
|
|
3332
|
+
imports.wbg.__wbg_window_3bcfc4d31bc012f8 = function() { return handleError(function () {
|
|
3161
3333
|
const ret = window.window;
|
|
3162
3334
|
return ret;
|
|
3163
3335
|
}, arguments) };
|
|
3164
|
-
imports.wbg.
|
|
3336
|
+
imports.wbg.__wbg_globalThis_86b222e13bdf32ed = function() { return handleError(function () {
|
|
3165
3337
|
const ret = globalThis.globalThis;
|
|
3166
3338
|
return ret;
|
|
3167
3339
|
}, arguments) };
|
|
3168
|
-
imports.wbg.
|
|
3340
|
+
imports.wbg.__wbg_global_e5a3fe56f8be9485 = function() { return handleError(function () {
|
|
3169
3341
|
const ret = global.global;
|
|
3170
3342
|
return ret;
|
|
3171
3343
|
}, arguments) };
|
|
3172
|
-
imports.wbg.
|
|
3344
|
+
imports.wbg.__wbg_at_5fa66069579ac579 = function(arg0, arg1) {
|
|
3173
3345
|
const ret = arg0.at(arg1);
|
|
3174
3346
|
return ret;
|
|
3175
3347
|
};
|
|
3176
|
-
imports.wbg.
|
|
3348
|
+
imports.wbg.__wbg_set_673dda6c73d19609 = function(arg0, arg1, arg2) {
|
|
3177
3349
|
arg0[arg1 >>> 0] = arg2;
|
|
3178
3350
|
};
|
|
3179
|
-
imports.wbg.
|
|
3351
|
+
imports.wbg.__wbg_includes_7c12264f911567fe = function(arg0, arg1, arg2) {
|
|
3180
3352
|
const ret = arg0.includes(arg1, arg2);
|
|
3181
3353
|
return ret;
|
|
3182
3354
|
};
|
|
3183
|
-
imports.wbg.
|
|
3355
|
+
imports.wbg.__wbg_isArray_8364a5371e9737d8 = function(arg0) {
|
|
3184
3356
|
const ret = Array.isArray(arg0);
|
|
3185
3357
|
return ret;
|
|
3186
3358
|
};
|
|
3187
|
-
imports.wbg.
|
|
3359
|
+
imports.wbg.__wbg_of_4a1c869ef05b4b73 = function(arg0) {
|
|
3188
3360
|
const ret = Array.of(arg0);
|
|
3189
3361
|
return ret;
|
|
3190
3362
|
};
|
|
3191
|
-
imports.wbg.
|
|
3363
|
+
imports.wbg.__wbg_push_37c89022f34c01ca = function(arg0, arg1) {
|
|
3192
3364
|
const ret = arg0.push(arg1);
|
|
3193
3365
|
return ret;
|
|
3194
3366
|
};
|
|
3195
|
-
imports.wbg.
|
|
3367
|
+
imports.wbg.__wbg_instanceof_ArrayBuffer_61dfc3198373c902 = function(arg0) {
|
|
3196
3368
|
let result;
|
|
3197
3369
|
try {
|
|
3198
3370
|
result = arg0 instanceof ArrayBuffer;
|
|
@@ -3202,7 +3374,7 @@ function __wbg_get_imports() {
|
|
|
3202
3374
|
const ret = result;
|
|
3203
3375
|
return ret;
|
|
3204
3376
|
};
|
|
3205
|
-
imports.wbg.
|
|
3377
|
+
imports.wbg.__wbg_instanceof_Error_69bde193b0cc95e3 = function(arg0) {
|
|
3206
3378
|
let result;
|
|
3207
3379
|
try {
|
|
3208
3380
|
result = arg0 instanceof Error;
|
|
@@ -3212,43 +3384,43 @@ function __wbg_get_imports() {
|
|
|
3212
3384
|
const ret = result;
|
|
3213
3385
|
return ret;
|
|
3214
3386
|
};
|
|
3215
|
-
imports.wbg.
|
|
3387
|
+
imports.wbg.__wbg_new_796382978dfd4fb0 = function(arg0, arg1) {
|
|
3216
3388
|
const ret = new Error(getStringFromWasm0(arg0, arg1));
|
|
3217
3389
|
return ret;
|
|
3218
3390
|
};
|
|
3219
|
-
imports.wbg.
|
|
3391
|
+
imports.wbg.__wbg_toString_9d18e102ca933e68 = function(arg0) {
|
|
3220
3392
|
const ret = arg0.toString();
|
|
3221
3393
|
return ret;
|
|
3222
3394
|
};
|
|
3223
|
-
imports.wbg.
|
|
3395
|
+
imports.wbg.__wbg_call_89af060b4e1523f2 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
3224
3396
|
const ret = arg0.call(arg1, arg2);
|
|
3225
3397
|
return ret;
|
|
3226
3398
|
}, arguments) };
|
|
3227
|
-
imports.wbg.
|
|
3399
|
+
imports.wbg.__wbg_isSafeInteger_7f1ed56200d90674 = function(arg0) {
|
|
3228
3400
|
const ret = Number.isSafeInteger(arg0);
|
|
3229
3401
|
return ret;
|
|
3230
3402
|
};
|
|
3231
|
-
imports.wbg.
|
|
3403
|
+
imports.wbg.__wbg_getTime_91058879093a1589 = function(arg0) {
|
|
3232
3404
|
const ret = arg0.getTime();
|
|
3233
3405
|
return ret;
|
|
3234
3406
|
};
|
|
3235
|
-
imports.wbg.
|
|
3407
|
+
imports.wbg.__wbg_getTimezoneOffset_c9929a3cc94500fe = function(arg0) {
|
|
3236
3408
|
const ret = arg0.getTimezoneOffset();
|
|
3237
3409
|
return ret;
|
|
3238
3410
|
};
|
|
3239
|
-
imports.wbg.
|
|
3411
|
+
imports.wbg.__wbg_new_7982fb43cfca37ae = function(arg0) {
|
|
3240
3412
|
const ret = new Date(arg0);
|
|
3241
3413
|
return ret;
|
|
3242
3414
|
};
|
|
3243
|
-
imports.wbg.
|
|
3415
|
+
imports.wbg.__wbg_new0_65387337a95cf44d = function() {
|
|
3244
3416
|
const ret = new Date();
|
|
3245
3417
|
return ret;
|
|
3246
3418
|
};
|
|
3247
|
-
imports.wbg.
|
|
3419
|
+
imports.wbg.__wbg_now_b7a162010a9e75b4 = function() {
|
|
3248
3420
|
const ret = Date.now();
|
|
3249
3421
|
return ret;
|
|
3250
3422
|
};
|
|
3251
|
-
imports.wbg.
|
|
3423
|
+
imports.wbg.__wbg_instanceof_Object_b80213ae6cc9aafb = function(arg0) {
|
|
3252
3424
|
let result;
|
|
3253
3425
|
try {
|
|
3254
3426
|
result = arg0 instanceof Object;
|
|
@@ -3258,23 +3430,23 @@ function __wbg_get_imports() {
|
|
|
3258
3430
|
const ret = result;
|
|
3259
3431
|
return ret;
|
|
3260
3432
|
};
|
|
3261
|
-
imports.wbg.
|
|
3433
|
+
imports.wbg.__wbg_entries_7a0e06255456ebcd = function(arg0) {
|
|
3262
3434
|
const ret = Object.entries(arg0);
|
|
3263
3435
|
return ret;
|
|
3264
3436
|
};
|
|
3265
|
-
imports.wbg.
|
|
3437
|
+
imports.wbg.__wbg_is_009b1ef508712fda = function(arg0, arg1) {
|
|
3266
3438
|
const ret = Object.is(arg0, arg1);
|
|
3267
3439
|
return ret;
|
|
3268
3440
|
};
|
|
3269
|
-
imports.wbg.
|
|
3441
|
+
imports.wbg.__wbg_toString_e17a6671146f47c1 = function(arg0) {
|
|
3270
3442
|
const ret = arg0.toString();
|
|
3271
3443
|
return ret;
|
|
3272
3444
|
};
|
|
3273
|
-
imports.wbg.
|
|
3445
|
+
imports.wbg.__wbg_valueOf_d5ba0a54a2aa5615 = function(arg0) {
|
|
3274
3446
|
const ret = arg0.valueOf();
|
|
3275
3447
|
return ret;
|
|
3276
3448
|
};
|
|
3277
|
-
imports.wbg.
|
|
3449
|
+
imports.wbg.__wbg_instanceof_TypeError_eeccd04a800fcce2 = function(arg0) {
|
|
3278
3450
|
let result;
|
|
3279
3451
|
try {
|
|
3280
3452
|
result = arg0 instanceof TypeError;
|
|
@@ -3284,18 +3456,18 @@ function __wbg_get_imports() {
|
|
|
3284
3456
|
const ret = result;
|
|
3285
3457
|
return ret;
|
|
3286
3458
|
};
|
|
3287
|
-
imports.wbg.
|
|
3459
|
+
imports.wbg.__wbg_new_0c0bc0380537cd80 = function(arg0, arg1) {
|
|
3288
3460
|
const ret = new TypeError(getStringFromWasm0(arg0, arg1));
|
|
3289
3461
|
return ret;
|
|
3290
3462
|
};
|
|
3291
|
-
imports.wbg.
|
|
3463
|
+
imports.wbg.__wbg_new_b85e72ed1bfd57f9 = function(arg0, arg1) {
|
|
3292
3464
|
try {
|
|
3293
3465
|
var state0 = {a: arg0, b: arg1};
|
|
3294
3466
|
var cb0 = (arg0, arg1) => {
|
|
3295
3467
|
const a = state0.a;
|
|
3296
3468
|
state0.a = 0;
|
|
3297
3469
|
try {
|
|
3298
|
-
return
|
|
3470
|
+
return __wbg_adapter_1470(a, state0.b, arg0, arg1);
|
|
3299
3471
|
} finally {
|
|
3300
3472
|
state0.a = a;
|
|
3301
3473
|
}
|
|
@@ -3306,66 +3478,66 @@ function __wbg_get_imports() {
|
|
|
3306
3478
|
state0.a = state0.b = 0;
|
|
3307
3479
|
}
|
|
3308
3480
|
};
|
|
3309
|
-
imports.wbg.
|
|
3481
|
+
imports.wbg.__wbg_resolve_570458cb99d56a43 = function(arg0) {
|
|
3310
3482
|
const ret = Promise.resolve(arg0);
|
|
3311
3483
|
return ret;
|
|
3312
3484
|
};
|
|
3313
|
-
imports.wbg.
|
|
3485
|
+
imports.wbg.__wbg_catch_a279b1da46d132d8 = function(arg0, arg1) {
|
|
3314
3486
|
const ret = arg0.catch(arg1);
|
|
3315
3487
|
return ret;
|
|
3316
3488
|
};
|
|
3317
|
-
imports.wbg.
|
|
3489
|
+
imports.wbg.__wbg_then_95e6edc0f89b73b1 = function(arg0, arg1) {
|
|
3318
3490
|
const ret = arg0.then(arg1);
|
|
3319
3491
|
return ret;
|
|
3320
3492
|
};
|
|
3321
|
-
imports.wbg.
|
|
3493
|
+
imports.wbg.__wbg_then_876bb3c633745cc6 = function(arg0, arg1, arg2) {
|
|
3322
3494
|
const ret = arg0.then(arg1, arg2);
|
|
3323
3495
|
return ret;
|
|
3324
3496
|
};
|
|
3325
|
-
imports.wbg.
|
|
3497
|
+
imports.wbg.__wbg_buffer_b7b08af79b0b0974 = function(arg0) {
|
|
3326
3498
|
const ret = arg0.buffer;
|
|
3327
3499
|
return ret;
|
|
3328
3500
|
};
|
|
3329
|
-
imports.wbg.
|
|
3501
|
+
imports.wbg.__wbg_newwithbyteoffsetandlength_634ada0fd17e2e96 = function(arg0, arg1, arg2) {
|
|
3330
3502
|
const ret = new Int8Array(arg0, arg1 >>> 0, arg2 >>> 0);
|
|
3331
3503
|
return ret;
|
|
3332
3504
|
};
|
|
3333
|
-
imports.wbg.
|
|
3505
|
+
imports.wbg.__wbg_newwithbyteoffsetandlength_b5293b0eedbac651 = function(arg0, arg1, arg2) {
|
|
3334
3506
|
const ret = new Int16Array(arg0, arg1 >>> 0, arg2 >>> 0);
|
|
3335
3507
|
return ret;
|
|
3336
3508
|
};
|
|
3337
|
-
imports.wbg.
|
|
3509
|
+
imports.wbg.__wbg_newwithbyteoffsetandlength_c89d62ca194b7f14 = function(arg0, arg1, arg2) {
|
|
3338
3510
|
const ret = new Int32Array(arg0, arg1 >>> 0, arg2 >>> 0);
|
|
3339
3511
|
return ret;
|
|
3340
3512
|
};
|
|
3341
|
-
imports.wbg.
|
|
3513
|
+
imports.wbg.__wbg_newwithbyteoffsetandlength_8a2cb9ca96b27ec9 = function(arg0, arg1, arg2) {
|
|
3342
3514
|
const ret = new Uint8Array(arg0, arg1 >>> 0, arg2 >>> 0);
|
|
3343
3515
|
return ret;
|
|
3344
3516
|
};
|
|
3345
|
-
imports.wbg.
|
|
3517
|
+
imports.wbg.__wbg_new_ea1883e1e5e86686 = function(arg0) {
|
|
3346
3518
|
const ret = new Uint8Array(arg0);
|
|
3347
3519
|
return ret;
|
|
3348
3520
|
};
|
|
3349
|
-
imports.wbg.
|
|
3521
|
+
imports.wbg.__wbg_set_d1e79e2388520f18 = function(arg0, arg1, arg2) {
|
|
3350
3522
|
arg0.set(arg1, arg2 >>> 0);
|
|
3351
3523
|
};
|
|
3352
|
-
imports.wbg.
|
|
3524
|
+
imports.wbg.__wbg_length_8339fcf5d8ecd12e = function(arg0) {
|
|
3353
3525
|
const ret = arg0.length;
|
|
3354
3526
|
return ret;
|
|
3355
3527
|
};
|
|
3356
|
-
imports.wbg.
|
|
3528
|
+
imports.wbg.__wbg_newwithbyteoffsetandlength_bd3d5191e8925067 = function(arg0, arg1, arg2) {
|
|
3357
3529
|
const ret = new Uint16Array(arg0, arg1 >>> 0, arg2 >>> 0);
|
|
3358
3530
|
return ret;
|
|
3359
3531
|
};
|
|
3360
|
-
imports.wbg.
|
|
3532
|
+
imports.wbg.__wbg_newwithbyteoffsetandlength_874df3e29cb555f9 = function(arg0, arg1, arg2) {
|
|
3361
3533
|
const ret = new Uint32Array(arg0, arg1 >>> 0, arg2 >>> 0);
|
|
3362
3534
|
return ret;
|
|
3363
3535
|
};
|
|
3364
|
-
imports.wbg.
|
|
3536
|
+
imports.wbg.__wbg_newwithbyteoffsetandlength_a69c63d7671a5dbf = function(arg0, arg1, arg2) {
|
|
3365
3537
|
const ret = new Float32Array(arg0, arg1 >>> 0, arg2 >>> 0);
|
|
3366
3538
|
return ret;
|
|
3367
3539
|
};
|
|
3368
|
-
imports.wbg.
|
|
3540
|
+
imports.wbg.__wbg_instanceof_Uint8Array_247a91427532499e = function(arg0) {
|
|
3369
3541
|
let result;
|
|
3370
3542
|
try {
|
|
3371
3543
|
result = arg0 instanceof Uint8Array;
|
|
@@ -3375,27 +3547,27 @@ function __wbg_get_imports() {
|
|
|
3375
3547
|
const ret = result;
|
|
3376
3548
|
return ret;
|
|
3377
3549
|
};
|
|
3378
|
-
imports.wbg.
|
|
3550
|
+
imports.wbg.__wbg_newwithlength_ec548f448387c968 = function(arg0) {
|
|
3379
3551
|
const ret = new Uint8Array(arg0 >>> 0);
|
|
3380
3552
|
return ret;
|
|
3381
3553
|
};
|
|
3382
|
-
imports.wbg.
|
|
3554
|
+
imports.wbg.__wbg_buffer_0710d1b9dbe2eea6 = function(arg0) {
|
|
3383
3555
|
const ret = arg0.buffer;
|
|
3384
3556
|
return ret;
|
|
3385
3557
|
};
|
|
3386
|
-
imports.wbg.
|
|
3558
|
+
imports.wbg.__wbg_subarray_7c2e3576afe181d1 = function(arg0, arg1, arg2) {
|
|
3387
3559
|
const ret = arg0.subarray(arg1 >>> 0, arg2 >>> 0);
|
|
3388
3560
|
return ret;
|
|
3389
3561
|
};
|
|
3390
|
-
imports.wbg.
|
|
3562
|
+
imports.wbg.__wbg_byteLength_850664ef28f3e42f = function(arg0) {
|
|
3391
3563
|
const ret = arg0.byteLength;
|
|
3392
3564
|
return ret;
|
|
3393
3565
|
};
|
|
3394
|
-
imports.wbg.
|
|
3566
|
+
imports.wbg.__wbg_byteOffset_ea14c35fa6de38cc = function(arg0) {
|
|
3395
3567
|
const ret = arg0.byteOffset;
|
|
3396
3568
|
return ret;
|
|
3397
3569
|
};
|
|
3398
|
-
imports.wbg.
|
|
3570
|
+
imports.wbg.__wbg_set_eacc7d73fefaafdf = function() { return handleError(function (arg0, arg1, arg2) {
|
|
3399
3571
|
const ret = Reflect.set(arg0, arg1, arg2);
|
|
3400
3572
|
return ret;
|
|
3401
3573
|
}, arguments) };
|
|
@@ -3403,8 +3575,8 @@ function __wbg_get_imports() {
|
|
|
3403
3575
|
const ret = debugString(arg1);
|
|
3404
3576
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3405
3577
|
const len1 = WASM_VECTOR_LEN;
|
|
3406
|
-
|
|
3407
|
-
|
|
3578
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3579
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3408
3580
|
};
|
|
3409
3581
|
imports.wbg.__wbindgen_throw = function(arg0, arg1) {
|
|
3410
3582
|
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
@@ -3413,68 +3585,76 @@ function __wbg_get_imports() {
|
|
|
3413
3585
|
const ret = wasm.memory;
|
|
3414
3586
|
return ret;
|
|
3415
3587
|
};
|
|
3416
|
-
imports.wbg.
|
|
3417
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3588
|
+
imports.wbg.__wbindgen_closure_wrapper2206 = function(arg0, arg1, arg2) {
|
|
3589
|
+
const ret = makeMutClosure(arg0, arg1, 546, __wbg_adapter_46);
|
|
3590
|
+
return ret;
|
|
3591
|
+
};
|
|
3592
|
+
imports.wbg.__wbindgen_closure_wrapper2208 = function(arg0, arg1, arg2) {
|
|
3593
|
+
const ret = makeMutClosure(arg0, arg1, 546, __wbg_adapter_49);
|
|
3594
|
+
return ret;
|
|
3595
|
+
};
|
|
3596
|
+
imports.wbg.__wbindgen_closure_wrapper13000 = function(arg0, arg1, arg2) {
|
|
3597
|
+
const ret = makeMutClosure(arg0, arg1, 5025, __wbg_adapter_52);
|
|
3418
3598
|
return ret;
|
|
3419
3599
|
};
|
|
3420
|
-
imports.wbg.
|
|
3421
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3600
|
+
imports.wbg.__wbindgen_closure_wrapper13002 = function(arg0, arg1, arg2) {
|
|
3601
|
+
const ret = makeMutClosure(arg0, arg1, 5025, __wbg_adapter_55);
|
|
3422
3602
|
return ret;
|
|
3423
3603
|
};
|
|
3424
|
-
imports.wbg.
|
|
3425
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3604
|
+
imports.wbg.__wbindgen_closure_wrapper13004 = function(arg0, arg1, arg2) {
|
|
3605
|
+
const ret = makeMutClosure(arg0, arg1, 5025, __wbg_adapter_55);
|
|
3426
3606
|
return ret;
|
|
3427
3607
|
};
|
|
3428
|
-
imports.wbg.
|
|
3429
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3608
|
+
imports.wbg.__wbindgen_closure_wrapper17213 = function(arg0, arg1, arg2) {
|
|
3609
|
+
const ret = makeMutClosure(arg0, arg1, 6523, __wbg_adapter_60);
|
|
3430
3610
|
return ret;
|
|
3431
3611
|
};
|
|
3432
|
-
imports.wbg.
|
|
3433
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3612
|
+
imports.wbg.__wbindgen_closure_wrapper17760 = function(arg0, arg1, arg2) {
|
|
3613
|
+
const ret = makeMutClosure(arg0, arg1, 6768, __wbg_adapter_63);
|
|
3434
3614
|
return ret;
|
|
3435
3615
|
};
|
|
3436
|
-
imports.wbg.
|
|
3437
|
-
const ret =
|
|
3616
|
+
imports.wbg.__wbindgen_closure_wrapper19346 = function(arg0, arg1, arg2) {
|
|
3617
|
+
const ret = makeClosure(arg0, arg1, 7228, __wbg_adapter_66);
|
|
3438
3618
|
return ret;
|
|
3439
3619
|
};
|
|
3440
|
-
imports.wbg.
|
|
3441
|
-
const ret =
|
|
3620
|
+
imports.wbg.__wbindgen_closure_wrapper19348 = function(arg0, arg1, arg2) {
|
|
3621
|
+
const ret = makeClosure(arg0, arg1, 7228, __wbg_adapter_66);
|
|
3442
3622
|
return ret;
|
|
3443
3623
|
};
|
|
3444
|
-
imports.wbg.
|
|
3445
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3624
|
+
imports.wbg.__wbindgen_closure_wrapper21937 = function(arg0, arg1, arg2) {
|
|
3625
|
+
const ret = makeMutClosure(arg0, arg1, 8349, __wbg_adapter_71);
|
|
3446
3626
|
return ret;
|
|
3447
3627
|
};
|
|
3448
|
-
imports.wbg.
|
|
3449
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3628
|
+
imports.wbg.__wbindgen_closure_wrapper21939 = function(arg0, arg1, arg2) {
|
|
3629
|
+
const ret = makeMutClosure(arg0, arg1, 8349, __wbg_adapter_71);
|
|
3450
3630
|
return ret;
|
|
3451
3631
|
};
|
|
3452
|
-
imports.wbg.
|
|
3453
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3632
|
+
imports.wbg.__wbindgen_closure_wrapper29890 = function(arg0, arg1, arg2) {
|
|
3633
|
+
const ret = makeMutClosure(arg0, arg1, 11742, __wbg_adapter_76);
|
|
3454
3634
|
return ret;
|
|
3455
3635
|
};
|
|
3456
|
-
imports.wbg.
|
|
3457
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3636
|
+
imports.wbg.__wbindgen_closure_wrapper29892 = function(arg0, arg1, arg2) {
|
|
3637
|
+
const ret = makeMutClosure(arg0, arg1, 11742, __wbg_adapter_76);
|
|
3458
3638
|
return ret;
|
|
3459
3639
|
};
|
|
3460
|
-
imports.wbg.
|
|
3461
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3640
|
+
imports.wbg.__wbindgen_closure_wrapper29894 = function(arg0, arg1, arg2) {
|
|
3641
|
+
const ret = makeMutClosure(arg0, arg1, 11742, __wbg_adapter_76);
|
|
3462
3642
|
return ret;
|
|
3463
3643
|
};
|
|
3464
|
-
imports.wbg.
|
|
3465
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3644
|
+
imports.wbg.__wbindgen_closure_wrapper29896 = function(arg0, arg1, arg2) {
|
|
3645
|
+
const ret = makeMutClosure(arg0, arg1, 11742, __wbg_adapter_76);
|
|
3466
3646
|
return ret;
|
|
3467
3647
|
};
|
|
3468
|
-
imports.wbg.
|
|
3469
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3648
|
+
imports.wbg.__wbindgen_closure_wrapper36685 = function(arg0, arg1, arg2) {
|
|
3649
|
+
const ret = makeMutClosure(arg0, arg1, 14647, __wbg_adapter_85);
|
|
3470
3650
|
return ret;
|
|
3471
3651
|
};
|
|
3472
|
-
imports.wbg.
|
|
3473
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3652
|
+
imports.wbg.__wbindgen_closure_wrapper36856 = function(arg0, arg1, arg2) {
|
|
3653
|
+
const ret = makeMutClosure(arg0, arg1, 14698, __wbg_adapter_88);
|
|
3474
3654
|
return ret;
|
|
3475
3655
|
};
|
|
3476
|
-
imports.wbg.
|
|
3477
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3656
|
+
imports.wbg.__wbindgen_closure_wrapper36925 = function(arg0, arg1, arg2) {
|
|
3657
|
+
const ret = makeMutClosure(arg0, arg1, 14732, __wbg_adapter_91);
|
|
3478
3658
|
return ret;
|
|
3479
3659
|
};
|
|
3480
3660
|
imports.wbg.__wbindgen_init_externref_table = function() {
|
|
@@ -3491,18 +3671,19 @@ function __wbg_get_imports() {
|
|
|
3491
3671
|
return imports;
|
|
3492
3672
|
}
|
|
3493
3673
|
|
|
3494
|
-
function __wbg_init_memory(imports,
|
|
3674
|
+
function __wbg_init_memory(imports, memory) {
|
|
3495
3675
|
|
|
3496
3676
|
}
|
|
3497
3677
|
|
|
3498
3678
|
function __wbg_finalize_init(instance, module) {
|
|
3499
3679
|
wasm = instance.exports;
|
|
3500
3680
|
__wbg_init.__wbindgen_wasm_module = module;
|
|
3501
|
-
|
|
3502
|
-
|
|
3503
|
-
|
|
3504
|
-
|
|
3505
|
-
|
|
3681
|
+
cachedDataViewMemory0 = null;
|
|
3682
|
+
cachedFloat32ArrayMemory0 = null;
|
|
3683
|
+
cachedInt32ArrayMemory0 = null;
|
|
3684
|
+
cachedUint32ArrayMemory0 = null;
|
|
3685
|
+
cachedUint8ArrayMemory0 = null;
|
|
3686
|
+
|
|
3506
3687
|
|
|
3507
3688
|
wasm.__wbindgen_start();
|
|
3508
3689
|
return wasm;
|
|
@@ -3511,6 +3692,12 @@ function __wbg_finalize_init(instance, module) {
|
|
|
3511
3692
|
function initSync(module) {
|
|
3512
3693
|
if (wasm !== undefined) return wasm;
|
|
3513
3694
|
|
|
3695
|
+
|
|
3696
|
+
if (typeof module !== 'undefined' && Object.getPrototypeOf(module) === Object.prototype)
|
|
3697
|
+
({module} = module)
|
|
3698
|
+
else
|
|
3699
|
+
console.warn('using deprecated parameters for `initSync()`; pass a single object instead')
|
|
3700
|
+
|
|
3514
3701
|
const imports = __wbg_get_imports();
|
|
3515
3702
|
|
|
3516
3703
|
__wbg_init_memory(imports);
|
|
@@ -3524,19 +3711,25 @@ function initSync(module) {
|
|
|
3524
3711
|
return __wbg_finalize_init(instance, module);
|
|
3525
3712
|
}
|
|
3526
3713
|
|
|
3527
|
-
async function __wbg_init(
|
|
3714
|
+
async function __wbg_init(module_or_path) {
|
|
3528
3715
|
if (wasm !== undefined) return wasm;
|
|
3529
3716
|
|
|
3530
3717
|
|
|
3718
|
+
if (typeof module_or_path !== 'undefined' && Object.getPrototypeOf(module_or_path) === Object.prototype)
|
|
3719
|
+
({module_or_path} = module_or_path)
|
|
3720
|
+
else
|
|
3721
|
+
console.warn('using deprecated parameters for the initialization function; pass a single object instead')
|
|
3722
|
+
|
|
3723
|
+
|
|
3531
3724
|
const imports = __wbg_get_imports();
|
|
3532
3725
|
|
|
3533
|
-
if (typeof
|
|
3534
|
-
|
|
3726
|
+
if (typeof module_or_path === 'string' || (typeof Request === 'function' && module_or_path instanceof Request) || (typeof URL === 'function' && module_or_path instanceof URL)) {
|
|
3727
|
+
module_or_path = fetch(module_or_path);
|
|
3535
3728
|
}
|
|
3536
3729
|
|
|
3537
3730
|
__wbg_init_memory(imports);
|
|
3538
3731
|
|
|
3539
|
-
const { instance, module } = await __wbg_load(await
|
|
3732
|
+
const { instance, module } = await __wbg_load(await module_or_path, imports);
|
|
3540
3733
|
|
|
3541
3734
|
return __wbg_finalize_init(instance, module);
|
|
3542
3735
|
}
|