@mediapipe/tasks-vision 0.1.0-alpha-10 → 0.1.0-alpha-12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -5
- package/package.json +1 -1
- package/vision.d.ts +117 -69
- package/vision_bundle.js +1 -1
- package/wasm/vision_wasm_internal.js +275 -303
- package/wasm/vision_wasm_internal.wasm +0 -0
- package/wasm/vision_wasm_nosimd_internal.js +287 -315
- package/wasm/vision_wasm_nosimd_internal.wasm +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Build
|
|
1
|
+
// Build 525233580
|
|
2
2
|
|
|
3
3
|
var ModuleFactory = (() => {
|
|
4
4
|
var _scriptDir = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : undefined;
|
|
@@ -466,10 +466,10 @@ function createWasm() {
|
|
|
466
466
|
function receiveInstance(instance, module) {
|
|
467
467
|
var exports = instance.exports;
|
|
468
468
|
Module["asm"] = exports;
|
|
469
|
-
wasmMemory = Module["asm"]["
|
|
469
|
+
wasmMemory = Module["asm"]["id"];
|
|
470
470
|
updateGlobalBufferAndViews(wasmMemory.buffer);
|
|
471
|
-
wasmTable = Module["asm"]["
|
|
472
|
-
addOnInit(Module["asm"]["
|
|
471
|
+
wasmTable = Module["asm"]["kd"];
|
|
472
|
+
addOnInit(Module["asm"]["jd"]);
|
|
473
473
|
removeRunDependency("wasm-instantiate");
|
|
474
474
|
}
|
|
475
475
|
addRunDependency("wasm-instantiate");
|
|
@@ -520,15 +520,15 @@ var tempDouble;
|
|
|
520
520
|
var tempI64;
|
|
521
521
|
|
|
522
522
|
var ASM_CONSTS = {
|
|
523
|
-
|
|
523
|
+
986382: $0 => {
|
|
524
524
|
const canvas = Emval.toValue($0);
|
|
525
525
|
const context = canvas.getContext("webgpu");
|
|
526
526
|
return JsValStore.add(context.getCurrentTexture());
|
|
527
527
|
},
|
|
528
|
-
|
|
528
|
+
986517: () => {
|
|
529
529
|
return typeof HTMLCanvasElement !== "undefined";
|
|
530
530
|
},
|
|
531
|
-
|
|
531
|
+
986572: ($0, $1, $2, $3, $4) => {
|
|
532
532
|
const drawable = Emval.toValue($0);
|
|
533
533
|
const device = JsValStore.get($1);
|
|
534
534
|
const texture = JsValStore.get($2);
|
|
@@ -540,7 +540,7 @@ var ASM_CONSTS = {
|
|
|
540
540
|
texture: texture
|
|
541
541
|
}, [ width, height ]);
|
|
542
542
|
},
|
|
543
|
-
|
|
543
|
+
986823: ($0, $1, $2, $3) => {
|
|
544
544
|
const sourceExtTex = Emval.toValue($0);
|
|
545
545
|
const device = JsValStore.get($1);
|
|
546
546
|
const sampler = JsValStore.get($2);
|
|
@@ -557,56 +557,33 @@ var ASM_CONSTS = {
|
|
|
557
557
|
});
|
|
558
558
|
return JsValStore.add(bindGroup);
|
|
559
559
|
},
|
|
560
|
-
|
|
560
|
+
987171: ($0, $1) => {
|
|
561
561
|
const inputArray = Emval.toValue($0);
|
|
562
562
|
const output = Emval.toValue($1);
|
|
563
563
|
const ctx = output.getContext("2d");
|
|
564
564
|
const image_data = new ImageData(inputArray, output.width, output.height);
|
|
565
565
|
ctx.putImageData(image_data, 0, 0);
|
|
566
566
|
},
|
|
567
|
-
|
|
567
|
+
987395: ($0, $1) => {
|
|
568
568
|
const input = Emval.toValue($0);
|
|
569
569
|
const outputArray = Emval.toValue($1);
|
|
570
570
|
const ctx = input.getContext("2d");
|
|
571
571
|
const data = ctx.getImageData(0, 0, input.width, input.height);
|
|
572
572
|
outputArray.set(data.data);
|
|
573
573
|
},
|
|
574
|
-
|
|
574
|
+
987599: ($0, $1) => {
|
|
575
575
|
const input = Emval.toValue($0);
|
|
576
576
|
const output = Emval.toValue($1);
|
|
577
577
|
const ctx = output.getContext("2d");
|
|
578
578
|
ctx.drawImage(input, 0, 0);
|
|
579
579
|
},
|
|
580
|
-
|
|
580
|
+
987735: () => {
|
|
581
581
|
return !!Module["preinitializedWebGPUDevice"];
|
|
582
582
|
},
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
if (init_once) {
|
|
586
|
-
const cachedFindCanvasEventTarget = findCanvasEventTarget;
|
|
587
|
-
if (typeof cachedFindCanvasEventTarget !== "function") {
|
|
588
|
-
if (typeof console !== "undefined") {
|
|
589
|
-
console.error("Expected Emscripten global function " + '"findCanvasEventTarget" not found. WebGL context creation ' + "may fail.");
|
|
590
|
-
}
|
|
591
|
-
return;
|
|
592
|
-
}
|
|
593
|
-
findCanvasEventTarget = function(target) {
|
|
594
|
-
if (target == 0) {
|
|
595
|
-
if (Module && Module.canvas) {
|
|
596
|
-
return Module.canvas;
|
|
597
|
-
} else if (Module && Module.canvasCssSelector) {
|
|
598
|
-
return cachedFindCanvasEventTarget(Module.canvasCssSelector);
|
|
599
|
-
}
|
|
600
|
-
if (typeof console !== "undefined") {
|
|
601
|
-
console.warn("Module properties canvas and canvasCssSelector not " + "found during WebGL context creation.");
|
|
602
|
-
}
|
|
603
|
-
}
|
|
604
|
-
return cachedFindCanvasEventTarget(target);
|
|
605
|
-
};
|
|
606
|
-
init_once = false;
|
|
607
|
-
}
|
|
583
|
+
987786: () => {
|
|
584
|
+
specialHTMLTargets["#canvas"] = Module.canvas;
|
|
608
585
|
},
|
|
609
|
-
|
|
586
|
+
987837: () => {
|
|
610
587
|
return typeof wasmOffsetConverter !== "undefined";
|
|
611
588
|
}
|
|
612
589
|
};
|
|
@@ -6739,10 +6716,6 @@ function _glUniform1i(location, v0) {
|
|
|
6739
6716
|
GLctx.uniform1i(webglGetUniformLocation(location), v0);
|
|
6740
6717
|
}
|
|
6741
6718
|
|
|
6742
|
-
function _glUniform2f(location, v0, v1) {
|
|
6743
|
-
GLctx.uniform2f(webglGetUniformLocation(location), v0, v1);
|
|
6744
|
-
}
|
|
6745
|
-
|
|
6746
6719
|
var miniTempWebGLFloatBuffers = [];
|
|
6747
6720
|
|
|
6748
6721
|
function _glUniform2fv(location, count, value) {
|
|
@@ -8014,458 +7987,457 @@ for (var i = 0; i < 288; ++i) {
|
|
|
8014
7987
|
}
|
|
8015
7988
|
|
|
8016
7989
|
var asmLibraryArg = {
|
|
8017
|
-
"
|
|
8018
|
-
"
|
|
8019
|
-
"
|
|
8020
|
-
"
|
|
8021
|
-
"
|
|
8022
|
-
"
|
|
8023
|
-
"
|
|
8024
|
-
"
|
|
8025
|
-
"
|
|
8026
|
-
"
|
|
8027
|
-
"
|
|
8028
|
-
"
|
|
8029
|
-
"
|
|
8030
|
-
"
|
|
8031
|
-
"
|
|
8032
|
-
"
|
|
8033
|
-
"
|
|
8034
|
-
"
|
|
8035
|
-
"
|
|
8036
|
-
"
|
|
8037
|
-
"
|
|
8038
|
-
"
|
|
8039
|
-
"
|
|
8040
|
-
"
|
|
8041
|
-
"
|
|
8042
|
-
"
|
|
8043
|
-
"
|
|
8044
|
-
"
|
|
8045
|
-
"
|
|
8046
|
-
"
|
|
8047
|
-
"
|
|
8048
|
-
"
|
|
8049
|
-
"
|
|
8050
|
-
"
|
|
8051
|
-
"
|
|
8052
|
-
"
|
|
8053
|
-
"
|
|
8054
|
-
"
|
|
8055
|
-
"
|
|
8056
|
-
"
|
|
8057
|
-
"
|
|
8058
|
-
"
|
|
8059
|
-
"
|
|
8060
|
-
"
|
|
8061
|
-
"
|
|
8062
|
-
"
|
|
8063
|
-
"
|
|
8064
|
-
"
|
|
8065
|
-
"
|
|
8066
|
-
"
|
|
8067
|
-
"
|
|
8068
|
-
"
|
|
8069
|
-
"
|
|
8070
|
-
"
|
|
8071
|
-
"
|
|
8072
|
-
"
|
|
8073
|
-
"
|
|
8074
|
-
"
|
|
8075
|
-
"
|
|
8076
|
-
"
|
|
8077
|
-
"
|
|
8078
|
-
"
|
|
8079
|
-
"
|
|
7990
|
+
"hd": HaveOffsetConverter,
|
|
7991
|
+
"gd": JsOnEmptyPacketListener,
|
|
7992
|
+
"fd": JsOnFloat32ArrayImageListener,
|
|
7993
|
+
"ed": JsOnFloat32ArrayImageVectorListener,
|
|
7994
|
+
"Ha": JsOnSimpleListenerBinaryArray,
|
|
7995
|
+
"dd": JsOnSimpleListenerBool,
|
|
7996
|
+
"cd": JsOnSimpleListenerDouble,
|
|
7997
|
+
"bd": JsOnSimpleListenerFloat,
|
|
7998
|
+
"ad": JsOnSimpleListenerInt,
|
|
7999
|
+
"$c": JsOnSimpleListenerString,
|
|
8000
|
+
"_c": JsOnUint8ClampedArrayImageListener,
|
|
8001
|
+
"Zc": JsOnUint8ClampedArrayImageVectorListener,
|
|
8002
|
+
"G": JsOnVectorFinishedListener,
|
|
8003
|
+
"Yc": JsOnVectorListenerBool,
|
|
8004
|
+
"Xc": JsOnVectorListenerDouble,
|
|
8005
|
+
"Wc": JsOnVectorListenerFloat,
|
|
8006
|
+
"Vc": JsOnVectorListenerInt,
|
|
8007
|
+
"Uc": JsOnVectorListenerProto,
|
|
8008
|
+
"Tc": JsOnVectorListenerString,
|
|
8009
|
+
"Sc": JsOnWebGLTextureListener,
|
|
8010
|
+
"Rc": JsOnWebGLTextureVectorListener,
|
|
8011
|
+
"A": JsWrapErrorListener,
|
|
8012
|
+
"Ga": JsWrapImageConverter,
|
|
8013
|
+
"n": JsWrapSimpleListeners,
|
|
8014
|
+
"h": ___cxa_allocate_exception,
|
|
8015
|
+
"g": ___cxa_throw,
|
|
8016
|
+
"Fa": ___syscall_fcntl64,
|
|
8017
|
+
"Qc": ___syscall_fstat64,
|
|
8018
|
+
"Pc": ___syscall_ioctl,
|
|
8019
|
+
"Oc": ___syscall_lstat64,
|
|
8020
|
+
"Nc": ___syscall_newfstatat,
|
|
8021
|
+
"Ea": ___syscall_openat,
|
|
8022
|
+
"Mc": ___syscall_stat64,
|
|
8023
|
+
"Ic": __dlinit,
|
|
8024
|
+
"Hc": __dlopen_js,
|
|
8025
|
+
"Gc": __dlsym_js,
|
|
8026
|
+
"Nb": __embind_register_bigint,
|
|
8027
|
+
"Fc": __embind_register_bool,
|
|
8028
|
+
"Ec": __embind_register_emval,
|
|
8029
|
+
"Ca": __embind_register_float,
|
|
8030
|
+
"y": __embind_register_integer,
|
|
8031
|
+
"l": __embind_register_memory_view,
|
|
8032
|
+
"Ba": __embind_register_std_string,
|
|
8033
|
+
"fa": __embind_register_std_wstring,
|
|
8034
|
+
"Dc": __embind_register_void,
|
|
8035
|
+
"Cc": __emscripten_get_now_is_monotonic,
|
|
8036
|
+
"ea": __emval_as,
|
|
8037
|
+
"i": __emval_decref,
|
|
8038
|
+
"da": __emval_get_global,
|
|
8039
|
+
"Aa": __emval_get_property,
|
|
8040
|
+
"za": __emval_incref,
|
|
8041
|
+
"ca": __emval_instanceof,
|
|
8042
|
+
"Y": __emval_new_cstring,
|
|
8043
|
+
"ba": __emval_run_destructors,
|
|
8044
|
+
"ya": __emval_set_property,
|
|
8045
|
+
"X": __emval_take_value,
|
|
8046
|
+
"Bc": __emval_typeof,
|
|
8047
|
+
"Ac": __gmtime_js,
|
|
8048
|
+
"zc": __localtime_js,
|
|
8049
|
+
"yc": __mktime_js,
|
|
8050
|
+
"xc": __mmap_js,
|
|
8051
|
+
"wc": __munmap_js,
|
|
8052
|
+
"vc": __tzset_js,
|
|
8080
8053
|
"a": _abort,
|
|
8081
|
-
"
|
|
8082
|
-
"
|
|
8083
|
-
"
|
|
8084
|
-
"
|
|
8085
|
-
"
|
|
8086
|
-
"
|
|
8087
|
-
"
|
|
8088
|
-
"
|
|
8089
|
-
"
|
|
8090
|
-
"
|
|
8091
|
-
"
|
|
8092
|
-
"
|
|
8093
|
-
"
|
|
8094
|
-
"
|
|
8095
|
-
"
|
|
8096
|
-
"
|
|
8097
|
-
"
|
|
8098
|
-
"
|
|
8099
|
-
"
|
|
8100
|
-
"
|
|
8101
|
-
"
|
|
8102
|
-
"
|
|
8054
|
+
"x": _emscripten_asm_const_int,
|
|
8055
|
+
"uc": _emscripten_date_now,
|
|
8056
|
+
"tc": _emscripten_get_heap_max,
|
|
8057
|
+
"z": _emscripten_get_now,
|
|
8058
|
+
"sc": _emscripten_memcpy_big,
|
|
8059
|
+
"rc": _emscripten_pc_get_function,
|
|
8060
|
+
"qc": _emscripten_resize_heap,
|
|
8061
|
+
"pc": _emscripten_stack_snapshot,
|
|
8062
|
+
"oc": _emscripten_stack_unwind_buffer,
|
|
8063
|
+
"nc": _emscripten_webgl_create_context,
|
|
8064
|
+
"mc": _emscripten_webgl_destroy_context,
|
|
8065
|
+
"lc": _emscripten_webgl_get_context_attributes,
|
|
8066
|
+
"xa": _emscripten_webgl_get_current_context,
|
|
8067
|
+
"kc": _emscripten_webgl_init_context_attributes,
|
|
8068
|
+
"jc": _emscripten_webgl_make_context_current,
|
|
8069
|
+
"ic": _emscripten_webgpu_export_bind_group_layout,
|
|
8070
|
+
"wa": _emscripten_webgpu_export_device,
|
|
8071
|
+
"hc": _emscripten_webgpu_export_sampler,
|
|
8072
|
+
"gc": _emscripten_webgpu_export_texture,
|
|
8073
|
+
"F": _emscripten_webgpu_get_device,
|
|
8074
|
+
"fc": _emscripten_webgpu_import_bind_group,
|
|
8075
|
+
"ec": _emscripten_webgpu_import_texture,
|
|
8103
8076
|
"R": _emscripten_webgpu_release_js_handle,
|
|
8104
|
-
"
|
|
8105
|
-
"
|
|
8106
|
-
"
|
|
8107
|
-
"
|
|
8108
|
-
"
|
|
8109
|
-
"
|
|
8110
|
-
"
|
|
8111
|
-
"
|
|
8077
|
+
"Lc": _environ_get,
|
|
8078
|
+
"Kc": _environ_sizes_get,
|
|
8079
|
+
"va": _exit,
|
|
8080
|
+
"ha": _fd_close,
|
|
8081
|
+
"Da": _fd_read,
|
|
8082
|
+
"Ob": _fd_seek,
|
|
8083
|
+
"ga": _fd_write,
|
|
8084
|
+
"dc": _getentropy,
|
|
8112
8085
|
"d": _glActiveTexture,
|
|
8113
|
-
"
|
|
8114
|
-
"
|
|
8115
|
-
"
|
|
8116
|
-
"
|
|
8117
|
-
"
|
|
8086
|
+
"W": _glAttachShader,
|
|
8087
|
+
"cc": _glBindAttribLocation,
|
|
8088
|
+
"f": _glBindBuffer,
|
|
8089
|
+
"bc": _glBindBufferBase,
|
|
8090
|
+
"q": _glBindFramebuffer,
|
|
8118
8091
|
"b": _glBindTexture,
|
|
8119
|
-
"
|
|
8120
|
-
"
|
|
8121
|
-
"
|
|
8122
|
-
"
|
|
8123
|
-
"
|
|
8124
|
-
"
|
|
8125
|
-
"
|
|
8126
|
-
"
|
|
8127
|
-
"
|
|
8128
|
-
"
|
|
8129
|
-
"
|
|
8130
|
-
"
|
|
8131
|
-
"
|
|
8132
|
-
"
|
|
8133
|
-
"
|
|
8134
|
-
"
|
|
8135
|
-
"
|
|
8136
|
-
"
|
|
8137
|
-
"
|
|
8138
|
-
"
|
|
8139
|
-
"
|
|
8140
|
-
"
|
|
8141
|
-
"
|
|
8142
|
-
"
|
|
8143
|
-
"
|
|
8144
|
-
"
|
|
8092
|
+
"J": _glBindVertexArray,
|
|
8093
|
+
"ua": _glBlendEquation,
|
|
8094
|
+
"ac": _glBlendFunc,
|
|
8095
|
+
"w": _glBufferData,
|
|
8096
|
+
"t": _glClear,
|
|
8097
|
+
"aa": _glClearColor,
|
|
8098
|
+
"Mb": _glClientWaitSync,
|
|
8099
|
+
"ta": _glCompileShader,
|
|
8100
|
+
"sa": _glCreateProgram,
|
|
8101
|
+
"ra": _glCreateShader,
|
|
8102
|
+
"Q": _glDeleteBuffers,
|
|
8103
|
+
"P": _glDeleteFramebuffers,
|
|
8104
|
+
"p": _glDeleteProgram,
|
|
8105
|
+
"O": _glDeleteShader,
|
|
8106
|
+
"N": _glDeleteSync,
|
|
8107
|
+
"v": _glDeleteTextures,
|
|
8108
|
+
"qa": _glDeleteVertexArrays,
|
|
8109
|
+
"I": _glDisable,
|
|
8110
|
+
"H": _glDisableVertexAttribArray,
|
|
8111
|
+
"o": _glDrawArrays,
|
|
8112
|
+
"M": _glDrawBuffers,
|
|
8113
|
+
"$b": _glEnable,
|
|
8114
|
+
"s": _glEnableVertexAttribArray,
|
|
8115
|
+
"pa": _glFenceSync,
|
|
8116
|
+
"V": _glFinish,
|
|
8117
|
+
"_b": _glFlush,
|
|
8145
8118
|
"u": _glFramebufferTexture2D,
|
|
8146
|
-
"
|
|
8147
|
-
"
|
|
8148
|
-
"
|
|
8149
|
-
"
|
|
8150
|
-
"
|
|
8151
|
-
"
|
|
8119
|
+
"oa": _glFramebufferTextureLayer,
|
|
8120
|
+
"E": _glGenBuffers,
|
|
8121
|
+
"L": _glGenFramebuffers,
|
|
8122
|
+
"D": _glGenTextures,
|
|
8123
|
+
"na": _glGenVertexArrays,
|
|
8124
|
+
"ma": _glGetAttribLocation,
|
|
8152
8125
|
"U": _glGetError,
|
|
8153
|
-
"
|
|
8154
|
-
"
|
|
8155
|
-
"
|
|
8156
|
-
"
|
|
8157
|
-
"
|
|
8158
|
-
"
|
|
8159
|
-
"
|
|
8160
|
-
"
|
|
8126
|
+
"m": _glGetIntegerv,
|
|
8127
|
+
"Zb": _glGetProgramiv,
|
|
8128
|
+
"Yb": _glGetShaderInfoLog,
|
|
8129
|
+
"Xb": _glGetShaderiv,
|
|
8130
|
+
"C": _glGetString,
|
|
8131
|
+
"Wb": _glGetUniformBlockIndex,
|
|
8132
|
+
"j": _glGetUniformLocation,
|
|
8133
|
+
"la": _glLinkProgram,
|
|
8161
8134
|
"T": _glPixelStorei,
|
|
8162
|
-
"
|
|
8163
|
-
"
|
|
8164
|
-
"
|
|
8165
|
-
"
|
|
8135
|
+
"ka": _glReadPixels,
|
|
8136
|
+
"ja": _glShaderSource,
|
|
8137
|
+
"B": _glTexImage2D,
|
|
8138
|
+
"Vb": _glTexParameterfv,
|
|
8166
8139
|
"c": _glTexParameteri,
|
|
8167
|
-
"
|
|
8168
|
-
"
|
|
8169
|
-
"
|
|
8170
|
-
"
|
|
8171
|
-
"
|
|
8172
|
-
"
|
|
8173
|
-
"
|
|
8174
|
-
"
|
|
8175
|
-
"
|
|
8176
|
-
"
|
|
8177
|
-
"
|
|
8178
|
-
"
|
|
8179
|
-
"
|
|
8180
|
-
"
|
|
8181
|
-
"
|
|
8182
|
-
"
|
|
8183
|
-
"
|
|
8184
|
-
"
|
|
8185
|
-
"
|
|
8186
|
-
"Kc": _proc_exit,
|
|
8140
|
+
"$": _glTexStorage2D,
|
|
8141
|
+
"Ub": _glTexStorage3D,
|
|
8142
|
+
"_": _glTexSubImage2D,
|
|
8143
|
+
"Tb": _glTexSubImage3D,
|
|
8144
|
+
"Z": _glUniform1f,
|
|
8145
|
+
"e": _glUniform1i,
|
|
8146
|
+
"Sb": _glUniform2fv,
|
|
8147
|
+
"ia": _glUniform4fv,
|
|
8148
|
+
"Rb": _glUniform4iv,
|
|
8149
|
+
"Qb": _glUniformBlockBinding,
|
|
8150
|
+
"Pb": _glUniformMatrix4fv,
|
|
8151
|
+
"k": _glUseProgram,
|
|
8152
|
+
"r": _glVertexAttribPointer,
|
|
8153
|
+
"K": _glViewport,
|
|
8154
|
+
"Kb": mediapipe_create_utility_canvas2d,
|
|
8155
|
+
"Jb": _mediapipe_find_canvas_event_target,
|
|
8156
|
+
"Ib": mediapipe_import_external_texture,
|
|
8157
|
+
"Hb": _mediapipe_webgl_tex_image_drawable,
|
|
8158
|
+
"Jc": _proc_exit,
|
|
8187
8159
|
"S": _strftime,
|
|
8188
|
-
"
|
|
8189
|
-
"
|
|
8190
|
-
"
|
|
8191
|
-
"
|
|
8192
|
-
"
|
|
8193
|
-
"
|
|
8194
|
-
"
|
|
8195
|
-
"
|
|
8196
|
-
"
|
|
8197
|
-
"
|
|
8198
|
-
"
|
|
8199
|
-
"
|
|
8200
|
-
"
|
|
8201
|
-
"
|
|
8202
|
-
"
|
|
8203
|
-
"
|
|
8204
|
-
"
|
|
8205
|
-
"
|
|
8206
|
-
"
|
|
8207
|
-
"
|
|
8208
|
-
"
|
|
8209
|
-
"
|
|
8210
|
-
"
|
|
8211
|
-
"
|
|
8212
|
-
"
|
|
8213
|
-
"
|
|
8214
|
-
"
|
|
8215
|
-
"
|
|
8216
|
-
"
|
|
8217
|
-
"
|
|
8218
|
-
"
|
|
8219
|
-
"
|
|
8220
|
-
"
|
|
8221
|
-
"
|
|
8222
|
-
"
|
|
8223
|
-
"
|
|
8224
|
-
"
|
|
8225
|
-
"
|
|
8226
|
-
"
|
|
8227
|
-
"
|
|
8228
|
-
"
|
|
8229
|
-
"
|
|
8230
|
-
"
|
|
8231
|
-
"
|
|
8232
|
-
"
|
|
8233
|
-
"
|
|
8234
|
-
"
|
|
8235
|
-
"
|
|
8236
|
-
"
|
|
8237
|
-
"
|
|
8238
|
-
"
|
|
8239
|
-
"
|
|
8240
|
-
"
|
|
8241
|
-
"
|
|
8160
|
+
"Gb": _strftime_l,
|
|
8161
|
+
"Fb": _wgpuBindGroupLayoutRelease,
|
|
8162
|
+
"Eb": _wgpuBindGroupRelease,
|
|
8163
|
+
"Db": _wgpuBufferGetMappedRange,
|
|
8164
|
+
"Cb": _wgpuBufferReference,
|
|
8165
|
+
"Bb": _wgpuBufferRelease,
|
|
8166
|
+
"Ab": _wgpuBufferUnmap,
|
|
8167
|
+
"zb": _wgpuCommandBufferRelease,
|
|
8168
|
+
"yb": _wgpuCommandEncoderBeginComputePass,
|
|
8169
|
+
"xb": _wgpuCommandEncoderBeginRenderPass,
|
|
8170
|
+
"wb": _wgpuCommandEncoderCopyBufferToTexture,
|
|
8171
|
+
"vb": _wgpuCommandEncoderCopyTextureToTexture,
|
|
8172
|
+
"ub": _wgpuCommandEncoderFinish,
|
|
8173
|
+
"tb": _wgpuCommandEncoderRelease,
|
|
8174
|
+
"sb": _wgpuComputePassEncoderDispatchWorkgroups,
|
|
8175
|
+
"rb": _wgpuComputePassEncoderEnd,
|
|
8176
|
+
"qb": _wgpuComputePassEncoderRelease,
|
|
8177
|
+
"pb": _wgpuComputePassEncoderSetBindGroup,
|
|
8178
|
+
"ob": _wgpuComputePassEncoderSetPipeline,
|
|
8179
|
+
"nb": _wgpuComputePipelineGetBindGroupLayout,
|
|
8180
|
+
"mb": _wgpuComputePipelineRelease,
|
|
8181
|
+
"lb": _wgpuDeviceCreateBindGroup,
|
|
8182
|
+
"kb": _wgpuDeviceCreateBuffer,
|
|
8183
|
+
"jb": _wgpuDeviceCreateCommandEncoder,
|
|
8184
|
+
"ib": _wgpuDeviceCreateComputePipeline,
|
|
8185
|
+
"hb": _wgpuDeviceCreateRenderPipeline,
|
|
8186
|
+
"gb": _wgpuDeviceCreateSampler,
|
|
8187
|
+
"fb": _wgpuDeviceCreateShaderModule,
|
|
8188
|
+
"eb": _wgpuDeviceCreateTexture,
|
|
8189
|
+
"db": _wgpuDeviceGetQueue,
|
|
8190
|
+
"cb": _wgpuDeviceReference,
|
|
8191
|
+
"bb": _wgpuDeviceRelease,
|
|
8192
|
+
"ab": _wgpuPipelineLayoutRelease,
|
|
8193
|
+
"$a": _wgpuQuerySetRelease,
|
|
8194
|
+
"_a": _wgpuQueueRelease,
|
|
8195
|
+
"Za": _wgpuQueueSubmit,
|
|
8196
|
+
"Lb": _wgpuQueueWriteBuffer,
|
|
8197
|
+
"Ya": _wgpuRenderPassEncoderDraw,
|
|
8198
|
+
"Xa": _wgpuRenderPassEncoderEnd,
|
|
8199
|
+
"Wa": _wgpuRenderPassEncoderRelease,
|
|
8200
|
+
"Va": _wgpuRenderPassEncoderSetBindGroup,
|
|
8201
|
+
"Ua": _wgpuRenderPassEncoderSetPipeline,
|
|
8202
|
+
"Ta": _wgpuRenderPipelineGetBindGroupLayout,
|
|
8203
|
+
"Sa": _wgpuRenderPipelineRelease,
|
|
8204
|
+
"Ra": _wgpuSamplerReference,
|
|
8205
|
+
"Qa": _wgpuSamplerRelease,
|
|
8206
|
+
"Pa": _wgpuShaderModuleReference,
|
|
8207
|
+
"Oa": _wgpuShaderModuleRelease,
|
|
8208
|
+
"Na": _wgpuTextureCreateView,
|
|
8209
|
+
"Ma": _wgpuTextureDestroy,
|
|
8210
|
+
"La": _wgpuTextureReference,
|
|
8211
|
+
"Ka": _wgpuTextureRelease,
|
|
8212
|
+
"Ja": _wgpuTextureViewReference,
|
|
8213
|
+
"Ia": _wgpuTextureViewRelease
|
|
8242
8214
|
};
|
|
8243
8215
|
|
|
8244
8216
|
var asm = createWasm();
|
|
8245
8217
|
|
|
8246
8218
|
var ___wasm_call_ctors = Module["___wasm_call_ctors"] = function() {
|
|
8247
|
-
return (___wasm_call_ctors = Module["___wasm_call_ctors"] = Module["asm"]["
|
|
8219
|
+
return (___wasm_call_ctors = Module["___wasm_call_ctors"] = Module["asm"]["jd"]).apply(null, arguments);
|
|
8248
8220
|
};
|
|
8249
8221
|
|
|
8250
8222
|
var _free = Module["_free"] = function() {
|
|
8251
|
-
return (_free = Module["_free"] = Module["asm"]["
|
|
8223
|
+
return (_free = Module["_free"] = Module["asm"]["ld"]).apply(null, arguments);
|
|
8252
8224
|
};
|
|
8253
8225
|
|
|
8254
8226
|
var _malloc = Module["_malloc"] = function() {
|
|
8255
|
-
return (_malloc = Module["_malloc"] = Module["asm"]["
|
|
8227
|
+
return (_malloc = Module["_malloc"] = Module["asm"]["md"]).apply(null, arguments);
|
|
8256
8228
|
};
|
|
8257
8229
|
|
|
8258
8230
|
var _addBoundTextureAsImageToStream = Module["_addBoundTextureAsImageToStream"] = function() {
|
|
8259
|
-
return (_addBoundTextureAsImageToStream = Module["_addBoundTextureAsImageToStream"] = Module["asm"]["
|
|
8231
|
+
return (_addBoundTextureAsImageToStream = Module["_addBoundTextureAsImageToStream"] = Module["asm"]["nd"]).apply(null, arguments);
|
|
8260
8232
|
};
|
|
8261
8233
|
|
|
8262
8234
|
var _attachImageListener = Module["_attachImageListener"] = function() {
|
|
8263
|
-
return (_attachImageListener = Module["_attachImageListener"] = Module["asm"]["
|
|
8235
|
+
return (_attachImageListener = Module["_attachImageListener"] = Module["asm"]["od"]).apply(null, arguments);
|
|
8264
8236
|
};
|
|
8265
8237
|
|
|
8266
8238
|
var _attachImageVectorListener = Module["_attachImageVectorListener"] = function() {
|
|
8267
|
-
return (_attachImageVectorListener = Module["_attachImageVectorListener"] = Module["asm"]["
|
|
8239
|
+
return (_attachImageVectorListener = Module["_attachImageVectorListener"] = Module["asm"]["pd"]).apply(null, arguments);
|
|
8268
8240
|
};
|
|
8269
8241
|
|
|
8270
8242
|
var _registerModelResourcesGraphService = Module["_registerModelResourcesGraphService"] = function() {
|
|
8271
|
-
return (_registerModelResourcesGraphService = Module["_registerModelResourcesGraphService"] = Module["asm"]["
|
|
8243
|
+
return (_registerModelResourcesGraphService = Module["_registerModelResourcesGraphService"] = Module["asm"]["qd"]).apply(null, arguments);
|
|
8272
8244
|
};
|
|
8273
8245
|
|
|
8274
8246
|
var ___errno_location = Module["___errno_location"] = function() {
|
|
8275
|
-
return (___errno_location = Module["___errno_location"] = Module["asm"]["
|
|
8247
|
+
return (___errno_location = Module["___errno_location"] = Module["asm"]["rd"]).apply(null, arguments);
|
|
8276
8248
|
};
|
|
8277
8249
|
|
|
8278
8250
|
var _bindTextureToStream = Module["_bindTextureToStream"] = function() {
|
|
8279
|
-
return (_bindTextureToStream = Module["_bindTextureToStream"] = Module["asm"]["
|
|
8251
|
+
return (_bindTextureToStream = Module["_bindTextureToStream"] = Module["asm"]["sd"]).apply(null, arguments);
|
|
8280
8252
|
};
|
|
8281
8253
|
|
|
8282
8254
|
var _addBoundTextureToStream = Module["_addBoundTextureToStream"] = function() {
|
|
8283
|
-
return (_addBoundTextureToStream = Module["_addBoundTextureToStream"] = Module["asm"]["
|
|
8255
|
+
return (_addBoundTextureToStream = Module["_addBoundTextureToStream"] = Module["asm"]["td"]).apply(null, arguments);
|
|
8284
8256
|
};
|
|
8285
8257
|
|
|
8286
8258
|
var _addDoubleToInputStream = Module["_addDoubleToInputStream"] = function() {
|
|
8287
|
-
return (_addDoubleToInputStream = Module["_addDoubleToInputStream"] = Module["asm"]["
|
|
8259
|
+
return (_addDoubleToInputStream = Module["_addDoubleToInputStream"] = Module["asm"]["ud"]).apply(null, arguments);
|
|
8288
8260
|
};
|
|
8289
8261
|
|
|
8290
8262
|
var _addFloatToInputStream = Module["_addFloatToInputStream"] = function() {
|
|
8291
|
-
return (_addFloatToInputStream = Module["_addFloatToInputStream"] = Module["asm"]["
|
|
8263
|
+
return (_addFloatToInputStream = Module["_addFloatToInputStream"] = Module["asm"]["vd"]).apply(null, arguments);
|
|
8292
8264
|
};
|
|
8293
8265
|
|
|
8294
8266
|
var _addBoolToInputStream = Module["_addBoolToInputStream"] = function() {
|
|
8295
|
-
return (_addBoolToInputStream = Module["_addBoolToInputStream"] = Module["asm"]["
|
|
8267
|
+
return (_addBoolToInputStream = Module["_addBoolToInputStream"] = Module["asm"]["wd"]).apply(null, arguments);
|
|
8296
8268
|
};
|
|
8297
8269
|
|
|
8298
8270
|
var _addIntToInputStream = Module["_addIntToInputStream"] = function() {
|
|
8299
|
-
return (_addIntToInputStream = Module["_addIntToInputStream"] = Module["asm"]["
|
|
8271
|
+
return (_addIntToInputStream = Module["_addIntToInputStream"] = Module["asm"]["xd"]).apply(null, arguments);
|
|
8300
8272
|
};
|
|
8301
8273
|
|
|
8302
8274
|
var _addStringToInputStream = Module["_addStringToInputStream"] = function() {
|
|
8303
|
-
return (_addStringToInputStream = Module["_addStringToInputStream"] = Module["asm"]["
|
|
8275
|
+
return (_addStringToInputStream = Module["_addStringToInputStream"] = Module["asm"]["yd"]).apply(null, arguments);
|
|
8304
8276
|
};
|
|
8305
8277
|
|
|
8306
8278
|
var _addFlatHashMapToInputStream = Module["_addFlatHashMapToInputStream"] = function() {
|
|
8307
|
-
return (_addFlatHashMapToInputStream = Module["_addFlatHashMapToInputStream"] = Module["asm"]["
|
|
8279
|
+
return (_addFlatHashMapToInputStream = Module["_addFlatHashMapToInputStream"] = Module["asm"]["zd"]).apply(null, arguments);
|
|
8308
8280
|
};
|
|
8309
8281
|
|
|
8310
8282
|
var _addProtoToInputStream = Module["_addProtoToInputStream"] = function() {
|
|
8311
|
-
return (_addProtoToInputStream = Module["_addProtoToInputStream"] = Module["asm"]["
|
|
8283
|
+
return (_addProtoToInputStream = Module["_addProtoToInputStream"] = Module["asm"]["Ad"]).apply(null, arguments);
|
|
8312
8284
|
};
|
|
8313
8285
|
|
|
8314
8286
|
var _addEmptyPacketToInputStream = Module["_addEmptyPacketToInputStream"] = function() {
|
|
8315
|
-
return (_addEmptyPacketToInputStream = Module["_addEmptyPacketToInputStream"] = Module["asm"]["
|
|
8287
|
+
return (_addEmptyPacketToInputStream = Module["_addEmptyPacketToInputStream"] = Module["asm"]["Bd"]).apply(null, arguments);
|
|
8316
8288
|
};
|
|
8317
8289
|
|
|
8318
8290
|
var _addBoolToInputSidePacket = Module["_addBoolToInputSidePacket"] = function() {
|
|
8319
|
-
return (_addBoolToInputSidePacket = Module["_addBoolToInputSidePacket"] = Module["asm"]["
|
|
8291
|
+
return (_addBoolToInputSidePacket = Module["_addBoolToInputSidePacket"] = Module["asm"]["Cd"]).apply(null, arguments);
|
|
8320
8292
|
};
|
|
8321
8293
|
|
|
8322
8294
|
var _addDoubleToInputSidePacket = Module["_addDoubleToInputSidePacket"] = function() {
|
|
8323
|
-
return (_addDoubleToInputSidePacket = Module["_addDoubleToInputSidePacket"] = Module["asm"]["
|
|
8295
|
+
return (_addDoubleToInputSidePacket = Module["_addDoubleToInputSidePacket"] = Module["asm"]["Dd"]).apply(null, arguments);
|
|
8324
8296
|
};
|
|
8325
8297
|
|
|
8326
8298
|
var _addFloatToInputSidePacket = Module["_addFloatToInputSidePacket"] = function() {
|
|
8327
|
-
return (_addFloatToInputSidePacket = Module["_addFloatToInputSidePacket"] = Module["asm"]["
|
|
8299
|
+
return (_addFloatToInputSidePacket = Module["_addFloatToInputSidePacket"] = Module["asm"]["Ed"]).apply(null, arguments);
|
|
8328
8300
|
};
|
|
8329
8301
|
|
|
8330
8302
|
var _addIntToInputSidePacket = Module["_addIntToInputSidePacket"] = function() {
|
|
8331
|
-
return (_addIntToInputSidePacket = Module["_addIntToInputSidePacket"] = Module["asm"]["
|
|
8303
|
+
return (_addIntToInputSidePacket = Module["_addIntToInputSidePacket"] = Module["asm"]["Fd"]).apply(null, arguments);
|
|
8332
8304
|
};
|
|
8333
8305
|
|
|
8334
8306
|
var _addStringToInputSidePacket = Module["_addStringToInputSidePacket"] = function() {
|
|
8335
|
-
return (_addStringToInputSidePacket = Module["_addStringToInputSidePacket"] = Module["asm"]["
|
|
8307
|
+
return (_addStringToInputSidePacket = Module["_addStringToInputSidePacket"] = Module["asm"]["Gd"]).apply(null, arguments);
|
|
8336
8308
|
};
|
|
8337
8309
|
|
|
8338
8310
|
var _addProtoToInputSidePacket = Module["_addProtoToInputSidePacket"] = function() {
|
|
8339
|
-
return (_addProtoToInputSidePacket = Module["_addProtoToInputSidePacket"] = Module["asm"]["
|
|
8311
|
+
return (_addProtoToInputSidePacket = Module["_addProtoToInputSidePacket"] = Module["asm"]["Hd"]).apply(null, arguments);
|
|
8340
8312
|
};
|
|
8341
8313
|
|
|
8342
8314
|
var _attachBoolListener = Module["_attachBoolListener"] = function() {
|
|
8343
|
-
return (_attachBoolListener = Module["_attachBoolListener"] = Module["asm"]["
|
|
8315
|
+
return (_attachBoolListener = Module["_attachBoolListener"] = Module["asm"]["Id"]).apply(null, arguments);
|
|
8344
8316
|
};
|
|
8345
8317
|
|
|
8346
8318
|
var _attachBoolVectorListener = Module["_attachBoolVectorListener"] = function() {
|
|
8347
|
-
return (_attachBoolVectorListener = Module["_attachBoolVectorListener"] = Module["asm"]["
|
|
8319
|
+
return (_attachBoolVectorListener = Module["_attachBoolVectorListener"] = Module["asm"]["Jd"]).apply(null, arguments);
|
|
8348
8320
|
};
|
|
8349
8321
|
|
|
8350
8322
|
var _attachDoubleListener = Module["_attachDoubleListener"] = function() {
|
|
8351
|
-
return (_attachDoubleListener = Module["_attachDoubleListener"] = Module["asm"]["
|
|
8323
|
+
return (_attachDoubleListener = Module["_attachDoubleListener"] = Module["asm"]["Kd"]).apply(null, arguments);
|
|
8352
8324
|
};
|
|
8353
8325
|
|
|
8354
8326
|
var _attachDoubleVectorListener = Module["_attachDoubleVectorListener"] = function() {
|
|
8355
|
-
return (_attachDoubleVectorListener = Module["_attachDoubleVectorListener"] = Module["asm"]["
|
|
8327
|
+
return (_attachDoubleVectorListener = Module["_attachDoubleVectorListener"] = Module["asm"]["Ld"]).apply(null, arguments);
|
|
8356
8328
|
};
|
|
8357
8329
|
|
|
8358
8330
|
var _attachFloatListener = Module["_attachFloatListener"] = function() {
|
|
8359
|
-
return (_attachFloatListener = Module["_attachFloatListener"] = Module["asm"]["
|
|
8331
|
+
return (_attachFloatListener = Module["_attachFloatListener"] = Module["asm"]["Md"]).apply(null, arguments);
|
|
8360
8332
|
};
|
|
8361
8333
|
|
|
8362
8334
|
var _attachFloatVectorListener = Module["_attachFloatVectorListener"] = function() {
|
|
8363
|
-
return (_attachFloatVectorListener = Module["_attachFloatVectorListener"] = Module["asm"]["
|
|
8335
|
+
return (_attachFloatVectorListener = Module["_attachFloatVectorListener"] = Module["asm"]["Nd"]).apply(null, arguments);
|
|
8364
8336
|
};
|
|
8365
8337
|
|
|
8366
8338
|
var _attachIntListener = Module["_attachIntListener"] = function() {
|
|
8367
|
-
return (_attachIntListener = Module["_attachIntListener"] = Module["asm"]["
|
|
8339
|
+
return (_attachIntListener = Module["_attachIntListener"] = Module["asm"]["Od"]).apply(null, arguments);
|
|
8368
8340
|
};
|
|
8369
8341
|
|
|
8370
8342
|
var _attachIntVectorListener = Module["_attachIntVectorListener"] = function() {
|
|
8371
|
-
return (_attachIntVectorListener = Module["_attachIntVectorListener"] = Module["asm"]["
|
|
8343
|
+
return (_attachIntVectorListener = Module["_attachIntVectorListener"] = Module["asm"]["Pd"]).apply(null, arguments);
|
|
8372
8344
|
};
|
|
8373
8345
|
|
|
8374
8346
|
var _attachStringListener = Module["_attachStringListener"] = function() {
|
|
8375
|
-
return (_attachStringListener = Module["_attachStringListener"] = Module["asm"]["
|
|
8347
|
+
return (_attachStringListener = Module["_attachStringListener"] = Module["asm"]["Qd"]).apply(null, arguments);
|
|
8376
8348
|
};
|
|
8377
8349
|
|
|
8378
8350
|
var _attachStringVectorListener = Module["_attachStringVectorListener"] = function() {
|
|
8379
|
-
return (_attachStringVectorListener = Module["_attachStringVectorListener"] = Module["asm"]["
|
|
8351
|
+
return (_attachStringVectorListener = Module["_attachStringVectorListener"] = Module["asm"]["Rd"]).apply(null, arguments);
|
|
8380
8352
|
};
|
|
8381
8353
|
|
|
8382
8354
|
var _attachProtoListener = Module["_attachProtoListener"] = function() {
|
|
8383
|
-
return (_attachProtoListener = Module["_attachProtoListener"] = Module["asm"]["
|
|
8355
|
+
return (_attachProtoListener = Module["_attachProtoListener"] = Module["asm"]["Sd"]).apply(null, arguments);
|
|
8384
8356
|
};
|
|
8385
8357
|
|
|
8386
8358
|
var _attachProtoVectorListener = Module["_attachProtoVectorListener"] = function() {
|
|
8387
|
-
return (_attachProtoVectorListener = Module["_attachProtoVectorListener"] = Module["asm"]["
|
|
8359
|
+
return (_attachProtoVectorListener = Module["_attachProtoVectorListener"] = Module["asm"]["Td"]).apply(null, arguments);
|
|
8388
8360
|
};
|
|
8389
8361
|
|
|
8390
8362
|
var _getGraphConfig = Module["_getGraphConfig"] = function() {
|
|
8391
|
-
return (_getGraphConfig = Module["_getGraphConfig"] = Module["asm"]["
|
|
8363
|
+
return (_getGraphConfig = Module["_getGraphConfig"] = Module["asm"]["Ud"]).apply(null, arguments);
|
|
8392
8364
|
};
|
|
8393
8365
|
|
|
8394
8366
|
var _clearSubgraphs = Module["_clearSubgraphs"] = function() {
|
|
8395
|
-
return (_clearSubgraphs = Module["_clearSubgraphs"] = Module["asm"]["
|
|
8367
|
+
return (_clearSubgraphs = Module["_clearSubgraphs"] = Module["asm"]["Vd"]).apply(null, arguments);
|
|
8396
8368
|
};
|
|
8397
8369
|
|
|
8398
8370
|
var _pushBinarySubgraph = Module["_pushBinarySubgraph"] = function() {
|
|
8399
|
-
return (_pushBinarySubgraph = Module["_pushBinarySubgraph"] = Module["asm"]["
|
|
8371
|
+
return (_pushBinarySubgraph = Module["_pushBinarySubgraph"] = Module["asm"]["Wd"]).apply(null, arguments);
|
|
8400
8372
|
};
|
|
8401
8373
|
|
|
8402
8374
|
var _pushTextSubgraph = Module["_pushTextSubgraph"] = function() {
|
|
8403
|
-
return (_pushTextSubgraph = Module["_pushTextSubgraph"] = Module["asm"]["
|
|
8375
|
+
return (_pushTextSubgraph = Module["_pushTextSubgraph"] = Module["asm"]["Xd"]).apply(null, arguments);
|
|
8404
8376
|
};
|
|
8405
8377
|
|
|
8406
8378
|
var _changeBinaryGraph = Module["_changeBinaryGraph"] = function() {
|
|
8407
|
-
return (_changeBinaryGraph = Module["_changeBinaryGraph"] = Module["asm"]["
|
|
8379
|
+
return (_changeBinaryGraph = Module["_changeBinaryGraph"] = Module["asm"]["Yd"]).apply(null, arguments);
|
|
8408
8380
|
};
|
|
8409
8381
|
|
|
8410
8382
|
var _changeTextGraph = Module["_changeTextGraph"] = function() {
|
|
8411
|
-
return (_changeTextGraph = Module["_changeTextGraph"] = Module["asm"]["
|
|
8383
|
+
return (_changeTextGraph = Module["_changeTextGraph"] = Module["asm"]["Zd"]).apply(null, arguments);
|
|
8412
8384
|
};
|
|
8413
8385
|
|
|
8414
8386
|
var _processGl = Module["_processGl"] = function() {
|
|
8415
|
-
return (_processGl = Module["_processGl"] = Module["asm"]["
|
|
8387
|
+
return (_processGl = Module["_processGl"] = Module["asm"]["_d"]).apply(null, arguments);
|
|
8416
8388
|
};
|
|
8417
8389
|
|
|
8418
8390
|
var _process = Module["_process"] = function() {
|
|
8419
|
-
return (_process = Module["_process"] = Module["asm"]["
|
|
8391
|
+
return (_process = Module["_process"] = Module["asm"]["$d"]).apply(null, arguments);
|
|
8420
8392
|
};
|
|
8421
8393
|
|
|
8422
8394
|
var _bindTextureToCanvas = Module["_bindTextureToCanvas"] = function() {
|
|
8423
|
-
return (_bindTextureToCanvas = Module["_bindTextureToCanvas"] = Module["asm"]["
|
|
8395
|
+
return (_bindTextureToCanvas = Module["_bindTextureToCanvas"] = Module["asm"]["ae"]).apply(null, arguments);
|
|
8424
8396
|
};
|
|
8425
8397
|
|
|
8426
8398
|
var _requestShaderRefreshOnGraphChange = Module["_requestShaderRefreshOnGraphChange"] = function() {
|
|
8427
|
-
return (_requestShaderRefreshOnGraphChange = Module["_requestShaderRefreshOnGraphChange"] = Module["asm"]["
|
|
8399
|
+
return (_requestShaderRefreshOnGraphChange = Module["_requestShaderRefreshOnGraphChange"] = Module["asm"]["be"]).apply(null, arguments);
|
|
8428
8400
|
};
|
|
8429
8401
|
|
|
8430
8402
|
var _waitUntilIdle = Module["_waitUntilIdle"] = function() {
|
|
8431
|
-
return (_waitUntilIdle = Module["_waitUntilIdle"] = Module["asm"]["
|
|
8403
|
+
return (_waitUntilIdle = Module["_waitUntilIdle"] = Module["asm"]["ce"]).apply(null, arguments);
|
|
8432
8404
|
};
|
|
8433
8405
|
|
|
8434
8406
|
var _setAutoRenderToScreen = Module["_setAutoRenderToScreen"] = function() {
|
|
8435
|
-
return (_setAutoRenderToScreen = Module["_setAutoRenderToScreen"] = Module["asm"]["
|
|
8407
|
+
return (_setAutoRenderToScreen = Module["_setAutoRenderToScreen"] = Module["asm"]["de"]).apply(null, arguments);
|
|
8436
8408
|
};
|
|
8437
8409
|
|
|
8438
8410
|
var ___getTypeName = Module["___getTypeName"] = function() {
|
|
8439
|
-
return (___getTypeName = Module["___getTypeName"] = Module["asm"]["
|
|
8411
|
+
return (___getTypeName = Module["___getTypeName"] = Module["asm"]["ee"]).apply(null, arguments);
|
|
8440
8412
|
};
|
|
8441
8413
|
|
|
8442
8414
|
var __embind_initialize_bindings = Module["__embind_initialize_bindings"] = function() {
|
|
8443
|
-
return (__embind_initialize_bindings = Module["__embind_initialize_bindings"] = Module["asm"]["
|
|
8415
|
+
return (__embind_initialize_bindings = Module["__embind_initialize_bindings"] = Module["asm"]["fe"]).apply(null, arguments);
|
|
8444
8416
|
};
|
|
8445
8417
|
|
|
8446
8418
|
var _emscripten_builtin_memalign = Module["_emscripten_builtin_memalign"] = function() {
|
|
8447
|
-
return (_emscripten_builtin_memalign = Module["_emscripten_builtin_memalign"] = Module["asm"]["
|
|
8419
|
+
return (_emscripten_builtin_memalign = Module["_emscripten_builtin_memalign"] = Module["asm"]["ge"]).apply(null, arguments);
|
|
8448
8420
|
};
|
|
8449
8421
|
|
|
8450
8422
|
var stackSave = Module["stackSave"] = function() {
|
|
8451
|
-
return (stackSave = Module["stackSave"] = Module["asm"]["
|
|
8423
|
+
return (stackSave = Module["stackSave"] = Module["asm"]["he"]).apply(null, arguments);
|
|
8452
8424
|
};
|
|
8453
8425
|
|
|
8454
8426
|
var stackRestore = Module["stackRestore"] = function() {
|
|
8455
|
-
return (stackRestore = Module["stackRestore"] = Module["asm"]["
|
|
8427
|
+
return (stackRestore = Module["stackRestore"] = Module["asm"]["ie"]).apply(null, arguments);
|
|
8456
8428
|
};
|
|
8457
8429
|
|
|
8458
8430
|
var stackAlloc = Module["stackAlloc"] = function() {
|
|
8459
|
-
return (stackAlloc = Module["stackAlloc"] = Module["asm"]["
|
|
8431
|
+
return (stackAlloc = Module["stackAlloc"] = Module["asm"]["je"]).apply(null, arguments);
|
|
8460
8432
|
};
|
|
8461
8433
|
|
|
8462
8434
|
var ___cxa_is_pointer_type = Module["___cxa_is_pointer_type"] = function() {
|
|
8463
|
-
return (___cxa_is_pointer_type = Module["___cxa_is_pointer_type"] = Module["asm"]["
|
|
8435
|
+
return (___cxa_is_pointer_type = Module["___cxa_is_pointer_type"] = Module["asm"]["ke"]).apply(null, arguments);
|
|
8464
8436
|
};
|
|
8465
8437
|
|
|
8466
|
-
var ___start_em_js = Module["___start_em_js"] =
|
|
8438
|
+
var ___start_em_js = Module["___start_em_js"] = 979820;
|
|
8467
8439
|
|
|
8468
|
-
var ___stop_em_js = Module["___stop_em_js"] =
|
|
8440
|
+
var ___stop_em_js = Module["___stop_em_js"] = 986382;
|
|
8469
8441
|
|
|
8470
8442
|
Module["addRunDependency"] = addRunDependency;
|
|
8471
8443
|
|