1732 lines
74 KiB
JavaScript
1732 lines
74 KiB
JavaScript
const lAudioContext = (typeof AudioContext !== 'undefined' ? AudioContext : (typeof webkitAudioContext !== 'undefined' ? webkitAudioContext : undefined));
|
|
let wasm;
|
|
|
|
const heap = new Array(128).fill(undefined);
|
|
|
|
heap.push(undefined, null, true, false);
|
|
|
|
function getObject(idx) { return heap[idx]; }
|
|
|
|
let heap_next = heap.length;
|
|
|
|
function dropObject(idx) {
|
|
if (idx < 132) return;
|
|
heap[idx] = heap_next;
|
|
heap_next = idx;
|
|
}
|
|
|
|
function takeObject(idx) {
|
|
const ret = getObject(idx);
|
|
dropObject(idx);
|
|
return ret;
|
|
}
|
|
|
|
const cachedTextDecoder = (typeof TextDecoder !== 'undefined' ? new TextDecoder('utf-8', { ignoreBOM: true, fatal: true }) : { decode: () => { throw Error('TextDecoder not available') } } );
|
|
|
|
if (typeof TextDecoder !== 'undefined') { cachedTextDecoder.decode(); };
|
|
|
|
let cachedUint8Memory0 = null;
|
|
|
|
function getUint8Memory0() {
|
|
if (cachedUint8Memory0 === null || cachedUint8Memory0.byteLength === 0) {
|
|
cachedUint8Memory0 = new Uint8Array(wasm.memory.buffer);
|
|
}
|
|
return cachedUint8Memory0;
|
|
}
|
|
|
|
function getStringFromWasm0(ptr, len) {
|
|
ptr = ptr >>> 0;
|
|
return cachedTextDecoder.decode(getUint8Memory0().subarray(ptr, ptr + len));
|
|
}
|
|
|
|
function addHeapObject(obj) {
|
|
if (heap_next === heap.length) heap.push(heap.length + 1);
|
|
const idx = heap_next;
|
|
heap_next = heap[idx];
|
|
|
|
heap[idx] = obj;
|
|
return idx;
|
|
}
|
|
|
|
let WASM_VECTOR_LEN = 0;
|
|
|
|
const cachedTextEncoder = (typeof TextEncoder !== 'undefined' ? new TextEncoder('utf-8') : { encode: () => { throw Error('TextEncoder not available') } } );
|
|
|
|
const encodeString = (typeof cachedTextEncoder.encodeInto === 'function'
|
|
? function (arg, view) {
|
|
return cachedTextEncoder.encodeInto(arg, view);
|
|
}
|
|
: function (arg, view) {
|
|
const buf = cachedTextEncoder.encode(arg);
|
|
view.set(buf);
|
|
return {
|
|
read: arg.length,
|
|
written: buf.length
|
|
};
|
|
});
|
|
|
|
function passStringToWasm0(arg, malloc, realloc) {
|
|
|
|
if (realloc === undefined) {
|
|
const buf = cachedTextEncoder.encode(arg);
|
|
const ptr = malloc(buf.length, 1) >>> 0;
|
|
getUint8Memory0().subarray(ptr, ptr + buf.length).set(buf);
|
|
WASM_VECTOR_LEN = buf.length;
|
|
return ptr;
|
|
}
|
|
|
|
let len = arg.length;
|
|
let ptr = malloc(len, 1) >>> 0;
|
|
|
|
const mem = getUint8Memory0();
|
|
|
|
let offset = 0;
|
|
|
|
for (; offset < len; offset++) {
|
|
const code = arg.charCodeAt(offset);
|
|
if (code > 0x7F) break;
|
|
mem[ptr + offset] = code;
|
|
}
|
|
|
|
if (offset !== len) {
|
|
if (offset !== 0) {
|
|
arg = arg.slice(offset);
|
|
}
|
|
ptr = realloc(ptr, len, len = offset + arg.length * 3, 1) >>> 0;
|
|
const view = getUint8Memory0().subarray(ptr + offset, ptr + len);
|
|
const ret = encodeString(arg, view);
|
|
|
|
offset += ret.written;
|
|
ptr = realloc(ptr, len, offset, 1) >>> 0;
|
|
}
|
|
|
|
WASM_VECTOR_LEN = offset;
|
|
return ptr;
|
|
}
|
|
|
|
function isLikeNone(x) {
|
|
return x === undefined || x === null;
|
|
}
|
|
|
|
let cachedInt32Memory0 = null;
|
|
|
|
function getInt32Memory0() {
|
|
if (cachedInt32Memory0 === null || cachedInt32Memory0.byteLength === 0) {
|
|
cachedInt32Memory0 = new Int32Array(wasm.memory.buffer);
|
|
}
|
|
return cachedInt32Memory0;
|
|
}
|
|
|
|
let cachedFloat64Memory0 = null;
|
|
|
|
function getFloat64Memory0() {
|
|
if (cachedFloat64Memory0 === null || cachedFloat64Memory0.byteLength === 0) {
|
|
cachedFloat64Memory0 = new Float64Array(wasm.memory.buffer);
|
|
}
|
|
return cachedFloat64Memory0;
|
|
}
|
|
|
|
function debugString(val) {
|
|
// primitive types
|
|
const type = typeof val;
|
|
if (type == 'number' || type == 'boolean' || val == null) {
|
|
return `${val}`;
|
|
}
|
|
if (type == 'string') {
|
|
return `"${val}"`;
|
|
}
|
|
if (type == 'symbol') {
|
|
const description = val.description;
|
|
if (description == null) {
|
|
return 'Symbol';
|
|
} else {
|
|
return `Symbol(${description})`;
|
|
}
|
|
}
|
|
if (type == 'function') {
|
|
const name = val.name;
|
|
if (typeof name == 'string' && name.length > 0) {
|
|
return `Function(${name})`;
|
|
} else {
|
|
return 'Function';
|
|
}
|
|
}
|
|
// objects
|
|
if (Array.isArray(val)) {
|
|
const length = val.length;
|
|
let debug = '[';
|
|
if (length > 0) {
|
|
debug += debugString(val[0]);
|
|
}
|
|
for(let i = 1; i < length; i++) {
|
|
debug += ', ' + debugString(val[i]);
|
|
}
|
|
debug += ']';
|
|
return debug;
|
|
}
|
|
// Test for built-in
|
|
const builtInMatches = /\[object ([^\]]+)\]/.exec(toString.call(val));
|
|
let className;
|
|
if (builtInMatches.length > 1) {
|
|
className = builtInMatches[1];
|
|
} else {
|
|
// Failed to match the standard '[object ClassName]'
|
|
return toString.call(val);
|
|
}
|
|
if (className == 'Object') {
|
|
// we're a user defined class or Object
|
|
// JSON.stringify avoids problems with cycles, and is generally much
|
|
// easier than looping through ownProperties of `val`.
|
|
try {
|
|
return 'Object(' + JSON.stringify(val) + ')';
|
|
} catch (_) {
|
|
return 'Object';
|
|
}
|
|
}
|
|
// errors
|
|
if (val instanceof Error) {
|
|
return `${val.name}: ${val.message}\n${val.stack}`;
|
|
}
|
|
// TODO we could test for more things here, like `Set`s and `Map`s.
|
|
return className;
|
|
}
|
|
|
|
const CLOSURE_DTORS = (typeof FinalizationRegistry === 'undefined')
|
|
? { register: () => {}, unregister: () => {} }
|
|
: new FinalizationRegistry(state => {
|
|
wasm.__wbindgen_export_2.get(state.dtor)(state.a, state.b)
|
|
});
|
|
|
|
function makeMutClosure(arg0, arg1, dtor, f) {
|
|
const state = { a: arg0, b: arg1, cnt: 1, dtor };
|
|
const real = (...args) => {
|
|
// First up with a closure we increment the internal reference
|
|
// count. This ensures that the Rust closure environment won't
|
|
// be deallocated while we're invoking it.
|
|
state.cnt++;
|
|
const a = state.a;
|
|
state.a = 0;
|
|
try {
|
|
return f(a, state.b, ...args);
|
|
} finally {
|
|
if (--state.cnt === 0) {
|
|
wasm.__wbindgen_export_2.get(state.dtor)(a, state.b);
|
|
CLOSURE_DTORS.unregister(state);
|
|
} else {
|
|
state.a = a;
|
|
}
|
|
}
|
|
};
|
|
real.original = state;
|
|
CLOSURE_DTORS.register(real, state, state);
|
|
return real;
|
|
}
|
|
function __wbg_adapter_32(arg0, arg1, arg2) {
|
|
wasm.wasm_bindgen__convert__closures__invoke1_mut__h41a9fb77c37df54c(arg0, arg1, addHeapObject(arg2));
|
|
}
|
|
|
|
function __wbg_adapter_41(arg0, arg1) {
|
|
wasm.wasm_bindgen__convert__closures__invoke0_mut__hf8e16990f9ed7c04(arg0, arg1);
|
|
}
|
|
|
|
function __wbg_adapter_44(arg0, arg1, arg2, arg3) {
|
|
wasm.wasm_bindgen__convert__closures__invoke2_mut__h203a8386730ba9df(arg0, arg1, addHeapObject(arg2), addHeapObject(arg3));
|
|
}
|
|
|
|
function __wbg_adapter_49(arg0, arg1) {
|
|
wasm.wasm_bindgen__convert__closures__invoke0_mut__h572b0078b587477d(arg0, arg1);
|
|
}
|
|
|
|
function __wbg_adapter_52(arg0, arg1) {
|
|
wasm.wasm_bindgen__convert__closures__invoke0_mut__h51080012ce0a1510(arg0, arg1);
|
|
}
|
|
|
|
function __wbg_adapter_55(arg0, arg1, arg2) {
|
|
wasm.wasm_bindgen__convert__closures__invoke1_mut__h1c7e22c401eab73b(arg0, arg1, addHeapObject(arg2));
|
|
}
|
|
|
|
function __wbg_adapter_68(arg0, arg1, arg2) {
|
|
wasm._dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h70e060248429303a(arg0, arg1, addHeapObject(arg2));
|
|
}
|
|
|
|
/**
|
|
*/
|
|
export function main() {
|
|
wasm.main();
|
|
}
|
|
|
|
let cachedFloat32Memory0 = null;
|
|
|
|
function getFloat32Memory0() {
|
|
if (cachedFloat32Memory0 === null || cachedFloat32Memory0.byteLength === 0) {
|
|
cachedFloat32Memory0 = new Float32Array(wasm.memory.buffer);
|
|
}
|
|
return cachedFloat32Memory0;
|
|
}
|
|
|
|
function getArrayF32FromWasm0(ptr, len) {
|
|
ptr = ptr >>> 0;
|
|
return getFloat32Memory0().subarray(ptr / 4, ptr / 4 + len);
|
|
}
|
|
|
|
function getArrayI32FromWasm0(ptr, len) {
|
|
ptr = ptr >>> 0;
|
|
return getInt32Memory0().subarray(ptr / 4, ptr / 4 + len);
|
|
}
|
|
|
|
let cachedUint32Memory0 = null;
|
|
|
|
function getUint32Memory0() {
|
|
if (cachedUint32Memory0 === null || cachedUint32Memory0.byteLength === 0) {
|
|
cachedUint32Memory0 = new Uint32Array(wasm.memory.buffer);
|
|
}
|
|
return cachedUint32Memory0;
|
|
}
|
|
|
|
function getArrayU32FromWasm0(ptr, len) {
|
|
ptr = ptr >>> 0;
|
|
return getUint32Memory0().subarray(ptr / 4, ptr / 4 + len);
|
|
}
|
|
|
|
function handleError(f, args) {
|
|
try {
|
|
return f.apply(this, args);
|
|
} catch (e) {
|
|
wasm.__wbindgen_exn_store(addHeapObject(e));
|
|
}
|
|
}
|
|
|
|
async function __wbg_load(module, imports) {
|
|
if (typeof Response === 'function' && module instanceof Response) {
|
|
if (typeof WebAssembly.instantiateStreaming === 'function') {
|
|
try {
|
|
return await WebAssembly.instantiateStreaming(module, imports);
|
|
|
|
} catch (e) {
|
|
if (module.headers.get('Content-Type') != 'application/wasm') {
|
|
console.warn("`WebAssembly.instantiateStreaming` failed because your server does not serve wasm with `application/wasm` MIME type. Falling back to `WebAssembly.instantiate` which is slower. Original error:\n", e);
|
|
|
|
} else {
|
|
throw e;
|
|
}
|
|
}
|
|
}
|
|
|
|
const bytes = await module.arrayBuffer();
|
|
return await WebAssembly.instantiate(bytes, imports);
|
|
|
|
} else {
|
|
const instance = await WebAssembly.instantiate(module, imports);
|
|
|
|
if (instance instanceof WebAssembly.Instance) {
|
|
return { instance, module };
|
|
|
|
} else {
|
|
return instance;
|
|
}
|
|
}
|
|
}
|
|
|
|
function __wbg_get_imports() {
|
|
const imports = {};
|
|
imports.wbg = {};
|
|
imports.wbg.__wbg_new_3508823e70d351b5 = function() {
|
|
const ret = new Error();
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_stack_8175d8544771e17d = function(arg0, arg1) {
|
|
const ret = getObject(arg1).stack;
|
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
const len1 = WASM_VECTOR_LEN;
|
|
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
};
|
|
imports.wbg.__wbg_error_6fdfbb68935c25a1 = function(arg0, arg1) {
|
|
let deferred0_0;
|
|
let deferred0_1;
|
|
try {
|
|
deferred0_0 = arg0;
|
|
deferred0_1 = arg1;
|
|
console.error(getStringFromWasm0(arg0, arg1));
|
|
} finally {
|
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
}
|
|
};
|
|
imports.wbg.__wbindgen_object_drop_ref = function(arg0) {
|
|
takeObject(arg0);
|
|
};
|
|
imports.wbg.__wbindgen_is_undefined = function(arg0) {
|
|
const ret = getObject(arg0) === undefined;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbindgen_string_new = function(arg0, arg1) {
|
|
const ret = getStringFromWasm0(arg0, arg1);
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbindgen_object_clone_ref = function(arg0) {
|
|
const ret = getObject(arg0);
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbindgen_cb_drop = function(arg0) {
|
|
const obj = takeObject(arg0).original;
|
|
if (obj.cnt-- == 1) {
|
|
obj.a = 0;
|
|
return true;
|
|
}
|
|
const ret = false;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbindgen_string_get = function(arg0, arg1) {
|
|
const obj = getObject(arg1);
|
|
const ret = typeof(obj) === 'string' ? obj : undefined;
|
|
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
var len1 = WASM_VECTOR_LEN;
|
|
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
};
|
|
imports.wbg.__wbindgen_boolean_get = function(arg0) {
|
|
const v = getObject(arg0);
|
|
const ret = typeof(v) === 'boolean' ? (v ? 1 : 0) : 2;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbindgen_number_get = function(arg0, arg1) {
|
|
const obj = getObject(arg1);
|
|
const ret = typeof(obj) === 'number' ? obj : undefined;
|
|
getFloat64Memory0()[arg0 / 8 + 1] = isLikeNone(ret) ? 0 : ret;
|
|
getInt32Memory0()[arg0 / 4 + 0] = !isLikeNone(ret);
|
|
};
|
|
imports.wbg.__wbindgen_number_new = function(arg0) {
|
|
const ret = arg0;
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_offsetX_af3f1b9b1eb01cee = function(arg0) {
|
|
const ret = getObject(arg0).offsetX;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_offsetY_5175fbd6a5341e63 = function(arg0) {
|
|
const ret = getObject(arg0).offsetY;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_requestFullscreen_b5ba8cc25a89e20f = function(arg0) {
|
|
const ret = getObject(arg0).requestFullscreen;
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_requestFullscreen_2a0aacad1401d6fd = function(arg0) {
|
|
const ret = getObject(arg0).requestFullscreen();
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_onpointerrawupdate_2920fe2e45d8ad4e = function(arg0) {
|
|
const ret = getObject(arg0).onpointerrawupdate;
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_getCoalescedEvents_03f02f7e790a0660 = function(arg0) {
|
|
const ret = getObject(arg0).getCoalescedEvents;
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_scheduler_d70dbb12cdeac6d0 = function(arg0) {
|
|
const ret = getObject(arg0).scheduler;
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_scheduler_5136fcb65a6c2f71 = function(arg0) {
|
|
const ret = getObject(arg0).scheduler;
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_postTask_57ac0f7bcf0b946f = function(arg0, arg1, arg2) {
|
|
const ret = getObject(arg0).postTask(getObject(arg1), getObject(arg2));
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_requestIdleCallback_65f7306506627928 = function(arg0) {
|
|
const ret = getObject(arg0).requestIdleCallback;
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_Window_fb573feb1c2edb10 = function(arg0) {
|
|
const ret = getObject(arg0).Window;
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_webkitFullscreenElement_c2f19f35e3796307 = function(arg0) {
|
|
const ret = getObject(arg0).webkitFullscreenElement;
|
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_prototype_3daa1bbf8d032f9d = function() {
|
|
const ret = ResizeObserverEntry.prototype;
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_webkitRequestFullscreen_ae5fbc67dcc0656a = function(arg0) {
|
|
getObject(arg0).webkitRequestFullscreen();
|
|
};
|
|
imports.wbg.__wbg_performance_eeefc685c9bc38b4 = function(arg0) {
|
|
const ret = getObject(arg0).performance;
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_now_e0d8ec93dd25766a = function(arg0) {
|
|
const ret = getObject(arg0).now();
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_log_6fe326b2dc7dddda = function(arg0, arg1) {
|
|
console.log(getStringFromWasm0(arg0, arg1));
|
|
};
|
|
imports.wbg.__wbg_instanceof_WebGl2RenderingContext_6b8f92d566ced9e1 = function(arg0) {
|
|
let result;
|
|
try {
|
|
result = getObject(arg0) instanceof WebGL2RenderingContext;
|
|
} catch (_) {
|
|
result = false;
|
|
}
|
|
const ret = result;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_bindVertexArray_239574d42dbbd203 = function(arg0, arg1) {
|
|
getObject(arg0).bindVertexArray(getObject(arg1));
|
|
};
|
|
imports.wbg.__wbg_blitFramebuffer_4d77c70dcb183e0c = function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) {
|
|
getObject(arg0).blitFramebuffer(arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9 >>> 0, arg10 >>> 0);
|
|
};
|
|
imports.wbg.__wbg_bufferData_c787516945ba48c2 = function(arg0, arg1, arg2, arg3) {
|
|
getObject(arg0).bufferData(arg1 >>> 0, getObject(arg2), arg3 >>> 0);
|
|
};
|
|
imports.wbg.__wbg_bufferSubData_7f5ddd4fdc628963 = function(arg0, arg1, arg2, arg3) {
|
|
getObject(arg0).bufferSubData(arg1 >>> 0, arg2, getObject(arg3));
|
|
};
|
|
imports.wbg.__wbg_clearBufferfi_6fef5a594e8abb5d = function(arg0, arg1, arg2, arg3, arg4) {
|
|
getObject(arg0).clearBufferfi(arg1 >>> 0, arg2, arg3, arg4);
|
|
};
|
|
imports.wbg.__wbg_clearBufferfv_e15ec21e5f45b314 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
getObject(arg0).clearBufferfv(arg1 >>> 0, arg2, getArrayF32FromWasm0(arg3, arg4));
|
|
};
|
|
imports.wbg.__wbg_clearBufferiv_519fe97abe38622e = function(arg0, arg1, arg2, arg3, arg4) {
|
|
getObject(arg0).clearBufferiv(arg1 >>> 0, arg2, getArrayI32FromWasm0(arg3, arg4));
|
|
};
|
|
imports.wbg.__wbg_clearBufferuiv_1ae6df4bc96ffe37 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
getObject(arg0).clearBufferuiv(arg1 >>> 0, arg2, getArrayU32FromWasm0(arg3, arg4));
|
|
};
|
|
imports.wbg.__wbg_compressedTexImage2D_4e9a7a61bc623526 = function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
getObject(arg0).compressedTexImage2D(arg1 >>> 0, arg2, arg3 >>> 0, arg4, arg5, arg6, getObject(arg7));
|
|
};
|
|
imports.wbg.__wbg_compressedTexImage3D_1d4f5b5f9c6f089f = function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
|
|
getObject(arg0).compressedTexImage3D(arg1 >>> 0, arg2, arg3 >>> 0, arg4, arg5, arg6, arg7, getObject(arg8));
|
|
};
|
|
imports.wbg.__wbg_createVertexArray_4f450ed4d4a69acf = function(arg0) {
|
|
const ret = getObject(arg0).createVertexArray();
|
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_deleteVertexArray_67635c7fe59aa660 = function(arg0, arg1) {
|
|
getObject(arg0).deleteVertexArray(getObject(arg1));
|
|
};
|
|
imports.wbg.__wbg_drawBuffers_6d32a0c370b9cb7f = function(arg0, arg1) {
|
|
getObject(arg0).drawBuffers(getObject(arg1));
|
|
};
|
|
imports.wbg.__wbg_texImage2D_2558a70047650d54 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
|
|
getObject(arg0).texImage2D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7 >>> 0, arg8 >>> 0, getObject(arg9));
|
|
}, arguments) };
|
|
imports.wbg.__wbg_texImage3D_7987a4b692d91b21 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) {
|
|
getObject(arg0).texImage3D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7, arg8 >>> 0, arg9 >>> 0, getObject(arg10));
|
|
}, arguments) };
|
|
imports.wbg.__wbg_uniform1fv_9114da29f9f1f35b = function(arg0, arg1, arg2, arg3) {
|
|
getObject(arg0).uniform1fv(getObject(arg1), getArrayF32FromWasm0(arg2, arg3));
|
|
};
|
|
imports.wbg.__wbg_uniform1iv_e372f959c335fb72 = function(arg0, arg1, arg2, arg3) {
|
|
getObject(arg0).uniform1iv(getObject(arg1), getArrayI32FromWasm0(arg2, arg3));
|
|
};
|
|
imports.wbg.__wbg_uniform1ui_71145d62b7bd13f4 = function(arg0, arg1, arg2) {
|
|
getObject(arg0).uniform1ui(getObject(arg1), arg2 >>> 0);
|
|
};
|
|
imports.wbg.__wbg_uniform1uiv_cc697cfdcc1d6ed6 = function(arg0, arg1, arg2, arg3) {
|
|
getObject(arg0).uniform1uiv(getObject(arg1), getArrayU32FromWasm0(arg2, arg3));
|
|
};
|
|
imports.wbg.__wbg_uniform2fv_4bd352337ccc4530 = function(arg0, arg1, arg2, arg3) {
|
|
getObject(arg0).uniform2fv(getObject(arg1), getArrayF32FromWasm0(arg2, arg3));
|
|
};
|
|
imports.wbg.__wbg_uniform3fv_3d2854c81603e498 = function(arg0, arg1, arg2, arg3) {
|
|
getObject(arg0).uniform3fv(getObject(arg1), getArrayF32FromWasm0(arg2, arg3));
|
|
};
|
|
imports.wbg.__wbg_uniform4fv_39cdcce4b1acc767 = function(arg0, arg1, arg2, arg3) {
|
|
getObject(arg0).uniform4fv(getObject(arg1), getArrayF32FromWasm0(arg2, arg3));
|
|
};
|
|
imports.wbg.__wbg_uniformMatrix2fv_756ddcf41f02aa75 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
getObject(arg0).uniformMatrix2fv(getObject(arg1), arg2 !== 0, getArrayF32FromWasm0(arg3, arg4));
|
|
};
|
|
imports.wbg.__wbg_uniformMatrix3fv_f26b98137276fd3d = function(arg0, arg1, arg2, arg3, arg4) {
|
|
getObject(arg0).uniformMatrix3fv(getObject(arg1), arg2 !== 0, getArrayF32FromWasm0(arg3, arg4));
|
|
};
|
|
imports.wbg.__wbg_uniformMatrix4fv_5d8e0e047546456b = function(arg0, arg1, arg2, arg3, arg4) {
|
|
getObject(arg0).uniformMatrix4fv(getObject(arg1), arg2 !== 0, getArrayF32FromWasm0(arg3, arg4));
|
|
};
|
|
imports.wbg.__wbg_vertexAttribDivisor_8479e8b81c913ed6 = function(arg0, arg1, arg2) {
|
|
getObject(arg0).vertexAttribDivisor(arg1 >>> 0, arg2 >>> 0);
|
|
};
|
|
imports.wbg.__wbg_activeTexture_d42cec3a26e47a5b = function(arg0, arg1) {
|
|
getObject(arg0).activeTexture(arg1 >>> 0);
|
|
};
|
|
imports.wbg.__wbg_attachShader_2112634b3ffa9e9f = function(arg0, arg1, arg2) {
|
|
getObject(arg0).attachShader(getObject(arg1), getObject(arg2));
|
|
};
|
|
imports.wbg.__wbg_bindBuffer_90d4fb91538001d5 = function(arg0, arg1, arg2) {
|
|
getObject(arg0).bindBuffer(arg1 >>> 0, getObject(arg2));
|
|
};
|
|
imports.wbg.__wbg_bindFramebuffer_4f950b884dc4be83 = function(arg0, arg1, arg2) {
|
|
getObject(arg0).bindFramebuffer(arg1 >>> 0, getObject(arg2));
|
|
};
|
|
imports.wbg.__wbg_bindTexture_75a698c47a923814 = function(arg0, arg1, arg2) {
|
|
getObject(arg0).bindTexture(arg1 >>> 0, getObject(arg2));
|
|
};
|
|
imports.wbg.__wbg_blendEquationSeparate_34aa4cecd02882ab = function(arg0, arg1, arg2) {
|
|
getObject(arg0).blendEquationSeparate(arg1 >>> 0, arg2 >>> 0);
|
|
};
|
|
imports.wbg.__wbg_blendFuncSeparate_3c342f57887c2900 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
getObject(arg0).blendFuncSeparate(arg1 >>> 0, arg2 >>> 0, arg3 >>> 0, arg4 >>> 0);
|
|
};
|
|
imports.wbg.__wbg_checkFramebufferStatus_faf497a8869b5585 = function(arg0, arg1) {
|
|
const ret = getObject(arg0).checkFramebufferStatus(arg1 >>> 0);
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_clear_8e2508724944df18 = function(arg0, arg1) {
|
|
getObject(arg0).clear(arg1 >>> 0);
|
|
};
|
|
imports.wbg.__wbg_clearColor_480962bfac4e1cbd = function(arg0, arg1, arg2, arg3, arg4) {
|
|
getObject(arg0).clearColor(arg1, arg2, arg3, arg4);
|
|
};
|
|
imports.wbg.__wbg_clearDepth_f5b4a73c4b8050eb = function(arg0, arg1) {
|
|
getObject(arg0).clearDepth(arg1);
|
|
};
|
|
imports.wbg.__wbg_clearStencil_1e4bb9932be75fce = function(arg0, arg1) {
|
|
getObject(arg0).clearStencil(arg1);
|
|
};
|
|
imports.wbg.__wbg_colorMask_21a93d0180bcbffa = function(arg0, arg1, arg2, arg3, arg4) {
|
|
getObject(arg0).colorMask(arg1 !== 0, arg2 !== 0, arg3 !== 0, arg4 !== 0);
|
|
};
|
|
imports.wbg.__wbg_compileShader_f40e0c51a7a836fd = function(arg0, arg1) {
|
|
getObject(arg0).compileShader(getObject(arg1));
|
|
};
|
|
imports.wbg.__wbg_createBuffer_7f57647465d111f0 = function(arg0) {
|
|
const ret = getObject(arg0).createBuffer();
|
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_createFramebuffer_8ebfde8c77472024 = function(arg0) {
|
|
const ret = getObject(arg0).createFramebuffer();
|
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_createProgram_7759fb2effb5d9b3 = function(arg0) {
|
|
const ret = getObject(arg0).createProgram();
|
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_createShader_b474ef421ec0f80b = function(arg0, arg1) {
|
|
const ret = getObject(arg0).createShader(arg1 >>> 0);
|
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_createTexture_18b4a88c14cb086e = function(arg0) {
|
|
const ret = getObject(arg0).createTexture();
|
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_cullFace_fe427cdf8d0ea4e2 = function(arg0, arg1) {
|
|
getObject(arg0).cullFace(arg1 >>> 0);
|
|
};
|
|
imports.wbg.__wbg_deleteBuffer_fca5d765302c9a4e = function(arg0, arg1) {
|
|
getObject(arg0).deleteBuffer(getObject(arg1));
|
|
};
|
|
imports.wbg.__wbg_deleteFramebuffer_da681ed1dfa6d543 = function(arg0, arg1) {
|
|
getObject(arg0).deleteFramebuffer(getObject(arg1));
|
|
};
|
|
imports.wbg.__wbg_deleteProgram_a06d69620332cc70 = function(arg0, arg1) {
|
|
getObject(arg0).deleteProgram(getObject(arg1));
|
|
};
|
|
imports.wbg.__wbg_deleteShader_138a810cc0ca9986 = function(arg0, arg1) {
|
|
getObject(arg0).deleteShader(getObject(arg1));
|
|
};
|
|
imports.wbg.__wbg_deleteTexture_eae7abcfa3015f09 = function(arg0, arg1) {
|
|
getObject(arg0).deleteTexture(getObject(arg1));
|
|
};
|
|
imports.wbg.__wbg_depthFunc_5527d3ee35e25a8d = function(arg0, arg1) {
|
|
getObject(arg0).depthFunc(arg1 >>> 0);
|
|
};
|
|
imports.wbg.__wbg_depthMask_9120207d491c649a = function(arg0, arg1) {
|
|
getObject(arg0).depthMask(arg1 !== 0);
|
|
};
|
|
imports.wbg.__wbg_disable_f0ef6e9a7ac6ddd7 = function(arg0, arg1) {
|
|
getObject(arg0).disable(arg1 >>> 0);
|
|
};
|
|
imports.wbg.__wbg_drawElements_565a93d1efa4da07 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
getObject(arg0).drawElements(arg1 >>> 0, arg2, arg3 >>> 0, arg4);
|
|
};
|
|
imports.wbg.__wbg_enable_8b3019da8846ce76 = function(arg0, arg1) {
|
|
getObject(arg0).enable(arg1 >>> 0);
|
|
};
|
|
imports.wbg.__wbg_enableVertexAttribArray_9d7b7e199f86e09b = function(arg0, arg1) {
|
|
getObject(arg0).enableVertexAttribArray(arg1 >>> 0);
|
|
};
|
|
imports.wbg.__wbg_framebufferTexture2D_a6ad7148f7983ae6 = function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
getObject(arg0).framebufferTexture2D(arg1 >>> 0, arg2 >>> 0, arg3 >>> 0, getObject(arg4), arg5);
|
|
};
|
|
imports.wbg.__wbg_getExtension_bef4112494c87f34 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
const ret = getObject(arg0).getExtension(getStringFromWasm0(arg1, arg2));
|
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_getParameter_aa9af66884d2b210 = function() { return handleError(function (arg0, arg1) {
|
|
const ret = getObject(arg0).getParameter(arg1 >>> 0);
|
|
return addHeapObject(ret);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_getProgramInfoLog_4d189135f8d5a2de = function(arg0, arg1, arg2) {
|
|
const ret = getObject(arg1).getProgramInfoLog(getObject(arg2));
|
|
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
var len1 = WASM_VECTOR_LEN;
|
|
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
};
|
|
imports.wbg.__wbg_getProgramParameter_7b04ca71a79d9047 = function(arg0, arg1, arg2) {
|
|
const ret = getObject(arg0).getProgramParameter(getObject(arg1), arg2 >>> 0);
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_getShaderInfoLog_d5de3e4eab06fc46 = function(arg0, arg1, arg2) {
|
|
const ret = getObject(arg1).getShaderInfoLog(getObject(arg2));
|
|
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
var len1 = WASM_VECTOR_LEN;
|
|
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
};
|
|
imports.wbg.__wbg_getShaderParameter_4ddb51279bb1500b = function(arg0, arg1, arg2) {
|
|
const ret = getObject(arg0).getShaderParameter(getObject(arg1), arg2 >>> 0);
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_getSupportedExtensions_7a174085f9e1983a = function(arg0) {
|
|
const ret = getObject(arg0).getSupportedExtensions();
|
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_getUniformLocation_51ec30e3755e574d = function(arg0, arg1, arg2, arg3) {
|
|
const ret = getObject(arg0).getUniformLocation(getObject(arg1), getStringFromWasm0(arg2, arg3));
|
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_linkProgram_eabc664217816e72 = function(arg0, arg1) {
|
|
getObject(arg0).linkProgram(getObject(arg1));
|
|
};
|
|
imports.wbg.__wbg_pixelStorei_162a23ba7872b886 = function(arg0, arg1, arg2) {
|
|
getObject(arg0).pixelStorei(arg1 >>> 0, arg2);
|
|
};
|
|
imports.wbg.__wbg_scissor_726eea865bbd6809 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
getObject(arg0).scissor(arg1, arg2, arg3, arg4);
|
|
};
|
|
imports.wbg.__wbg_shaderSource_7943d06f24862a3b = function(arg0, arg1, arg2, arg3) {
|
|
getObject(arg0).shaderSource(getObject(arg1), getStringFromWasm0(arg2, arg3));
|
|
};
|
|
imports.wbg.__wbg_stencilFunc_da7d66ef7f45669d = function(arg0, arg1, arg2, arg3) {
|
|
getObject(arg0).stencilFunc(arg1 >>> 0, arg2, arg3 >>> 0);
|
|
};
|
|
imports.wbg.__wbg_stencilMask_9abfc669d9c2a893 = function(arg0, arg1) {
|
|
getObject(arg0).stencilMask(arg1 >>> 0);
|
|
};
|
|
imports.wbg.__wbg_stencilOp_a085ec75f6ad3ff8 = function(arg0, arg1, arg2, arg3) {
|
|
getObject(arg0).stencilOp(arg1 >>> 0, arg2 >>> 0, arg3 >>> 0);
|
|
};
|
|
imports.wbg.__wbg_texParameterf_9f6fb2515971c39a = function(arg0, arg1, arg2, arg3) {
|
|
getObject(arg0).texParameterf(arg1 >>> 0, arg2 >>> 0, arg3);
|
|
};
|
|
imports.wbg.__wbg_texParameteri_8f70dffce11d7da1 = function(arg0, arg1, arg2, arg3) {
|
|
getObject(arg0).texParameteri(arg1 >>> 0, arg2 >>> 0, arg3);
|
|
};
|
|
imports.wbg.__wbg_uniform1f_9b9e5339e7560722 = function(arg0, arg1, arg2) {
|
|
getObject(arg0).uniform1f(getObject(arg1), arg2);
|
|
};
|
|
imports.wbg.__wbg_uniform1i_bdcd75be097285e6 = function(arg0, arg1, arg2) {
|
|
getObject(arg0).uniform1i(getObject(arg1), arg2);
|
|
};
|
|
imports.wbg.__wbg_uniform2f_e8287b8c104117ac = function(arg0, arg1, arg2, arg3) {
|
|
getObject(arg0).uniform2f(getObject(arg1), arg2, arg3);
|
|
};
|
|
imports.wbg.__wbg_uniform3f_33d80ae15223c6db = function(arg0, arg1, arg2, arg3, arg4) {
|
|
getObject(arg0).uniform3f(getObject(arg1), arg2, arg3, arg4);
|
|
};
|
|
imports.wbg.__wbg_uniform4f_b143081575a3bb56 = function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
getObject(arg0).uniform4f(getObject(arg1), arg2, arg3, arg4, arg5);
|
|
};
|
|
imports.wbg.__wbg_useProgram_757fab437af29c20 = function(arg0, arg1) {
|
|
getObject(arg0).useProgram(getObject(arg1));
|
|
};
|
|
imports.wbg.__wbg_vertexAttribPointer_4416f0325c02aa13 = function(arg0, arg1, arg2, arg3, arg4, arg5, arg6) {
|
|
getObject(arg0).vertexAttribPointer(arg1 >>> 0, arg2, arg3 >>> 0, arg4 !== 0, arg5, arg6);
|
|
};
|
|
imports.wbg.__wbg_viewport_7414e7e2a83afc72 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
getObject(arg0).viewport(arg1, arg2, arg3, arg4);
|
|
};
|
|
imports.wbg.__wbg_instanceof_Window_f401953a2cf86220 = function(arg0) {
|
|
let result;
|
|
try {
|
|
result = getObject(arg0) instanceof Window;
|
|
} catch (_) {
|
|
result = false;
|
|
}
|
|
const ret = result;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_document_5100775d18896c16 = function(arg0) {
|
|
const ret = getObject(arg0).document;
|
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_devicePixelRatio_efc553b59506f64c = function(arg0) {
|
|
const ret = getObject(arg0).devicePixelRatio;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_cancelIdleCallback_3a36cf77475b492b = function(arg0, arg1) {
|
|
getObject(arg0).cancelIdleCallback(arg1 >>> 0);
|
|
};
|
|
imports.wbg.__wbg_getComputedStyle_078292ffe423aded = function() { return handleError(function (arg0, arg1) {
|
|
const ret = getObject(arg0).getComputedStyle(getObject(arg1));
|
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_matchMedia_66bb21e3ef19270c = function() { return handleError(function (arg0, arg1, arg2) {
|
|
const ret = getObject(arg0).matchMedia(getStringFromWasm0(arg1, arg2));
|
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_requestIdleCallback_cee8e1d6bdcfae9e = function() { return handleError(function (arg0, arg1) {
|
|
const ret = getObject(arg0).requestIdleCallback(getObject(arg1));
|
|
return ret;
|
|
}, arguments) };
|
|
imports.wbg.__wbg_cancelAnimationFrame_111532f326e480af = function() { return handleError(function (arg0, arg1) {
|
|
getObject(arg0).cancelAnimationFrame(arg1);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_requestAnimationFrame_549258cfa66011f0 = function() { return handleError(function (arg0, arg1) {
|
|
const ret = getObject(arg0).requestAnimationFrame(getObject(arg1));
|
|
return ret;
|
|
}, arguments) };
|
|
imports.wbg.__wbg_clearTimeout_ba63ae54a36e111e = function(arg0, arg1) {
|
|
getObject(arg0).clearTimeout(arg1);
|
|
};
|
|
imports.wbg.__wbg_fetch_5aed618e85a9cc28 = function(arg0, arg1, arg2) {
|
|
const ret = getObject(arg0).fetch(getStringFromWasm0(arg1, arg2));
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_setTimeout_d2b9a986d10a6182 = function() { return handleError(function (arg0, arg1) {
|
|
const ret = getObject(arg0).setTimeout(getObject(arg1));
|
|
return ret;
|
|
}, arguments) };
|
|
imports.wbg.__wbg_setTimeout_c172d5704ef82276 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
const ret = getObject(arg0).setTimeout(getObject(arg1), arg2);
|
|
return ret;
|
|
}, arguments) };
|
|
imports.wbg.__wbg_body_edb1908d3ceff3a1 = function(arg0) {
|
|
const ret = getObject(arg0).body;
|
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_visibilityState_990071edf70b1c55 = function(arg0) {
|
|
const ret = getObject(arg0).visibilityState;
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_activeElement_fa7feca08f5028c0 = function(arg0) {
|
|
const ret = getObject(arg0).activeElement;
|
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_fullscreenElement_1bef71098bd8dfde = function(arg0) {
|
|
const ret = getObject(arg0).fullscreenElement;
|
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_createElement_8bae7856a4bb7411 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
const ret = getObject(arg0).createElement(getStringFromWasm0(arg1, arg2));
|
|
return addHeapObject(ret);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_getBoundingClientRect_91e6d57c4e65f745 = function(arg0) {
|
|
const ret = getObject(arg0).getBoundingClientRect();
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_setAttribute_3c9f6c303b696daa = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
getObject(arg0).setAttribute(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
}, arguments) };
|
|
imports.wbg.__wbg_setPointerCapture_0fdaad7a916c8486 = function() { return handleError(function (arg0, arg1) {
|
|
getObject(arg0).setPointerCapture(arg1);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_style_c3fc3dd146182a2d = function(arg0) {
|
|
const ret = getObject(arg0).style;
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_focus_39d4b8ba8ff9df14 = function() { return handleError(function (arg0) {
|
|
getObject(arg0).focus();
|
|
}, arguments) };
|
|
imports.wbg.__wbg_bufferData_5d1e6b8eaa7d23c8 = function(arg0, arg1, arg2, arg3) {
|
|
getObject(arg0).bufferData(arg1 >>> 0, getObject(arg2), arg3 >>> 0);
|
|
};
|
|
imports.wbg.__wbg_bufferSubData_a6cea5e056662bd7 = function(arg0, arg1, arg2, arg3) {
|
|
getObject(arg0).bufferSubData(arg1 >>> 0, arg2, getObject(arg3));
|
|
};
|
|
imports.wbg.__wbg_compressedTexImage2D_7281817b21d687b6 = function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
getObject(arg0).compressedTexImage2D(arg1 >>> 0, arg2, arg3 >>> 0, arg4, arg5, arg6, getObject(arg7));
|
|
};
|
|
imports.wbg.__wbg_texImage2D_a14a3c7863e25c89 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
|
|
getObject(arg0).texImage2D(arg1 >>> 0, arg2, arg3, arg4, arg5, arg6, arg7 >>> 0, arg8 >>> 0, getObject(arg9));
|
|
}, arguments) };
|
|
imports.wbg.__wbg_uniform1fv_c8526e876e1ab4cb = function(arg0, arg1, arg2, arg3) {
|
|
getObject(arg0).uniform1fv(getObject(arg1), getArrayF32FromWasm0(arg2, arg3));
|
|
};
|
|
imports.wbg.__wbg_uniform1iv_3e12a0cd690008b1 = function(arg0, arg1, arg2, arg3) {
|
|
getObject(arg0).uniform1iv(getObject(arg1), getArrayI32FromWasm0(arg2, arg3));
|
|
};
|
|
imports.wbg.__wbg_uniform2fv_dcb8b73e2637092a = function(arg0, arg1, arg2, arg3) {
|
|
getObject(arg0).uniform2fv(getObject(arg1), getArrayF32FromWasm0(arg2, arg3));
|
|
};
|
|
imports.wbg.__wbg_uniform3fv_3e32c897d3ed1eaa = function(arg0, arg1, arg2, arg3) {
|
|
getObject(arg0).uniform3fv(getObject(arg1), getArrayF32FromWasm0(arg2, arg3));
|
|
};
|
|
imports.wbg.__wbg_uniform4fv_980ce05d950ee599 = function(arg0, arg1, arg2, arg3) {
|
|
getObject(arg0).uniform4fv(getObject(arg1), getArrayF32FromWasm0(arg2, arg3));
|
|
};
|
|
imports.wbg.__wbg_uniformMatrix2fv_4417ed4d88a140be = function(arg0, arg1, arg2, arg3, arg4) {
|
|
getObject(arg0).uniformMatrix2fv(getObject(arg1), arg2 !== 0, getArrayF32FromWasm0(arg3, arg4));
|
|
};
|
|
imports.wbg.__wbg_uniformMatrix3fv_d46553a1248946b5 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
getObject(arg0).uniformMatrix3fv(getObject(arg1), arg2 !== 0, getArrayF32FromWasm0(arg3, arg4));
|
|
};
|
|
imports.wbg.__wbg_uniformMatrix4fv_cd46ed81bccb0cb2 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
getObject(arg0).uniformMatrix4fv(getObject(arg1), arg2 !== 0, getArrayF32FromWasm0(arg3, arg4));
|
|
};
|
|
imports.wbg.__wbg_activeTexture_5f084e1b3f14853e = function(arg0, arg1) {
|
|
getObject(arg0).activeTexture(arg1 >>> 0);
|
|
};
|
|
imports.wbg.__wbg_attachShader_6397dc4fd87343d3 = function(arg0, arg1, arg2) {
|
|
getObject(arg0).attachShader(getObject(arg1), getObject(arg2));
|
|
};
|
|
imports.wbg.__wbg_bindBuffer_1e5043751efddd4f = function(arg0, arg1, arg2) {
|
|
getObject(arg0).bindBuffer(arg1 >>> 0, getObject(arg2));
|
|
};
|
|
imports.wbg.__wbg_bindFramebuffer_c301d73a2c2842bb = function(arg0, arg1, arg2) {
|
|
getObject(arg0).bindFramebuffer(arg1 >>> 0, getObject(arg2));
|
|
};
|
|
imports.wbg.__wbg_bindTexture_772f5eb022019d87 = function(arg0, arg1, arg2) {
|
|
getObject(arg0).bindTexture(arg1 >>> 0, getObject(arg2));
|
|
};
|
|
imports.wbg.__wbg_blendEquationSeparate_721f30ba584a5233 = function(arg0, arg1, arg2) {
|
|
getObject(arg0).blendEquationSeparate(arg1 >>> 0, arg2 >>> 0);
|
|
};
|
|
imports.wbg.__wbg_blendFuncSeparate_abe2ad4272c8365e = function(arg0, arg1, arg2, arg3, arg4) {
|
|
getObject(arg0).blendFuncSeparate(arg1 >>> 0, arg2 >>> 0, arg3 >>> 0, arg4 >>> 0);
|
|
};
|
|
imports.wbg.__wbg_checkFramebufferStatus_2380be4caf464ead = function(arg0, arg1) {
|
|
const ret = getObject(arg0).checkFramebufferStatus(arg1 >>> 0);
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_clear_f9731a47df2e70d8 = function(arg0, arg1) {
|
|
getObject(arg0).clear(arg1 >>> 0);
|
|
};
|
|
imports.wbg.__wbg_clearColor_42707553c40e0e0f = function(arg0, arg1, arg2, arg3, arg4) {
|
|
getObject(arg0).clearColor(arg1, arg2, arg3, arg4);
|
|
};
|
|
imports.wbg.__wbg_clearDepth_42ac48f2ab25c419 = function(arg0, arg1) {
|
|
getObject(arg0).clearDepth(arg1);
|
|
};
|
|
imports.wbg.__wbg_clearStencil_0f906e2d8b61aa7a = function(arg0, arg1) {
|
|
getObject(arg0).clearStencil(arg1);
|
|
};
|
|
imports.wbg.__wbg_colorMask_03aa359acc86fd70 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
getObject(arg0).colorMask(arg1 !== 0, arg2 !== 0, arg3 !== 0, arg4 !== 0);
|
|
};
|
|
imports.wbg.__wbg_compileShader_3af4719dfdb508e3 = function(arg0, arg1) {
|
|
getObject(arg0).compileShader(getObject(arg1));
|
|
};
|
|
imports.wbg.__wbg_createBuffer_34e01f5c10929b41 = function(arg0) {
|
|
const ret = getObject(arg0).createBuffer();
|
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_createFramebuffer_49ca64e9e1c6f5eb = function(arg0) {
|
|
const ret = getObject(arg0).createFramebuffer();
|
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_createProgram_9affbfa62b7b2608 = function(arg0) {
|
|
const ret = getObject(arg0).createProgram();
|
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_createShader_55ca04b44164bd41 = function(arg0, arg1) {
|
|
const ret = getObject(arg0).createShader(arg1 >>> 0);
|
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_createTexture_c13c31b2b132c17f = function(arg0) {
|
|
const ret = getObject(arg0).createTexture();
|
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_cullFace_af37bb1c2d22ab73 = function(arg0, arg1) {
|
|
getObject(arg0).cullFace(arg1 >>> 0);
|
|
};
|
|
imports.wbg.__wbg_deleteBuffer_96df38349e3487d2 = function(arg0, arg1) {
|
|
getObject(arg0).deleteBuffer(getObject(arg1));
|
|
};
|
|
imports.wbg.__wbg_deleteFramebuffer_417b62b6156d4894 = function(arg0, arg1) {
|
|
getObject(arg0).deleteFramebuffer(getObject(arg1));
|
|
};
|
|
imports.wbg.__wbg_deleteProgram_641402f7551587d8 = function(arg0, arg1) {
|
|
getObject(arg0).deleteProgram(getObject(arg1));
|
|
};
|
|
imports.wbg.__wbg_deleteShader_e5c778f25b722e68 = function(arg0, arg1) {
|
|
getObject(arg0).deleteShader(getObject(arg1));
|
|
};
|
|
imports.wbg.__wbg_deleteTexture_f89d8e417b156960 = function(arg0, arg1) {
|
|
getObject(arg0).deleteTexture(getObject(arg1));
|
|
};
|
|
imports.wbg.__wbg_depthFunc_1ee4bf1e0127bf7f = function(arg0, arg1) {
|
|
getObject(arg0).depthFunc(arg1 >>> 0);
|
|
};
|
|
imports.wbg.__wbg_depthMask_dd6cd8a9aff90e5c = function(arg0, arg1) {
|
|
getObject(arg0).depthMask(arg1 !== 0);
|
|
};
|
|
imports.wbg.__wbg_disable_5dd8c3842de93e92 = function(arg0, arg1) {
|
|
getObject(arg0).disable(arg1 >>> 0);
|
|
};
|
|
imports.wbg.__wbg_drawElements_0861624300587fcd = function(arg0, arg1, arg2, arg3, arg4) {
|
|
getObject(arg0).drawElements(arg1 >>> 0, arg2, arg3 >>> 0, arg4);
|
|
};
|
|
imports.wbg.__wbg_enable_7abe812a71c76206 = function(arg0, arg1) {
|
|
getObject(arg0).enable(arg1 >>> 0);
|
|
};
|
|
imports.wbg.__wbg_enableVertexAttribArray_6d44444aa994f42a = function(arg0, arg1) {
|
|
getObject(arg0).enableVertexAttribArray(arg1 >>> 0);
|
|
};
|
|
imports.wbg.__wbg_framebufferTexture2D_66e1968fd5b7b3e3 = function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
getObject(arg0).framebufferTexture2D(arg1 >>> 0, arg2 >>> 0, arg3 >>> 0, getObject(arg4), arg5);
|
|
};
|
|
imports.wbg.__wbg_getParameter_a77768abe8a51f24 = function() { return handleError(function (arg0, arg1) {
|
|
const ret = getObject(arg0).getParameter(arg1 >>> 0);
|
|
return addHeapObject(ret);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_getProgramInfoLog_bf1fba8fa90667c7 = function(arg0, arg1, arg2) {
|
|
const ret = getObject(arg1).getProgramInfoLog(getObject(arg2));
|
|
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
var len1 = WASM_VECTOR_LEN;
|
|
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
};
|
|
imports.wbg.__wbg_getProgramParameter_10c8a43809fb8c2e = function(arg0, arg1, arg2) {
|
|
const ret = getObject(arg0).getProgramParameter(getObject(arg1), arg2 >>> 0);
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_getShaderInfoLog_0262cb299092ce92 = function(arg0, arg1, arg2) {
|
|
const ret = getObject(arg1).getShaderInfoLog(getObject(arg2));
|
|
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
var len1 = WASM_VECTOR_LEN;
|
|
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
};
|
|
imports.wbg.__wbg_getShaderParameter_60b69083e8d662ce = function(arg0, arg1, arg2) {
|
|
const ret = getObject(arg0).getShaderParameter(getObject(arg1), arg2 >>> 0);
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_getUniformLocation_6eedfb513ccce732 = function(arg0, arg1, arg2, arg3) {
|
|
const ret = getObject(arg0).getUniformLocation(getObject(arg1), getStringFromWasm0(arg2, arg3));
|
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_linkProgram_af5fed9dc3f1cdf9 = function(arg0, arg1) {
|
|
getObject(arg0).linkProgram(getObject(arg1));
|
|
};
|
|
imports.wbg.__wbg_pixelStorei_054e50b5fdc17824 = function(arg0, arg1, arg2) {
|
|
getObject(arg0).pixelStorei(arg1 >>> 0, arg2);
|
|
};
|
|
imports.wbg.__wbg_scissor_75ba2245d4db0eaf = function(arg0, arg1, arg2, arg3, arg4) {
|
|
getObject(arg0).scissor(arg1, arg2, arg3, arg4);
|
|
};
|
|
imports.wbg.__wbg_shaderSource_7891a1fcb69a0023 = function(arg0, arg1, arg2, arg3) {
|
|
getObject(arg0).shaderSource(getObject(arg1), getStringFromWasm0(arg2, arg3));
|
|
};
|
|
imports.wbg.__wbg_stencilFunc_9980bd97f7a51bcc = function(arg0, arg1, arg2, arg3) {
|
|
getObject(arg0).stencilFunc(arg1 >>> 0, arg2, arg3 >>> 0);
|
|
};
|
|
imports.wbg.__wbg_stencilMask_c5ad44ea27c5f169 = function(arg0, arg1) {
|
|
getObject(arg0).stencilMask(arg1 >>> 0);
|
|
};
|
|
imports.wbg.__wbg_stencilOp_f851ac834ef05b40 = function(arg0, arg1, arg2, arg3) {
|
|
getObject(arg0).stencilOp(arg1 >>> 0, arg2 >>> 0, arg3 >>> 0);
|
|
};
|
|
imports.wbg.__wbg_texParameterf_e0e6bec0ed80b4a4 = function(arg0, arg1, arg2, arg3) {
|
|
getObject(arg0).texParameterf(arg1 >>> 0, arg2 >>> 0, arg3);
|
|
};
|
|
imports.wbg.__wbg_texParameteri_d1035ed45d6c5655 = function(arg0, arg1, arg2, arg3) {
|
|
getObject(arg0).texParameteri(arg1 >>> 0, arg2 >>> 0, arg3);
|
|
};
|
|
imports.wbg.__wbg_uniform1f_8914cb45b3ad5887 = function(arg0, arg1, arg2) {
|
|
getObject(arg0).uniform1f(getObject(arg1), arg2);
|
|
};
|
|
imports.wbg.__wbg_uniform1i_badd5ff70c0d30bf = function(arg0, arg1, arg2) {
|
|
getObject(arg0).uniform1i(getObject(arg1), arg2);
|
|
};
|
|
imports.wbg.__wbg_uniform2f_dbf02e46dd8c211d = function(arg0, arg1, arg2, arg3) {
|
|
getObject(arg0).uniform2f(getObject(arg1), arg2, arg3);
|
|
};
|
|
imports.wbg.__wbg_uniform3f_866e96669df4a3d2 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
getObject(arg0).uniform3f(getObject(arg1), arg2, arg3, arg4);
|
|
};
|
|
imports.wbg.__wbg_uniform4f_fb56c7f4de64dd4c = function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
getObject(arg0).uniform4f(getObject(arg1), arg2, arg3, arg4, arg5);
|
|
};
|
|
imports.wbg.__wbg_useProgram_c637e43f9cd4c07a = function(arg0, arg1) {
|
|
getObject(arg0).useProgram(getObject(arg1));
|
|
};
|
|
imports.wbg.__wbg_vertexAttribPointer_c25e4c5ed17f8a1d = function(arg0, arg1, arg2, arg3, arg4, arg5, arg6) {
|
|
getObject(arg0).vertexAttribPointer(arg1 >>> 0, arg2, arg3 >>> 0, arg4 !== 0, arg5, arg6);
|
|
};
|
|
imports.wbg.__wbg_viewport_221ade2aef6032c8 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
getObject(arg0).viewport(arg1, arg2, arg3, arg4);
|
|
};
|
|
imports.wbg.__wbg_vertexAttribDivisorANGLE_b258d7388e466921 = function(arg0, arg1, arg2) {
|
|
getObject(arg0).vertexAttribDivisorANGLE(arg1 >>> 0, arg2 >>> 0);
|
|
};
|
|
imports.wbg.__wbg_addEventListener_53b787075bd5e003 = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
getObject(arg0).addEventListener(getStringFromWasm0(arg1, arg2), getObject(arg3));
|
|
}, arguments) };
|
|
imports.wbg.__wbg_removeEventListener_92cb9b3943463338 = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
getObject(arg0).removeEventListener(getStringFromWasm0(arg1, arg2), getObject(arg3));
|
|
}, arguments) };
|
|
imports.wbg.__wbg_setwidth_080107476e633963 = function(arg0, arg1) {
|
|
getObject(arg0).width = arg1 >>> 0;
|
|
};
|
|
imports.wbg.__wbg_setheight_dc240617639f1f51 = function(arg0, arg1) {
|
|
getObject(arg0).height = arg1 >>> 0;
|
|
};
|
|
imports.wbg.__wbg_getContext_df50fa48a8876636 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
const ret = getObject(arg0).getContext(getStringFromWasm0(arg1, arg2));
|
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_new_4e95a9abecc83cd4 = function() { return handleError(function (arg0) {
|
|
const ret = new IntersectionObserver(getObject(arg0));
|
|
return addHeapObject(ret);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_disconnect_e694940ce6d0ef91 = function(arg0) {
|
|
getObject(arg0).disconnect();
|
|
};
|
|
imports.wbg.__wbg_observe_538a6d1df0deb993 = function(arg0, arg1) {
|
|
getObject(arg0).observe(getObject(arg1));
|
|
};
|
|
imports.wbg.__wbg_bindVertexArrayOES_abe2fd389c6a2f56 = function(arg0, arg1) {
|
|
getObject(arg0).bindVertexArrayOES(getObject(arg1));
|
|
};
|
|
imports.wbg.__wbg_createVertexArrayOES_886be8a08db32ce6 = function(arg0) {
|
|
const ret = getObject(arg0).createVertexArrayOES();
|
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_deleteVertexArrayOES_153f352862874f30 = function(arg0, arg1) {
|
|
getObject(arg0).deleteVertexArrayOES(getObject(arg1));
|
|
};
|
|
imports.wbg.__wbg_signal_a61f78a3478fd9bc = function(arg0) {
|
|
const ret = getObject(arg0).signal;
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_new_0d76b0581eca6298 = function() { return handleError(function () {
|
|
const ret = new AbortController();
|
|
return addHeapObject(ret);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_abort_2aa7521d5690750e = function(arg0) {
|
|
getObject(arg0).abort();
|
|
};
|
|
imports.wbg.__wbg_new_61d4f20a1c08a45c = function() { return handleError(function (arg0) {
|
|
const ret = new ResizeObserver(getObject(arg0));
|
|
return addHeapObject(ret);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_disconnect_6675f32e2ae8deb7 = function(arg0) {
|
|
getObject(arg0).disconnect();
|
|
};
|
|
imports.wbg.__wbg_observe_a79646ce7bb08cb8 = function(arg0, arg1) {
|
|
getObject(arg0).observe(getObject(arg1));
|
|
};
|
|
imports.wbg.__wbg_observe_dc0ebcd59ee7cd17 = function(arg0, arg1, arg2) {
|
|
getObject(arg0).observe(getObject(arg1), getObject(arg2));
|
|
};
|
|
imports.wbg.__wbg_unobserve_55c93518cad6ac06 = function(arg0, arg1) {
|
|
getObject(arg0).unobserve(getObject(arg1));
|
|
};
|
|
imports.wbg.__wbg_x_c0e76d143979338a = function(arg0) {
|
|
const ret = getObject(arg0).x;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_y_047a9fda606ab8ef = function(arg0) {
|
|
const ret = getObject(arg0).y;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_width_1e8430024cb82aba = function(arg0) {
|
|
const ret = getObject(arg0).width;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_height_0c1394f089d7bb71 = function(arg0) {
|
|
const ret = getObject(arg0).height;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_port1_d51a1bd2c33125d0 = function(arg0) {
|
|
const ret = getObject(arg0).port1;
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_port2_f522a81e92362e7e = function(arg0) {
|
|
const ret = getObject(arg0).port2;
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_new_34615e164dc78975 = function() { return handleError(function () {
|
|
const ret = new MessageChannel();
|
|
return addHeapObject(ret);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_ctrlKey_008695ce60a588f5 = function(arg0) {
|
|
const ret = getObject(arg0).ctrlKey;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_shiftKey_1e76dbfcdd36a4b4 = function(arg0) {
|
|
const ret = getObject(arg0).shiftKey;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_altKey_07da841b54bd3ed6 = function(arg0) {
|
|
const ret = getObject(arg0).altKey;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_metaKey_86bfd3b0d3a8083f = function(arg0) {
|
|
const ret = getObject(arg0).metaKey;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_button_367cdc7303e3cf9b = function(arg0) {
|
|
const ret = getObject(arg0).button;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_buttons_d004fa75ac704227 = function(arg0) {
|
|
const ret = getObject(arg0).buttons;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_movementX_b800a0cacd14d9bf = function(arg0) {
|
|
const ret = getObject(arg0).movementX;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_movementY_7907e03eb8c0ea1e = function(arg0) {
|
|
const ret = getObject(arg0).movementY;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_setbuffer_1793c076d39c6617 = function(arg0, arg1) {
|
|
getObject(arg0).buffer = getObject(arg1);
|
|
};
|
|
imports.wbg.__wbg_setonended_ad220d8d48b1642c = function(arg0, arg1) {
|
|
getObject(arg0).onended = getObject(arg1);
|
|
};
|
|
imports.wbg.__wbg_start_07ac75070dcdd1a2 = function() { return handleError(function (arg0, arg1) {
|
|
getObject(arg0).start(arg1);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_destination_0014df38da590ed6 = function(arg0) {
|
|
const ret = getObject(arg0).destination;
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_currentTime_9bc85e1579050a3f = function(arg0) {
|
|
const ret = getObject(arg0).currentTime;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_newwithcontextoptions_cd911d6d2ece88e4 = function() { return handleError(function (arg0) {
|
|
const ret = new lAudioContext(getObject(arg0));
|
|
return addHeapObject(ret);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_close_72f0f505a65b831b = function() { return handleError(function (arg0) {
|
|
const ret = getObject(arg0).close();
|
|
return addHeapObject(ret);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_createBuffer_2db05bc15a2e2745 = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
const ret = getObject(arg0).createBuffer(arg1 >>> 0, arg2 >>> 0, arg3);
|
|
return addHeapObject(ret);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_createBufferSource_0d65cd58ccd38511 = function() { return handleError(function (arg0) {
|
|
const ret = getObject(arg0).createBufferSource();
|
|
return addHeapObject(ret);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_resume_cda1a6cb84e7cf47 = function() { return handleError(function (arg0) {
|
|
const ret = getObject(arg0).resume();
|
|
return addHeapObject(ret);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_now_4e659b3d15f470d9 = function(arg0) {
|
|
const ret = getObject(arg0).now();
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_deltaX_206576827ededbe5 = function(arg0) {
|
|
const ret = getObject(arg0).deltaX;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_deltaY_032e327e216f2b2b = function(arg0) {
|
|
const ret = getObject(arg0).deltaY;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_deltaMode_294b2eaf54047265 = function(arg0) {
|
|
const ret = getObject(arg0).deltaMode;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_appendChild_580ccb11a660db68 = function() { return handleError(function (arg0, arg1) {
|
|
const ret = getObject(arg0).appendChild(getObject(arg1));
|
|
return addHeapObject(ret);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_contains_fdfd1dc667f36695 = function(arg0, arg1) {
|
|
const ret = getObject(arg0).contains(getObject(arg1));
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_inlineSize_ff0e40258cefeba2 = function(arg0) {
|
|
const ret = getObject(arg0).inlineSize;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_blockSize_73f4e5608c08713d = function(arg0) {
|
|
const ret = getObject(arg0).blockSize;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_connect_186433827476e7d8 = function() { return handleError(function (arg0, arg1) {
|
|
const ret = getObject(arg0).connect(getObject(arg1));
|
|
return addHeapObject(ret);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_getPropertyValue_fa32ee1811f224cb = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
const ret = getObject(arg1).getPropertyValue(getStringFromWasm0(arg2, arg3));
|
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
const len1 = WASM_VECTOR_LEN;
|
|
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
}, arguments) };
|
|
imports.wbg.__wbg_removeProperty_fa6d48e2923dcfac = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
const ret = getObject(arg1).removeProperty(getStringFromWasm0(arg2, arg3));
|
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
const len1 = WASM_VECTOR_LEN;
|
|
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
}, arguments) };
|
|
imports.wbg.__wbg_setProperty_ea7d15a2b591aa97 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
getObject(arg0).setProperty(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
}, arguments) };
|
|
imports.wbg.__wbg_isIntersecting_082397a1d66e2e35 = function(arg0) {
|
|
const ret = getObject(arg0).isIntersecting;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_altKey_2e6c34c37088d8b1 = function(arg0) {
|
|
const ret = getObject(arg0).altKey;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_ctrlKey_bb5b6fef87339703 = function(arg0) {
|
|
const ret = getObject(arg0).ctrlKey;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_shiftKey_5911baf439ab232b = function(arg0) {
|
|
const ret = getObject(arg0).shiftKey;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_metaKey_6bf4ae4e83a11278 = function(arg0) {
|
|
const ret = getObject(arg0).metaKey;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_location_f7b033ddfc516739 = function(arg0) {
|
|
const ret = getObject(arg0).location;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_repeat_f64b916c6eed0685 = function(arg0) {
|
|
const ret = getObject(arg0).repeat;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_key_dccf9e8aa1315a8e = function(arg0, arg1) {
|
|
const ret = getObject(arg1).key;
|
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
const len1 = WASM_VECTOR_LEN;
|
|
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
};
|
|
imports.wbg.__wbg_code_3b0c3912a2351163 = function(arg0, arg1) {
|
|
const ret = getObject(arg1).code;
|
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
const len1 = WASM_VECTOR_LEN;
|
|
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
};
|
|
imports.wbg.__wbg_pointerId_e030fa156647fedd = function(arg0) {
|
|
const ret = getObject(arg0).pointerId;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_pressure_99cd07399f942a7c = function(arg0) {
|
|
const ret = getObject(arg0).pressure;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_pointerType_0f2f0383406aa7fa = function(arg0, arg1) {
|
|
const ret = getObject(arg1).pointerType;
|
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
const len1 = WASM_VECTOR_LEN;
|
|
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
};
|
|
imports.wbg.__wbg_getCoalescedEvents_14b443b6f75837a2 = function(arg0) {
|
|
const ret = getObject(arg0).getCoalescedEvents();
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_contentRect_bce644376332c7a5 = function(arg0) {
|
|
const ret = getObject(arg0).contentRect;
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_devicePixelContentBoxSize_d5bcdcd5e96671f3 = function(arg0) {
|
|
const ret = getObject(arg0).devicePixelContentBoxSize;
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_persisted_cbb7e3c657029516 = function(arg0) {
|
|
const ret = getObject(arg0).persisted;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_drawBuffersWEBGL_4c663e042e093892 = function(arg0, arg1) {
|
|
getObject(arg0).drawBuffersWEBGL(getObject(arg1));
|
|
};
|
|
imports.wbg.__wbg_error_6e987ee48d9fdf45 = function(arg0, arg1) {
|
|
console.error(getObject(arg0), getObject(arg1));
|
|
};
|
|
imports.wbg.__wbg_copyToChannel_c5200b51ff33f8a3 = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
getObject(arg0).copyToChannel(getArrayF32FromWasm0(arg1, arg2), arg3);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_preventDefault_b1a4aafc79409429 = function(arg0) {
|
|
getObject(arg0).preventDefault();
|
|
};
|
|
imports.wbg.__wbg_media_bcef0e2ec4383569 = function(arg0, arg1) {
|
|
const ret = getObject(arg1).media;
|
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
const len1 = WASM_VECTOR_LEN;
|
|
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
};
|
|
imports.wbg.__wbg_matches_e14ed9ff8291cf24 = function(arg0) {
|
|
const ret = getObject(arg0).matches;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_addListener_143ad0a501fabc3a = function() { return handleError(function (arg0, arg1) {
|
|
getObject(arg0).addListener(getObject(arg1));
|
|
}, arguments) };
|
|
imports.wbg.__wbg_removeListener_46f3ee00c5b95320 = function() { return handleError(function (arg0, arg1) {
|
|
getObject(arg0).removeListener(getObject(arg1));
|
|
}, arguments) };
|
|
imports.wbg.__wbg_setonmessage_93bdba94dcd46c04 = function(arg0, arg1) {
|
|
getObject(arg0).onmessage = getObject(arg1);
|
|
};
|
|
imports.wbg.__wbg_close_a5883ed21dc3d115 = function(arg0) {
|
|
getObject(arg0).close();
|
|
};
|
|
imports.wbg.__wbg_postMessage_fbddfe9314af804e = function() { return handleError(function (arg0, arg1) {
|
|
getObject(arg0).postMessage(getObject(arg1));
|
|
}, arguments) };
|
|
imports.wbg.__wbg_start_5a293222bc398f51 = function(arg0) {
|
|
getObject(arg0).start();
|
|
};
|
|
imports.wbg.__wbg_instanceof_Response_849eb93e75734b6e = function(arg0) {
|
|
let result;
|
|
try {
|
|
result = getObject(arg0) instanceof Response;
|
|
} catch (_) {
|
|
result = false;
|
|
}
|
|
const ret = result;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_status_61a01141acd3cf74 = function(arg0) {
|
|
const ret = getObject(arg0).status;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_arrayBuffer_29931d52c7206b02 = function() { return handleError(function (arg0) {
|
|
const ret = getObject(arg0).arrayBuffer();
|
|
return addHeapObject(ret);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_queueMicrotask_481971b0d87f3dd4 = function(arg0) {
|
|
queueMicrotask(getObject(arg0));
|
|
};
|
|
imports.wbg.__wbg_queueMicrotask_3cbae2ec6b6cd3d6 = function(arg0) {
|
|
const ret = getObject(arg0).queueMicrotask;
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbindgen_is_function = function(arg0) {
|
|
const ret = typeof(getObject(arg0)) === 'function';
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_crypto_d05b68a3572bb8ca = function(arg0) {
|
|
const ret = getObject(arg0).crypto;
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbindgen_is_object = function(arg0) {
|
|
const val = getObject(arg0);
|
|
const ret = typeof(val) === 'object' && val !== null;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_process_b02b3570280d0366 = function(arg0) {
|
|
const ret = getObject(arg0).process;
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_versions_c1cb42213cedf0f5 = function(arg0) {
|
|
const ret = getObject(arg0).versions;
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_node_43b1089f407e4ec2 = function(arg0) {
|
|
const ret = getObject(arg0).node;
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbindgen_is_string = function(arg0) {
|
|
const ret = typeof(getObject(arg0)) === 'string';
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_msCrypto_10fc94afee92bd76 = function(arg0) {
|
|
const ret = getObject(arg0).msCrypto;
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_require_9a7e0f667ead4995 = function() { return handleError(function () {
|
|
const ret = module.require;
|
|
return addHeapObject(ret);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_randomFillSync_b70ccbdf4926a99d = function() { return handleError(function (arg0, arg1) {
|
|
getObject(arg0).randomFillSync(takeObject(arg1));
|
|
}, arguments) };
|
|
imports.wbg.__wbg_getRandomValues_7e42b4fb8779dc6d = function() { return handleError(function (arg0, arg1) {
|
|
getObject(arg0).getRandomValues(getObject(arg1));
|
|
}, arguments) };
|
|
imports.wbg.__wbg_get_bd8e338fbd5f5cc8 = function(arg0, arg1) {
|
|
const ret = getObject(arg0)[arg1 >>> 0];
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_length_cd7af8117672b8b8 = function(arg0) {
|
|
const ret = getObject(arg0).length;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_new_16b304a2cfa7ff4a = function() {
|
|
const ret = new Array();
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_newnoargs_e258087cd0daa0ea = function(arg0, arg1) {
|
|
const ret = new Function(getStringFromWasm0(arg0, arg1));
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_get_e3c254076557e348 = function() { return handleError(function (arg0, arg1) {
|
|
const ret = Reflect.get(getObject(arg0), getObject(arg1));
|
|
return addHeapObject(ret);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_call_27c0f87801dedf93 = function() { return handleError(function (arg0, arg1) {
|
|
const ret = getObject(arg0).call(getObject(arg1));
|
|
return addHeapObject(ret);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_new_72fb9a18b5ae2624 = function() {
|
|
const ret = new Object();
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_self_ce0dbfc45cf2f5be = function() { return handleError(function () {
|
|
const ret = self.self;
|
|
return addHeapObject(ret);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_window_c6fb939a7f436783 = function() { return handleError(function () {
|
|
const ret = window.window;
|
|
return addHeapObject(ret);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_globalThis_d1e6af4856ba331b = function() { return handleError(function () {
|
|
const ret = globalThis.globalThis;
|
|
return addHeapObject(ret);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_global_207b558942527489 = function() { return handleError(function () {
|
|
const ret = global.global;
|
|
return addHeapObject(ret);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_of_4a2b313a453ec059 = function(arg0) {
|
|
const ret = Array.of(getObject(arg0));
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_push_a5b05aedc7234f9f = function(arg0, arg1) {
|
|
const ret = getObject(arg0).push(getObject(arg1));
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_call_b3ca7c6051f9bec1 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
const ret = getObject(arg0).call(getObject(arg1), getObject(arg2));
|
|
return addHeapObject(ret);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_getOwnPropertyDescriptor_fcb32c9a1f90b136 = function(arg0, arg1) {
|
|
const ret = Object.getOwnPropertyDescriptor(getObject(arg0), getObject(arg1));
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_is_010fdc0f4ab96916 = function(arg0, arg1) {
|
|
const ret = Object.is(getObject(arg0), getObject(arg1));
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_resolve_b0083a7967828ec8 = function(arg0) {
|
|
const ret = Promise.resolve(getObject(arg0));
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_catch_0260e338d10f79ae = function(arg0, arg1) {
|
|
const ret = getObject(arg0).catch(getObject(arg1));
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_then_0c86a60e8fcfe9f6 = function(arg0, arg1) {
|
|
const ret = getObject(arg0).then(getObject(arg1));
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_then_a73caa9a87991566 = function(arg0, arg1, arg2) {
|
|
const ret = getObject(arg0).then(getObject(arg1), getObject(arg2));
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_buffer_12d079cc21e14bdb = function(arg0) {
|
|
const ret = getObject(arg0).buffer;
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_newwithbyteoffsetandlength_41559f654c4e743c = function(arg0, arg1, arg2) {
|
|
const ret = new Int8Array(getObject(arg0), arg1 >>> 0, arg2 >>> 0);
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_newwithbyteoffsetandlength_4bea9f904a7e0aef = function(arg0, arg1, arg2) {
|
|
const ret = new Int16Array(getObject(arg0), arg1 >>> 0, arg2 >>> 0);
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_newwithbyteoffsetandlength_425360430a1c8206 = function(arg0, arg1, arg2) {
|
|
const ret = new Int32Array(getObject(arg0), arg1 >>> 0, arg2 >>> 0);
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_newwithbyteoffsetandlength_aa4a17c33a06e5cb = function(arg0, arg1, arg2) {
|
|
const ret = new Uint8Array(getObject(arg0), arg1 >>> 0, arg2 >>> 0);
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_new_63b92bc8671ed464 = function(arg0) {
|
|
const ret = new Uint8Array(getObject(arg0));
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_set_a47bac70306a19a7 = function(arg0, arg1, arg2) {
|
|
getObject(arg0).set(getObject(arg1), arg2 >>> 0);
|
|
};
|
|
imports.wbg.__wbg_length_c20a40f15020d68a = function(arg0) {
|
|
const ret = getObject(arg0).length;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_newwithbyteoffsetandlength_9fd64654bc0b0817 = function(arg0, arg1, arg2) {
|
|
const ret = new Uint16Array(getObject(arg0), arg1 >>> 0, arg2 >>> 0);
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_newwithbyteoffsetandlength_3125852e5a7fbcff = function(arg0, arg1, arg2) {
|
|
const ret = new Uint32Array(getObject(arg0), arg1 >>> 0, arg2 >>> 0);
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_newwithbyteoffsetandlength_4a659d079a1650e0 = function(arg0, arg1, arg2) {
|
|
const ret = new Float32Array(getObject(arg0), arg1 >>> 0, arg2 >>> 0);
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_newwithlength_e9b4878cebadb3d3 = function(arg0) {
|
|
const ret = new Uint8Array(arg0 >>> 0);
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_subarray_a1f73cd4b5b42fe1 = function(arg0, arg1, arg2) {
|
|
const ret = getObject(arg0).subarray(arg1 >>> 0, arg2 >>> 0);
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_set_1f9b04f170055d33 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
const ret = Reflect.set(getObject(arg0), getObject(arg1), getObject(arg2));
|
|
return ret;
|
|
}, arguments) };
|
|
imports.wbg.__wbg_stringify_8887fe74e1c50d81 = function() { return handleError(function (arg0) {
|
|
const ret = JSON.stringify(getObject(arg0));
|
|
return addHeapObject(ret);
|
|
}, arguments) };
|
|
imports.wbg.__wbindgen_debug_string = function(arg0, arg1) {
|
|
const ret = debugString(getObject(arg1));
|
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
const len1 = WASM_VECTOR_LEN;
|
|
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
};
|
|
imports.wbg.__wbindgen_throw = function(arg0, arg1) {
|
|
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
};
|
|
imports.wbg.__wbindgen_memory = function() {
|
|
const ret = wasm.memory;
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbindgen_closure_wrapper5134 = function(arg0, arg1, arg2) {
|
|
const ret = makeMutClosure(arg0, arg1, 5180, __wbg_adapter_32);
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbindgen_closure_wrapper5135 = function(arg0, arg1, arg2) {
|
|
const ret = makeMutClosure(arg0, arg1, 5180, __wbg_adapter_32);
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbindgen_closure_wrapper5136 = function(arg0, arg1, arg2) {
|
|
const ret = makeMutClosure(arg0, arg1, 5180, __wbg_adapter_32);
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbindgen_closure_wrapper5137 = function(arg0, arg1, arg2) {
|
|
const ret = makeMutClosure(arg0, arg1, 5180, __wbg_adapter_32);
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbindgen_closure_wrapper5138 = function(arg0, arg1, arg2) {
|
|
const ret = makeMutClosure(arg0, arg1, 5180, __wbg_adapter_41);
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbindgen_closure_wrapper5139 = function(arg0, arg1, arg2) {
|
|
const ret = makeMutClosure(arg0, arg1, 5180, __wbg_adapter_44);
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbindgen_closure_wrapper5140 = function(arg0, arg1, arg2) {
|
|
const ret = makeMutClosure(arg0, arg1, 5180, __wbg_adapter_32);
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbindgen_closure_wrapper41520 = function(arg0, arg1, arg2) {
|
|
const ret = makeMutClosure(arg0, arg1, 36244, __wbg_adapter_49);
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbindgen_closure_wrapper42775 = function(arg0, arg1, arg2) {
|
|
const ret = makeMutClosure(arg0, arg1, 36863, __wbg_adapter_52);
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbindgen_closure_wrapper42776 = function(arg0, arg1, arg2) {
|
|
const ret = makeMutClosure(arg0, arg1, 36863, __wbg_adapter_55);
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbindgen_closure_wrapper42777 = function(arg0, arg1, arg2) {
|
|
const ret = makeMutClosure(arg0, arg1, 36863, __wbg_adapter_55);
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbindgen_closure_wrapper42778 = function(arg0, arg1, arg2) {
|
|
const ret = makeMutClosure(arg0, arg1, 36863, __wbg_adapter_55);
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbindgen_closure_wrapper42779 = function(arg0, arg1, arg2) {
|
|
const ret = makeMutClosure(arg0, arg1, 36863, __wbg_adapter_55);
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbindgen_closure_wrapper42780 = function(arg0, arg1, arg2) {
|
|
const ret = makeMutClosure(arg0, arg1, 36863, __wbg_adapter_55);
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbindgen_closure_wrapper42781 = function(arg0, arg1, arg2) {
|
|
const ret = makeMutClosure(arg0, arg1, 36863, __wbg_adapter_55);
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbindgen_closure_wrapper45076 = function(arg0, arg1, arg2) {
|
|
const ret = makeMutClosure(arg0, arg1, 37356, __wbg_adapter_68);
|
|
return addHeapObject(ret);
|
|
};
|
|
|
|
return imports;
|
|
}
|
|
|
|
function __wbg_init_memory(imports, maybe_memory) {
|
|
|
|
}
|
|
|
|
function __wbg_finalize_init(instance, module) {
|
|
wasm = instance.exports;
|
|
__wbg_init.__wbindgen_wasm_module = module;
|
|
cachedFloat32Memory0 = null;
|
|
cachedFloat64Memory0 = null;
|
|
cachedInt32Memory0 = null;
|
|
cachedUint32Memory0 = null;
|
|
cachedUint8Memory0 = null;
|
|
|
|
|
|
return wasm;
|
|
}
|
|
|
|
function initSync(module) {
|
|
if (wasm !== undefined) return wasm;
|
|
|
|
const imports = __wbg_get_imports();
|
|
|
|
__wbg_init_memory(imports);
|
|
|
|
if (!(module instanceof WebAssembly.Module)) {
|
|
module = new WebAssembly.Module(module);
|
|
}
|
|
|
|
const instance = new WebAssembly.Instance(module, imports);
|
|
|
|
return __wbg_finalize_init(instance, module);
|
|
}
|
|
|
|
async function __wbg_init(input) {
|
|
if (wasm !== undefined) return wasm;
|
|
|
|
if (typeof input === 'undefined') {
|
|
input = new URL('executor_wasm_bg.wasm', import.meta.url);
|
|
}
|
|
const imports = __wbg_get_imports();
|
|
|
|
if (typeof input === 'string' || (typeof Request === 'function' && input instanceof Request) || (typeof URL === 'function' && input instanceof URL)) {
|
|
input = fetch(input);
|
|
}
|
|
|
|
__wbg_init_memory(imports);
|
|
|
|
const { instance, module } = await __wbg_load(await input, imports);
|
|
|
|
return __wbg_finalize_init(instance, module);
|
|
}
|
|
|
|
export { initSync }
|
|
export default __wbg_init;
|