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