tanaid-tcl 0.1.0

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/dist/index.mjs ADDED
@@ -0,0 +1,2993 @@
1
+ //#region \0rolldown/runtime.js
2
+ var __defProp = Object.defineProperty;
3
+ var __exportAll = (all, no_symbols) => {
4
+ let target = {};
5
+ for (var name in all) __defProp(target, name, {
6
+ get: all[name],
7
+ enumerable: true
8
+ });
9
+ if (!no_symbols) __defProp(target, Symbol.toStringTag, { value: "Module" });
10
+ return target;
11
+ };
12
+ //#endregion
13
+ //#region \0wasm-helpers.js
14
+ function instantiate(source, imports, stream) {
15
+ const instantiate = WebAssembly[stream ? "instantiateStreaming" : "instantiate"];
16
+ return instantiate(source, imports).then(({ instance }) => instance);
17
+ }
18
+ function loadWasmModule(sync, fileUrl, src, imports) {
19
+ let buf = null;
20
+ const isNode = typeof process !== "undefined" && process.versions != null && process.versions.node != null;
21
+ if (fileUrl && isNode) {
22
+ const { readFile } = process.getBuiltinModule("fs/promises");
23
+ return readFile(fileUrl).then((buffer) => instantiate(buffer, imports));
24
+ } else if (fileUrl) return instantiate(fetch(fileUrl), imports, true);
25
+ if (isNode) buf = Buffer.from(src, "base64");
26
+ else {
27
+ const raw = globalThis.atob(src);
28
+ const len = raw.length;
29
+ buf = new Uint8Array(new ArrayBuffer(len));
30
+ for (let i = 0; i < len; i++) buf[i] = raw.charCodeAt(i);
31
+ }
32
+ if (sync) {
33
+ const mod = new WebAssembly.Module(buf);
34
+ return new WebAssembly.Instance(mod, imports);
35
+ } else return instantiate(buf, imports);
36
+ }
37
+ //#endregion
38
+ //#region ../../crates/tanaid-wasm/pkg/bundler/tanaid_wasm_bg.js
39
+ var Interpreter = class Interpreter {
40
+ static __wrap(ptr) {
41
+ const obj = Object.create(Interpreter.prototype);
42
+ obj.__wbg_ptr = ptr;
43
+ InterpreterFinalization.register(obj, obj.__wbg_ptr, obj);
44
+ return obj;
45
+ }
46
+ __destroy_into_raw() {
47
+ const ptr = this.__wbg_ptr;
48
+ this.__wbg_ptr = 0;
49
+ InterpreterFinalization.unregister(this);
50
+ return ptr;
51
+ }
52
+ free() {
53
+ const ptr = this.__destroy_into_raw();
54
+ wasm.__wbg_interpreter_free(ptr, 0);
55
+ }
56
+ /**
57
+ * @param {InterpreterOptions} options
58
+ * @returns {Interpreter}
59
+ */
60
+ static create(options) {
61
+ const ret = wasm.interpreter_create(options);
62
+ if (ret[2]) throw takeFromExternrefTable0(ret[1]);
63
+ return Interpreter.__wrap(ret[0]);
64
+ }
65
+ /**
66
+ * @param {string} src
67
+ * @returns {Promise<any>}
68
+ */
69
+ run(src) {
70
+ const ptr0 = passStringToWasm0(src, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
71
+ const len0 = WASM_VECTOR_LEN;
72
+ return wasm.interpreter_run(this.__wbg_ptr, ptr0, len0);
73
+ }
74
+ /**
75
+ * The size of the widget the script mapped, if it opened a window.
76
+ * @returns {Uint32Array | undefined}
77
+ */
78
+ windowSize() {
79
+ const ret = wasm.interpreter_windowSize(this.__wbg_ptr);
80
+ let v1;
81
+ if (ret[0] !== 0) {
82
+ v1 = getArrayU32FromWasm0(ret[0], ret[1]).slice();
83
+ wasm.__wbindgen_free(ret[0], ret[1] * 4, 4);
84
+ }
85
+ return v1;
86
+ }
87
+ };
88
+ if (Symbol.dispose) Interpreter.prototype[Symbol.dispose] = Interpreter.prototype.free;
89
+ function __wbg_Error_408e67f47ca7b58b(arg0, arg1) {
90
+ return Error(getStringFromWasm0(arg0, arg1));
91
+ }
92
+ function __wbg_Number_3890faa6d3ff057d(arg0) {
93
+ return Number(arg0);
94
+ }
95
+ function __wbg_String_8564e559799eccda(arg0, arg1) {
96
+ const ptr1 = passStringToWasm0(String(arg1), wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
97
+ const len1 = WASM_VECTOR_LEN;
98
+ getDataViewMemory0().setInt32(arg0 + 4, len1, true);
99
+ getDataViewMemory0().setInt32(arg0 + 0, ptr1, true);
100
+ }
101
+ function __wbg_Window_afcc911b2f9c92e2(arg0) {
102
+ return arg0.Window;
103
+ }
104
+ function __wbg_WorkerGlobalScope_5d19ebc889ff397e(arg0) {
105
+ return arg0.WorkerGlobalScope;
106
+ }
107
+ function __wbg___wbindgen_boolean_get_c9c83ebd41b34df3(arg0) {
108
+ const v = arg0;
109
+ const ret = typeof v === "boolean" ? v : void 0;
110
+ return isLikeNone(ret) ? 16777215 : ret ? 1 : 0;
111
+ }
112
+ function __wbg___wbindgen_debug_string_a57024b9c6e4a48b(arg0, arg1) {
113
+ const ptr1 = passStringToWasm0(debugString(arg1), wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
114
+ const len1 = WASM_VECTOR_LEN;
115
+ getDataViewMemory0().setInt32(arg0 + 4, len1, true);
116
+ getDataViewMemory0().setInt32(arg0 + 0, ptr1, true);
117
+ }
118
+ function __wbg___wbindgen_in_ac983077f137f2e6(arg0, arg1) {
119
+ return arg0 in arg1;
120
+ }
121
+ function __wbg___wbindgen_is_function_5e4570eb24ffa122(arg0) {
122
+ return typeof arg0 === "function";
123
+ }
124
+ function __wbg___wbindgen_is_null_7d13f41e1a2d5140(arg0) {
125
+ return arg0 === null;
126
+ }
127
+ function __wbg___wbindgen_is_object_a2790eb24c211ea0(arg0) {
128
+ const val = arg0;
129
+ return typeof val === "object" && val !== null;
130
+ }
131
+ function __wbg___wbindgen_is_string_e6f02f0ea5f20a32(arg0) {
132
+ return typeof arg0 === "string";
133
+ }
134
+ function __wbg___wbindgen_is_undefined_6cff064c44e0d823(arg0) {
135
+ return arg0 === void 0;
136
+ }
137
+ function __wbg___wbindgen_jsval_loose_eq_acf2776254a8d832(arg0, arg1) {
138
+ return arg0 == arg1;
139
+ }
140
+ function __wbg___wbindgen_number_get_136b9679cab35cfb(arg0, arg1) {
141
+ const obj = arg1;
142
+ const ret = typeof obj === "number" ? obj : void 0;
143
+ getDataViewMemory0().setFloat64(arg0 + 8, isLikeNone(ret) ? 0 : ret, true);
144
+ getDataViewMemory0().setInt32(arg0 + 0, !isLikeNone(ret), true);
145
+ }
146
+ function __wbg___wbindgen_rethrow_fbd2dcd7d2b9ac5f(arg0) {
147
+ throw arg0;
148
+ }
149
+ function __wbg___wbindgen_string_get_d154f1e671052120(arg0, arg1) {
150
+ const obj = arg1;
151
+ const ret = typeof obj === "string" ? obj : void 0;
152
+ var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
153
+ var len1 = WASM_VECTOR_LEN;
154
+ getDataViewMemory0().setInt32(arg0 + 4, len1, true);
155
+ getDataViewMemory0().setInt32(arg0 + 0, ptr1, true);
156
+ }
157
+ function __wbg___wbindgen_throw_bb96b2010945f0bc(arg0, arg1) {
158
+ throw new Error(getStringFromWasm0(arg0, arg1));
159
+ }
160
+ function __wbg__wbg_cb_unref_be22cc64ae6946a0(arg0) {
161
+ arg0._wbg_cb_unref();
162
+ }
163
+ function __wbg_activeTexture_8e65ac2e8d488478(arg0, arg1) {
164
+ arg0.activeTexture(arg1 >>> 0);
165
+ }
166
+ function __wbg_activeTexture_fd6262686afdbe2f(arg0, arg1) {
167
+ arg0.activeTexture(arg1 >>> 0);
168
+ }
169
+ function __wbg_attachShader_26751604f00d1f1b(arg0, arg1, arg2) {
170
+ arg0.attachShader(arg1, arg2);
171
+ }
172
+ function __wbg_attachShader_61baa58641ea664a(arg0, arg1, arg2) {
173
+ arg0.attachShader(arg1, arg2);
174
+ }
175
+ function __wbg_beginQuery_444a51812fdbf958(arg0, arg1, arg2) {
176
+ arg0.beginQuery(arg1 >>> 0, arg2);
177
+ }
178
+ function __wbg_beginRenderPass_aa22c432e793359a() {
179
+ return handleError(function(arg0, arg1) {
180
+ return arg0.beginRenderPass(arg1);
181
+ }, arguments);
182
+ }
183
+ function __wbg_bindAttribLocation_1e182a50e1556784(arg0, arg1, arg2, arg3, arg4) {
184
+ arg0.bindAttribLocation(arg1, arg2 >>> 0, getStringFromWasm0(arg3, arg4));
185
+ }
186
+ function __wbg_bindAttribLocation_9cc5ab15df1d042d(arg0, arg1, arg2, arg3, arg4) {
187
+ arg0.bindAttribLocation(arg1, arg2 >>> 0, getStringFromWasm0(arg3, arg4));
188
+ }
189
+ function __wbg_bindBufferRange_5a8d28ef662d8746(arg0, arg1, arg2, arg3, arg4, arg5) {
190
+ arg0.bindBufferRange(arg1 >>> 0, arg2 >>> 0, arg3, arg4, arg5);
191
+ }
192
+ function __wbg_bindBuffer_1fb12d083d2a22af(arg0, arg1, arg2) {
193
+ arg0.bindBuffer(arg1 >>> 0, arg2);
194
+ }
195
+ function __wbg_bindBuffer_31cb159ab5dc5ba7(arg0, arg1, arg2) {
196
+ arg0.bindBuffer(arg1 >>> 0, arg2);
197
+ }
198
+ function __wbg_bindFramebuffer_32ce672324ce8a16(arg0, arg1, arg2) {
199
+ arg0.bindFramebuffer(arg1 >>> 0, arg2);
200
+ }
201
+ function __wbg_bindFramebuffer_e620067056f9316f(arg0, arg1, arg2) {
202
+ arg0.bindFramebuffer(arg1 >>> 0, arg2);
203
+ }
204
+ function __wbg_bindRenderbuffer_765cffe23b9c36f7(arg0, arg1, arg2) {
205
+ arg0.bindRenderbuffer(arg1 >>> 0, arg2);
206
+ }
207
+ function __wbg_bindRenderbuffer_9b313332bd7aa049(arg0, arg1, arg2) {
208
+ arg0.bindRenderbuffer(arg1 >>> 0, arg2);
209
+ }
210
+ function __wbg_bindSampler_28b0a4c34c6f96d4(arg0, arg1, arg2) {
211
+ arg0.bindSampler(arg1 >>> 0, arg2);
212
+ }
213
+ function __wbg_bindTexture_4c54ffb64c33564f(arg0, arg1, arg2) {
214
+ arg0.bindTexture(arg1 >>> 0, arg2);
215
+ }
216
+ function __wbg_bindTexture_6fe86367f6be8f59(arg0, arg1, arg2) {
217
+ arg0.bindTexture(arg1 >>> 0, arg2);
218
+ }
219
+ function __wbg_bindVertexArrayOES_96a4898652eac0d8(arg0, arg1) {
220
+ arg0.bindVertexArrayOES(arg1);
221
+ }
222
+ function __wbg_bindVertexArray_0185d931d681d806(arg0, arg1) {
223
+ arg0.bindVertexArray(arg1);
224
+ }
225
+ function __wbg_blendColor_402572bc445d3ac3(arg0, arg1, arg2, arg3, arg4) {
226
+ arg0.blendColor(arg1, arg2, arg3, arg4);
227
+ }
228
+ function __wbg_blendColor_af92968fedc595b1(arg0, arg1, arg2, arg3, arg4) {
229
+ arg0.blendColor(arg1, arg2, arg3, arg4);
230
+ }
231
+ function __wbg_blendEquationSeparate_5ab35e46e7f48717(arg0, arg1, arg2) {
232
+ arg0.blendEquationSeparate(arg1 >>> 0, arg2 >>> 0);
233
+ }
234
+ function __wbg_blendEquationSeparate_9ad084e8266b8e3c(arg0, arg1, arg2) {
235
+ arg0.blendEquationSeparate(arg1 >>> 0, arg2 >>> 0);
236
+ }
237
+ function __wbg_blendEquation_4bab539169e7e865(arg0, arg1) {
238
+ arg0.blendEquation(arg1 >>> 0);
239
+ }
240
+ function __wbg_blendEquation_502ed4c6af5bf8ee(arg0, arg1) {
241
+ arg0.blendEquation(arg1 >>> 0);
242
+ }
243
+ function __wbg_blendFuncSeparate_2e4d259caaba517e(arg0, arg1, arg2, arg3, arg4) {
244
+ arg0.blendFuncSeparate(arg1 >>> 0, arg2 >>> 0, arg3 >>> 0, arg4 >>> 0);
245
+ }
246
+ function __wbg_blendFuncSeparate_66688b15ecc6529c(arg0, arg1, arg2, arg3, arg4) {
247
+ arg0.blendFuncSeparate(arg1 >>> 0, arg2 >>> 0, arg3 >>> 0, arg4 >>> 0);
248
+ }
249
+ function __wbg_blendFunc_b7f382e97db2fd5b(arg0, arg1, arg2) {
250
+ arg0.blendFunc(arg1 >>> 0, arg2 >>> 0);
251
+ }
252
+ function __wbg_blendFunc_d908118bbb181928(arg0, arg1, arg2) {
253
+ arg0.blendFunc(arg1 >>> 0, arg2 >>> 0);
254
+ }
255
+ function __wbg_blitFramebuffer_20b32de88a3097b1(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) {
256
+ arg0.blitFramebuffer(arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9 >>> 0, arg10 >>> 0);
257
+ }
258
+ function __wbg_bufferData_1dd2939db2d88d82(arg0, arg1, arg2, arg3) {
259
+ arg0.bufferData(arg1 >>> 0, arg2, arg3 >>> 0);
260
+ }
261
+ function __wbg_bufferData_69a44ade0864ba2b(arg0, arg1, arg2, arg3) {
262
+ arg0.bufferData(arg1 >>> 0, arg2, arg3 >>> 0);
263
+ }
264
+ function __wbg_bufferData_6c10d3e07ec9a2a9(arg0, arg1, arg2, arg3) {
265
+ arg0.bufferData(arg1 >>> 0, arg2, arg3 >>> 0);
266
+ }
267
+ function __wbg_bufferData_d359d1c797b8e8b7(arg0, arg1, arg2, arg3) {
268
+ arg0.bufferData(arg1 >>> 0, arg2, arg3 >>> 0);
269
+ }
270
+ function __wbg_bufferSubData_4f6063d50303b61d(arg0, arg1, arg2, arg3) {
271
+ arg0.bufferSubData(arg1 >>> 0, arg2, arg3);
272
+ }
273
+ function __wbg_bufferSubData_64b69f468a0d3048(arg0, arg1, arg2, arg3) {
274
+ arg0.bufferSubData(arg1 >>> 0, arg2, arg3);
275
+ }
276
+ function __wbg_call_0f2a9af232c18fd2() {
277
+ return handleError(function(arg0, arg1, arg2, arg3) {
278
+ return arg0.call(arg1, arg2, arg3);
279
+ }, arguments);
280
+ }
281
+ function __wbg_call_1c5886ab9c57d1c7() {
282
+ return handleError(function(arg0, arg1) {
283
+ return arg0.call(arg1);
284
+ }, arguments);
285
+ }
286
+ function __wbg_call_35dba3c747ad7521() {
287
+ return handleError(function(arg0, arg1, arg2) {
288
+ return arg0.call(arg1, arg2);
289
+ }, arguments);
290
+ }
291
+ function __wbg_clearBufferfv_ccbb43fb098f1912(arg0, arg1, arg2, arg3, arg4) {
292
+ arg0.clearBufferfv(arg1 >>> 0, arg2, getArrayF32FromWasm0(arg3, arg4));
293
+ }
294
+ function __wbg_clearBufferiv_8b1c68299632478f(arg0, arg1, arg2, arg3, arg4) {
295
+ arg0.clearBufferiv(arg1 >>> 0, arg2, getArrayI32FromWasm0(arg3, arg4));
296
+ }
297
+ function __wbg_clearBufferuiv_cd72147d09d432e8(arg0, arg1, arg2, arg3, arg4) {
298
+ arg0.clearBufferuiv(arg1 >>> 0, arg2, getArrayU32FromWasm0(arg3, arg4));
299
+ }
300
+ function __wbg_clearDepth_887000180cc9eb2e(arg0, arg1) {
301
+ arg0.clearDepth(arg1);
302
+ }
303
+ function __wbg_clearDepth_c4897278afd894a9(arg0, arg1) {
304
+ arg0.clearDepth(arg1);
305
+ }
306
+ function __wbg_clearStencil_3d39149452a2f872(arg0, arg1) {
307
+ arg0.clearStencil(arg1);
308
+ }
309
+ function __wbg_clearStencil_96978923f9c6fb1f(arg0, arg1) {
310
+ arg0.clearStencil(arg1);
311
+ }
312
+ function __wbg_clear_20f7614cd20df101(arg0, arg1) {
313
+ arg0.clear(arg1 >>> 0);
314
+ }
315
+ function __wbg_clear_332f205d7e52df87(arg0, arg1) {
316
+ arg0.clear(arg1 >>> 0);
317
+ }
318
+ function __wbg_clientWaitSync_8800b42d1c534e00(arg0, arg1, arg2, arg3) {
319
+ return arg0.clientWaitSync(arg1, arg2 >>> 0, arg3 >>> 0);
320
+ }
321
+ function __wbg_colorMask_5646450fe1f1b723(arg0, arg1, arg2, arg3, arg4) {
322
+ arg0.colorMask(arg1 !== 0, arg2 !== 0, arg3 !== 0, arg4 !== 0);
323
+ }
324
+ function __wbg_colorMask_8fca508f44773327(arg0, arg1, arg2, arg3, arg4) {
325
+ arg0.colorMask(arg1 !== 0, arg2 !== 0, arg3 !== 0, arg4 !== 0);
326
+ }
327
+ function __wbg_compileShader_4ede19e4fc1bebce(arg0, arg1) {
328
+ arg0.compileShader(arg1);
329
+ }
330
+ function __wbg_compileShader_ac457ada9042f08e(arg0, arg1) {
331
+ arg0.compileShader(arg1);
332
+ }
333
+ function __wbg_compressedTexSubImage2D_0968a85385b7c463(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
334
+ arg0.compressedTexSubImage2D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7 >>> 0, arg8, arg9);
335
+ }
336
+ function __wbg_compressedTexSubImage2D_45987d7f0210d36f(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
337
+ arg0.compressedTexSubImage2D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7 >>> 0, arg8);
338
+ }
339
+ function __wbg_compressedTexSubImage2D_a39446fce0a68ad9(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
340
+ arg0.compressedTexSubImage2D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7 >>> 0, arg8);
341
+ }
342
+ function __wbg_compressedTexSubImage3D_3da84908295b8ec3(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
343
+ arg0.compressedTexSubImage3D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9 >>> 0, arg10, arg11);
344
+ }
345
+ function __wbg_compressedTexSubImage3D_c0bc017057e3942a(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) {
346
+ arg0.compressedTexSubImage3D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9 >>> 0, arg10);
347
+ }
348
+ function __wbg_configure_0e4789c0f6b35c8e() {
349
+ return handleError(function(arg0, arg1) {
350
+ arg0.configure(arg1);
351
+ }, arguments);
352
+ }
353
+ function __wbg_copyBufferSubData_e5dc2aab90456f99(arg0, arg1, arg2, arg3, arg4, arg5) {
354
+ arg0.copyBufferSubData(arg1 >>> 0, arg2 >>> 0, arg3, arg4, arg5);
355
+ }
356
+ function __wbg_copyTexSubImage2D_188da734d1c8aa07(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
357
+ arg0.copyTexSubImage2D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7, arg8);
358
+ }
359
+ function __wbg_copyTexSubImage2D_84d99fa40fabace0(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
360
+ arg0.copyTexSubImage2D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7, arg8);
361
+ }
362
+ function __wbg_copyTexSubImage3D_89064e67340a38b3(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
363
+ arg0.copyTexSubImage3D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9);
364
+ }
365
+ function __wbg_createBindGroupLayout_49a7e2b3d076afcf() {
366
+ return handleError(function(arg0, arg1) {
367
+ return arg0.createBindGroupLayout(arg1);
368
+ }, arguments);
369
+ }
370
+ function __wbg_createBindGroup_655c6e6c0258530e(arg0, arg1) {
371
+ return arg0.createBindGroup(arg1);
372
+ }
373
+ function __wbg_createBuffer_0726dd2ab09ea1d2() {
374
+ return handleError(function(arg0, arg1) {
375
+ return arg0.createBuffer(arg1);
376
+ }, arguments);
377
+ }
378
+ function __wbg_createBuffer_44b37c222efbd326(arg0) {
379
+ const ret = arg0.createBuffer();
380
+ return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
381
+ }
382
+ function __wbg_createBuffer_af6c411fe2b091f8(arg0) {
383
+ const ret = arg0.createBuffer();
384
+ return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
385
+ }
386
+ function __wbg_createCommandEncoder_ec1f40f0cb4d09df(arg0, arg1) {
387
+ return arg0.createCommandEncoder(arg1);
388
+ }
389
+ function __wbg_createFramebuffer_4dc2fb6bd93463a5(arg0) {
390
+ const ret = arg0.createFramebuffer();
391
+ return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
392
+ }
393
+ function __wbg_createFramebuffer_e6d8917bf9291c65(arg0) {
394
+ const ret = arg0.createFramebuffer();
395
+ return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
396
+ }
397
+ function __wbg_createPipelineLayout_2c8cd4528b06c108(arg0, arg1) {
398
+ return arg0.createPipelineLayout(arg1);
399
+ }
400
+ function __wbg_createProgram_2ebbd17565e0ede7(arg0) {
401
+ const ret = arg0.createProgram();
402
+ return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
403
+ }
404
+ function __wbg_createProgram_81b37242eadef893(arg0) {
405
+ const ret = arg0.createProgram();
406
+ return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
407
+ }
408
+ function __wbg_createQuery_5ef5edffbd3a678d(arg0) {
409
+ const ret = arg0.createQuery();
410
+ return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
411
+ }
412
+ function __wbg_createRenderPipeline_cf98d4d699bfb03c() {
413
+ return handleError(function(arg0, arg1) {
414
+ return arg0.createRenderPipeline(arg1);
415
+ }, arguments);
416
+ }
417
+ function __wbg_createRenderbuffer_be624f81e06a0cfd(arg0) {
418
+ const ret = arg0.createRenderbuffer();
419
+ return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
420
+ }
421
+ function __wbg_createRenderbuffer_cd2638d5dda9c277(arg0) {
422
+ const ret = arg0.createRenderbuffer();
423
+ return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
424
+ }
425
+ function __wbg_createSampler_f1aedbf47c21745a(arg0) {
426
+ const ret = arg0.createSampler();
427
+ return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
428
+ }
429
+ function __wbg_createShaderModule_2e44fc7677c6288b(arg0, arg1) {
430
+ return arg0.createShaderModule(arg1);
431
+ }
432
+ function __wbg_createShader_9a8e5f335caac850(arg0, arg1) {
433
+ const ret = arg0.createShader(arg1 >>> 0);
434
+ return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
435
+ }
436
+ function __wbg_createShader_f8638cf4c19a1d2d(arg0, arg1) {
437
+ const ret = arg0.createShader(arg1 >>> 0);
438
+ return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
439
+ }
440
+ function __wbg_createTexture_42c791197006c64a(arg0) {
441
+ const ret = arg0.createTexture();
442
+ return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
443
+ }
444
+ function __wbg_createTexture_c74740f68b5c2a93(arg0) {
445
+ const ret = arg0.createTexture();
446
+ return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
447
+ }
448
+ function __wbg_createVertexArrayOES_f7e8c94194c4e075(arg0) {
449
+ const ret = arg0.createVertexArrayOES();
450
+ return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
451
+ }
452
+ function __wbg_createVertexArray_abd18ded26b75653(arg0) {
453
+ const ret = arg0.createVertexArray();
454
+ return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
455
+ }
456
+ function __wbg_createView_ceaf2f5881adbd34() {
457
+ return handleError(function(arg0, arg1) {
458
+ return arg0.createView(arg1);
459
+ }, arguments);
460
+ }
461
+ function __wbg_cullFace_053fc24c214cae86(arg0, arg1) {
462
+ arg0.cullFace(arg1 >>> 0);
463
+ }
464
+ function __wbg_cullFace_94e1cd382e8b654f(arg0, arg1) {
465
+ arg0.cullFace(arg1 >>> 0);
466
+ }
467
+ function __wbg_deleteBuffer_42bd497a20b76d88(arg0, arg1) {
468
+ arg0.deleteBuffer(arg1);
469
+ }
470
+ function __wbg_deleteBuffer_50f20219abee4d05(arg0, arg1) {
471
+ arg0.deleteBuffer(arg1);
472
+ }
473
+ function __wbg_deleteFramebuffer_073235a01c2a0a28(arg0, arg1) {
474
+ arg0.deleteFramebuffer(arg1);
475
+ }
476
+ function __wbg_deleteFramebuffer_07fcc16563d17920(arg0, arg1) {
477
+ arg0.deleteFramebuffer(arg1);
478
+ }
479
+ function __wbg_deleteProgram_0191056307686073(arg0, arg1) {
480
+ arg0.deleteProgram(arg1);
481
+ }
482
+ function __wbg_deleteProgram_ee7f1925cb856dc2(arg0, arg1) {
483
+ arg0.deleteProgram(arg1);
484
+ }
485
+ function __wbg_deleteQuery_4624acbf9cbfc6e2(arg0, arg1) {
486
+ arg0.deleteQuery(arg1);
487
+ }
488
+ function __wbg_deleteRenderbuffer_570117534d9608a1(arg0, arg1) {
489
+ arg0.deleteRenderbuffer(arg1);
490
+ }
491
+ function __wbg_deleteRenderbuffer_ba4a805dfac20358(arg0, arg1) {
492
+ arg0.deleteRenderbuffer(arg1);
493
+ }
494
+ function __wbg_deleteSampler_527e8d31f81669d9(arg0, arg1) {
495
+ arg0.deleteSampler(arg1);
496
+ }
497
+ function __wbg_deleteShader_2558228a4ef7373e(arg0, arg1) {
498
+ arg0.deleteShader(arg1);
499
+ }
500
+ function __wbg_deleteShader_413961eb94f5c67c(arg0, arg1) {
501
+ arg0.deleteShader(arg1);
502
+ }
503
+ function __wbg_deleteSync_11f80510355180d6(arg0, arg1) {
504
+ arg0.deleteSync(arg1);
505
+ }
506
+ function __wbg_deleteTexture_0ccd278d6db819ff(arg0, arg1) {
507
+ arg0.deleteTexture(arg1);
508
+ }
509
+ function __wbg_deleteTexture_aadf9716c394d7be(arg0, arg1) {
510
+ arg0.deleteTexture(arg1);
511
+ }
512
+ function __wbg_deleteVertexArrayOES_e43a9a425587d52b(arg0, arg1) {
513
+ arg0.deleteVertexArrayOES(arg1);
514
+ }
515
+ function __wbg_deleteVertexArray_106030034355d246(arg0, arg1) {
516
+ arg0.deleteVertexArray(arg1);
517
+ }
518
+ function __wbg_depthFunc_6c6f948417f5bde4(arg0, arg1) {
519
+ arg0.depthFunc(arg1 >>> 0);
520
+ }
521
+ function __wbg_depthFunc_bb3152f635a60ff2(arg0, arg1) {
522
+ arg0.depthFunc(arg1 >>> 0);
523
+ }
524
+ function __wbg_depthMask_4e0075e07739355b(arg0, arg1) {
525
+ arg0.depthMask(arg1 !== 0);
526
+ }
527
+ function __wbg_depthMask_bdc57b9e64c6b4d8(arg0, arg1) {
528
+ arg0.depthMask(arg1 !== 0);
529
+ }
530
+ function __wbg_depthRange_0acaf3031a92d51d(arg0, arg1, arg2) {
531
+ arg0.depthRange(arg1, arg2);
532
+ }
533
+ function __wbg_depthRange_e2d0a59942d33efd(arg0, arg1, arg2) {
534
+ arg0.depthRange(arg1, arg2);
535
+ }
536
+ function __wbg_description_02485704e69b1e7f(arg0, arg1) {
537
+ const ret = arg1.description;
538
+ const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
539
+ const len1 = WASM_VECTOR_LEN;
540
+ getDataViewMemory0().setInt32(arg0 + 4, len1, true);
541
+ getDataViewMemory0().setInt32(arg0 + 0, ptr1, true);
542
+ }
543
+ function __wbg_destroy_fe937f756bf8df37(arg0) {
544
+ arg0.destroy();
545
+ }
546
+ function __wbg_disableVertexAttribArray_98752beca840c3da(arg0, arg1) {
547
+ arg0.disableVertexAttribArray(arg1 >>> 0);
548
+ }
549
+ function __wbg_disableVertexAttribArray_aee51b7f1a8ef4cc(arg0, arg1) {
550
+ arg0.disableVertexAttribArray(arg1 >>> 0);
551
+ }
552
+ function __wbg_disable_2ad210ba5315372a(arg0, arg1) {
553
+ arg0.disable(arg1 >>> 0);
554
+ }
555
+ function __wbg_disable_bb1df5a6c75eaecd(arg0, arg1) {
556
+ arg0.disable(arg1 >>> 0);
557
+ }
558
+ function __wbg_document_ac38448dbfd31a57(arg0) {
559
+ const ret = arg0.document;
560
+ return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
561
+ }
562
+ function __wbg_done_669171204c3dcae2(arg0) {
563
+ return arg0.done;
564
+ }
565
+ function __wbg_drawArraysInstancedANGLE_cb3b87925641d5b9(arg0, arg1, arg2, arg3, arg4) {
566
+ arg0.drawArraysInstancedANGLE(arg1 >>> 0, arg2, arg3, arg4);
567
+ }
568
+ function __wbg_drawArraysInstanced_45317b22bbf7ffe8(arg0, arg1, arg2, arg3, arg4) {
569
+ arg0.drawArraysInstanced(arg1 >>> 0, arg2, arg3, arg4);
570
+ }
571
+ function __wbg_drawArrays_02c354e377984441(arg0, arg1, arg2, arg3) {
572
+ arg0.drawArrays(arg1 >>> 0, arg2, arg3);
573
+ }
574
+ function __wbg_drawArrays_b2004a40c212065c(arg0, arg1, arg2, arg3) {
575
+ arg0.drawArrays(arg1 >>> 0, arg2, arg3);
576
+ }
577
+ function __wbg_drawBuffersWEBGL_0b4935290cba977e(arg0, arg1) {
578
+ arg0.drawBuffersWEBGL(arg1);
579
+ }
580
+ function __wbg_drawBuffers_f07f796e50bb0077(arg0, arg1) {
581
+ arg0.drawBuffers(arg1);
582
+ }
583
+ function __wbg_drawElementsInstancedANGLE_8179cb41f5862831(arg0, arg1, arg2, arg3, arg4, arg5) {
584
+ arg0.drawElementsInstancedANGLE(arg1 >>> 0, arg2, arg3 >>> 0, arg4, arg5);
585
+ }
586
+ function __wbg_drawElementsInstanced_07717eeb890435e9(arg0, arg1, arg2, arg3, arg4, arg5) {
587
+ arg0.drawElementsInstanced(arg1 >>> 0, arg2, arg3 >>> 0, arg4, arg5);
588
+ }
589
+ function __wbg_draw_6877f98847e1e36c(arg0, arg1, arg2, arg3, arg4) {
590
+ arg0.draw(arg1 >>> 0, arg2 >>> 0, arg3 >>> 0, arg4 >>> 0);
591
+ }
592
+ function __wbg_enableVertexAttribArray_90f1a9f570379c36(arg0, arg1) {
593
+ arg0.enableVertexAttribArray(arg1 >>> 0);
594
+ }
595
+ function __wbg_enableVertexAttribArray_b072ffcbe4f26e2b(arg0, arg1) {
596
+ arg0.enableVertexAttribArray(arg1 >>> 0);
597
+ }
598
+ function __wbg_enable_17346ff3b2257cae(arg0, arg1) {
599
+ arg0.enable(arg1 >>> 0);
600
+ }
601
+ function __wbg_enable_db1e433ea267f29b(arg0, arg1) {
602
+ arg0.enable(arg1 >>> 0);
603
+ }
604
+ function __wbg_endQuery_0434371d408e59b7(arg0, arg1) {
605
+ arg0.endQuery(arg1 >>> 0);
606
+ }
607
+ function __wbg_end_f99ebed53d4e198a(arg0) {
608
+ arg0.end();
609
+ }
610
+ function __wbg_error_d3cb6383ff21d1f1(arg0) {
611
+ console.error(arg0);
612
+ }
613
+ function __wbg_fenceSync_57ab30f550e5a5a2(arg0, arg1, arg2) {
614
+ const ret = arg0.fenceSync(arg1 >>> 0, arg2 >>> 0);
615
+ return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
616
+ }
617
+ function __wbg_finish_4d91de5e927dd13f(arg0, arg1) {
618
+ return arg0.finish(arg1);
619
+ }
620
+ function __wbg_finish_6e06b68ab68cd9f6(arg0) {
621
+ return arg0.finish();
622
+ }
623
+ function __wbg_finish_81c066eb195fc8a9(arg0) {
624
+ arg0.finish();
625
+ }
626
+ function __wbg_finish_94865fee5c90da6b(arg0) {
627
+ arg0.finish();
628
+ }
629
+ function __wbg_flush_2a8fa6766a4f3ada(arg0) {
630
+ arg0.flush();
631
+ }
632
+ function __wbg_flush_918ffb9cfebcbaab(arg0) {
633
+ arg0.flush();
634
+ }
635
+ function __wbg_framebufferRenderbuffer_5736a8553be94035(arg0, arg1, arg2, arg3, arg4) {
636
+ arg0.framebufferRenderbuffer(arg1 >>> 0, arg2 >>> 0, arg3 >>> 0, arg4);
637
+ }
638
+ function __wbg_framebufferRenderbuffer_e0c873b9f296443d(arg0, arg1, arg2, arg3, arg4) {
639
+ arg0.framebufferRenderbuffer(arg1 >>> 0, arg2 >>> 0, arg3 >>> 0, arg4);
640
+ }
641
+ function __wbg_framebufferTexture2D_8584b49a205ffe5b(arg0, arg1, arg2, arg3, arg4, arg5) {
642
+ arg0.framebufferTexture2D(arg1 >>> 0, arg2 >>> 0, arg3 >>> 0, arg4, arg5);
643
+ }
644
+ function __wbg_framebufferTexture2D_9abab99d6209666a(arg0, arg1, arg2, arg3, arg4, arg5) {
645
+ arg0.framebufferTexture2D(arg1 >>> 0, arg2 >>> 0, arg3 >>> 0, arg4, arg5);
646
+ }
647
+ function __wbg_framebufferTextureLayer_e236352620170c5a(arg0, arg1, arg2, arg3, arg4, arg5) {
648
+ arg0.framebufferTextureLayer(arg1 >>> 0, arg2 >>> 0, arg3, arg4, arg5);
649
+ }
650
+ function __wbg_framebufferTextureMultiviewOVR_9b89dd83134856d3(arg0, arg1, arg2, arg3, arg4, arg5, arg6) {
651
+ arg0.framebufferTextureMultiviewOVR(arg1 >>> 0, arg2 >>> 0, arg3, arg4, arg5, arg6);
652
+ }
653
+ function __wbg_frontFace_188579d7bba462b1(arg0, arg1) {
654
+ arg0.frontFace(arg1 >>> 0);
655
+ }
656
+ function __wbg_frontFace_19294c82ae89fa71(arg0, arg1) {
657
+ arg0.frontFace(arg1 >>> 0);
658
+ }
659
+ function __wbg_getBufferSubData_d1d7ad69c40ea085(arg0, arg1, arg2, arg3) {
660
+ arg0.getBufferSubData(arg1 >>> 0, arg2, arg3);
661
+ }
662
+ function __wbg_getContext_123ddade3a0fb2f5() {
663
+ return handleError(function(arg0, arg1, arg2, arg3) {
664
+ const ret = arg0.getContext(getStringFromWasm0(arg1, arg2), arg3);
665
+ return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
666
+ }, arguments);
667
+ }
668
+ function __wbg_getContext_53c8c42beb820370() {
669
+ return handleError(function(arg0, arg1, arg2, arg3) {
670
+ const ret = arg0.getContext(getStringFromWasm0(arg1, arg2), arg3);
671
+ return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
672
+ }, arguments);
673
+ }
674
+ function __wbg_getContext_71c33f14b63da593() {
675
+ return handleError(function(arg0, arg1, arg2) {
676
+ const ret = arg0.getContext(getStringFromWasm0(arg1, arg2));
677
+ return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
678
+ }, arguments);
679
+ }
680
+ function __wbg_getContext_c5236e0057b35024() {
681
+ return handleError(function(arg0, arg1, arg2) {
682
+ const ret = arg0.getContext(getStringFromWasm0(arg1, arg2));
683
+ return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
684
+ }, arguments);
685
+ }
686
+ function __wbg_getCurrentTexture_20714d1bd9051cab() {
687
+ return handleError(function(arg0) {
688
+ return arg0.getCurrentTexture();
689
+ }, arguments);
690
+ }
691
+ function __wbg_getExtension_8e8c3be603d4f5ce() {
692
+ return handleError(function(arg0, arg1, arg2) {
693
+ const ret = arg0.getExtension(getStringFromWasm0(arg1, arg2));
694
+ return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
695
+ }, arguments);
696
+ }
697
+ function __wbg_getIndexedParameter_fa6cca29d50de787() {
698
+ return handleError(function(arg0, arg1, arg2) {
699
+ return arg0.getIndexedParameter(arg1 >>> 0, arg2 >>> 0);
700
+ }, arguments);
701
+ }
702
+ function __wbg_getMappedRange_d0bf3141224111b6() {
703
+ return handleError(function(arg0, arg1, arg2) {
704
+ return arg0.getMappedRange(arg1, arg2);
705
+ }, arguments);
706
+ }
707
+ function __wbg_getParameter_19325d4aa1b66856() {
708
+ return handleError(function(arg0, arg1) {
709
+ return arg0.getParameter(arg1 >>> 0);
710
+ }, arguments);
711
+ }
712
+ function __wbg_getParameter_7ddbe9f9606f6a80() {
713
+ return handleError(function(arg0, arg1) {
714
+ return arg0.getParameter(arg1 >>> 0);
715
+ }, arguments);
716
+ }
717
+ function __wbg_getPreferredCanvasFormat_8b57039d1801a506(arg0) {
718
+ const ret = arg0.getPreferredCanvasFormat();
719
+ return (__wbindgen_enum_GpuTextureFormat.indexOf(ret) + 1 || 102) - 1;
720
+ }
721
+ function __wbg_getProgramInfoLog_50a07d12dddd0da6(arg0, arg1, arg2) {
722
+ const ret = arg1.getProgramInfoLog(arg2);
723
+ var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
724
+ var len1 = WASM_VECTOR_LEN;
725
+ getDataViewMemory0().setInt32(arg0 + 4, len1, true);
726
+ getDataViewMemory0().setInt32(arg0 + 0, ptr1, true);
727
+ }
728
+ function __wbg_getProgramInfoLog_72665662cf78b5a2(arg0, arg1, arg2) {
729
+ const ret = arg1.getProgramInfoLog(arg2);
730
+ var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
731
+ var len1 = WASM_VECTOR_LEN;
732
+ getDataViewMemory0().setInt32(arg0 + 4, len1, true);
733
+ getDataViewMemory0().setInt32(arg0 + 0, ptr1, true);
734
+ }
735
+ function __wbg_getProgramParameter_1f5cceb73030e823(arg0, arg1, arg2) {
736
+ return arg0.getProgramParameter(arg1, arg2 >>> 0);
737
+ }
738
+ function __wbg_getProgramParameter_41e1ea6f52a71ba5(arg0, arg1, arg2) {
739
+ return arg0.getProgramParameter(arg1, arg2 >>> 0);
740
+ }
741
+ function __wbg_getQueryParameter_fa2ce36cfdedc862(arg0, arg1, arg2) {
742
+ return arg0.getQueryParameter(arg1, arg2 >>> 0);
743
+ }
744
+ function __wbg_getShaderInfoLog_337a0567e83283d1(arg0, arg1, arg2) {
745
+ const ret = arg1.getShaderInfoLog(arg2);
746
+ var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
747
+ var len1 = WASM_VECTOR_LEN;
748
+ getDataViewMemory0().setInt32(arg0 + 4, len1, true);
749
+ getDataViewMemory0().setInt32(arg0 + 0, ptr1, true);
750
+ }
751
+ function __wbg_getShaderInfoLog_663a9b136ab42b32(arg0, arg1, arg2) {
752
+ const ret = arg1.getShaderInfoLog(arg2);
753
+ var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
754
+ var len1 = WASM_VECTOR_LEN;
755
+ getDataViewMemory0().setInt32(arg0 + 4, len1, true);
756
+ getDataViewMemory0().setInt32(arg0 + 0, ptr1, true);
757
+ }
758
+ function __wbg_getShaderParameter_95d4ad40668ee798(arg0, arg1, arg2) {
759
+ return arg0.getShaderParameter(arg1, arg2 >>> 0);
760
+ }
761
+ function __wbg_getShaderParameter_9e9aa18598294f3b(arg0, arg1, arg2) {
762
+ return arg0.getShaderParameter(arg1, arg2 >>> 0);
763
+ }
764
+ function __wbg_getSupportedExtensions_63e3eaba880055c5(arg0) {
765
+ const ret = arg0.getSupportedExtensions();
766
+ return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
767
+ }
768
+ function __wbg_getSupportedProfiles_7cd826b4eff5e8fc(arg0) {
769
+ const ret = arg0.getSupportedProfiles();
770
+ return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
771
+ }
772
+ function __wbg_getSyncParameter_3eb3ecefa061c5ee(arg0, arg1, arg2) {
773
+ return arg0.getSyncParameter(arg1, arg2 >>> 0);
774
+ }
775
+ function __wbg_getUniformBlockIndex_78264d4d94f8252d(arg0, arg1, arg2, arg3) {
776
+ return arg0.getUniformBlockIndex(arg1, getStringFromWasm0(arg2, arg3));
777
+ }
778
+ function __wbg_getUniformLocation_11fd99fee70965dc(arg0, arg1, arg2, arg3) {
779
+ const ret = arg0.getUniformLocation(arg1, getStringFromWasm0(arg2, arg3));
780
+ return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
781
+ }
782
+ function __wbg_getUniformLocation_c493d2f5f1a6213d(arg0, arg1, arg2, arg3) {
783
+ const ret = arg0.getUniformLocation(arg1, getStringFromWasm0(arg2, arg3));
784
+ return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
785
+ }
786
+ function __wbg_get_36debceb6d43d7a1(arg0, arg1) {
787
+ const ret = arg0[arg1 >>> 0];
788
+ return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
789
+ }
790
+ function __wbg_get_d173c0308df22d37() {
791
+ return handleError(function(arg0, arg1) {
792
+ return Reflect.get(arg0, arg1);
793
+ }, arguments);
794
+ }
795
+ function __wbg_get_unchecked_e20b893aeafc3fca(arg0, arg1) {
796
+ return arg0[arg1 >>> 0];
797
+ }
798
+ function __wbg_get_with_ref_key_6412cf3094599694(arg0, arg1) {
799
+ return arg0[arg1];
800
+ }
801
+ function __wbg_gpu_2ccc250735d24a2a(arg0) {
802
+ return arg0.gpu;
803
+ }
804
+ function __wbg_height_e6a5d9a72f05fc93(arg0) {
805
+ return arg0.height;
806
+ }
807
+ function __wbg_includes_a4b83ade703cb80b(arg0, arg1, arg2) {
808
+ return arg0.includes(arg1, arg2);
809
+ }
810
+ function __wbg_info_cf0d9a286850cd24(arg0) {
811
+ return arg0.info;
812
+ }
813
+ function __wbg_instanceof_ArrayBuffer_993d02d2d254cad1(arg0) {
814
+ let result;
815
+ try {
816
+ result = arg0 instanceof ArrayBuffer;
817
+ } catch (_) {
818
+ result = false;
819
+ }
820
+ return result;
821
+ }
822
+ function __wbg_instanceof_Error_61d8a02a0f3383a1(arg0) {
823
+ let result;
824
+ try {
825
+ result = arg0 instanceof Error;
826
+ } catch (_) {
827
+ result = false;
828
+ }
829
+ return result;
830
+ }
831
+ function __wbg_instanceof_HtmlCanvasElement_327e7f7530c72bbd(arg0) {
832
+ let result;
833
+ try {
834
+ result = arg0 instanceof HTMLCanvasElement;
835
+ } catch (_) {
836
+ result = false;
837
+ }
838
+ return result;
839
+ }
840
+ function __wbg_instanceof_OffscreenCanvas_7837cb5db833fa53(arg0) {
841
+ let result;
842
+ try {
843
+ result = arg0 instanceof OffscreenCanvas;
844
+ } catch (_) {
845
+ result = false;
846
+ }
847
+ return result;
848
+ }
849
+ function __wbg_instanceof_Uint8Array_f935dbb0aa7cdeed(arg0) {
850
+ let result;
851
+ try {
852
+ result = arg0 instanceof Uint8Array;
853
+ } catch (_) {
854
+ result = false;
855
+ }
856
+ return result;
857
+ }
858
+ function __wbg_instanceof_WebGl2RenderingContext_e27143c72f888655(arg0) {
859
+ let result;
860
+ try {
861
+ result = arg0 instanceof WebGL2RenderingContext;
862
+ } catch (_) {
863
+ result = false;
864
+ }
865
+ return result;
866
+ }
867
+ function __wbg_instanceof_Window_5625ff9937037a38(arg0) {
868
+ let result;
869
+ try {
870
+ result = arg0 instanceof Window;
871
+ } catch (_) {
872
+ result = false;
873
+ }
874
+ return result;
875
+ }
876
+ function __wbg_invalidateFramebuffer_9a711eeb3940aba0() {
877
+ return handleError(function(arg0, arg1, arg2) {
878
+ arg0.invalidateFramebuffer(arg1 >>> 0, arg2);
879
+ }, arguments);
880
+ }
881
+ function __wbg_isArray_6339f732981044bf(arg0) {
882
+ return Array.isArray(arg0);
883
+ }
884
+ function __wbg_isFallbackAdapter_8ccb967428491dcb(arg0) {
885
+ return arg0.isFallbackAdapter;
886
+ }
887
+ function __wbg_isSafeInteger_f3d6cd19ccfe4512(arg0) {
888
+ return Number.isSafeInteger(arg0);
889
+ }
890
+ function __wbg_is_86be747e88e872fb(arg0, arg1) {
891
+ return Object.is(arg0, arg1);
892
+ }
893
+ function __wbg_iterator_5cebbb86e33c6dd6() {
894
+ return Symbol.iterator;
895
+ }
896
+ function __wbg_label_7ed42f25f841996b(arg0, arg1) {
897
+ const ret = arg1.label;
898
+ const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
899
+ const len1 = WASM_VECTOR_LEN;
900
+ getDataViewMemory0().setInt32(arg0 + 4, len1, true);
901
+ getDataViewMemory0().setInt32(arg0 + 0, ptr1, true);
902
+ }
903
+ function __wbg_length_36bd29c6848c2144(arg0) {
904
+ return arg0.length;
905
+ }
906
+ function __wbg_length_ecfa2c63d3d0d82c(arg0) {
907
+ return arg0.length;
908
+ }
909
+ function __wbg_linkProgram_124252d16ea0ef40(arg0, arg1) {
910
+ arg0.linkProgram(arg1);
911
+ }
912
+ function __wbg_linkProgram_dd3cfc19950a354c(arg0, arg1) {
913
+ arg0.linkProgram(arg1);
914
+ }
915
+ function __wbg_mapAsync_52b01fa9e8f765fd(arg0, arg1, arg2, arg3) {
916
+ return arg0.mapAsync(arg1 >>> 0, arg2, arg3);
917
+ }
918
+ function __wbg_matchMedia_0e2963d34f3ddd40() {
919
+ return handleError(function(arg0, arg1, arg2) {
920
+ const ret = arg0.matchMedia(getStringFromWasm0(arg1, arg2));
921
+ return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
922
+ }, arguments);
923
+ }
924
+ function __wbg_matches_72427e51457a4411(arg0) {
925
+ return arg0.matches;
926
+ }
927
+ function __wbg_message_c141d5e68716b595(arg0) {
928
+ return arg0.message;
929
+ }
930
+ function __wbg_navigator_6cfdd5fa246d910f(arg0) {
931
+ return arg0.navigator;
932
+ }
933
+ function __wbg_navigator_e5c345298a9609cd(arg0) {
934
+ return arg0.navigator;
935
+ }
936
+ function __wbg_new_116be93542d39019() {
937
+ return new Array();
938
+ }
939
+ function __wbg_new_358857d90afd5a2d(arg0, arg1) {
940
+ return new Error(getStringFromWasm0(arg0, arg1));
941
+ }
942
+ function __wbg_new_652118cdee90118f() {
943
+ return handleError(function(arg0, arg1) {
944
+ return new OffscreenCanvas(arg0 >>> 0, arg1 >>> 0);
945
+ }, arguments);
946
+ }
947
+ function __wbg_new_77cc4f4f472aeb81(arg0) {
948
+ return new Uint8Array(arg0);
949
+ }
950
+ function __wbg_new_ebe3e0f6837f0879() {
951
+ return /* @__PURE__ */ new Object();
952
+ }
953
+ function __wbg_new_typed_ad9b105a7be50737() {
954
+ return /* @__PURE__ */ new Object();
955
+ }
956
+ function __wbg_new_typed_cceaf62d8d95e9f2(arg0, arg1) {
957
+ try {
958
+ var state0 = {
959
+ a: arg0,
960
+ b: arg1
961
+ };
962
+ var cb0 = (arg0, arg1) => {
963
+ const a = state0.a;
964
+ state0.a = 0;
965
+ try {
966
+ return wasm_bindgen__convert__closures_____invoke__h5034173c0d1c8e1d$1(a, state0.b, arg0, arg1);
967
+ } finally {
968
+ state0.a = a;
969
+ }
970
+ };
971
+ return new Promise(cb0);
972
+ } finally {
973
+ state0.a = 0;
974
+ }
975
+ }
976
+ function __wbg_new_with_byte_offset_and_length_ff6e927f8d72f0c3(arg0, arg1, arg2) {
977
+ return new Uint8Array(arg0, arg1 >>> 0, arg2 >>> 0);
978
+ }
979
+ function __wbg_next_42cf16ee0dafc9e2() {
980
+ return handleError(function(arg0) {
981
+ return arg0.next();
982
+ }, arguments);
983
+ }
984
+ function __wbg_next_8f26b64fa5e9f64b(arg0) {
985
+ return arg0.next;
986
+ }
987
+ function __wbg_of_0c6464fa8d2aa86d(arg0) {
988
+ return Array.of(arg0);
989
+ }
990
+ function __wbg_onSubmittedWorkDone_270d6b5a45520e79(arg0) {
991
+ return arg0.onSubmittedWorkDone();
992
+ }
993
+ function __wbg_pixelStorei_11bdfb5bc6a39d28(arg0, arg1, arg2) {
994
+ arg0.pixelStorei(arg1 >>> 0, arg2);
995
+ }
996
+ function __wbg_pixelStorei_86481a168d6e225e(arg0, arg1, arg2) {
997
+ arg0.pixelStorei(arg1 >>> 0, arg2);
998
+ }
999
+ function __wbg_polygonOffset_2b8b141e8cc17c10(arg0, arg1, arg2) {
1000
+ arg0.polygonOffset(arg1, arg2);
1001
+ }
1002
+ function __wbg_polygonOffset_94b427c5130ab6c2(arg0, arg1, arg2) {
1003
+ arg0.polygonOffset(arg1, arg2);
1004
+ }
1005
+ function __wbg_prototypesetcall_de8e0d9553586985(arg0, arg1, arg2) {
1006
+ Uint8Array.prototype.set.call(getArrayU8FromWasm0(arg0, arg1), arg2);
1007
+ }
1008
+ function __wbg_push_adb0107829f02d75(arg0, arg1) {
1009
+ return arg0.push(arg1);
1010
+ }
1011
+ function __wbg_queryCounterEXT_b0cddcdfb28830df(arg0, arg1, arg2) {
1012
+ arg0.queryCounterEXT(arg1, arg2 >>> 0);
1013
+ }
1014
+ function __wbg_querySelectorAll_9b6a612499ecb916() {
1015
+ return handleError(function(arg0, arg1, arg2) {
1016
+ return arg0.querySelectorAll(getStringFromWasm0(arg1, arg2));
1017
+ }, arguments);
1018
+ }
1019
+ function __wbg_querySelector_2c472eddb417c6b3() {
1020
+ return handleError(function(arg0, arg1, arg2) {
1021
+ const ret = arg0.querySelector(getStringFromWasm0(arg1, arg2));
1022
+ return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
1023
+ }, arguments);
1024
+ }
1025
+ function __wbg_queueMicrotask_ac694eae12e92dfb(arg0) {
1026
+ queueMicrotask(arg0);
1027
+ }
1028
+ function __wbg_queueMicrotask_be5fe34a8f4cad4d(arg0) {
1029
+ return arg0.queueMicrotask;
1030
+ }
1031
+ function __wbg_queue_adce34608fd0c893(arg0) {
1032
+ return arg0.queue;
1033
+ }
1034
+ function __wbg_readBuffer_2de0b72ac08915c8(arg0, arg1) {
1035
+ arg0.readBuffer(arg1 >>> 0);
1036
+ }
1037
+ function __wbg_readPixels_0033d2834b498dda() {
1038
+ return handleError(function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
1039
+ arg0.readPixels(arg1, arg2, arg3, arg4, arg5 >>> 0, arg6 >>> 0, arg7);
1040
+ }, arguments);
1041
+ }
1042
+ function __wbg_readPixels_0e3230bf7a891882() {
1043
+ return handleError(function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
1044
+ arg0.readPixels(arg1, arg2, arg3, arg4, arg5 >>> 0, arg6 >>> 0, arg7);
1045
+ }, arguments);
1046
+ }
1047
+ function __wbg_readPixels_8f8bde9ee420ba35() {
1048
+ return handleError(function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
1049
+ arg0.readPixels(arg1, arg2, arg3, arg4, arg5 >>> 0, arg6 >>> 0, arg7);
1050
+ }, arguments);
1051
+ }
1052
+ function __wbg_renderbufferStorageMultisample_a9f65ef0cc53fb37(arg0, arg1, arg2, arg3, arg4, arg5) {
1053
+ arg0.renderbufferStorageMultisample(arg1 >>> 0, arg2, arg3 >>> 0, arg4, arg5);
1054
+ }
1055
+ function __wbg_renderbufferStorage_33c57e600b175bd6(arg0, arg1, arg2, arg3, arg4) {
1056
+ arg0.renderbufferStorage(arg1 >>> 0, arg2 >>> 0, arg3, arg4);
1057
+ }
1058
+ function __wbg_renderbufferStorage_3fb6d5a0f3e07d46(arg0, arg1, arg2, arg3, arg4) {
1059
+ arg0.renderbufferStorage(arg1 >>> 0, arg2 >>> 0, arg3, arg4);
1060
+ }
1061
+ function __wbg_requestAdapter_2e6718811c735a57(arg0, arg1) {
1062
+ return arg0.requestAdapter(arg1);
1063
+ }
1064
+ function __wbg_requestAdapter_fedd76261c649e55(arg0) {
1065
+ return arg0.requestAdapter();
1066
+ }
1067
+ function __wbg_requestDevice_ab46d0519ea1cc34(arg0, arg1) {
1068
+ return arg0.requestDevice(arg1);
1069
+ }
1070
+ function __wbg_resolve_020f95d838c6ef25(arg0) {
1071
+ return Promise.resolve(arg0);
1072
+ }
1073
+ function __wbg_samplerParameterf_d7f38ba3194c43ba(arg0, arg1, arg2, arg3) {
1074
+ arg0.samplerParameterf(arg1, arg2 >>> 0, arg3);
1075
+ }
1076
+ function __wbg_samplerParameteri_3d8994d9967c6803(arg0, arg1, arg2, arg3) {
1077
+ arg0.samplerParameteri(arg1, arg2 >>> 0, arg3);
1078
+ }
1079
+ function __wbg_scissor_2f02706fbca6e98a(arg0, arg1, arg2, arg3, arg4) {
1080
+ arg0.scissor(arg1, arg2, arg3, arg4);
1081
+ }
1082
+ function __wbg_scissor_cdfb84de20f004b6(arg0, arg1, arg2, arg3, arg4) {
1083
+ arg0.scissor(arg1, arg2, arg3, arg4);
1084
+ }
1085
+ function __wbg_setBindGroup_268fd1714fff0ef5() {
1086
+ return handleError(function(arg0, arg1, arg2, arg3, arg4, arg5, arg6) {
1087
+ arg0.setBindGroup(arg1 >>> 0, arg2, getArrayU32FromWasm0(arg3, arg4), arg5, arg6 >>> 0);
1088
+ }, arguments);
1089
+ }
1090
+ function __wbg_setBindGroup_f0de6cb2c7dbfc2c(arg0, arg1, arg2) {
1091
+ arg0.setBindGroup(arg1 >>> 0, arg2);
1092
+ }
1093
+ function __wbg_setPipeline_c41bf46790f27f9e(arg0, arg1) {
1094
+ arg0.setPipeline(arg1);
1095
+ }
1096
+ function __wbg_setVertexBuffer_1e448859663dd400(arg0, arg1, arg2, arg3) {
1097
+ arg0.setVertexBuffer(arg1 >>> 0, arg2, arg3);
1098
+ }
1099
+ function __wbg_setVertexBuffer_7cf533d694e747f3(arg0, arg1, arg2, arg3, arg4) {
1100
+ arg0.setVertexBuffer(arg1 >>> 0, arg2, arg3, arg4);
1101
+ }
1102
+ function __wbg_set_8155bb79a948541b() {
1103
+ return handleError(function(arg0, arg1, arg2) {
1104
+ return Reflect.set(arg0, arg1, arg2);
1105
+ }, arguments);
1106
+ }
1107
+ function __wbg_set_862c439a342a8818(arg0, arg1, arg2) {
1108
+ arg0.set(arg1, arg2 >>> 0);
1109
+ }
1110
+ function __wbg_set_a_88262a42340d0b1c(arg0, arg1) {
1111
+ arg0.a = arg1;
1112
+ }
1113
+ function __wbg_set_access_9a5092f05dc45fad(arg0, arg1) {
1114
+ arg0.access = __wbindgen_enum_GpuStorageTextureAccess[arg1];
1115
+ }
1116
+ function __wbg_set_alpha_bfd2df62e7bc581b(arg0, arg1) {
1117
+ arg0.alpha = arg1;
1118
+ }
1119
+ function __wbg_set_alpha_mode_df805952892caa9c(arg0, arg1) {
1120
+ arg0.alphaMode = __wbindgen_enum_GpuCanvasAlphaMode[arg1];
1121
+ }
1122
+ function __wbg_set_alpha_to_coverage_enabled_8b5dc2b0a225b3b2(arg0, arg1) {
1123
+ arg0.alphaToCoverageEnabled = arg1 !== 0;
1124
+ }
1125
+ function __wbg_set_array_layer_count_7312f0f31af94e7c(arg0, arg1) {
1126
+ arg0.arrayLayerCount = arg1 >>> 0;
1127
+ }
1128
+ function __wbg_set_array_stride_f64_27ffaf4fffd74e61(arg0, arg1) {
1129
+ arg0.arrayStride = arg1;
1130
+ }
1131
+ function __wbg_set_aspect_0d453bca3d012f02(arg0, arg1) {
1132
+ arg0.aspect = __wbindgen_enum_GpuTextureAspect[arg1];
1133
+ }
1134
+ function __wbg_set_attributes_7537844a7e6dafdc(arg0, arg1, arg2) {
1135
+ arg0.attributes = getArrayJsValueViewFromWasm0(arg1, arg2);
1136
+ }
1137
+ function __wbg_set_b_c47befe0af3261eb(arg0, arg1) {
1138
+ arg0.b = arg1;
1139
+ }
1140
+ function __wbg_set_base_array_layer_f176bb9f1b37b342(arg0, arg1) {
1141
+ arg0.baseArrayLayer = arg1 >>> 0;
1142
+ }
1143
+ function __wbg_set_base_mip_level_1df145d9f8db32a9(arg0, arg1) {
1144
+ arg0.baseMipLevel = arg1 >>> 0;
1145
+ }
1146
+ function __wbg_set_beginning_of_pass_write_index_e9f5d016947893bd(arg0, arg1) {
1147
+ arg0.beginningOfPassWriteIndex = arg1 >>> 0;
1148
+ }
1149
+ function __wbg_set_bind_group_layouts_5a9cfea401c020ab(arg0, arg1, arg2) {
1150
+ arg0.bindGroupLayouts = getArrayJsValueViewFromWasm0(arg1, arg2);
1151
+ }
1152
+ function __wbg_set_binding_155b0440b4307793(arg0, arg1) {
1153
+ arg0.binding = arg1 >>> 0;
1154
+ }
1155
+ function __wbg_set_binding_f74df3510792aba1(arg0, arg1) {
1156
+ arg0.binding = arg1 >>> 0;
1157
+ }
1158
+ function __wbg_set_blend_7493c2066c3e9970(arg0, arg1) {
1159
+ arg0.blend = arg1;
1160
+ }
1161
+ function __wbg_set_buffer_c3410572051920ba(arg0, arg1) {
1162
+ arg0.buffer = arg1;
1163
+ }
1164
+ function __wbg_set_buffer_ef7f75306cf663ed(arg0, arg1) {
1165
+ arg0.buffer = arg1;
1166
+ }
1167
+ function __wbg_set_buffers_7d0d8f507699e956(arg0, arg1, arg2) {
1168
+ arg0.buffers = getArrayJsValueViewFromWasm0(arg1, arg2);
1169
+ }
1170
+ function __wbg_set_clear_value_gpu_color_dict_6211425789c76e59(arg0, arg1) {
1171
+ arg0.clearValue = arg1;
1172
+ }
1173
+ function __wbg_set_code_b4f37f81f45b5b25(arg0, arg1, arg2) {
1174
+ arg0.code = getStringFromWasm0(arg1, arg2);
1175
+ }
1176
+ function __wbg_set_color_83aa977526e88cbb(arg0, arg1) {
1177
+ arg0.color = arg1;
1178
+ }
1179
+ function __wbg_set_color_attachments_581fdb3310e4abfa(arg0, arg1, arg2) {
1180
+ arg0.colorAttachments = getArrayJsValueViewFromWasm0(arg1, arg2);
1181
+ }
1182
+ function __wbg_set_compare_f36b34abfaa08ccb(arg0, arg1) {
1183
+ arg0.compare = __wbindgen_enum_GpuCompareFunction[arg1];
1184
+ }
1185
+ function __wbg_set_count_069a4eac409bac55(arg0, arg1) {
1186
+ arg0.count = arg1 >>> 0;
1187
+ }
1188
+ function __wbg_set_cull_mode_fc649853947a3d0c(arg0, arg1) {
1189
+ arg0.cullMode = __wbindgen_enum_GpuCullMode[arg1];
1190
+ }
1191
+ function __wbg_set_depth_bias_clamp_1c0d695df7f092e5(arg0, arg1) {
1192
+ arg0.depthBiasClamp = arg1;
1193
+ }
1194
+ function __wbg_set_depth_bias_d7cd16096242a657(arg0, arg1) {
1195
+ arg0.depthBias = arg1;
1196
+ }
1197
+ function __wbg_set_depth_bias_slope_scale_c4e52ec743ef55ba(arg0, arg1) {
1198
+ arg0.depthBiasSlopeScale = arg1;
1199
+ }
1200
+ function __wbg_set_depth_clear_value_beda3ec5b1a5c43a(arg0, arg1) {
1201
+ arg0.depthClearValue = arg1;
1202
+ }
1203
+ function __wbg_set_depth_compare_0c8631eb2eae98e3(arg0, arg1) {
1204
+ arg0.depthCompare = __wbindgen_enum_GpuCompareFunction[arg1];
1205
+ }
1206
+ function __wbg_set_depth_fail_op_668155ae33d3c06f(arg0, arg1) {
1207
+ arg0.depthFailOp = __wbindgen_enum_GpuStencilOperation[arg1];
1208
+ }
1209
+ function __wbg_set_depth_load_op_511c513eab4e56a9(arg0, arg1) {
1210
+ arg0.depthLoadOp = __wbindgen_enum_GpuLoadOp[arg1];
1211
+ }
1212
+ function __wbg_set_depth_read_only_7f41a74741c144ec(arg0, arg1) {
1213
+ arg0.depthReadOnly = arg1 !== 0;
1214
+ }
1215
+ function __wbg_set_depth_stencil_97506c7bea4f53da(arg0, arg1) {
1216
+ arg0.depthStencil = arg1;
1217
+ }
1218
+ function __wbg_set_depth_stencil_attachment_73b79e8b4e948222(arg0, arg1) {
1219
+ arg0.depthStencilAttachment = arg1;
1220
+ }
1221
+ function __wbg_set_depth_store_op_c89f33b39b43361c(arg0, arg1) {
1222
+ arg0.depthStoreOp = __wbindgen_enum_GpuStoreOp[arg1];
1223
+ }
1224
+ function __wbg_set_depth_write_enabled_ce89750042940350(arg0, arg1) {
1225
+ arg0.depthWriteEnabled = arg1 !== 0;
1226
+ }
1227
+ function __wbg_set_device_e275d1d4f3c9eb74(arg0, arg1) {
1228
+ arg0.device = arg1;
1229
+ }
1230
+ function __wbg_set_dimension_e325282e613ca0a4(arg0, arg1) {
1231
+ arg0.dimension = __wbindgen_enum_GpuTextureViewDimension[arg1];
1232
+ }
1233
+ function __wbg_set_dst_factor_ec7407f19be1aff9(arg0, arg1) {
1234
+ arg0.dstFactor = __wbindgen_enum_GpuBlendFactor[arg1];
1235
+ }
1236
+ function __wbg_set_end_of_pass_write_index_0d546e46b86ea069(arg0, arg1) {
1237
+ arg0.endOfPassWriteIndex = arg1 >>> 0;
1238
+ }
1239
+ function __wbg_set_entries_86a29dd6291c95e7(arg0, arg1, arg2) {
1240
+ arg0.entries = getArrayJsValueViewFromWasm0(arg1, arg2);
1241
+ }
1242
+ function __wbg_set_entries_a12aca1e458b0456(arg0, arg1, arg2) {
1243
+ arg0.entries = getArrayJsValueViewFromWasm0(arg1, arg2);
1244
+ }
1245
+ function __wbg_set_entry_point_207540f042015ce5(arg0, arg1, arg2) {
1246
+ arg0.entryPoint = getStringFromWasm0(arg1, arg2);
1247
+ }
1248
+ function __wbg_set_entry_point_e87e79251dd3144f(arg0, arg1, arg2) {
1249
+ arg0.entryPoint = getStringFromWasm0(arg1, arg2);
1250
+ }
1251
+ function __wbg_set_external_texture_386483d8dd82ab56(arg0, arg1) {
1252
+ arg0.externalTexture = arg1;
1253
+ }
1254
+ function __wbg_set_fail_op_92f716dbc88b6973(arg0, arg1) {
1255
+ arg0.failOp = __wbindgen_enum_GpuStencilOperation[arg1];
1256
+ }
1257
+ function __wbg_set_format_1fcaa7d60546b490(arg0, arg1) {
1258
+ arg0.format = __wbindgen_enum_GpuTextureFormat[arg1];
1259
+ }
1260
+ function __wbg_set_format_533f9ffa7eef563d(arg0, arg1) {
1261
+ arg0.format = __wbindgen_enum_GpuTextureFormat[arg1];
1262
+ }
1263
+ function __wbg_set_format_5d2f25cc93654ecc(arg0, arg1) {
1264
+ arg0.format = __wbindgen_enum_GpuVertexFormat[arg1];
1265
+ }
1266
+ function __wbg_set_format_5ff53724ed6cedf2(arg0, arg1) {
1267
+ arg0.format = __wbindgen_enum_GpuTextureFormat[arg1];
1268
+ }
1269
+ function __wbg_set_format_815efd4dc4817bbb(arg0, arg1) {
1270
+ arg0.format = __wbindgen_enum_GpuTextureFormat[arg1];
1271
+ }
1272
+ function __wbg_set_format_e52bdcca880d2c8e(arg0, arg1) {
1273
+ arg0.format = __wbindgen_enum_GpuTextureFormat[arg1];
1274
+ }
1275
+ function __wbg_set_fragment_8b780f00a0b0e6f3(arg0, arg1) {
1276
+ arg0.fragment = arg1;
1277
+ }
1278
+ function __wbg_set_front_face_28ffdf524eedce5b(arg0, arg1) {
1279
+ arg0.frontFace = __wbindgen_enum_GpuFrontFace[arg1];
1280
+ }
1281
+ function __wbg_set_g_5983abfc46e0cf4e(arg0, arg1) {
1282
+ arg0.g = arg1;
1283
+ }
1284
+ function __wbg_set_has_dynamic_offset_62bc230bdb7c54d0(arg0, arg1) {
1285
+ arg0.hasDynamicOffset = arg1 !== 0;
1286
+ }
1287
+ function __wbg_set_height_ca39bd9597314f83(arg0, arg1) {
1288
+ arg0.height = arg1 >>> 0;
1289
+ }
1290
+ function __wbg_set_height_d72f2b76484a44de(arg0, arg1) {
1291
+ arg0.height = arg1 >>> 0;
1292
+ }
1293
+ function __wbg_set_label_08d9be3e4719c226(arg0, arg1, arg2) {
1294
+ arg0.label = getStringFromWasm0(arg1, arg2);
1295
+ }
1296
+ function __wbg_set_label_17eb9fe3a02f62b0(arg0, arg1, arg2) {
1297
+ arg0.label = getStringFromWasm0(arg1, arg2);
1298
+ }
1299
+ function __wbg_set_label_48e6b787d256f621(arg0, arg1, arg2) {
1300
+ arg0.label = getStringFromWasm0(arg1, arg2);
1301
+ }
1302
+ function __wbg_set_label_60ad96c811e0d109(arg0, arg1, arg2) {
1303
+ arg0.label = getStringFromWasm0(arg1, arg2);
1304
+ }
1305
+ function __wbg_set_label_72bb4f41ef0cb893(arg0, arg1, arg2) {
1306
+ arg0.label = getStringFromWasm0(arg1, arg2);
1307
+ }
1308
+ function __wbg_set_label_79387decda299036(arg0, arg1, arg2) {
1309
+ arg0.label = getStringFromWasm0(arg1, arg2);
1310
+ }
1311
+ function __wbg_set_label_9556af8b5cda3c9d(arg0, arg1, arg2) {
1312
+ arg0.label = getStringFromWasm0(arg1, arg2);
1313
+ }
1314
+ function __wbg_set_label_d010f237b26f2c55(arg0, arg1, arg2) {
1315
+ arg0.label = getStringFromWasm0(arg1, arg2);
1316
+ }
1317
+ function __wbg_set_label_e16e2dbe51349c7f(arg0, arg1, arg2) {
1318
+ arg0.label = getStringFromWasm0(arg1, arg2);
1319
+ }
1320
+ function __wbg_set_label_e3944e54881b8c50(arg0, arg1, arg2) {
1321
+ arg0.label = getStringFromWasm0(arg1, arg2);
1322
+ }
1323
+ function __wbg_set_label_e922700240417ab5(arg0, arg1, arg2) {
1324
+ arg0.label = getStringFromWasm0(arg1, arg2);
1325
+ }
1326
+ function __wbg_set_layout_50ab727f44b38f26(arg0, arg1) {
1327
+ arg0.layout = arg1;
1328
+ }
1329
+ function __wbg_set_layout_913d53c17194c989(arg0, arg1) {
1330
+ arg0.layout = arg1;
1331
+ }
1332
+ function __wbg_set_layout_gpu_auto_layout_mode_aeba193938b47882(arg0, arg1) {
1333
+ arg0.layout = __wbindgen_enum_GpuAutoLayoutMode[arg1];
1334
+ }
1335
+ function __wbg_set_load_op_99661da6c4eab9b0(arg0, arg1) {
1336
+ arg0.loadOp = __wbindgen_enum_GpuLoadOp[arg1];
1337
+ }
1338
+ function __wbg_set_mapped_at_creation_81b586dc90a50347(arg0, arg1) {
1339
+ arg0.mappedAtCreation = arg1 !== 0;
1340
+ }
1341
+ function __wbg_set_mask_70a8a59ce09e5997(arg0, arg1) {
1342
+ arg0.mask = arg1 >>> 0;
1343
+ }
1344
+ function __wbg_set_min_binding_size_f64_5005a6904cdf43da(arg0, arg1) {
1345
+ arg0.minBindingSize = arg1;
1346
+ }
1347
+ function __wbg_set_mip_level_count_534caaa7e68e68b8(arg0, arg1) {
1348
+ arg0.mipLevelCount = arg1 >>> 0;
1349
+ }
1350
+ function __wbg_set_mode_9990b3393ba469ae(arg0, arg1) {
1351
+ arg0.mode = __wbindgen_enum_GpuCanvasToneMappingMode[arg1];
1352
+ }
1353
+ function __wbg_set_module_d0e2098713606cae(arg0, arg1) {
1354
+ arg0.module = arg1;
1355
+ }
1356
+ function __wbg_set_module_f02e076ca7e7daf8(arg0, arg1) {
1357
+ arg0.module = arg1;
1358
+ }
1359
+ function __wbg_set_multisample_37ddafe88b5cd466(arg0, arg1) {
1360
+ arg0.multisample = arg1;
1361
+ }
1362
+ function __wbg_set_multisampled_7913fd7183272840(arg0, arg1) {
1363
+ arg0.multisampled = arg1 !== 0;
1364
+ }
1365
+ function __wbg_set_offset_f64_28c24dc15000932e(arg0, arg1) {
1366
+ arg0.offset = arg1;
1367
+ }
1368
+ function __wbg_set_offset_f64_89f0ce01a689839e(arg0, arg1) {
1369
+ arg0.offset = arg1;
1370
+ }
1371
+ function __wbg_set_operation_62ce44e1728c4047(arg0, arg1) {
1372
+ arg0.operation = __wbindgen_enum_GpuBlendOperation[arg1];
1373
+ }
1374
+ function __wbg_set_pass_op_cf02fa088d6352a7(arg0, arg1) {
1375
+ arg0.passOp = __wbindgen_enum_GpuStencilOperation[arg1];
1376
+ }
1377
+ function __wbg_set_power_preference_8fdca0b7af640d49(arg0, arg1) {
1378
+ arg0.powerPreference = __wbindgen_enum_GpuPowerPreference[arg1];
1379
+ }
1380
+ function __wbg_set_primitive_43c23761a55b4088(arg0, arg1) {
1381
+ arg0.primitive = arg1;
1382
+ }
1383
+ function __wbg_set_query_set_41de86d2401aee04(arg0, arg1) {
1384
+ arg0.querySet = arg1;
1385
+ }
1386
+ function __wbg_set_r_c6f4c68f4804d655(arg0, arg1) {
1387
+ arg0.r = arg1;
1388
+ }
1389
+ function __wbg_set_required_features_1baf274a8669db60(arg0, arg1, arg2) {
1390
+ arg0.requiredFeatures = getArrayJsValueViewFromWasm0(arg1, arg2);
1391
+ }
1392
+ function __wbg_set_required_limits_871ed33c68613dcb(arg0, arg1) {
1393
+ arg0.requiredLimits = arg1;
1394
+ }
1395
+ function __wbg_set_resolve_target_gpu_texture_view_b19a4f2debf79b96(arg0, arg1) {
1396
+ arg0.resolveTarget = arg1;
1397
+ }
1398
+ function __wbg_set_resource_5ae7b5e67924f234(arg0, arg1) {
1399
+ arg0.resource = arg1;
1400
+ }
1401
+ function __wbg_set_resource_gpu_buffer_binding_e5dbca063e7cb67b(arg0, arg1) {
1402
+ arg0.resource = arg1;
1403
+ }
1404
+ function __wbg_set_resource_gpu_texture_view_eb46c355d51ad7e5(arg0, arg1) {
1405
+ arg0.resource = arg1;
1406
+ }
1407
+ function __wbg_set_sample_type_c32e1dfff94e63eb(arg0, arg1) {
1408
+ arg0.sampleType = __wbindgen_enum_GpuTextureSampleType[arg1];
1409
+ }
1410
+ function __wbg_set_sampler_c0e1258543a33bce(arg0, arg1) {
1411
+ arg0.sampler = arg1;
1412
+ }
1413
+ function __wbg_set_shader_location_7e1832a74f912217(arg0, arg1) {
1414
+ arg0.shaderLocation = arg1 >>> 0;
1415
+ }
1416
+ function __wbg_set_size_f64_6bcd40704bf4cfdc(arg0, arg1) {
1417
+ arg0.size = arg1;
1418
+ }
1419
+ function __wbg_set_size_f64_8b8f6bba5d678162(arg0, arg1) {
1420
+ arg0.size = arg1;
1421
+ }
1422
+ function __wbg_set_src_factor_9bfe84af9b7b5cac(arg0, arg1) {
1423
+ arg0.srcFactor = __wbindgen_enum_GpuBlendFactor[arg1];
1424
+ }
1425
+ function __wbg_set_stencil_back_85b22f1db5b1940a(arg0, arg1) {
1426
+ arg0.stencilBack = arg1;
1427
+ }
1428
+ function __wbg_set_stencil_clear_value_42be608809151e2a(arg0, arg1) {
1429
+ arg0.stencilClearValue = arg1 >>> 0;
1430
+ }
1431
+ function __wbg_set_stencil_front_525526164a798a44(arg0, arg1) {
1432
+ arg0.stencilFront = arg1;
1433
+ }
1434
+ function __wbg_set_stencil_load_op_31838c036993098a(arg0, arg1) {
1435
+ arg0.stencilLoadOp = __wbindgen_enum_GpuLoadOp[arg1];
1436
+ }
1437
+ function __wbg_set_stencil_read_mask_5cc26495e8b3ae82(arg0, arg1) {
1438
+ arg0.stencilReadMask = arg1 >>> 0;
1439
+ }
1440
+ function __wbg_set_stencil_read_only_bf1d0c1897e25c62(arg0, arg1) {
1441
+ arg0.stencilReadOnly = arg1 !== 0;
1442
+ }
1443
+ function __wbg_set_stencil_store_op_e6be1cbc3a8fc210(arg0, arg1) {
1444
+ arg0.stencilStoreOp = __wbindgen_enum_GpuStoreOp[arg1];
1445
+ }
1446
+ function __wbg_set_stencil_write_mask_d9cb40ec4b4bee5b(arg0, arg1) {
1447
+ arg0.stencilWriteMask = arg1 >>> 0;
1448
+ }
1449
+ function __wbg_set_step_mode_a97bb24714da41a9(arg0, arg1) {
1450
+ arg0.stepMode = __wbindgen_enum_GpuVertexStepMode[arg1];
1451
+ }
1452
+ function __wbg_set_storage_texture_939a097db4b18bd4(arg0, arg1) {
1453
+ arg0.storageTexture = arg1;
1454
+ }
1455
+ function __wbg_set_store_op_b5fdf672436f13f3(arg0, arg1) {
1456
+ arg0.storeOp = __wbindgen_enum_GpuStoreOp[arg1];
1457
+ }
1458
+ function __wbg_set_strip_index_format_9f787be6c5fc9e87(arg0, arg1) {
1459
+ arg0.stripIndexFormat = __wbindgen_enum_GpuIndexFormat[arg1];
1460
+ }
1461
+ function __wbg_set_targets_c38bd200c836d66f(arg0, arg1, arg2) {
1462
+ arg0.targets = getArrayJsValueViewFromWasm0(arg1, arg2);
1463
+ }
1464
+ function __wbg_set_texture_9dcedde1bb31eda6(arg0, arg1) {
1465
+ arg0.texture = arg1;
1466
+ }
1467
+ function __wbg_set_timestamp_writes_98bed1a8bbc6682d(arg0, arg1) {
1468
+ arg0.timestampWrites = arg1;
1469
+ }
1470
+ function __wbg_set_tone_mapping_b3464f1baa4cff92(arg0, arg1) {
1471
+ arg0.toneMapping = arg1;
1472
+ }
1473
+ function __wbg_set_topology_da25f2cc5af203d2(arg0, arg1) {
1474
+ arg0.topology = __wbindgen_enum_GpuPrimitiveTopology[arg1];
1475
+ }
1476
+ function __wbg_set_type_ccf8472d40abcddf(arg0, arg1) {
1477
+ arg0.type = __wbindgen_enum_GpuSamplerBindingType[arg1];
1478
+ }
1479
+ function __wbg_set_type_d09829f59932a0fc(arg0, arg1) {
1480
+ arg0.type = __wbindgen_enum_GpuBufferBindingType[arg1];
1481
+ }
1482
+ function __wbg_set_unclipped_depth_04524a2b44e1e3c1(arg0, arg1) {
1483
+ arg0.unclippedDepth = arg1 !== 0;
1484
+ }
1485
+ function __wbg_set_usage_a137f82ca163b0a9(arg0, arg1) {
1486
+ arg0.usage = arg1 >>> 0;
1487
+ }
1488
+ function __wbg_set_usage_b2a2935f37bf3d08(arg0, arg1) {
1489
+ arg0.usage = arg1 >>> 0;
1490
+ }
1491
+ function __wbg_set_usage_ddd42599bbba7779(arg0, arg1) {
1492
+ arg0.usage = arg1 >>> 0;
1493
+ }
1494
+ function __wbg_set_vertex_0be5d146f9ff6f36(arg0, arg1) {
1495
+ arg0.vertex = arg1;
1496
+ }
1497
+ function __wbg_set_view_dimension_0df554032f1f3a85(arg0, arg1) {
1498
+ arg0.viewDimension = __wbindgen_enum_GpuTextureViewDimension[arg1];
1499
+ }
1500
+ function __wbg_set_view_dimension_4818d4c18ce5815e(arg0, arg1) {
1501
+ arg0.viewDimension = __wbindgen_enum_GpuTextureViewDimension[arg1];
1502
+ }
1503
+ function __wbg_set_view_formats_5797d2fff3c11808(arg0, arg1, arg2) {
1504
+ arg0.viewFormats = getArrayJsValueViewFromWasm0(arg1, arg2);
1505
+ }
1506
+ function __wbg_set_view_gpu_texture_view_9b2d86b6b99d9fd9(arg0, arg1) {
1507
+ arg0.view = arg1;
1508
+ }
1509
+ function __wbg_set_view_gpu_texture_view_c0f35f8857c25206(arg0, arg1) {
1510
+ arg0.view = arg1;
1511
+ }
1512
+ function __wbg_set_visibility_9570b037224c4cc2(arg0, arg1) {
1513
+ arg0.visibility = arg1 >>> 0;
1514
+ }
1515
+ function __wbg_set_width_36ef6630b22fc519(arg0, arg1) {
1516
+ arg0.width = arg1 >>> 0;
1517
+ }
1518
+ function __wbg_set_width_661c95ea46b71eba(arg0, arg1) {
1519
+ arg0.width = arg1 >>> 0;
1520
+ }
1521
+ function __wbg_set_write_mask_d45279e56abbfcb5(arg0, arg1) {
1522
+ arg0.writeMask = arg1 >>> 0;
1523
+ }
1524
+ function __wbg_shaderSource_7d3f360b4b626db7(arg0, arg1, arg2, arg3) {
1525
+ arg0.shaderSource(arg1, getStringFromWasm0(arg2, arg3));
1526
+ }
1527
+ function __wbg_shaderSource_dcba4cd3379b35bd(arg0, arg1, arg2, arg3) {
1528
+ arg0.shaderSource(arg1, getStringFromWasm0(arg2, arg3));
1529
+ }
1530
+ function __wbg_static_accessor_GLOBAL_THIS_466428f93b4eaa76() {
1531
+ const ret = typeof globalThis === "undefined" ? null : globalThis;
1532
+ return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
1533
+ }
1534
+ function __wbg_static_accessor_GLOBAL_c7aea38d4de089bc() {
1535
+ const ret = typeof global === "undefined" ? null : global;
1536
+ return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
1537
+ }
1538
+ function __wbg_static_accessor_SELF_42d4fae05e59267a() {
1539
+ const ret = typeof self === "undefined" ? null : self;
1540
+ return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
1541
+ }
1542
+ function __wbg_static_accessor_WINDOW_e0db14a0eba6a812() {
1543
+ const ret = typeof window === "undefined" ? null : window;
1544
+ return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
1545
+ }
1546
+ function __wbg_stencilFuncSeparate_1455ac65895207da(arg0, arg1, arg2, arg3, arg4) {
1547
+ arg0.stencilFuncSeparate(arg1 >>> 0, arg2 >>> 0, arg3, arg4 >>> 0);
1548
+ }
1549
+ function __wbg_stencilFuncSeparate_55627e589746e09f(arg0, arg1, arg2, arg3, arg4) {
1550
+ arg0.stencilFuncSeparate(arg1 >>> 0, arg2 >>> 0, arg3, arg4 >>> 0);
1551
+ }
1552
+ function __wbg_stencilMaskSeparate_85d929ff95496631(arg0, arg1, arg2) {
1553
+ arg0.stencilMaskSeparate(arg1 >>> 0, arg2 >>> 0);
1554
+ }
1555
+ function __wbg_stencilMaskSeparate_8e37bf59a93afc15(arg0, arg1, arg2) {
1556
+ arg0.stencilMaskSeparate(arg1 >>> 0, arg2 >>> 0);
1557
+ }
1558
+ function __wbg_stencilMask_020d2d7ea8e4f640(arg0, arg1) {
1559
+ arg0.stencilMask(arg1 >>> 0);
1560
+ }
1561
+ function __wbg_stencilMask_967f16a89bfd056a(arg0, arg1) {
1562
+ arg0.stencilMask(arg1 >>> 0);
1563
+ }
1564
+ function __wbg_stencilOpSeparate_1f45c75c83dad8d5(arg0, arg1, arg2, arg3, arg4) {
1565
+ arg0.stencilOpSeparate(arg1 >>> 0, arg2 >>> 0, arg3 >>> 0, arg4 >>> 0);
1566
+ }
1567
+ function __wbg_stencilOpSeparate_33a6764dd0ce6e24(arg0, arg1, arg2, arg3, arg4) {
1568
+ arg0.stencilOpSeparate(arg1 >>> 0, arg2 >>> 0, arg3 >>> 0, arg4 >>> 0);
1569
+ }
1570
+ function __wbg_subgroupMaxSize_1527c5f7a8fe91bb(arg0) {
1571
+ return arg0.subgroupMaxSize;
1572
+ }
1573
+ function __wbg_subgroupMinSize_d6c5ad4bddc828e9(arg0) {
1574
+ return arg0.subgroupMinSize;
1575
+ }
1576
+ function __wbg_submit_ce44115121cd166c(arg0, arg1, arg2) {
1577
+ arg0.submit(getArrayJsValueViewFromWasm0(arg1, arg2));
1578
+ }
1579
+ function __wbg_texImage2D_053488112c3d702f() {
1580
+ return handleError(function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
1581
+ arg0.texImage2D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7 >>> 0, arg8 >>> 0, arg9);
1582
+ }, arguments);
1583
+ }
1584
+ function __wbg_texImage2D_2854247ff7d047a1() {
1585
+ return handleError(function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
1586
+ arg0.texImage2D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7 >>> 0, arg8 >>> 0, arg9);
1587
+ }, arguments);
1588
+ }
1589
+ function __wbg_texImage2D_44740302c934daf1() {
1590
+ return handleError(function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
1591
+ arg0.texImage2D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7 >>> 0, arg8 >>> 0, arg9);
1592
+ }, arguments);
1593
+ }
1594
+ function __wbg_texImage3D_d23f7d2f9e66b916() {
1595
+ return handleError(function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) {
1596
+ arg0.texImage3D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7, arg8 >>> 0, arg9 >>> 0, arg10);
1597
+ }, arguments);
1598
+ }
1599
+ function __wbg_texImage3D_faae3ea3f2969ecc() {
1600
+ return handleError(function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) {
1601
+ arg0.texImage3D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7, arg8 >>> 0, arg9 >>> 0, arg10);
1602
+ }, arguments);
1603
+ }
1604
+ function __wbg_texParameteri_2bc38aa8e9964d77(arg0, arg1, arg2, arg3) {
1605
+ arg0.texParameteri(arg1 >>> 0, arg2 >>> 0, arg3);
1606
+ }
1607
+ function __wbg_texParameteri_dd4f56c2acbbe859(arg0, arg1, arg2, arg3) {
1608
+ arg0.texParameteri(arg1 >>> 0, arg2 >>> 0, arg3);
1609
+ }
1610
+ function __wbg_texStorage2D_d473a12d49d7deee(arg0, arg1, arg2, arg3, arg4, arg5) {
1611
+ arg0.texStorage2D(arg1 >>> 0, arg2, arg3 >>> 0, arg4, arg5);
1612
+ }
1613
+ function __wbg_texStorage3D_3ceb25ba9ad4b7ac(arg0, arg1, arg2, arg3, arg4, arg5, arg6) {
1614
+ arg0.texStorage3D(arg1 >>> 0, arg2, arg3 >>> 0, arg4, arg5, arg6);
1615
+ }
1616
+ function __wbg_texSubImage2D_1b383b66dfe35010() {
1617
+ return handleError(function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
1618
+ arg0.texSubImage2D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7 >>> 0, arg8 >>> 0, arg9);
1619
+ }, arguments);
1620
+ }
1621
+ function __wbg_texSubImage2D_205cfbaea80e77e6() {
1622
+ return handleError(function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
1623
+ arg0.texSubImage2D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7 >>> 0, arg8 >>> 0, arg9);
1624
+ }, arguments);
1625
+ }
1626
+ function __wbg_texSubImage2D_606540d3e650e0bb() {
1627
+ return handleError(function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
1628
+ arg0.texSubImage2D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7 >>> 0, arg8 >>> 0, arg9);
1629
+ }, arguments);
1630
+ }
1631
+ function __wbg_texSubImage2D_62ae3d4b2700f7cd() {
1632
+ return handleError(function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
1633
+ arg0.texSubImage2D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7 >>> 0, arg8 >>> 0, arg9);
1634
+ }, arguments);
1635
+ }
1636
+ function __wbg_texSubImage2D_6eb05d8f455f99ba() {
1637
+ return handleError(function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
1638
+ arg0.texSubImage2D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7 >>> 0, arg8 >>> 0, arg9);
1639
+ }, arguments);
1640
+ }
1641
+ function __wbg_texSubImage2D_a035d2307e014a73() {
1642
+ return handleError(function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
1643
+ arg0.texSubImage2D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7 >>> 0, arg8 >>> 0, arg9);
1644
+ }, arguments);
1645
+ }
1646
+ function __wbg_texSubImage2D_ad5a64d8f68a2d0d() {
1647
+ return handleError(function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
1648
+ arg0.texSubImage2D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7 >>> 0, arg8 >>> 0, arg9);
1649
+ }, arguments);
1650
+ }
1651
+ function __wbg_texSubImage2D_cb9ad676165c5da5() {
1652
+ return handleError(function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
1653
+ arg0.texSubImage2D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7 >>> 0, arg8 >>> 0, arg9);
1654
+ }, arguments);
1655
+ }
1656
+ function __wbg_texSubImage3D_09e44c66b4ac6bc6() {
1657
+ return handleError(function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
1658
+ arg0.texSubImage3D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9 >>> 0, arg10 >>> 0, arg11);
1659
+ }, arguments);
1660
+ }
1661
+ function __wbg_texSubImage3D_16678785ac62fd6b() {
1662
+ return handleError(function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
1663
+ arg0.texSubImage3D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9 >>> 0, arg10 >>> 0, arg11);
1664
+ }, arguments);
1665
+ }
1666
+ function __wbg_texSubImage3D_3ee8764dfdcb6746() {
1667
+ return handleError(function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
1668
+ arg0.texSubImage3D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9 >>> 0, arg10 >>> 0, arg11);
1669
+ }, arguments);
1670
+ }
1671
+ function __wbg_texSubImage3D_53489be691cee78d() {
1672
+ return handleError(function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
1673
+ arg0.texSubImage3D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9 >>> 0, arg10 >>> 0, arg11);
1674
+ }, arguments);
1675
+ }
1676
+ function __wbg_texSubImage3D_73d365baf8dad003() {
1677
+ return handleError(function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
1678
+ arg0.texSubImage3D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9 >>> 0, arg10 >>> 0, arg11);
1679
+ }, arguments);
1680
+ }
1681
+ function __wbg_texSubImage3D_8a2331639ee1ee0e() {
1682
+ return handleError(function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
1683
+ arg0.texSubImage3D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9 >>> 0, arg10 >>> 0, arg11);
1684
+ }, arguments);
1685
+ }
1686
+ function __wbg_texSubImage3D_9b0bd9fd73d7bb1c() {
1687
+ return handleError(function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
1688
+ arg0.texSubImage3D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9 >>> 0, arg10 >>> 0, arg11);
1689
+ }, arguments);
1690
+ }
1691
+ function __wbg_then_7026b513a94278a8(arg0, arg1) {
1692
+ return arg0.then(arg1);
1693
+ }
1694
+ function __wbg_then_72819b8d4e081fb5(arg0, arg1, arg2) {
1695
+ return arg0.then(arg1, arg2);
1696
+ }
1697
+ function __wbg_unconfigure_0a07a0a40de8988d(arg0) {
1698
+ arg0.unconfigure();
1699
+ }
1700
+ function __wbg_uniform1f_e92095ce29c38424(arg0, arg1, arg2) {
1701
+ arg0.uniform1f(arg1, arg2);
1702
+ }
1703
+ function __wbg_uniform1f_e93503bc589b432d(arg0, arg1, arg2) {
1704
+ arg0.uniform1f(arg1, arg2);
1705
+ }
1706
+ function __wbg_uniform1i_235dff1d94e0df95(arg0, arg1, arg2) {
1707
+ arg0.uniform1i(arg1, arg2);
1708
+ }
1709
+ function __wbg_uniform1i_d5db9c3184abbd04(arg0, arg1, arg2) {
1710
+ arg0.uniform1i(arg1, arg2);
1711
+ }
1712
+ function __wbg_uniform1ui_8bbaaa1161bfd433(arg0, arg1, arg2) {
1713
+ arg0.uniform1ui(arg1, arg2 >>> 0);
1714
+ }
1715
+ function __wbg_uniform2fv_1443080aaf9c1077(arg0, arg1, arg2, arg3) {
1716
+ arg0.uniform2fv(arg1, getArrayF32FromWasm0(arg2, arg3));
1717
+ }
1718
+ function __wbg_uniform2fv_b039f28911c30526(arg0, arg1, arg2, arg3) {
1719
+ arg0.uniform2fv(arg1, getArrayF32FromWasm0(arg2, arg3));
1720
+ }
1721
+ function __wbg_uniform2iv_9648a06d054a25aa(arg0, arg1, arg2, arg3) {
1722
+ arg0.uniform2iv(arg1, getArrayI32FromWasm0(arg2, arg3));
1723
+ }
1724
+ function __wbg_uniform2iv_e0496dc424dc25ec(arg0, arg1, arg2, arg3) {
1725
+ arg0.uniform2iv(arg1, getArrayI32FromWasm0(arg2, arg3));
1726
+ }
1727
+ function __wbg_uniform2uiv_935dfb31f50dfbe3(arg0, arg1, arg2, arg3) {
1728
+ arg0.uniform2uiv(arg1, getArrayU32FromWasm0(arg2, arg3));
1729
+ }
1730
+ function __wbg_uniform3fv_025760367cc4eed3(arg0, arg1, arg2, arg3) {
1731
+ arg0.uniform3fv(arg1, getArrayF32FromWasm0(arg2, arg3));
1732
+ }
1733
+ function __wbg_uniform3fv_b985d45f54156d3b(arg0, arg1, arg2, arg3) {
1734
+ arg0.uniform3fv(arg1, getArrayF32FromWasm0(arg2, arg3));
1735
+ }
1736
+ function __wbg_uniform3iv_193b7a0e1ae9ac9a(arg0, arg1, arg2, arg3) {
1737
+ arg0.uniform3iv(arg1, getArrayI32FromWasm0(arg2, arg3));
1738
+ }
1739
+ function __wbg_uniform3iv_63e82687b07e66fc(arg0, arg1, arg2, arg3) {
1740
+ arg0.uniform3iv(arg1, getArrayI32FromWasm0(arg2, arg3));
1741
+ }
1742
+ function __wbg_uniform3uiv_ccd86b78a5fb3077(arg0, arg1, arg2, arg3) {
1743
+ arg0.uniform3uiv(arg1, getArrayU32FromWasm0(arg2, arg3));
1744
+ }
1745
+ function __wbg_uniform4f_61192d516e9bede4(arg0, arg1, arg2, arg3, arg4, arg5) {
1746
+ arg0.uniform4f(arg1, arg2, arg3, arg4, arg5);
1747
+ }
1748
+ function __wbg_uniform4f_d9bb623add5d2541(arg0, arg1, arg2, arg3, arg4, arg5) {
1749
+ arg0.uniform4f(arg1, arg2, arg3, arg4, arg5);
1750
+ }
1751
+ function __wbg_uniform4fv_c39527800fc76c8e(arg0, arg1, arg2, arg3) {
1752
+ arg0.uniform4fv(arg1, getArrayF32FromWasm0(arg2, arg3));
1753
+ }
1754
+ function __wbg_uniform4fv_fcff56a650906708(arg0, arg1, arg2, arg3) {
1755
+ arg0.uniform4fv(arg1, getArrayF32FromWasm0(arg2, arg3));
1756
+ }
1757
+ function __wbg_uniform4iv_197c2f54a8dfb5c2(arg0, arg1, arg2, arg3) {
1758
+ arg0.uniform4iv(arg1, getArrayI32FromWasm0(arg2, arg3));
1759
+ }
1760
+ function __wbg_uniform4iv_9e6e36f0e1d1f84d(arg0, arg1, arg2, arg3) {
1761
+ arg0.uniform4iv(arg1, getArrayI32FromWasm0(arg2, arg3));
1762
+ }
1763
+ function __wbg_uniform4uiv_73fc9e298d02c948(arg0, arg1, arg2, arg3) {
1764
+ arg0.uniform4uiv(arg1, getArrayU32FromWasm0(arg2, arg3));
1765
+ }
1766
+ function __wbg_uniformBlockBinding_057177606c8b522f(arg0, arg1, arg2, arg3) {
1767
+ arg0.uniformBlockBinding(arg1, arg2 >>> 0, arg3 >>> 0);
1768
+ }
1769
+ function __wbg_uniformMatrix2fv_013723900a9cb65c(arg0, arg1, arg2, arg3, arg4) {
1770
+ arg0.uniformMatrix2fv(arg1, arg2 !== 0, getArrayF32FromWasm0(arg3, arg4));
1771
+ }
1772
+ function __wbg_uniformMatrix2fv_fb61eccac67a8218(arg0, arg1, arg2, arg3, arg4) {
1773
+ arg0.uniformMatrix2fv(arg1, arg2 !== 0, getArrayF32FromWasm0(arg3, arg4));
1774
+ }
1775
+ function __wbg_uniformMatrix2x3fv_de8b00219f47ffb4(arg0, arg1, arg2, arg3, arg4) {
1776
+ arg0.uniformMatrix2x3fv(arg1, arg2 !== 0, getArrayF32FromWasm0(arg3, arg4));
1777
+ }
1778
+ function __wbg_uniformMatrix2x4fv_e659cc34e95fee5e(arg0, arg1, arg2, arg3, arg4) {
1779
+ arg0.uniformMatrix2x4fv(arg1, arg2 !== 0, getArrayF32FromWasm0(arg3, arg4));
1780
+ }
1781
+ function __wbg_uniformMatrix3fv_3e548032fc28c3e2(arg0, arg1, arg2, arg3, arg4) {
1782
+ arg0.uniformMatrix3fv(arg1, arg2 !== 0, getArrayF32FromWasm0(arg3, arg4));
1783
+ }
1784
+ function __wbg_uniformMatrix3fv_72ca83d3393e0364(arg0, arg1, arg2, arg3, arg4) {
1785
+ arg0.uniformMatrix3fv(arg1, arg2 !== 0, getArrayF32FromWasm0(arg3, arg4));
1786
+ }
1787
+ function __wbg_uniformMatrix3x2fv_8598636e806d318d(arg0, arg1, arg2, arg3, arg4) {
1788
+ arg0.uniformMatrix3x2fv(arg1, arg2 !== 0, getArrayF32FromWasm0(arg3, arg4));
1789
+ }
1790
+ function __wbg_uniformMatrix3x4fv_277fbf38db85e612(arg0, arg1, arg2, arg3, arg4) {
1791
+ arg0.uniformMatrix3x4fv(arg1, arg2 !== 0, getArrayF32FromWasm0(arg3, arg4));
1792
+ }
1793
+ function __wbg_uniformMatrix4fv_20161efad644f822(arg0, arg1, arg2, arg3, arg4) {
1794
+ arg0.uniformMatrix4fv(arg1, arg2 !== 0, getArrayF32FromWasm0(arg3, arg4));
1795
+ }
1796
+ function __wbg_uniformMatrix4fv_8689fd0481ac5ab4(arg0, arg1, arg2, arg3, arg4) {
1797
+ arg0.uniformMatrix4fv(arg1, arg2 !== 0, getArrayF32FromWasm0(arg3, arg4));
1798
+ }
1799
+ function __wbg_uniformMatrix4x2fv_e91bd4e774f6266d(arg0, arg1, arg2, arg3, arg4) {
1800
+ arg0.uniformMatrix4x2fv(arg1, arg2 !== 0, getArrayF32FromWasm0(arg3, arg4));
1801
+ }
1802
+ function __wbg_uniformMatrix4x3fv_a829c88dfd0c29d3(arg0, arg1, arg2, arg3, arg4) {
1803
+ arg0.uniformMatrix4x3fv(arg1, arg2 !== 0, getArrayF32FromWasm0(arg3, arg4));
1804
+ }
1805
+ function __wbg_unmap_adaf93276fdf9aaf(arg0) {
1806
+ arg0.unmap();
1807
+ }
1808
+ function __wbg_useProgram_1c047de878f20b72(arg0, arg1) {
1809
+ arg0.useProgram(arg1);
1810
+ }
1811
+ function __wbg_useProgram_9edff145e073d3b1(arg0, arg1) {
1812
+ arg0.useProgram(arg1);
1813
+ }
1814
+ function __wbg_value_1e2369fab29b420e(arg0) {
1815
+ return arg0.value;
1816
+ }
1817
+ function __wbg_vertexAttribDivisorANGLE_581f060f68a0c850(arg0, arg1, arg2) {
1818
+ arg0.vertexAttribDivisorANGLE(arg1 >>> 0, arg2 >>> 0);
1819
+ }
1820
+ function __wbg_vertexAttribDivisor_f910af52b19ce382(arg0, arg1, arg2) {
1821
+ arg0.vertexAttribDivisor(arg1 >>> 0, arg2 >>> 0);
1822
+ }
1823
+ function __wbg_vertexAttribIPointer_54e6be6fa5e39567(arg0, arg1, arg2, arg3, arg4, arg5) {
1824
+ arg0.vertexAttribIPointer(arg1 >>> 0, arg2, arg3 >>> 0, arg4, arg5);
1825
+ }
1826
+ function __wbg_vertexAttribPointer_7bc186aca7721b90(arg0, arg1, arg2, arg3, arg4, arg5, arg6) {
1827
+ arg0.vertexAttribPointer(arg1 >>> 0, arg2, arg3 >>> 0, arg4 !== 0, arg5, arg6);
1828
+ }
1829
+ function __wbg_vertexAttribPointer_b0838f8618a8c446(arg0, arg1, arg2, arg3, arg4, arg5, arg6) {
1830
+ arg0.vertexAttribPointer(arg1 >>> 0, arg2, arg3 >>> 0, arg4 !== 0, arg5, arg6);
1831
+ }
1832
+ function __wbg_viewport_07bb1829f0fe2245(arg0, arg1, arg2, arg3, arg4) {
1833
+ arg0.viewport(arg1, arg2, arg3, arg4);
1834
+ }
1835
+ function __wbg_viewport_dfe81d333ce7be86(arg0, arg1, arg2, arg3, arg4) {
1836
+ arg0.viewport(arg1, arg2, arg3, arg4);
1837
+ }
1838
+ function __wbg_width_aeade399d283e83a(arg0) {
1839
+ return arg0.width;
1840
+ }
1841
+ function __wbg_writeBuffer_8b5bd251a89198bc() {
1842
+ return handleError(function(arg0, arg1, arg2, arg3, arg4, arg5, arg6) {
1843
+ arg0.writeBuffer(arg1, arg2, getArrayU8FromWasm0(arg3, arg4), arg5, arg6);
1844
+ }, arguments);
1845
+ }
1846
+ function __wbindgen_cast_0000000000000001(arg0, arg1) {
1847
+ return makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__hf3ffbd1e64683586$1);
1848
+ }
1849
+ function __wbindgen_cast_0000000000000002(arg0, arg1) {
1850
+ return makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h0d1471caea0c0e20$1);
1851
+ }
1852
+ function __wbindgen_cast_0000000000000003(arg0, arg1) {
1853
+ return makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h0d1471caea0c0e20_2$1);
1854
+ }
1855
+ function __wbindgen_cast_0000000000000004(arg0, arg1) {
1856
+ return makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h0d1471caea0c0e20_3$1);
1857
+ }
1858
+ function __wbindgen_cast_0000000000000005(arg0, arg1) {
1859
+ return makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h1b44acdee5fd80b5$1);
1860
+ }
1861
+ function __wbindgen_cast_0000000000000006(arg0) {
1862
+ return arg0;
1863
+ }
1864
+ function __wbindgen_cast_0000000000000007(arg0, arg1) {
1865
+ return getArrayF32FromWasm0(arg0, arg1);
1866
+ }
1867
+ function __wbindgen_cast_0000000000000008(arg0, arg1) {
1868
+ return getArrayI16FromWasm0(arg0, arg1);
1869
+ }
1870
+ function __wbindgen_cast_0000000000000009(arg0, arg1) {
1871
+ return getArrayI32FromWasm0(arg0, arg1);
1872
+ }
1873
+ function __wbindgen_cast_000000000000000a(arg0, arg1) {
1874
+ return getArrayI8FromWasm0(arg0, arg1);
1875
+ }
1876
+ function __wbindgen_cast_000000000000000b(arg0, arg1) {
1877
+ return getArrayU16FromWasm0(arg0, arg1);
1878
+ }
1879
+ function __wbindgen_cast_000000000000000c(arg0, arg1) {
1880
+ return getArrayU32FromWasm0(arg0, arg1);
1881
+ }
1882
+ function __wbindgen_cast_000000000000000d(arg0, arg1) {
1883
+ return getArrayU8FromWasm0(arg0, arg1);
1884
+ }
1885
+ function __wbindgen_cast_000000000000000e(arg0, arg1) {
1886
+ return getStringFromWasm0(arg0, arg1);
1887
+ }
1888
+ function __wbindgen_init_externref_table() {
1889
+ const table = wasm.__wbindgen_externrefs;
1890
+ const offset = table.grow(4);
1891
+ table.set(0, void 0);
1892
+ table.set(offset + 0, void 0);
1893
+ table.set(offset + 1, null);
1894
+ table.set(offset + 2, true);
1895
+ table.set(offset + 3, false);
1896
+ }
1897
+ function wasm_bindgen__convert__closures_____invoke__h1b44acdee5fd80b5$1(arg0, arg1) {
1898
+ wasm.wasm_bindgen__convert__closures_____invoke__h1b44acdee5fd80b5(arg0, arg1);
1899
+ }
1900
+ function wasm_bindgen__convert__closures_____invoke__hf3ffbd1e64683586$1(arg0, arg1, arg2) {
1901
+ const ret = wasm.wasm_bindgen__convert__closures_____invoke__hf3ffbd1e64683586(arg0, arg1, arg2);
1902
+ if (ret[1]) throw takeFromExternrefTable0(ret[0]);
1903
+ }
1904
+ function wasm_bindgen__convert__closures_____invoke__h0d1471caea0c0e20$1(arg0, arg1, arg2) {
1905
+ const ret = wasm.wasm_bindgen__convert__closures_____invoke__h0d1471caea0c0e20(arg0, arg1, arg2);
1906
+ if (ret[1]) throw takeFromExternrefTable0(ret[0]);
1907
+ }
1908
+ function wasm_bindgen__convert__closures_____invoke__h0d1471caea0c0e20_2$1(arg0, arg1, arg2) {
1909
+ const ret = wasm.wasm_bindgen__convert__closures_____invoke__h0d1471caea0c0e20_2(arg0, arg1, arg2);
1910
+ if (ret[1]) throw takeFromExternrefTable0(ret[0]);
1911
+ }
1912
+ function wasm_bindgen__convert__closures_____invoke__h0d1471caea0c0e20_3$1(arg0, arg1, arg2) {
1913
+ const ret = wasm.wasm_bindgen__convert__closures_____invoke__h0d1471caea0c0e20_3(arg0, arg1, arg2);
1914
+ if (ret[1]) throw takeFromExternrefTable0(ret[0]);
1915
+ }
1916
+ function wasm_bindgen__convert__closures_____invoke__h5034173c0d1c8e1d$1(arg0, arg1, arg2, arg3) {
1917
+ wasm.wasm_bindgen__convert__closures_____invoke__h5034173c0d1c8e1d(arg0, arg1, arg2, arg3);
1918
+ }
1919
+ const __wbindgen_enum_GpuAutoLayoutMode = ["auto"];
1920
+ const __wbindgen_enum_GpuBlendFactor = [
1921
+ "zero",
1922
+ "one",
1923
+ "src",
1924
+ "one-minus-src",
1925
+ "src-alpha",
1926
+ "one-minus-src-alpha",
1927
+ "dst",
1928
+ "one-minus-dst",
1929
+ "dst-alpha",
1930
+ "one-minus-dst-alpha",
1931
+ "src-alpha-saturated",
1932
+ "constant",
1933
+ "one-minus-constant",
1934
+ "src1",
1935
+ "one-minus-src1",
1936
+ "src1-alpha",
1937
+ "one-minus-src1-alpha"
1938
+ ];
1939
+ const __wbindgen_enum_GpuBlendOperation = [
1940
+ "add",
1941
+ "subtract",
1942
+ "reverse-subtract",
1943
+ "min",
1944
+ "max"
1945
+ ];
1946
+ const __wbindgen_enum_GpuBufferBindingType = [
1947
+ "uniform",
1948
+ "storage",
1949
+ "read-only-storage"
1950
+ ];
1951
+ const __wbindgen_enum_GpuCanvasAlphaMode = ["opaque", "premultiplied"];
1952
+ const __wbindgen_enum_GpuCanvasToneMappingMode = ["standard", "extended"];
1953
+ const __wbindgen_enum_GpuCompareFunction = [
1954
+ "never",
1955
+ "less",
1956
+ "equal",
1957
+ "less-equal",
1958
+ "greater",
1959
+ "not-equal",
1960
+ "greater-equal",
1961
+ "always"
1962
+ ];
1963
+ const __wbindgen_enum_GpuCullMode = [
1964
+ "none",
1965
+ "front",
1966
+ "back"
1967
+ ];
1968
+ const __wbindgen_enum_GpuFrontFace = ["ccw", "cw"];
1969
+ const __wbindgen_enum_GpuIndexFormat = ["uint16", "uint32"];
1970
+ const __wbindgen_enum_GpuLoadOp = ["load", "clear"];
1971
+ const __wbindgen_enum_GpuPowerPreference = ["low-power", "high-performance"];
1972
+ const __wbindgen_enum_GpuPrimitiveTopology = [
1973
+ "point-list",
1974
+ "line-list",
1975
+ "line-strip",
1976
+ "triangle-list",
1977
+ "triangle-strip"
1978
+ ];
1979
+ const __wbindgen_enum_GpuSamplerBindingType = [
1980
+ "filtering",
1981
+ "non-filtering",
1982
+ "comparison"
1983
+ ];
1984
+ const __wbindgen_enum_GpuStencilOperation = [
1985
+ "keep",
1986
+ "zero",
1987
+ "replace",
1988
+ "invert",
1989
+ "increment-clamp",
1990
+ "decrement-clamp",
1991
+ "increment-wrap",
1992
+ "decrement-wrap"
1993
+ ];
1994
+ const __wbindgen_enum_GpuStorageTextureAccess = [
1995
+ "write-only",
1996
+ "read-only",
1997
+ "read-write"
1998
+ ];
1999
+ const __wbindgen_enum_GpuStoreOp = ["store", "discard"];
2000
+ const __wbindgen_enum_GpuTextureAspect = [
2001
+ "all",
2002
+ "stencil-only",
2003
+ "depth-only"
2004
+ ];
2005
+ const __wbindgen_enum_GpuTextureFormat = [
2006
+ "r8unorm",
2007
+ "r8snorm",
2008
+ "r8uint",
2009
+ "r8sint",
2010
+ "r16unorm",
2011
+ "r16snorm",
2012
+ "r16uint",
2013
+ "r16sint",
2014
+ "r16float",
2015
+ "rg8unorm",
2016
+ "rg8snorm",
2017
+ "rg8uint",
2018
+ "rg8sint",
2019
+ "r32uint",
2020
+ "r32sint",
2021
+ "r32float",
2022
+ "rg16unorm",
2023
+ "rg16snorm",
2024
+ "rg16uint",
2025
+ "rg16sint",
2026
+ "rg16float",
2027
+ "rgba8unorm",
2028
+ "rgba8unorm-srgb",
2029
+ "rgba8snorm",
2030
+ "rgba8uint",
2031
+ "rgba8sint",
2032
+ "bgra8unorm",
2033
+ "bgra8unorm-srgb",
2034
+ "rgb9e5ufloat",
2035
+ "rgb10a2uint",
2036
+ "rgb10a2unorm",
2037
+ "rg11b10ufloat",
2038
+ "rg32uint",
2039
+ "rg32sint",
2040
+ "rg32float",
2041
+ "rgba16unorm",
2042
+ "rgba16snorm",
2043
+ "rgba16uint",
2044
+ "rgba16sint",
2045
+ "rgba16float",
2046
+ "rgba32uint",
2047
+ "rgba32sint",
2048
+ "rgba32float",
2049
+ "stencil8",
2050
+ "depth16unorm",
2051
+ "depth24plus",
2052
+ "depth24plus-stencil8",
2053
+ "depth32float",
2054
+ "depth32float-stencil8",
2055
+ "bc1-rgba-unorm",
2056
+ "bc1-rgba-unorm-srgb",
2057
+ "bc2-rgba-unorm",
2058
+ "bc2-rgba-unorm-srgb",
2059
+ "bc3-rgba-unorm",
2060
+ "bc3-rgba-unorm-srgb",
2061
+ "bc4-r-unorm",
2062
+ "bc4-r-snorm",
2063
+ "bc5-rg-unorm",
2064
+ "bc5-rg-snorm",
2065
+ "bc6h-rgb-ufloat",
2066
+ "bc6h-rgb-float",
2067
+ "bc7-rgba-unorm",
2068
+ "bc7-rgba-unorm-srgb",
2069
+ "etc2-rgb8unorm",
2070
+ "etc2-rgb8unorm-srgb",
2071
+ "etc2-rgb8a1unorm",
2072
+ "etc2-rgb8a1unorm-srgb",
2073
+ "etc2-rgba8unorm",
2074
+ "etc2-rgba8unorm-srgb",
2075
+ "eac-r11unorm",
2076
+ "eac-r11snorm",
2077
+ "eac-rg11unorm",
2078
+ "eac-rg11snorm",
2079
+ "astc-4x4-unorm",
2080
+ "astc-4x4-unorm-srgb",
2081
+ "astc-5x4-unorm",
2082
+ "astc-5x4-unorm-srgb",
2083
+ "astc-5x5-unorm",
2084
+ "astc-5x5-unorm-srgb",
2085
+ "astc-6x5-unorm",
2086
+ "astc-6x5-unorm-srgb",
2087
+ "astc-6x6-unorm",
2088
+ "astc-6x6-unorm-srgb",
2089
+ "astc-8x5-unorm",
2090
+ "astc-8x5-unorm-srgb",
2091
+ "astc-8x6-unorm",
2092
+ "astc-8x6-unorm-srgb",
2093
+ "astc-8x8-unorm",
2094
+ "astc-8x8-unorm-srgb",
2095
+ "astc-10x5-unorm",
2096
+ "astc-10x5-unorm-srgb",
2097
+ "astc-10x6-unorm",
2098
+ "astc-10x6-unorm-srgb",
2099
+ "astc-10x8-unorm",
2100
+ "astc-10x8-unorm-srgb",
2101
+ "astc-10x10-unorm",
2102
+ "astc-10x10-unorm-srgb",
2103
+ "astc-12x10-unorm",
2104
+ "astc-12x10-unorm-srgb",
2105
+ "astc-12x12-unorm",
2106
+ "astc-12x12-unorm-srgb"
2107
+ ];
2108
+ const __wbindgen_enum_GpuTextureSampleType = [
2109
+ "float",
2110
+ "unfilterable-float",
2111
+ "depth",
2112
+ "sint",
2113
+ "uint"
2114
+ ];
2115
+ const __wbindgen_enum_GpuTextureViewDimension = [
2116
+ "1d",
2117
+ "2d",
2118
+ "2d-array",
2119
+ "cube",
2120
+ "cube-array",
2121
+ "3d"
2122
+ ];
2123
+ const __wbindgen_enum_GpuVertexFormat = [
2124
+ "uint8",
2125
+ "uint8x2",
2126
+ "uint8x4",
2127
+ "sint8",
2128
+ "sint8x2",
2129
+ "sint8x4",
2130
+ "unorm8",
2131
+ "unorm8x2",
2132
+ "unorm8x4",
2133
+ "snorm8",
2134
+ "snorm8x2",
2135
+ "snorm8x4",
2136
+ "uint16",
2137
+ "uint16x2",
2138
+ "uint16x4",
2139
+ "sint16",
2140
+ "sint16x2",
2141
+ "sint16x4",
2142
+ "unorm16",
2143
+ "unorm16x2",
2144
+ "unorm16x4",
2145
+ "snorm16",
2146
+ "snorm16x2",
2147
+ "snorm16x4",
2148
+ "float16",
2149
+ "float16x2",
2150
+ "float16x4",
2151
+ "float32",
2152
+ "float32x2",
2153
+ "float32x3",
2154
+ "float32x4",
2155
+ "uint32",
2156
+ "uint32x2",
2157
+ "uint32x3",
2158
+ "uint32x4",
2159
+ "sint32",
2160
+ "sint32x2",
2161
+ "sint32x3",
2162
+ "sint32x4",
2163
+ "unorm10-10-10-2",
2164
+ "unorm8x4-bgra"
2165
+ ];
2166
+ const __wbindgen_enum_GpuVertexStepMode = ["vertex", "instance"];
2167
+ const InterpreterFinalization = typeof FinalizationRegistry === "undefined" ? {
2168
+ register: () => {},
2169
+ unregister: () => {}
2170
+ } : new FinalizationRegistry((ptr) => wasm.__wbg_interpreter_free(ptr, 1));
2171
+ function addToExternrefTable0(obj) {
2172
+ const idx = wasm.__externref_table_alloc();
2173
+ wasm.__wbindgen_externrefs.set(idx, obj);
2174
+ return idx;
2175
+ }
2176
+ const CLOSURE_DTORS = typeof FinalizationRegistry === "undefined" ? {
2177
+ register: () => {},
2178
+ unregister: () => {}
2179
+ } : new FinalizationRegistry((state) => wasm.__wbindgen_destroy_closure(state.a, state.b));
2180
+ function debugString(val) {
2181
+ const type = typeof val;
2182
+ if (type == "number" || type == "boolean" || val == null) return `${val}`;
2183
+ if (type == "string") return `"${val}"`;
2184
+ if (type == "symbol") {
2185
+ const description = val.description;
2186
+ if (description == null) return "Symbol";
2187
+ else return `Symbol(${description})`;
2188
+ }
2189
+ if (type == "function") {
2190
+ const name = val.name;
2191
+ if (typeof name == "string" && name.length > 0) return `Function(${name})`;
2192
+ else return "Function";
2193
+ }
2194
+ if (Array.isArray(val)) {
2195
+ const length = val.length;
2196
+ let debug = "[";
2197
+ if (length > 0) debug += debugString(val[0]);
2198
+ for (let i = 1; i < length; i++) debug += ", " + debugString(val[i]);
2199
+ debug += "]";
2200
+ return debug;
2201
+ }
2202
+ const builtInMatches = /\[object ([^\]]+)\]/.exec(toString.call(val));
2203
+ let className;
2204
+ if (builtInMatches && builtInMatches.length > 1) className = builtInMatches[1];
2205
+ else return toString.call(val);
2206
+ if (className == "Object") try {
2207
+ return "Object(" + JSON.stringify(val) + ")";
2208
+ } catch (_) {
2209
+ return "Object";
2210
+ }
2211
+ if (val instanceof Error) return `${val.name}: ${val.message}\n${val.stack}`;
2212
+ return className;
2213
+ }
2214
+ function getArrayF32FromWasm0(ptr, len) {
2215
+ ptr = ptr >>> 0;
2216
+ return getFloat32ArrayMemory0().subarray(ptr / 4, ptr / 4 + len);
2217
+ }
2218
+ function getArrayI16FromWasm0(ptr, len) {
2219
+ ptr = ptr >>> 0;
2220
+ return getInt16ArrayMemory0().subarray(ptr / 2, ptr / 2 + len);
2221
+ }
2222
+ function getArrayI32FromWasm0(ptr, len) {
2223
+ ptr = ptr >>> 0;
2224
+ return getInt32ArrayMemory0().subarray(ptr / 4, ptr / 4 + len);
2225
+ }
2226
+ function getArrayI8FromWasm0(ptr, len) {
2227
+ ptr = ptr >>> 0;
2228
+ return getInt8ArrayMemory0().subarray(ptr / 1, ptr / 1 + len);
2229
+ }
2230
+ function getArrayJsValueViewFromWasm0(ptr, len) {
2231
+ ptr = ptr >>> 0;
2232
+ const mem = getDataViewMemory0();
2233
+ const result = [];
2234
+ for (let i = ptr; i < ptr + 4 * len; i += 4) result.push(wasm.__wbindgen_externrefs.get(mem.getUint32(i, true)));
2235
+ return result;
2236
+ }
2237
+ function getArrayU16FromWasm0(ptr, len) {
2238
+ ptr = ptr >>> 0;
2239
+ return getUint16ArrayMemory0().subarray(ptr / 2, ptr / 2 + len);
2240
+ }
2241
+ function getArrayU32FromWasm0(ptr, len) {
2242
+ ptr = ptr >>> 0;
2243
+ return getUint32ArrayMemory0().subarray(ptr / 4, ptr / 4 + len);
2244
+ }
2245
+ function getArrayU8FromWasm0(ptr, len) {
2246
+ ptr = ptr >>> 0;
2247
+ return getUint8ArrayMemory0().subarray(ptr / 1, ptr / 1 + len);
2248
+ }
2249
+ let cachedDataViewMemory0 = null;
2250
+ function getDataViewMemory0() {
2251
+ if (cachedDataViewMemory0 === null || cachedDataViewMemory0.buffer.detached === true || cachedDataViewMemory0.buffer.detached === void 0 && cachedDataViewMemory0.buffer !== wasm.memory.buffer) cachedDataViewMemory0 = new DataView(wasm.memory.buffer);
2252
+ return cachedDataViewMemory0;
2253
+ }
2254
+ let cachedFloat32ArrayMemory0 = null;
2255
+ function getFloat32ArrayMemory0() {
2256
+ if (cachedFloat32ArrayMemory0 === null || cachedFloat32ArrayMemory0.byteLength === 0) cachedFloat32ArrayMemory0 = new Float32Array(wasm.memory.buffer);
2257
+ return cachedFloat32ArrayMemory0;
2258
+ }
2259
+ let cachedInt16ArrayMemory0 = null;
2260
+ function getInt16ArrayMemory0() {
2261
+ if (cachedInt16ArrayMemory0 === null || cachedInt16ArrayMemory0.byteLength === 0) cachedInt16ArrayMemory0 = new Int16Array(wasm.memory.buffer);
2262
+ return cachedInt16ArrayMemory0;
2263
+ }
2264
+ let cachedInt32ArrayMemory0 = null;
2265
+ function getInt32ArrayMemory0() {
2266
+ if (cachedInt32ArrayMemory0 === null || cachedInt32ArrayMemory0.byteLength === 0) cachedInt32ArrayMemory0 = new Int32Array(wasm.memory.buffer);
2267
+ return cachedInt32ArrayMemory0;
2268
+ }
2269
+ let cachedInt8ArrayMemory0 = null;
2270
+ function getInt8ArrayMemory0() {
2271
+ if (cachedInt8ArrayMemory0 === null || cachedInt8ArrayMemory0.byteLength === 0) cachedInt8ArrayMemory0 = new Int8Array(wasm.memory.buffer);
2272
+ return cachedInt8ArrayMemory0;
2273
+ }
2274
+ function getStringFromWasm0(ptr, len) {
2275
+ return decodeText(ptr >>> 0, len);
2276
+ }
2277
+ let cachedUint16ArrayMemory0 = null;
2278
+ function getUint16ArrayMemory0() {
2279
+ if (cachedUint16ArrayMemory0 === null || cachedUint16ArrayMemory0.byteLength === 0) cachedUint16ArrayMemory0 = new Uint16Array(wasm.memory.buffer);
2280
+ return cachedUint16ArrayMemory0;
2281
+ }
2282
+ let cachedUint32ArrayMemory0 = null;
2283
+ function getUint32ArrayMemory0() {
2284
+ if (cachedUint32ArrayMemory0 === null || cachedUint32ArrayMemory0.byteLength === 0) cachedUint32ArrayMemory0 = new Uint32Array(wasm.memory.buffer);
2285
+ return cachedUint32ArrayMemory0;
2286
+ }
2287
+ let cachedUint8ArrayMemory0 = null;
2288
+ function getUint8ArrayMemory0() {
2289
+ if (cachedUint8ArrayMemory0 === null || cachedUint8ArrayMemory0.byteLength === 0) cachedUint8ArrayMemory0 = new Uint8Array(wasm.memory.buffer);
2290
+ return cachedUint8ArrayMemory0;
2291
+ }
2292
+ function handleError(f, args) {
2293
+ try {
2294
+ return f.apply(this, args);
2295
+ } catch (e) {
2296
+ const idx = addToExternrefTable0(e);
2297
+ wasm.__wbindgen_exn_store(idx);
2298
+ }
2299
+ }
2300
+ function isLikeNone(x) {
2301
+ return x === void 0 || x === null;
2302
+ }
2303
+ function makeMutClosure(arg0, arg1, f) {
2304
+ const state = {
2305
+ a: arg0,
2306
+ b: arg1,
2307
+ cnt: 1
2308
+ };
2309
+ const real = (...args) => {
2310
+ state.cnt++;
2311
+ const a = state.a;
2312
+ state.a = 0;
2313
+ try {
2314
+ return f(a, state.b, ...args);
2315
+ } finally {
2316
+ state.a = a;
2317
+ real._wbg_cb_unref();
2318
+ }
2319
+ };
2320
+ real._wbg_cb_unref = () => {
2321
+ if (--state.cnt === 0) {
2322
+ wasm.__wbindgen_destroy_closure(state.a, state.b);
2323
+ state.a = 0;
2324
+ CLOSURE_DTORS.unregister(state);
2325
+ }
2326
+ };
2327
+ CLOSURE_DTORS.register(real, state, state);
2328
+ return real;
2329
+ }
2330
+ function passStringToWasm0(arg, malloc, realloc) {
2331
+ if (realloc === void 0) {
2332
+ const buf = cachedTextEncoder.encode(arg);
2333
+ const ptr = malloc(buf.length, 1) >>> 0;
2334
+ getUint8ArrayMemory0().subarray(ptr, ptr + buf.length).set(buf);
2335
+ WASM_VECTOR_LEN = buf.length;
2336
+ return ptr;
2337
+ }
2338
+ let len = arg.length;
2339
+ let ptr = malloc(len, 1) >>> 0;
2340
+ const mem = getUint8ArrayMemory0();
2341
+ let offset = 0;
2342
+ for (; offset < len; offset++) {
2343
+ const code = arg.charCodeAt(offset);
2344
+ if (code > 127) break;
2345
+ mem[ptr + offset] = code;
2346
+ }
2347
+ if (offset !== len) {
2348
+ if (offset !== 0) arg = arg.slice(offset);
2349
+ ptr = realloc(ptr, len, len = offset + arg.length * 3, 1) >>> 0;
2350
+ const view = getUint8ArrayMemory0().subarray(ptr + offset, ptr + len);
2351
+ const ret = cachedTextEncoder.encodeInto(arg, view);
2352
+ offset += ret.written;
2353
+ ptr = realloc(ptr, len, offset, 1) >>> 0;
2354
+ }
2355
+ WASM_VECTOR_LEN = offset;
2356
+ return ptr;
2357
+ }
2358
+ function takeFromExternrefTable0(idx) {
2359
+ const value = wasm.__wbindgen_externrefs.get(idx);
2360
+ wasm.__externref_table_dealloc(idx);
2361
+ return value;
2362
+ }
2363
+ let cachedTextDecoder = new TextDecoder("utf-8", {
2364
+ ignoreBOM: true,
2365
+ fatal: true
2366
+ });
2367
+ cachedTextDecoder.decode();
2368
+ const MAX_SAFARI_DECODE_BYTES = 2146435072;
2369
+ let numBytesDecoded = 0;
2370
+ function decodeText(ptr, len) {
2371
+ numBytesDecoded += len;
2372
+ if (numBytesDecoded >= MAX_SAFARI_DECODE_BYTES) {
2373
+ cachedTextDecoder = new TextDecoder("utf-8", {
2374
+ ignoreBOM: true,
2375
+ fatal: true
2376
+ });
2377
+ cachedTextDecoder.decode();
2378
+ numBytesDecoded = len;
2379
+ }
2380
+ return cachedTextDecoder.decode(getUint8ArrayMemory0().subarray(ptr, ptr + len));
2381
+ }
2382
+ const cachedTextEncoder = new TextEncoder();
2383
+ if (!("encodeInto" in cachedTextEncoder)) cachedTextEncoder.encodeInto = function(arg, view) {
2384
+ const buf = cachedTextEncoder.encode(arg);
2385
+ view.set(buf);
2386
+ return {
2387
+ read: arg.length,
2388
+ written: buf.length
2389
+ };
2390
+ };
2391
+ let WASM_VECTOR_LEN = 0;
2392
+ let wasm;
2393
+ function __wbg_set_wasm(val) {
2394
+ wasm = val;
2395
+ }
2396
+ //#endregion
2397
+ //#region ../../crates/tanaid-wasm/pkg/bundler/tanaid_wasm_bg.wasm
2398
+ var tanaid_wasm_bg_exports = /* @__PURE__ */ __exportAll({
2399
+ __abort_handler: () => __abort_handler,
2400
+ __externref_table_alloc: () => __externref_table_alloc,
2401
+ __externref_table_dealloc: () => __externref_table_dealloc,
2402
+ __instance_terminated: () => __instance_terminated,
2403
+ __wbg_interpreter_free: () => __wbg_interpreter_free,
2404
+ __wbindgen_destroy_closure: () => __wbindgen_destroy_closure,
2405
+ __wbindgen_exn_store: () => __wbindgen_exn_store,
2406
+ __wbindgen_externrefs: () => __wbindgen_externrefs,
2407
+ __wbindgen_free: () => __wbindgen_free,
2408
+ __wbindgen_malloc: () => __wbindgen_malloc,
2409
+ __wbindgen_realloc: () => __wbindgen_realloc,
2410
+ __wbindgen_start: () => __wbindgen_start,
2411
+ interpreter_create: () => interpreter_create,
2412
+ interpreter_run: () => interpreter_run,
2413
+ interpreter_windowSize: () => interpreter_windowSize,
2414
+ memory: () => memory,
2415
+ wasm_bindgen__convert__closures_____invoke__h0d1471caea0c0e20: () => wasm_bindgen__convert__closures_____invoke__h0d1471caea0c0e20,
2416
+ wasm_bindgen__convert__closures_____invoke__h0d1471caea0c0e20_2: () => wasm_bindgen__convert__closures_____invoke__h0d1471caea0c0e20_2,
2417
+ wasm_bindgen__convert__closures_____invoke__h0d1471caea0c0e20_3: () => wasm_bindgen__convert__closures_____invoke__h0d1471caea0c0e20_3,
2418
+ wasm_bindgen__convert__closures_____invoke__h1b44acdee5fd80b5: () => wasm_bindgen__convert__closures_____invoke__h1b44acdee5fd80b5,
2419
+ wasm_bindgen__convert__closures_____invoke__h5034173c0d1c8e1d: () => wasm_bindgen__convert__closures_____invoke__h5034173c0d1c8e1d,
2420
+ wasm_bindgen__convert__closures_____invoke__hf3ffbd1e64683586: () => wasm_bindgen__convert__closures_____invoke__hf3ffbd1e64683586
2421
+ });
2422
+ function __wasm_init(imports) {
2423
+ return loadWasmModule(false, new URL("a99c2d4a05a0120d.wasm", import.meta.url), null, imports);
2424
+ }
2425
+ const instance = await __wasm_init({ "./tanaid_wasm_bg.js": {
2426
+ "__wbg_call_35dba3c747ad7521": __wbg_call_35dba3c747ad7521,
2427
+ "__wbg_error_d3cb6383ff21d1f1": __wbg_error_d3cb6383ff21d1f1,
2428
+ "__wbg_call_0f2a9af232c18fd2": __wbg_call_0f2a9af232c18fd2,
2429
+ "__wbg_new_typed_cceaf62d8d95e9f2": __wbg_new_typed_cceaf62d8d95e9f2,
2430
+ "__wbg_get_unchecked_e20b893aeafc3fca": __wbg_get_unchecked_e20b893aeafc3fca,
2431
+ "__wbg_length_ecfa2c63d3d0d82c": __wbg_length_ecfa2c63d3d0d82c,
2432
+ "__wbg_then_72819b8d4e081fb5": __wbg_then_72819b8d4e081fb5,
2433
+ "__wbg_next_42cf16ee0dafc9e2": __wbg_next_42cf16ee0dafc9e2,
2434
+ "__wbg_done_669171204c3dcae2": __wbg_done_669171204c3dcae2,
2435
+ "__wbg_value_1e2369fab29b420e": __wbg_value_1e2369fab29b420e,
2436
+ "__wbg_get_with_ref_key_6412cf3094599694": __wbg_get_with_ref_key_6412cf3094599694,
2437
+ "__wbg_String_8564e559799eccda": __wbg_String_8564e559799eccda,
2438
+ "__wbg_set_color_attachments_581fdb3310e4abfa": __wbg_set_color_attachments_581fdb3310e4abfa,
2439
+ "__wbg_set_label_17eb9fe3a02f62b0": __wbg_set_label_17eb9fe3a02f62b0,
2440
+ "__wbg_set_view_gpu_texture_view_c0f35f8857c25206": __wbg_set_view_gpu_texture_view_c0f35f8857c25206,
2441
+ "__wbg_set_depth_clear_value_beda3ec5b1a5c43a": __wbg_set_depth_clear_value_beda3ec5b1a5c43a,
2442
+ "__wbg_set_depth_load_op_511c513eab4e56a9": __wbg_set_depth_load_op_511c513eab4e56a9,
2443
+ "__wbg_set_depth_store_op_c89f33b39b43361c": __wbg_set_depth_store_op_c89f33b39b43361c,
2444
+ "__wbg_set_depth_read_only_7f41a74741c144ec": __wbg_set_depth_read_only_7f41a74741c144ec,
2445
+ "__wbg_set_stencil_clear_value_42be608809151e2a": __wbg_set_stencil_clear_value_42be608809151e2a,
2446
+ "__wbg_set_stencil_load_op_31838c036993098a": __wbg_set_stencil_load_op_31838c036993098a,
2447
+ "__wbg_set_stencil_store_op_e6be1cbc3a8fc210": __wbg_set_stencil_store_op_e6be1cbc3a8fc210,
2448
+ "__wbg_set_stencil_read_only_bf1d0c1897e25c62": __wbg_set_stencil_read_only_bf1d0c1897e25c62,
2449
+ "__wbg_set_depth_stencil_attachment_73b79e8b4e948222": __wbg_set_depth_stencil_attachment_73b79e8b4e948222,
2450
+ "__wbg_set_query_set_41de86d2401aee04": __wbg_set_query_set_41de86d2401aee04,
2451
+ "__wbg_set_beginning_of_pass_write_index_e9f5d016947893bd": __wbg_set_beginning_of_pass_write_index_e9f5d016947893bd,
2452
+ "__wbg_set_end_of_pass_write_index_0d546e46b86ea069": __wbg_set_end_of_pass_write_index_0d546e46b86ea069,
2453
+ "__wbg_set_timestamp_writes_98bed1a8bbc6682d": __wbg_set_timestamp_writes_98bed1a8bbc6682d,
2454
+ "__wbg_beginRenderPass_aa22c432e793359a": __wbg_beginRenderPass_aa22c432e793359a,
2455
+ "__wbg_label_7ed42f25f841996b": __wbg_label_7ed42f25f841996b,
2456
+ "__wbg_set_label_08d9be3e4719c226": __wbg_set_label_08d9be3e4719c226,
2457
+ "__wbg_finish_4d91de5e927dd13f": __wbg_finish_4d91de5e927dd13f,
2458
+ "__wbg_finish_6e06b68ab68cd9f6": __wbg_finish_6e06b68ab68cd9f6,
2459
+ "__wbg_description_02485704e69b1e7f": __wbg_description_02485704e69b1e7f,
2460
+ "__wbg_isFallbackAdapter_8ccb967428491dcb": __wbg_isFallbackAdapter_8ccb967428491dcb,
2461
+ "__wbg_subgroupMinSize_d6c5ad4bddc828e9": __wbg_subgroupMinSize_d6c5ad4bddc828e9,
2462
+ "__wbg_subgroupMaxSize_1527c5f7a8fe91bb": __wbg_subgroupMaxSize_1527c5f7a8fe91bb,
2463
+ "__wbg_set_dst_factor_ec7407f19be1aff9": __wbg_set_dst_factor_ec7407f19be1aff9,
2464
+ "__wbg_set_operation_62ce44e1728c4047": __wbg_set_operation_62ce44e1728c4047,
2465
+ "__wbg_set_src_factor_9bfe84af9b7b5cac": __wbg_set_src_factor_9bfe84af9b7b5cac,
2466
+ "__wbg_Window_afcc911b2f9c92e2": __wbg_Window_afcc911b2f9c92e2,
2467
+ "__wbg_gpu_2ccc250735d24a2a": __wbg_gpu_2ccc250735d24a2a,
2468
+ "__wbg_WorkerGlobalScope_5d19ebc889ff397e": __wbg_WorkerGlobalScope_5d19ebc889ff397e,
2469
+ "__wbg_set_a_88262a42340d0b1c": __wbg_set_a_88262a42340d0b1c,
2470
+ "__wbg_set_b_c47befe0af3261eb": __wbg_set_b_c47befe0af3261eb,
2471
+ "__wbg_set_g_5983abfc46e0cf4e": __wbg_set_g_5983abfc46e0cf4e,
2472
+ "__wbg_set_r_c6f4c68f4804d655": __wbg_set_r_c6f4c68f4804d655,
2473
+ "__wbg_writeBuffer_8b5bd251a89198bc": __wbg_writeBuffer_8b5bd251a89198bc,
2474
+ "__wbg_onSubmittedWorkDone_270d6b5a45520e79": __wbg_onSubmittedWorkDone_270d6b5a45520e79,
2475
+ "__wbg_submit_ce44115121cd166c": __wbg_submit_ce44115121cd166c,
2476
+ "__wbg_getMappedRange_d0bf3141224111b6": __wbg_getMappedRange_d0bf3141224111b6,
2477
+ "__wbg_unmap_adaf93276fdf9aaf": __wbg_unmap_adaf93276fdf9aaf,
2478
+ "__wbg_destroy_fe937f756bf8df37": __wbg_destroy_fe937f756bf8df37,
2479
+ "__wbg_mapAsync_52b01fa9e8f765fd": __wbg_mapAsync_52b01fa9e8f765fd,
2480
+ "__wbg_set_size_f64_6bcd40704bf4cfdc": __wbg_set_size_f64_6bcd40704bf4cfdc,
2481
+ "__wbg_set_usage_b2a2935f37bf3d08": __wbg_set_usage_b2a2935f37bf3d08,
2482
+ "__wbg_set_mapped_at_creation_81b586dc90a50347": __wbg_set_mapped_at_creation_81b586dc90a50347,
2483
+ "__wbg_set_label_d010f237b26f2c55": __wbg_set_label_d010f237b26f2c55,
2484
+ "__wbg_createBuffer_0726dd2ab09ea1d2": __wbg_createBuffer_0726dd2ab09ea1d2,
2485
+ "__wbg_set_entries_a12aca1e458b0456": __wbg_set_entries_a12aca1e458b0456,
2486
+ "__wbg_set_layout_913d53c17194c989": __wbg_set_layout_913d53c17194c989,
2487
+ "__wbg_set_label_79387decda299036": __wbg_set_label_79387decda299036,
2488
+ "__wbg_createBindGroup_655c6e6c0258530e": __wbg_createBindGroup_655c6e6c0258530e,
2489
+ "__wbg_set_code_b4f37f81f45b5b25": __wbg_set_code_b4f37f81f45b5b25,
2490
+ "__wbg_set_label_e3944e54881b8c50": __wbg_set_label_e3944e54881b8c50,
2491
+ "__wbg_createShaderModule_2e44fc7677c6288b": __wbg_createShaderModule_2e44fc7677c6288b,
2492
+ "__wbg_set_label_72bb4f41ef0cb893": __wbg_set_label_72bb4f41ef0cb893,
2493
+ "__wbg_createCommandEncoder_ec1f40f0cb4d09df": __wbg_createCommandEncoder_ec1f40f0cb4d09df,
2494
+ "__wbg_set_bind_group_layouts_5a9cfea401c020ab": __wbg_set_bind_group_layouts_5a9cfea401c020ab,
2495
+ "__wbg_set_label_9556af8b5cda3c9d": __wbg_set_label_9556af8b5cda3c9d,
2496
+ "__wbg_createPipelineLayout_2c8cd4528b06c108": __wbg_createPipelineLayout_2c8cd4528b06c108,
2497
+ "__wbg_set_module_d0e2098713606cae": __wbg_set_module_d0e2098713606cae,
2498
+ "__wbg_set_entry_point_e87e79251dd3144f": __wbg_set_entry_point_e87e79251dd3144f,
2499
+ "__wbg_set_buffers_7d0d8f507699e956": __wbg_set_buffers_7d0d8f507699e956,
2500
+ "__wbg_set_layout_50ab727f44b38f26": __wbg_set_layout_50ab727f44b38f26,
2501
+ "__wbg_set_layout_gpu_auto_layout_mode_aeba193938b47882": __wbg_set_layout_gpu_auto_layout_mode_aeba193938b47882,
2502
+ "__wbg_set_vertex_0be5d146f9ff6f36": __wbg_set_vertex_0be5d146f9ff6f36,
2503
+ "__wbg_set_label_e922700240417ab5": __wbg_set_label_e922700240417ab5,
2504
+ "__wbg_set_format_e52bdcca880d2c8e": __wbg_set_format_e52bdcca880d2c8e,
2505
+ "__wbg_set_depth_compare_0c8631eb2eae98e3": __wbg_set_depth_compare_0c8631eb2eae98e3,
2506
+ "__wbg_set_depth_write_enabled_ce89750042940350": __wbg_set_depth_write_enabled_ce89750042940350,
2507
+ "__wbg_set_depth_bias_d7cd16096242a657": __wbg_set_depth_bias_d7cd16096242a657,
2508
+ "__wbg_set_depth_bias_clamp_1c0d695df7f092e5": __wbg_set_depth_bias_clamp_1c0d695df7f092e5,
2509
+ "__wbg_set_depth_bias_slope_scale_c4e52ec743ef55ba": __wbg_set_depth_bias_slope_scale_c4e52ec743ef55ba,
2510
+ "__wbg_set_compare_f36b34abfaa08ccb": __wbg_set_compare_f36b34abfaa08ccb,
2511
+ "__wbg_set_depth_fail_op_668155ae33d3c06f": __wbg_set_depth_fail_op_668155ae33d3c06f,
2512
+ "__wbg_set_fail_op_92f716dbc88b6973": __wbg_set_fail_op_92f716dbc88b6973,
2513
+ "__wbg_set_pass_op_cf02fa088d6352a7": __wbg_set_pass_op_cf02fa088d6352a7,
2514
+ "__wbg_set_stencil_back_85b22f1db5b1940a": __wbg_set_stencil_back_85b22f1db5b1940a,
2515
+ "__wbg_set_stencil_front_525526164a798a44": __wbg_set_stencil_front_525526164a798a44,
2516
+ "__wbg_set_stencil_read_mask_5cc26495e8b3ae82": __wbg_set_stencil_read_mask_5cc26495e8b3ae82,
2517
+ "__wbg_set_stencil_write_mask_d9cb40ec4b4bee5b": __wbg_set_stencil_write_mask_d9cb40ec4b4bee5b,
2518
+ "__wbg_set_depth_stencil_97506c7bea4f53da": __wbg_set_depth_stencil_97506c7bea4f53da,
2519
+ "__wbg_set_module_f02e076ca7e7daf8": __wbg_set_module_f02e076ca7e7daf8,
2520
+ "__wbg_set_targets_c38bd200c836d66f": __wbg_set_targets_c38bd200c836d66f,
2521
+ "__wbg_set_entry_point_207540f042015ce5": __wbg_set_entry_point_207540f042015ce5,
2522
+ "__wbg_set_fragment_8b780f00a0b0e6f3": __wbg_set_fragment_8b780f00a0b0e6f3,
2523
+ "__wbg_set_count_069a4eac409bac55": __wbg_set_count_069a4eac409bac55,
2524
+ "__wbg_set_mask_70a8a59ce09e5997": __wbg_set_mask_70a8a59ce09e5997,
2525
+ "__wbg_set_alpha_to_coverage_enabled_8b5dc2b0a225b3b2": __wbg_set_alpha_to_coverage_enabled_8b5dc2b0a225b3b2,
2526
+ "__wbg_set_multisample_37ddafe88b5cd466": __wbg_set_multisample_37ddafe88b5cd466,
2527
+ "__wbg_set_cull_mode_fc649853947a3d0c": __wbg_set_cull_mode_fc649853947a3d0c,
2528
+ "__wbg_set_front_face_28ffdf524eedce5b": __wbg_set_front_face_28ffdf524eedce5b,
2529
+ "__wbg_set_strip_index_format_9f787be6c5fc9e87": __wbg_set_strip_index_format_9f787be6c5fc9e87,
2530
+ "__wbg_set_topology_da25f2cc5af203d2": __wbg_set_topology_da25f2cc5af203d2,
2531
+ "__wbg_set_unclipped_depth_04524a2b44e1e3c1": __wbg_set_unclipped_depth_04524a2b44e1e3c1,
2532
+ "__wbg_set_primitive_43c23761a55b4088": __wbg_set_primitive_43c23761a55b4088,
2533
+ "__wbg_createRenderPipeline_cf98d4d699bfb03c": __wbg_createRenderPipeline_cf98d4d699bfb03c,
2534
+ "__wbg_set_entries_86a29dd6291c95e7": __wbg_set_entries_86a29dd6291c95e7,
2535
+ "__wbg_set_label_48e6b787d256f621": __wbg_set_label_48e6b787d256f621,
2536
+ "__wbg_createBindGroupLayout_49a7e2b3d076afcf": __wbg_createBindGroupLayout_49a7e2b3d076afcf,
2537
+ "__wbg_end_f99ebed53d4e198a": __wbg_end_f99ebed53d4e198a,
2538
+ "__wbg_new_typed_ad9b105a7be50737": __wbg_new_typed_ad9b105a7be50737,
2539
+ "__wbg_set_required_limits_871ed33c68613dcb": __wbg_set_required_limits_871ed33c68613dcb,
2540
+ "__wbg_set_required_features_1baf274a8669db60": __wbg_set_required_features_1baf274a8669db60,
2541
+ "__wbg_set_label_60ad96c811e0d109": __wbg_set_label_60ad96c811e0d109,
2542
+ "__wbg_requestDevice_ab46d0519ea1cc34": __wbg_requestDevice_ab46d0519ea1cc34,
2543
+ "__wbg_info_cf0d9a286850cd24": __wbg_info_cf0d9a286850cd24,
2544
+ "__wbg_getPreferredCanvasFormat_8b57039d1801a506": __wbg_getPreferredCanvasFormat_8b57039d1801a506,
2545
+ "__wbg_getCurrentTexture_20714d1bd9051cab": __wbg_getCurrentTexture_20714d1bd9051cab,
2546
+ "__wbg_set_device_e275d1d4f3c9eb74": __wbg_set_device_e275d1d4f3c9eb74,
2547
+ "__wbg_set_format_815efd4dc4817bbb": __wbg_set_format_815efd4dc4817bbb,
2548
+ "__wbg_set_usage_a137f82ca163b0a9": __wbg_set_usage_a137f82ca163b0a9,
2549
+ "__wbg_set_alpha_mode_df805952892caa9c": __wbg_set_alpha_mode_df805952892caa9c,
2550
+ "__wbg_set_mode_9990b3393ba469ae": __wbg_set_mode_9990b3393ba469ae,
2551
+ "__wbg_set_tone_mapping_b3464f1baa4cff92": __wbg_set_tone_mapping_b3464f1baa4cff92,
2552
+ "__wbg_set_view_formats_5797d2fff3c11808": __wbg_set_view_formats_5797d2fff3c11808,
2553
+ "__wbg_configure_0e4789c0f6b35c8e": __wbg_configure_0e4789c0f6b35c8e,
2554
+ "__wbg_set_dimension_e325282e613ca0a4": __wbg_set_dimension_e325282e613ca0a4,
2555
+ "__wbg_set_format_1fcaa7d60546b490": __wbg_set_format_1fcaa7d60546b490,
2556
+ "__wbg_set_aspect_0d453bca3d012f02": __wbg_set_aspect_0d453bca3d012f02,
2557
+ "__wbg_set_base_array_layer_f176bb9f1b37b342": __wbg_set_base_array_layer_f176bb9f1b37b342,
2558
+ "__wbg_set_array_layer_count_7312f0f31af94e7c": __wbg_set_array_layer_count_7312f0f31af94e7c,
2559
+ "__wbg_set_base_mip_level_1df145d9f8db32a9": __wbg_set_base_mip_level_1df145d9f8db32a9,
2560
+ "__wbg_set_mip_level_count_534caaa7e68e68b8": __wbg_set_mip_level_count_534caaa7e68e68b8,
2561
+ "__wbg_set_label_e16e2dbe51349c7f": __wbg_set_label_e16e2dbe51349c7f,
2562
+ "__wbg_set_usage_ddd42599bbba7779": __wbg_set_usage_ddd42599bbba7779,
2563
+ "__wbg_createView_ceaf2f5881adbd34": __wbg_createView_ceaf2f5881adbd34,
2564
+ "__wbg_set_power_preference_8fdca0b7af640d49": __wbg_set_power_preference_8fdca0b7af640d49,
2565
+ "__wbg_requestAdapter_2e6718811c735a57": __wbg_requestAdapter_2e6718811c735a57,
2566
+ "__wbg_queue_adce34608fd0c893": __wbg_queue_adce34608fd0c893,
2567
+ "__wbg_setPipeline_c41bf46790f27f9e": __wbg_setPipeline_c41bf46790f27f9e,
2568
+ "__wbg_setBindGroup_268fd1714fff0ef5": __wbg_setBindGroup_268fd1714fff0ef5,
2569
+ "__wbg_setBindGroup_f0de6cb2c7dbfc2c": __wbg_setBindGroup_f0de6cb2c7dbfc2c,
2570
+ "__wbg_setVertexBuffer_1e448859663dd400": __wbg_setVertexBuffer_1e448859663dd400,
2571
+ "__wbg_setVertexBuffer_7cf533d694e747f3": __wbg_setVertexBuffer_7cf533d694e747f3,
2572
+ "__wbg_draw_6877f98847e1e36c": __wbg_draw_6877f98847e1e36c,
2573
+ "__wbg_set_format_5d2f25cc93654ecc": __wbg_set_format_5d2f25cc93654ecc,
2574
+ "__wbg_set_offset_f64_28c24dc15000932e": __wbg_set_offset_f64_28c24dc15000932e,
2575
+ "__wbg_set_shader_location_7e1832a74f912217": __wbg_set_shader_location_7e1832a74f912217,
2576
+ "__wbg_set_binding_155b0440b4307793": __wbg_set_binding_155b0440b4307793,
2577
+ "__wbg_set_visibility_9570b037224c4cc2": __wbg_set_visibility_9570b037224c4cc2,
2578
+ "__wbg_set_type_ccf8472d40abcddf": __wbg_set_type_ccf8472d40abcddf,
2579
+ "__wbg_set_sampler_c0e1258543a33bce": __wbg_set_sampler_c0e1258543a33bce,
2580
+ "__wbg_set_multisampled_7913fd7183272840": __wbg_set_multisampled_7913fd7183272840,
2581
+ "__wbg_set_external_texture_386483d8dd82ab56": __wbg_set_external_texture_386483d8dd82ab56,
2582
+ "__wbg_set_has_dynamic_offset_62bc230bdb7c54d0": __wbg_set_has_dynamic_offset_62bc230bdb7c54d0,
2583
+ "__wbg_set_min_binding_size_f64_5005a6904cdf43da": __wbg_set_min_binding_size_f64_5005a6904cdf43da,
2584
+ "__wbg_set_type_d09829f59932a0fc": __wbg_set_type_d09829f59932a0fc,
2585
+ "__wbg_set_buffer_ef7f75306cf663ed": __wbg_set_buffer_ef7f75306cf663ed,
2586
+ "__wbg_set_sample_type_c32e1dfff94e63eb": __wbg_set_sample_type_c32e1dfff94e63eb,
2587
+ "__wbg_set_view_dimension_4818d4c18ce5815e": __wbg_set_view_dimension_4818d4c18ce5815e,
2588
+ "__wbg_set_texture_9dcedde1bb31eda6": __wbg_set_texture_9dcedde1bb31eda6,
2589
+ "__wbg_set_format_533f9ffa7eef563d": __wbg_set_format_533f9ffa7eef563d,
2590
+ "__wbg_set_access_9a5092f05dc45fad": __wbg_set_access_9a5092f05dc45fad,
2591
+ "__wbg_set_view_dimension_0df554032f1f3a85": __wbg_set_view_dimension_0df554032f1f3a85,
2592
+ "__wbg_set_storage_texture_939a097db4b18bd4": __wbg_set_storage_texture_939a097db4b18bd4,
2593
+ "__wbg_set_buffer_c3410572051920ba": __wbg_set_buffer_c3410572051920ba,
2594
+ "__wbg_set_offset_f64_89f0ce01a689839e": __wbg_set_offset_f64_89f0ce01a689839e,
2595
+ "__wbg_set_size_f64_8b8f6bba5d678162": __wbg_set_size_f64_8b8f6bba5d678162,
2596
+ "__wbg_set_binding_f74df3510792aba1": __wbg_set_binding_f74df3510792aba1,
2597
+ "__wbg_set_resource_gpu_buffer_binding_e5dbca063e7cb67b": __wbg_set_resource_gpu_buffer_binding_e5dbca063e7cb67b,
2598
+ "__wbg_set_resource_5ae7b5e67924f234": __wbg_set_resource_5ae7b5e67924f234,
2599
+ "__wbg_set_resource_gpu_texture_view_eb46c355d51ad7e5": __wbg_set_resource_gpu_texture_view_eb46c355d51ad7e5,
2600
+ "__wbg_set_array_stride_f64_27ffaf4fffd74e61": __wbg_set_array_stride_f64_27ffaf4fffd74e61,
2601
+ "__wbg_set_attributes_7537844a7e6dafdc": __wbg_set_attributes_7537844a7e6dafdc,
2602
+ "__wbg_set_step_mode_a97bb24714da41a9": __wbg_set_step_mode_a97bb24714da41a9,
2603
+ "__wbg_set_format_5ff53724ed6cedf2": __wbg_set_format_5ff53724ed6cedf2,
2604
+ "__wbg_set_alpha_bfd2df62e7bc581b": __wbg_set_alpha_bfd2df62e7bc581b,
2605
+ "__wbg_set_color_83aa977526e88cbb": __wbg_set_color_83aa977526e88cbb,
2606
+ "__wbg_set_blend_7493c2066c3e9970": __wbg_set_blend_7493c2066c3e9970,
2607
+ "__wbg_set_write_mask_d45279e56abbfcb5": __wbg_set_write_mask_d45279e56abbfcb5,
2608
+ "__wbg_set_load_op_99661da6c4eab9b0": __wbg_set_load_op_99661da6c4eab9b0,
2609
+ "__wbg_set_store_op_b5fdf672436f13f3": __wbg_set_store_op_b5fdf672436f13f3,
2610
+ "__wbg_set_view_gpu_texture_view_9b2d86b6b99d9fd9": __wbg_set_view_gpu_texture_view_9b2d86b6b99d9fd9,
2611
+ "__wbg_set_clear_value_gpu_color_dict_6211425789c76e59": __wbg_set_clear_value_gpu_color_dict_6211425789c76e59,
2612
+ "__wbg_set_resolve_target_gpu_texture_view_b19a4f2debf79b96": __wbg_set_resolve_target_gpu_texture_view_b19a4f2debf79b96,
2613
+ "__wbg_unconfigure_0a07a0a40de8988d": __wbg_unconfigure_0a07a0a40de8988d,
2614
+ "__wbg_requestAdapter_fedd76261c649e55": __wbg_requestAdapter_fedd76261c649e55,
2615
+ "__wbg_includes_a4b83ade703cb80b": __wbg_includes_a4b83ade703cb80b,
2616
+ "__wbg_push_adb0107829f02d75": __wbg_push_adb0107829f02d75,
2617
+ "__wbg_instanceof_WebGl2RenderingContext_e27143c72f888655": __wbg_instanceof_WebGl2RenderingContext_e27143c72f888655,
2618
+ "__wbg_blendFunc_b7f382e97db2fd5b": __wbg_blendFunc_b7f382e97db2fd5b,
2619
+ "__wbg_colorMask_5646450fe1f1b723": __wbg_colorMask_5646450fe1f1b723,
2620
+ "__wbg_depthFunc_6c6f948417f5bde4": __wbg_depthFunc_6c6f948417f5bde4,
2621
+ "__wbg_depthMask_4e0075e07739355b": __wbg_depthMask_4e0075e07739355b,
2622
+ "__wbg_fenceSync_57ab30f550e5a5a2": __wbg_fenceSync_57ab30f550e5a5a2,
2623
+ "__wbg_frontFace_19294c82ae89fa71": __wbg_frontFace_19294c82ae89fa71,
2624
+ "__wbg_uniform1ui_8bbaaa1161bfd433": __wbg_uniform1ui_8bbaaa1161bfd433,
2625
+ "__wbg_beginQuery_444a51812fdbf958": __wbg_beginQuery_444a51812fdbf958,
2626
+ "__wbg_bindBuffer_1fb12d083d2a22af": __wbg_bindBuffer_1fb12d083d2a22af,
2627
+ "__wbg_blendColor_402572bc445d3ac3": __wbg_blendColor_402572bc445d3ac3,
2628
+ "__wbg_clearDepth_887000180cc9eb2e": __wbg_clearDepth_887000180cc9eb2e,
2629
+ "__wbg_deleteSync_11f80510355180d6": __wbg_deleteSync_11f80510355180d6,
2630
+ "__wbg_depthRange_0acaf3031a92d51d": __wbg_depthRange_0acaf3031a92d51d,
2631
+ "__wbg_drawArrays_b2004a40c212065c": __wbg_drawArrays_b2004a40c212065c,
2632
+ "__wbg_readBuffer_2de0b72ac08915c8": __wbg_readBuffer_2de0b72ac08915c8,
2633
+ "__wbg_useProgram_1c047de878f20b72": __wbg_useProgram_1c047de878f20b72,
2634
+ "__wbg_bindSampler_28b0a4c34c6f96d4": __wbg_bindSampler_28b0a4c34c6f96d4,
2635
+ "__wbg_bindTexture_4c54ffb64c33564f": __wbg_bindTexture_4c54ffb64c33564f,
2636
+ "__wbg_createQuery_5ef5edffbd3a678d": __wbg_createQuery_5ef5edffbd3a678d,
2637
+ "__wbg_deleteQuery_4624acbf9cbfc6e2": __wbg_deleteQuery_4624acbf9cbfc6e2,
2638
+ "__wbg_drawBuffers_f07f796e50bb0077": __wbg_drawBuffers_f07f796e50bb0077,
2639
+ "__wbg_linkProgram_124252d16ea0ef40": __wbg_linkProgram_124252d16ea0ef40,
2640
+ "__wbg_pixelStorei_86481a168d6e225e": __wbg_pixelStorei_86481a168d6e225e,
2641
+ "__wbg_stencilMask_020d2d7ea8e4f640": __wbg_stencilMask_020d2d7ea8e4f640,
2642
+ "__wbg_attachShader_26751604f00d1f1b": __wbg_attachShader_26751604f00d1f1b,
2643
+ "__wbg_clearStencil_3d39149452a2f872": __wbg_clearStencil_3d39149452a2f872,
2644
+ "__wbg_createBuffer_af6c411fe2b091f8": __wbg_createBuffer_af6c411fe2b091f8,
2645
+ "__wbg_createShader_9a8e5f335caac850": __wbg_createShader_9a8e5f335caac850,
2646
+ "__wbg_deleteBuffer_42bd497a20b76d88": __wbg_deleteBuffer_42bd497a20b76d88,
2647
+ "__wbg_deleteShader_413961eb94f5c67c": __wbg_deleteShader_413961eb94f5c67c,
2648
+ "__wbg_getExtension_8e8c3be603d4f5ce": __wbg_getExtension_8e8c3be603d4f5ce,
2649
+ "__wbg_getParameter_7ddbe9f9606f6a80": __wbg_getParameter_7ddbe9f9606f6a80,
2650
+ "__wbg_shaderSource_7d3f360b4b626db7": __wbg_shaderSource_7d3f360b4b626db7,
2651
+ "__wbg_activeTexture_8e65ac2e8d488478": __wbg_activeTexture_8e65ac2e8d488478,
2652
+ "__wbg_blendEquation_4bab539169e7e865": __wbg_blendEquation_4bab539169e7e865,
2653
+ "__wbg_compileShader_ac457ada9042f08e": __wbg_compileShader_ac457ada9042f08e,
2654
+ "__wbg_createProgram_81b37242eadef893": __wbg_createProgram_81b37242eadef893,
2655
+ "__wbg_createSampler_f1aedbf47c21745a": __wbg_createSampler_f1aedbf47c21745a,
2656
+ "__wbg_createTexture_c74740f68b5c2a93": __wbg_createTexture_c74740f68b5c2a93,
2657
+ "__wbg_deleteProgram_0191056307686073": __wbg_deleteProgram_0191056307686073,
2658
+ "__wbg_deleteSampler_527e8d31f81669d9": __wbg_deleteSampler_527e8d31f81669d9,
2659
+ "__wbg_deleteTexture_0ccd278d6db819ff": __wbg_deleteTexture_0ccd278d6db819ff,
2660
+ "__wbg_polygonOffset_94b427c5130ab6c2": __wbg_polygonOffset_94b427c5130ab6c2,
2661
+ "__wbg_texParameteri_dd4f56c2acbbe859": __wbg_texParameteri_dd4f56c2acbbe859,
2662
+ "__wbg_texStorage2D_d473a12d49d7deee": __wbg_texStorage2D_d473a12d49d7deee,
2663
+ "__wbg_texStorage3D_3ceb25ba9ad4b7ac": __wbg_texStorage3D_3ceb25ba9ad4b7ac,
2664
+ "__wbg_bindFramebuffer_e620067056f9316f": __wbg_bindFramebuffer_e620067056f9316f,
2665
+ "__wbg_blitFramebuffer_20b32de88a3097b1": __wbg_blitFramebuffer_20b32de88a3097b1,
2666
+ "__wbg_bindRenderbuffer_9b313332bd7aa049": __wbg_bindRenderbuffer_9b313332bd7aa049,
2667
+ "__wbg_bindVertexArray_0185d931d681d806": __wbg_bindVertexArray_0185d931d681d806,
2668
+ "__wbg_createFramebuffer_e6d8917bf9291c65": __wbg_createFramebuffer_e6d8917bf9291c65,
2669
+ "__wbg_deleteFramebuffer_07fcc16563d17920": __wbg_deleteFramebuffer_07fcc16563d17920,
2670
+ "__wbg_getSyncParameter_3eb3ecefa061c5ee": __wbg_getSyncParameter_3eb3ecefa061c5ee,
2671
+ "__wbg_samplerParameterf_d7f38ba3194c43ba": __wbg_samplerParameterf_d7f38ba3194c43ba,
2672
+ "__wbg_samplerParameteri_3d8994d9967c6803": __wbg_samplerParameteri_3d8994d9967c6803,
2673
+ "__wbg_blendFuncSeparate_66688b15ecc6529c": __wbg_blendFuncSeparate_66688b15ecc6529c,
2674
+ "__wbg_createRenderbuffer_cd2638d5dda9c277": __wbg_createRenderbuffer_cd2638d5dda9c277,
2675
+ "__wbg_createVertexArray_abd18ded26b75653": __wbg_createVertexArray_abd18ded26b75653,
2676
+ "__wbg_deleteRenderbuffer_ba4a805dfac20358": __wbg_deleteRenderbuffer_ba4a805dfac20358,
2677
+ "__wbg_deleteVertexArray_106030034355d246": __wbg_deleteVertexArray_106030034355d246,
2678
+ "__wbg_getQueryParameter_fa2ce36cfdedc862": __wbg_getQueryParameter_fa2ce36cfdedc862,
2679
+ "__wbg_getShaderInfoLog_663a9b136ab42b32": __wbg_getShaderInfoLog_663a9b136ab42b32,
2680
+ "__wbg_stencilOpSeparate_1f45c75c83dad8d5": __wbg_stencilOpSeparate_1f45c75c83dad8d5,
2681
+ "__wbg_bindAttribLocation_9cc5ab15df1d042d": __wbg_bindAttribLocation_9cc5ab15df1d042d,
2682
+ "__wbg_bufferData_6c10d3e07ec9a2a9": __wbg_bufferData_6c10d3e07ec9a2a9,
2683
+ "__wbg_getProgramInfoLog_72665662cf78b5a2": __wbg_getProgramInfoLog_72665662cf78b5a2,
2684
+ "__wbg_getShaderParameter_9e9aa18598294f3b": __wbg_getShaderParameter_9e9aa18598294f3b,
2685
+ "__wbg_getUniformLocation_c493d2f5f1a6213d": __wbg_getUniformLocation_c493d2f5f1a6213d,
2686
+ "__wbg_readPixels_8f8bde9ee420ba35": __wbg_readPixels_8f8bde9ee420ba35,
2687
+ "__wbg_renderbufferStorage_3fb6d5a0f3e07d46": __wbg_renderbufferStorage_3fb6d5a0f3e07d46,
2688
+ "__wbg_copyTexSubImage2D_84d99fa40fabace0": __wbg_copyTexSubImage2D_84d99fa40fabace0,
2689
+ "__wbg_copyTexSubImage3D_89064e67340a38b3": __wbg_copyTexSubImage3D_89064e67340a38b3,
2690
+ "__wbg_drawArraysInstanced_45317b22bbf7ffe8": __wbg_drawArraysInstanced_45317b22bbf7ffe8,
2691
+ "__wbg_getIndexedParameter_fa6cca29d50de787": __wbg_getIndexedParameter_fa6cca29d50de787,
2692
+ "__wbg_getProgramParameter_41e1ea6f52a71ba5": __wbg_getProgramParameter_41e1ea6f52a71ba5,
2693
+ "__wbg_stencilFuncSeparate_55627e589746e09f": __wbg_stencilFuncSeparate_55627e589746e09f,
2694
+ "__wbg_stencilMaskSeparate_85d929ff95496631": __wbg_stencilMaskSeparate_85d929ff95496631,
2695
+ "__wbg_texImage3D_d23f7d2f9e66b916": __wbg_texImage3D_d23f7d2f9e66b916,
2696
+ "__wbg_uniformBlockBinding_057177606c8b522f": __wbg_uniformBlockBinding_057177606c8b522f,
2697
+ "__wbg_vertexAttribDivisor_f910af52b19ce382": __wbg_vertexAttribDivisor_f910af52b19ce382,
2698
+ "__wbg_framebufferTexture2D_9abab99d6209666a": __wbg_framebufferTexture2D_9abab99d6209666a,
2699
+ "__wbg_invalidateFramebuffer_9a711eeb3940aba0": __wbg_invalidateFramebuffer_9a711eeb3940aba0,
2700
+ "__wbg_blendEquationSeparate_5ab35e46e7f48717": __wbg_blendEquationSeparate_5ab35e46e7f48717,
2701
+ "__wbg_getUniformBlockIndex_78264d4d94f8252d": __wbg_getUniformBlockIndex_78264d4d94f8252d,
2702
+ "__wbg_framebufferRenderbuffer_5736a8553be94035": __wbg_framebufferRenderbuffer_5736a8553be94035,
2703
+ "__wbg_getSupportedExtensions_63e3eaba880055c5": __wbg_getSupportedExtensions_63e3eaba880055c5,
2704
+ "__wbg_clientWaitSync_8800b42d1c534e00": __wbg_clientWaitSync_8800b42d1c534e00,
2705
+ "__wbg_framebufferTextureLayer_e236352620170c5a": __wbg_framebufferTextureLayer_e236352620170c5a,
2706
+ "__wbg_texSubImage3D_3ee8764dfdcb6746": __wbg_texSubImage3D_3ee8764dfdcb6746,
2707
+ "__wbg_uniform2fv_b039f28911c30526": __wbg_uniform2fv_b039f28911c30526,
2708
+ "__wbg_uniform2iv_9648a06d054a25aa": __wbg_uniform2iv_9648a06d054a25aa,
2709
+ "__wbg_uniform3fv_025760367cc4eed3": __wbg_uniform3fv_025760367cc4eed3,
2710
+ "__wbg_uniform3iv_63e82687b07e66fc": __wbg_uniform3iv_63e82687b07e66fc,
2711
+ "__wbg_uniform4fv_fcff56a650906708": __wbg_uniform4fv_fcff56a650906708,
2712
+ "__wbg_uniform4iv_197c2f54a8dfb5c2": __wbg_uniform4iv_197c2f54a8dfb5c2,
2713
+ "__wbg_enableVertexAttribArray_b072ffcbe4f26e2b": __wbg_enableVertexAttribArray_b072ffcbe4f26e2b,
2714
+ "__wbg_uniform2uiv_935dfb31f50dfbe3": __wbg_uniform2uiv_935dfb31f50dfbe3,
2715
+ "__wbg_uniform3uiv_ccd86b78a5fb3077": __wbg_uniform3uiv_ccd86b78a5fb3077,
2716
+ "__wbg_uniform4uiv_73fc9e298d02c948": __wbg_uniform4uiv_73fc9e298d02c948,
2717
+ "__wbg_disableVertexAttribArray_aee51b7f1a8ef4cc": __wbg_disableVertexAttribArray_aee51b7f1a8ef4cc,
2718
+ "__wbg_clearBufferfv_ccbb43fb098f1912": __wbg_clearBufferfv_ccbb43fb098f1912,
2719
+ "__wbg_clearBufferiv_8b1c68299632478f": __wbg_clearBufferiv_8b1c68299632478f,
2720
+ "__wbg_clearBufferuiv_cd72147d09d432e8": __wbg_clearBufferuiv_cd72147d09d432e8,
2721
+ "__wbg_vertexAttribPointer_b0838f8618a8c446": __wbg_vertexAttribPointer_b0838f8618a8c446,
2722
+ "__wbg_drawElementsInstanced_07717eeb890435e9": __wbg_drawElementsInstanced_07717eeb890435e9,
2723
+ "__wbg_renderbufferStorageMultisample_a9f65ef0cc53fb37": __wbg_renderbufferStorageMultisample_a9f65ef0cc53fb37,
2724
+ "__wbg_texSubImage3D_53489be691cee78d": __wbg_texSubImage3D_53489be691cee78d,
2725
+ "__wbg_uniformMatrix2fv_013723900a9cb65c": __wbg_uniformMatrix2fv_013723900a9cb65c,
2726
+ "__wbg_uniformMatrix3fv_3e548032fc28c3e2": __wbg_uniformMatrix3fv_3e548032fc28c3e2,
2727
+ "__wbg_uniformMatrix4fv_20161efad644f822": __wbg_uniformMatrix4fv_20161efad644f822,
2728
+ "__wbg_vertexAttribIPointer_54e6be6fa5e39567": __wbg_vertexAttribIPointer_54e6be6fa5e39567,
2729
+ "__wbg_bindBufferRange_5a8d28ef662d8746": __wbg_bindBufferRange_5a8d28ef662d8746,
2730
+ "__wbg_bufferData_d359d1c797b8e8b7": __wbg_bufferData_d359d1c797b8e8b7,
2731
+ "__wbg_texSubImage3D_8a2331639ee1ee0e": __wbg_texSubImage3D_8a2331639ee1ee0e,
2732
+ "__wbg_uniformMatrix2x3fv_de8b00219f47ffb4": __wbg_uniformMatrix2x3fv_de8b00219f47ffb4,
2733
+ "__wbg_uniformMatrix2x4fv_e659cc34e95fee5e": __wbg_uniformMatrix2x4fv_e659cc34e95fee5e,
2734
+ "__wbg_uniformMatrix3x2fv_8598636e806d318d": __wbg_uniformMatrix3x2fv_8598636e806d318d,
2735
+ "__wbg_uniformMatrix3x4fv_277fbf38db85e612": __wbg_uniformMatrix3x4fv_277fbf38db85e612,
2736
+ "__wbg_uniformMatrix4x2fv_e91bd4e774f6266d": __wbg_uniformMatrix4x2fv_e91bd4e774f6266d,
2737
+ "__wbg_uniformMatrix4x3fv_a829c88dfd0c29d3": __wbg_uniformMatrix4x3fv_a829c88dfd0c29d3,
2738
+ "__wbg_readPixels_0033d2834b498dda": __wbg_readPixels_0033d2834b498dda,
2739
+ "__wbg_texImage3D_faae3ea3f2969ecc": __wbg_texImage3D_faae3ea3f2969ecc,
2740
+ "__wbg_texSubImage3D_16678785ac62fd6b": __wbg_texSubImage3D_16678785ac62fd6b,
2741
+ "__wbg_texSubImage3D_73d365baf8dad003": __wbg_texSubImage3D_73d365baf8dad003,
2742
+ "__wbg_texSubImage3D_9b0bd9fd73d7bb1c": __wbg_texSubImage3D_9b0bd9fd73d7bb1c,
2743
+ "__wbg_texSubImage3D_09e44c66b4ac6bc6": __wbg_texSubImage3D_09e44c66b4ac6bc6,
2744
+ "__wbg_compressedTexSubImage2D_0968a85385b7c463": __wbg_compressedTexSubImage2D_0968a85385b7c463,
2745
+ "__wbg_compressedTexSubImage3D_3da84908295b8ec3": __wbg_compressedTexSubImage3D_3da84908295b8ec3,
2746
+ "__wbg_copyBufferSubData_e5dc2aab90456f99": __wbg_copyBufferSubData_e5dc2aab90456f99,
2747
+ "__wbg_bufferSubData_4f6063d50303b61d": __wbg_bufferSubData_4f6063d50303b61d,
2748
+ "__wbg_compressedTexSubImage2D_a39446fce0a68ad9": __wbg_compressedTexSubImage2D_a39446fce0a68ad9,
2749
+ "__wbg_compressedTexSubImage3D_c0bc017057e3942a": __wbg_compressedTexSubImage3D_c0bc017057e3942a,
2750
+ "__wbg_getBufferSubData_d1d7ad69c40ea085": __wbg_getBufferSubData_d1d7ad69c40ea085,
2751
+ "__wbg_texSubImage2D_1b383b66dfe35010": __wbg_texSubImage2D_1b383b66dfe35010,
2752
+ "__wbg_clear_332f205d7e52df87": __wbg_clear_332f205d7e52df87,
2753
+ "__wbg_flush_918ffb9cfebcbaab": __wbg_flush_918ffb9cfebcbaab,
2754
+ "__wbg_texImage2D_2854247ff7d047a1": __wbg_texImage2D_2854247ff7d047a1,
2755
+ "__wbg_texSubImage2D_6eb05d8f455f99ba": __wbg_texSubImage2D_6eb05d8f455f99ba,
2756
+ "__wbg_texSubImage2D_606540d3e650e0bb": __wbg_texSubImage2D_606540d3e650e0bb,
2757
+ "__wbg_enable_17346ff3b2257cae": __wbg_enable_17346ff3b2257cae,
2758
+ "__wbg_finish_81c066eb195fc8a9": __wbg_finish_81c066eb195fc8a9,
2759
+ "__wbg_texSubImage2D_a035d2307e014a73": __wbg_texSubImage2D_a035d2307e014a73,
2760
+ "__wbg_texSubImage2D_ad5a64d8f68a2d0d": __wbg_texSubImage2D_ad5a64d8f68a2d0d,
2761
+ "__wbg_texSubImage2D_205cfbaea80e77e6": __wbg_texSubImage2D_205cfbaea80e77e6,
2762
+ "__wbg_texSubImage2D_cb9ad676165c5da5": __wbg_texSubImage2D_cb9ad676165c5da5,
2763
+ "__wbg_disable_bb1df5a6c75eaecd": __wbg_disable_bb1df5a6c75eaecd,
2764
+ "__wbg_scissor_2f02706fbca6e98a": __wbg_scissor_2f02706fbca6e98a,
2765
+ "__wbg_texImage2D_053488112c3d702f": __wbg_texImage2D_053488112c3d702f,
2766
+ "__wbg_viewport_07bb1829f0fe2245": __wbg_viewport_07bb1829f0fe2245,
2767
+ "__wbg_cullFace_94e1cd382e8b654f": __wbg_cullFace_94e1cd382e8b654f,
2768
+ "__wbg_endQuery_0434371d408e59b7": __wbg_endQuery_0434371d408e59b7,
2769
+ "__wbg_uniform1f_e93503bc589b432d": __wbg_uniform1f_e93503bc589b432d,
2770
+ "__wbg_uniform1i_235dff1d94e0df95": __wbg_uniform1i_235dff1d94e0df95,
2771
+ "__wbg_uniform4f_d9bb623add5d2541": __wbg_uniform4f_d9bb623add5d2541,
2772
+ "__wbg_instanceof_Window_5625ff9937037a38": __wbg_instanceof_Window_5625ff9937037a38,
2773
+ "__wbg_matchMedia_0e2963d34f3ddd40": __wbg_matchMedia_0e2963d34f3ddd40,
2774
+ "__wbg_document_ac38448dbfd31a57": __wbg_document_ac38448dbfd31a57,
2775
+ "__wbg_navigator_6cfdd5fa246d910f": __wbg_navigator_6cfdd5fa246d910f,
2776
+ "__wbg_querySelector_2c472eddb417c6b3": __wbg_querySelector_2c472eddb417c6b3,
2777
+ "__wbg_querySelectorAll_9b6a612499ecb916": __wbg_querySelectorAll_9b6a612499ecb916,
2778
+ "__wbg_navigator_e5c345298a9609cd": __wbg_navigator_e5c345298a9609cd,
2779
+ "__wbg_blendFunc_d908118bbb181928": __wbg_blendFunc_d908118bbb181928,
2780
+ "__wbg_colorMask_8fca508f44773327": __wbg_colorMask_8fca508f44773327,
2781
+ "__wbg_depthFunc_bb3152f635a60ff2": __wbg_depthFunc_bb3152f635a60ff2,
2782
+ "__wbg_depthMask_bdc57b9e64c6b4d8": __wbg_depthMask_bdc57b9e64c6b4d8,
2783
+ "__wbg_frontFace_188579d7bba462b1": __wbg_frontFace_188579d7bba462b1,
2784
+ "__wbg_bindBuffer_31cb159ab5dc5ba7": __wbg_bindBuffer_31cb159ab5dc5ba7,
2785
+ "__wbg_blendColor_af92968fedc595b1": __wbg_blendColor_af92968fedc595b1,
2786
+ "__wbg_clearDepth_c4897278afd894a9": __wbg_clearDepth_c4897278afd894a9,
2787
+ "__wbg_depthRange_e2d0a59942d33efd": __wbg_depthRange_e2d0a59942d33efd,
2788
+ "__wbg_drawArrays_02c354e377984441": __wbg_drawArrays_02c354e377984441,
2789
+ "__wbg_useProgram_9edff145e073d3b1": __wbg_useProgram_9edff145e073d3b1,
2790
+ "__wbg_bindTexture_6fe86367f6be8f59": __wbg_bindTexture_6fe86367f6be8f59,
2791
+ "__wbg_linkProgram_dd3cfc19950a354c": __wbg_linkProgram_dd3cfc19950a354c,
2792
+ "__wbg_pixelStorei_11bdfb5bc6a39d28": __wbg_pixelStorei_11bdfb5bc6a39d28,
2793
+ "__wbg_stencilMask_967f16a89bfd056a": __wbg_stencilMask_967f16a89bfd056a,
2794
+ "__wbg_attachShader_61baa58641ea664a": __wbg_attachShader_61baa58641ea664a,
2795
+ "__wbg_clearStencil_96978923f9c6fb1f": __wbg_clearStencil_96978923f9c6fb1f,
2796
+ "__wbg_createBuffer_44b37c222efbd326": __wbg_createBuffer_44b37c222efbd326,
2797
+ "__wbg_createShader_f8638cf4c19a1d2d": __wbg_createShader_f8638cf4c19a1d2d,
2798
+ "__wbg_deleteBuffer_50f20219abee4d05": __wbg_deleteBuffer_50f20219abee4d05,
2799
+ "__wbg_deleteShader_2558228a4ef7373e": __wbg_deleteShader_2558228a4ef7373e,
2800
+ "__wbg_getParameter_19325d4aa1b66856": __wbg_getParameter_19325d4aa1b66856,
2801
+ "__wbg_shaderSource_dcba4cd3379b35bd": __wbg_shaderSource_dcba4cd3379b35bd,
2802
+ "__wbg_activeTexture_fd6262686afdbe2f": __wbg_activeTexture_fd6262686afdbe2f,
2803
+ "__wbg_blendEquation_502ed4c6af5bf8ee": __wbg_blendEquation_502ed4c6af5bf8ee,
2804
+ "__wbg_compileShader_4ede19e4fc1bebce": __wbg_compileShader_4ede19e4fc1bebce,
2805
+ "__wbg_createProgram_2ebbd17565e0ede7": __wbg_createProgram_2ebbd17565e0ede7,
2806
+ "__wbg_createTexture_42c791197006c64a": __wbg_createTexture_42c791197006c64a,
2807
+ "__wbg_deleteProgram_ee7f1925cb856dc2": __wbg_deleteProgram_ee7f1925cb856dc2,
2808
+ "__wbg_deleteTexture_aadf9716c394d7be": __wbg_deleteTexture_aadf9716c394d7be,
2809
+ "__wbg_polygonOffset_2b8b141e8cc17c10": __wbg_polygonOffset_2b8b141e8cc17c10,
2810
+ "__wbg_texParameteri_2bc38aa8e9964d77": __wbg_texParameteri_2bc38aa8e9964d77,
2811
+ "__wbg_bindFramebuffer_32ce672324ce8a16": __wbg_bindFramebuffer_32ce672324ce8a16,
2812
+ "__wbg_bindRenderbuffer_765cffe23b9c36f7": __wbg_bindRenderbuffer_765cffe23b9c36f7,
2813
+ "__wbg_createFramebuffer_4dc2fb6bd93463a5": __wbg_createFramebuffer_4dc2fb6bd93463a5,
2814
+ "__wbg_deleteFramebuffer_073235a01c2a0a28": __wbg_deleteFramebuffer_073235a01c2a0a28,
2815
+ "__wbg_blendFuncSeparate_2e4d259caaba517e": __wbg_blendFuncSeparate_2e4d259caaba517e,
2816
+ "__wbg_createRenderbuffer_be624f81e06a0cfd": __wbg_createRenderbuffer_be624f81e06a0cfd,
2817
+ "__wbg_deleteRenderbuffer_570117534d9608a1": __wbg_deleteRenderbuffer_570117534d9608a1,
2818
+ "__wbg_getShaderInfoLog_337a0567e83283d1": __wbg_getShaderInfoLog_337a0567e83283d1,
2819
+ "__wbg_stencilOpSeparate_33a6764dd0ce6e24": __wbg_stencilOpSeparate_33a6764dd0ce6e24,
2820
+ "__wbg_bindAttribLocation_1e182a50e1556784": __wbg_bindAttribLocation_1e182a50e1556784,
2821
+ "__wbg_bufferData_1dd2939db2d88d82": __wbg_bufferData_1dd2939db2d88d82,
2822
+ "__wbg_getProgramInfoLog_50a07d12dddd0da6": __wbg_getProgramInfoLog_50a07d12dddd0da6,
2823
+ "__wbg_getShaderParameter_95d4ad40668ee798": __wbg_getShaderParameter_95d4ad40668ee798,
2824
+ "__wbg_getUniformLocation_11fd99fee70965dc": __wbg_getUniformLocation_11fd99fee70965dc,
2825
+ "__wbg_renderbufferStorage_33c57e600b175bd6": __wbg_renderbufferStorage_33c57e600b175bd6,
2826
+ "__wbg_copyTexSubImage2D_188da734d1c8aa07": __wbg_copyTexSubImage2D_188da734d1c8aa07,
2827
+ "__wbg_getProgramParameter_1f5cceb73030e823": __wbg_getProgramParameter_1f5cceb73030e823,
2828
+ "__wbg_stencilFuncSeparate_1455ac65895207da": __wbg_stencilFuncSeparate_1455ac65895207da,
2829
+ "__wbg_stencilMaskSeparate_8e37bf59a93afc15": __wbg_stencilMaskSeparate_8e37bf59a93afc15,
2830
+ "__wbg_framebufferTexture2D_8584b49a205ffe5b": __wbg_framebufferTexture2D_8584b49a205ffe5b,
2831
+ "__wbg_blendEquationSeparate_9ad084e8266b8e3c": __wbg_blendEquationSeparate_9ad084e8266b8e3c,
2832
+ "__wbg_framebufferRenderbuffer_e0c873b9f296443d": __wbg_framebufferRenderbuffer_e0c873b9f296443d,
2833
+ "__wbg_uniform2fv_1443080aaf9c1077": __wbg_uniform2fv_1443080aaf9c1077,
2834
+ "__wbg_uniform2iv_e0496dc424dc25ec": __wbg_uniform2iv_e0496dc424dc25ec,
2835
+ "__wbg_uniform3fv_b985d45f54156d3b": __wbg_uniform3fv_b985d45f54156d3b,
2836
+ "__wbg_uniform3iv_193b7a0e1ae9ac9a": __wbg_uniform3iv_193b7a0e1ae9ac9a,
2837
+ "__wbg_uniform4fv_c39527800fc76c8e": __wbg_uniform4fv_c39527800fc76c8e,
2838
+ "__wbg_uniform4iv_9e6e36f0e1d1f84d": __wbg_uniform4iv_9e6e36f0e1d1f84d,
2839
+ "__wbg_enableVertexAttribArray_90f1a9f570379c36": __wbg_enableVertexAttribArray_90f1a9f570379c36,
2840
+ "__wbg_disableVertexAttribArray_98752beca840c3da": __wbg_disableVertexAttribArray_98752beca840c3da,
2841
+ "__wbg_vertexAttribPointer_7bc186aca7721b90": __wbg_vertexAttribPointer_7bc186aca7721b90,
2842
+ "__wbg_uniformMatrix2fv_fb61eccac67a8218": __wbg_uniformMatrix2fv_fb61eccac67a8218,
2843
+ "__wbg_uniformMatrix3fv_72ca83d3393e0364": __wbg_uniformMatrix3fv_72ca83d3393e0364,
2844
+ "__wbg_uniformMatrix4fv_8689fd0481ac5ab4": __wbg_uniformMatrix4fv_8689fd0481ac5ab4,
2845
+ "__wbg_bufferData_69a44ade0864ba2b": __wbg_bufferData_69a44ade0864ba2b,
2846
+ "__wbg_readPixels_0e3230bf7a891882": __wbg_readPixels_0e3230bf7a891882,
2847
+ "__wbg_bufferSubData_64b69f468a0d3048": __wbg_bufferSubData_64b69f468a0d3048,
2848
+ "__wbg_compressedTexSubImage2D_45987d7f0210d36f": __wbg_compressedTexSubImage2D_45987d7f0210d36f,
2849
+ "__wbg_clear_20f7614cd20df101": __wbg_clear_20f7614cd20df101,
2850
+ "__wbg_flush_2a8fa6766a4f3ada": __wbg_flush_2a8fa6766a4f3ada,
2851
+ "__wbg_enable_db1e433ea267f29b": __wbg_enable_db1e433ea267f29b,
2852
+ "__wbg_finish_94865fee5c90da6b": __wbg_finish_94865fee5c90da6b,
2853
+ "__wbg_texSubImage2D_62ae3d4b2700f7cd": __wbg_texSubImage2D_62ae3d4b2700f7cd,
2854
+ "__wbg_disable_2ad210ba5315372a": __wbg_disable_2ad210ba5315372a,
2855
+ "__wbg_scissor_cdfb84de20f004b6": __wbg_scissor_cdfb84de20f004b6,
2856
+ "__wbg_texImage2D_44740302c934daf1": __wbg_texImage2D_44740302c934daf1,
2857
+ "__wbg_viewport_dfe81d333ce7be86": __wbg_viewport_dfe81d333ce7be86,
2858
+ "__wbg_cullFace_053fc24c214cae86": __wbg_cullFace_053fc24c214cae86,
2859
+ "__wbg_uniform1f_e92095ce29c38424": __wbg_uniform1f_e92095ce29c38424,
2860
+ "__wbg_uniform1i_d5db9c3184abbd04": __wbg_uniform1i_d5db9c3184abbd04,
2861
+ "__wbg_uniform4f_61192d516e9bede4": __wbg_uniform4f_61192d516e9bede4,
2862
+ "__wbg_framebufferTextureMultiviewOVR_9b89dd83134856d3": __wbg_framebufferTextureMultiviewOVR_9b89dd83134856d3,
2863
+ "__wbg_bindVertexArrayOES_96a4898652eac0d8": __wbg_bindVertexArrayOES_96a4898652eac0d8,
2864
+ "__wbg_createVertexArrayOES_f7e8c94194c4e075": __wbg_createVertexArrayOES_f7e8c94194c4e075,
2865
+ "__wbg_deleteVertexArrayOES_e43a9a425587d52b": __wbg_deleteVertexArrayOES_e43a9a425587d52b,
2866
+ "__wbg_get_36debceb6d43d7a1": __wbg_get_36debceb6d43d7a1,
2867
+ "__wbg_set_height_ca39bd9597314f83": __wbg_set_height_ca39bd9597314f83,
2868
+ "__wbg_getContext_c5236e0057b35024": __wbg_getContext_c5236e0057b35024,
2869
+ "__wbg_getContext_53c8c42beb820370": __wbg_getContext_53c8c42beb820370,
2870
+ "__wbg_new_652118cdee90118f": __wbg_new_652118cdee90118f,
2871
+ "__wbg_width_aeade399d283e83a": __wbg_width_aeade399d283e83a,
2872
+ "__wbg_height_e6a5d9a72f05fc93": __wbg_height_e6a5d9a72f05fc93,
2873
+ "__wbg_set_width_661c95ea46b71eba": __wbg_set_width_661c95ea46b71eba,
2874
+ "__wbg_instanceof_OffscreenCanvas_7837cb5db833fa53": __wbg_instanceof_OffscreenCanvas_7837cb5db833fa53,
2875
+ "__wbg_set_height_d72f2b76484a44de": __wbg_set_height_d72f2b76484a44de,
2876
+ "__wbg_getContext_71c33f14b63da593": __wbg_getContext_71c33f14b63da593,
2877
+ "__wbg_getContext_123ddade3a0fb2f5": __wbg_getContext_123ddade3a0fb2f5,
2878
+ "__wbg_set_width_36ef6630b22fc519": __wbg_set_width_36ef6630b22fc519,
2879
+ "__wbg_instanceof_HtmlCanvasElement_327e7f7530c72bbd": __wbg_instanceof_HtmlCanvasElement_327e7f7530c72bbd,
2880
+ "__wbg_queryCounterEXT_b0cddcdfb28830df": __wbg_queryCounterEXT_b0cddcdfb28830df,
2881
+ "__wbg_getSupportedProfiles_7cd826b4eff5e8fc": __wbg_getSupportedProfiles_7cd826b4eff5e8fc,
2882
+ "__wbg_drawBuffersWEBGL_0b4935290cba977e": __wbg_drawBuffersWEBGL_0b4935290cba977e,
2883
+ "__wbg_drawArraysInstancedANGLE_cb3b87925641d5b9": __wbg_drawArraysInstancedANGLE_cb3b87925641d5b9,
2884
+ "__wbg_vertexAttribDivisorANGLE_581f060f68a0c850": __wbg_vertexAttribDivisorANGLE_581f060f68a0c850,
2885
+ "__wbg_drawElementsInstancedANGLE_8179cb41f5862831": __wbg_drawElementsInstancedANGLE_8179cb41f5862831,
2886
+ "__wbg_matches_72427e51457a4411": __wbg_matches_72427e51457a4411,
2887
+ "__wbg_new_116be93542d39019": __wbg_new_116be93542d39019,
2888
+ "__wbg_new_ebe3e0f6837f0879": __wbg_new_ebe3e0f6837f0879,
2889
+ "__wbg_new_77cc4f4f472aeb81": __wbg_new_77cc4f4f472aeb81,
2890
+ "__wbg_length_36bd29c6848c2144": __wbg_length_36bd29c6848c2144,
2891
+ "__wbg_prototypesetcall_de8e0d9553586985": __wbg_prototypesetcall_de8e0d9553586985,
2892
+ "__wbg_new_with_byte_offset_and_length_ff6e927f8d72f0c3": __wbg_new_with_byte_offset_and_length_ff6e927f8d72f0c3,
2893
+ "__wbg_set_862c439a342a8818": __wbg_set_862c439a342a8818,
2894
+ "__wbg_then_7026b513a94278a8": __wbg_then_7026b513a94278a8,
2895
+ "__wbg_instanceof_Error_61d8a02a0f3383a1": __wbg_instanceof_Error_61d8a02a0f3383a1,
2896
+ "__wbg_instanceof_Uint8Array_f935dbb0aa7cdeed": __wbg_instanceof_Uint8Array_f935dbb0aa7cdeed,
2897
+ "__wbg_instanceof_ArrayBuffer_993d02d2d254cad1": __wbg_instanceof_ArrayBuffer_993d02d2d254cad1,
2898
+ "__wbg_of_0c6464fa8d2aa86d": __wbg_of_0c6464fa8d2aa86d,
2899
+ "__wbg_isArray_6339f732981044bf": __wbg_isArray_6339f732981044bf,
2900
+ "__wbg_new_358857d90afd5a2d": __wbg_new_358857d90afd5a2d,
2901
+ "__wbg_message_c141d5e68716b595": __wbg_message_c141d5e68716b595,
2902
+ "__wbg_isSafeInteger_f3d6cd19ccfe4512": __wbg_isSafeInteger_f3d6cd19ccfe4512,
2903
+ "__wbg_is_86be747e88e872fb": __wbg_is_86be747e88e872fb,
2904
+ "__wbg_iterator_5cebbb86e33c6dd6": __wbg_iterator_5cebbb86e33c6dd6,
2905
+ "__wbg_static_accessor_GLOBAL_THIS_466428f93b4eaa76": __wbg_static_accessor_GLOBAL_THIS_466428f93b4eaa76,
2906
+ "__wbg_static_accessor_SELF_42d4fae05e59267a": __wbg_static_accessor_SELF_42d4fae05e59267a,
2907
+ "__wbg_static_accessor_GLOBAL_c7aea38d4de089bc": __wbg_static_accessor_GLOBAL_c7aea38d4de089bc,
2908
+ "__wbg_static_accessor_WINDOW_e0db14a0eba6a812": __wbg_static_accessor_WINDOW_e0db14a0eba6a812,
2909
+ "__wbg_resolve_020f95d838c6ef25": __wbg_resolve_020f95d838c6ef25,
2910
+ "__wbg_next_8f26b64fa5e9f64b": __wbg_next_8f26b64fa5e9f64b,
2911
+ "__wbg_get_d173c0308df22d37": __wbg_get_d173c0308df22d37,
2912
+ "__wbg_call_1c5886ab9c57d1c7": __wbg_call_1c5886ab9c57d1c7,
2913
+ "__wbg_set_8155bb79a948541b": __wbg_set_8155bb79a948541b,
2914
+ "__wbg_queueMicrotask_ac694eae12e92dfb": __wbg_queueMicrotask_ac694eae12e92dfb,
2915
+ "__wbg_queueMicrotask_be5fe34a8f4cad4d": __wbg_queueMicrotask_be5fe34a8f4cad4d,
2916
+ "__wbg___wbindgen_number_get_136b9679cab35cfb": __wbg___wbindgen_number_get_136b9679cab35cfb,
2917
+ "__wbg___wbindgen_in_ac983077f137f2e6": __wbg___wbindgen_in_ac983077f137f2e6,
2918
+ "__wbg___wbindgen_throw_bb96b2010945f0bc": __wbg___wbindgen_throw_bb96b2010945f0bc,
2919
+ "__wbg___wbindgen_is_null_7d13f41e1a2d5140": __wbg___wbindgen_is_null_7d13f41e1a2d5140,
2920
+ "__wbg___wbindgen_rethrow_fbd2dcd7d2b9ac5f": __wbg___wbindgen_rethrow_fbd2dcd7d2b9ac5f,
2921
+ "__wbg_Number_3890faa6d3ff057d": __wbg_Number_3890faa6d3ff057d,
2922
+ "__wbg_Error_408e67f47ca7b58b": __wbg_Error_408e67f47ca7b58b,
2923
+ "__wbg___wbindgen_is_object_a2790eb24c211ea0": __wbg___wbindgen_is_object_a2790eb24c211ea0,
2924
+ "__wbg___wbindgen_is_string_e6f02f0ea5f20a32": __wbg___wbindgen_is_string_e6f02f0ea5f20a32,
2925
+ "__wbg___wbindgen_string_get_d154f1e671052120": __wbg___wbindgen_string_get_d154f1e671052120,
2926
+ "__wbg___wbindgen_boolean_get_c9c83ebd41b34df3": __wbg___wbindgen_boolean_get_c9c83ebd41b34df3,
2927
+ "__wbg___wbindgen_is_function_5e4570eb24ffa122": __wbg___wbindgen_is_function_5e4570eb24ffa122,
2928
+ "__wbg___wbindgen_is_undefined_6cff064c44e0d823": __wbg___wbindgen_is_undefined_6cff064c44e0d823,
2929
+ "__wbg___wbindgen_jsval_loose_eq_acf2776254a8d832": __wbg___wbindgen_jsval_loose_eq_acf2776254a8d832,
2930
+ "__wbg___wbindgen_debug_string_a57024b9c6e4a48b": __wbg___wbindgen_debug_string_a57024b9c6e4a48b,
2931
+ "__wbg__wbg_cb_unref_be22cc64ae6946a0": __wbg__wbg_cb_unref_be22cc64ae6946a0,
2932
+ "__wbindgen_init_externref_table": __wbindgen_init_externref_table,
2933
+ "__wbindgen_cast_0000000000000001": __wbindgen_cast_0000000000000001,
2934
+ "__wbindgen_cast_0000000000000002": __wbindgen_cast_0000000000000002,
2935
+ "__wbindgen_cast_0000000000000003": __wbindgen_cast_0000000000000003,
2936
+ "__wbindgen_cast_0000000000000004": __wbindgen_cast_0000000000000004,
2937
+ "__wbindgen_cast_0000000000000005": __wbindgen_cast_0000000000000005,
2938
+ "__wbindgen_cast_0000000000000006": __wbindgen_cast_0000000000000006,
2939
+ "__wbindgen_cast_0000000000000007": __wbindgen_cast_0000000000000007,
2940
+ "__wbindgen_cast_0000000000000008": __wbindgen_cast_0000000000000008,
2941
+ "__wbindgen_cast_0000000000000009": __wbindgen_cast_0000000000000009,
2942
+ "__wbindgen_cast_000000000000000a": __wbindgen_cast_000000000000000a,
2943
+ "__wbindgen_cast_000000000000000b": __wbindgen_cast_000000000000000b,
2944
+ "__wbindgen_cast_000000000000000c": __wbindgen_cast_000000000000000c,
2945
+ "__wbindgen_cast_000000000000000d": __wbindgen_cast_000000000000000d,
2946
+ "__wbindgen_cast_000000000000000e": __wbindgen_cast_000000000000000e
2947
+ } });
2948
+ const memory = instance.exports.memory;
2949
+ const __wbg_interpreter_free = instance.exports.__wbg_interpreter_free;
2950
+ const interpreter_create = instance.exports.interpreter_create;
2951
+ const interpreter_run = instance.exports.interpreter_run;
2952
+ const interpreter_windowSize = instance.exports.interpreter_windowSize;
2953
+ const __abort_handler = instance.exports.__abort_handler;
2954
+ const __instance_terminated = instance.exports.__instance_terminated;
2955
+ const wasm_bindgen__convert__closures_____invoke__hf3ffbd1e64683586 = instance.exports.wasm_bindgen__convert__closures_____invoke__hf3ffbd1e64683586;
2956
+ const wasm_bindgen__convert__closures_____invoke__h0d1471caea0c0e20 = instance.exports.wasm_bindgen__convert__closures_____invoke__h0d1471caea0c0e20;
2957
+ const wasm_bindgen__convert__closures_____invoke__h0d1471caea0c0e20_2 = instance.exports.wasm_bindgen__convert__closures_____invoke__h0d1471caea0c0e20_2;
2958
+ const wasm_bindgen__convert__closures_____invoke__h0d1471caea0c0e20_3 = instance.exports.wasm_bindgen__convert__closures_____invoke__h0d1471caea0c0e20_3;
2959
+ const wasm_bindgen__convert__closures_____invoke__h5034173c0d1c8e1d = instance.exports.wasm_bindgen__convert__closures_____invoke__h5034173c0d1c8e1d;
2960
+ const wasm_bindgen__convert__closures_____invoke__h1b44acdee5fd80b5 = instance.exports.wasm_bindgen__convert__closures_____invoke__h1b44acdee5fd80b5;
2961
+ const __wbindgen_malloc = instance.exports.__wbindgen_malloc;
2962
+ const __wbindgen_realloc = instance.exports.__wbindgen_realloc;
2963
+ const __wbindgen_exn_store = instance.exports.__wbindgen_exn_store;
2964
+ const __externref_table_alloc = instance.exports.__externref_table_alloc;
2965
+ const __wbindgen_externrefs = instance.exports.__wbindgen_externrefs;
2966
+ const __wbindgen_destroy_closure = instance.exports.__wbindgen_destroy_closure;
2967
+ const __externref_table_dealloc = instance.exports.__externref_table_dealloc;
2968
+ const __wbindgen_free = instance.exports.__wbindgen_free;
2969
+ const __wbindgen_start = instance.exports.__wbindgen_start;
2970
+ //#endregion
2971
+ //#region ../../crates/tanaid-wasm/pkg/bundler/tanaid_wasm.js
2972
+ __wbg_set_wasm(tanaid_wasm_bg_exports);
2973
+ __wbindgen_start();
2974
+ //#endregion
2975
+ //#region src/index.ts
2976
+ /** Interpreter.create with default options for convenience */
2977
+ function createInterpreter(options) {
2978
+ return Interpreter.create({
2979
+ handleStdout: (stdout) => {
2980
+ console.log(stdout);
2981
+ },
2982
+ handleEventLoopStatus: (_nPending) => {},
2983
+ setTimeout: (callback, delayMs) => {
2984
+ return globalThis.setTimeout(callback, delayMs);
2985
+ },
2986
+ clearTimeout: (timeoutId) => {
2987
+ globalThis.clearTimeout(timeoutId);
2988
+ },
2989
+ ...options
2990
+ });
2991
+ }
2992
+ //#endregion
2993
+ export { Interpreter, createInterpreter };