@mediapipe/tasks-audio 0.1.0-alpha-3 → 0.1.0-alpha-5
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/audio.d.ts +0 -10
- package/audio_bundle.js +1 -1
- package/package.json +1 -1
- package/wasm/audio_wasm_internal.js +169 -151
- package/wasm/audio_wasm_internal.wasm +0 -0
- package/wasm/audio_wasm_nosimd_internal.js +169 -151
- package/wasm/audio_wasm_nosimd_internal.wasm +0 -0
package/package.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Build
|
|
1
|
+
// Build 518889570
|
|
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"]["Ua"];
|
|
470
470
|
updateGlobalBufferAndViews(wasmMemory.buffer);
|
|
471
|
-
wasmTable = Module["asm"]["
|
|
472
|
-
addOnInit(Module["asm"]["
|
|
471
|
+
wasmTable = Module["asm"]["Wa"];
|
|
472
|
+
addOnInit(Module["asm"]["Va"]);
|
|
473
473
|
removeRunDependency("wasm-instantiate");
|
|
474
474
|
}
|
|
475
475
|
addRunDependency("wasm-instantiate");
|
|
@@ -520,7 +520,7 @@ var tempDouble;
|
|
|
520
520
|
var tempI64;
|
|
521
521
|
|
|
522
522
|
var ASM_CONSTS = {
|
|
523
|
-
|
|
523
|
+
548626: () => {
|
|
524
524
|
let init_once = true;
|
|
525
525
|
if (init_once) {
|
|
526
526
|
const cachedFindCanvasEventTarget = findCanvasEventTarget;
|
|
@@ -546,76 +546,81 @@ var ASM_CONSTS = {
|
|
|
546
546
|
init_once = false;
|
|
547
547
|
}
|
|
548
548
|
},
|
|
549
|
-
|
|
549
|
+
549411: () => {
|
|
550
550
|
return typeof wasmOffsetConverter !== "undefined";
|
|
551
551
|
}
|
|
552
552
|
};
|
|
553
553
|
|
|
554
|
-
function
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
Module.vectorListeners[streamName](outData, index, length, timestamp);
|
|
561
|
-
}
|
|
562
|
-
}
|
|
563
|
-
};
|
|
564
|
-
}
|
|
554
|
+
function JsOnEmptyPacketListener(output_stream_name, timestamp) {
|
|
555
|
+
Module._wrapEmptyPacketListenerOutput(output_stream_name, timestamp);
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
function JsOnVectorFinishedListener(output_stream_name, timestamp) {
|
|
559
|
+
Module._wrapSimpleListenerOutput(output_stream_name, undefined, true, timestamp);
|
|
565
560
|
}
|
|
566
561
|
|
|
567
562
|
function JsOnSimpleListenerBool(output_stream_name, out_data, timestamp) {
|
|
568
563
|
Module._wrapSimpleListenerOutput(output_stream_name, out_data, timestamp);
|
|
569
564
|
}
|
|
570
565
|
|
|
571
|
-
function JsOnVectorListenerBool(output_stream_name, out_data,
|
|
572
|
-
Module.
|
|
566
|
+
function JsOnVectorListenerBool(output_stream_name, out_data, timestamp) {
|
|
567
|
+
Module._wrapSimpleListenerOutput(output_stream_name, out_data, false, timestamp);
|
|
573
568
|
}
|
|
574
569
|
|
|
575
570
|
function JsOnSimpleListenerInt(output_stream_name, out_data, timestamp) {
|
|
576
571
|
Module._wrapSimpleListenerOutput(output_stream_name, out_data, timestamp);
|
|
577
572
|
}
|
|
578
573
|
|
|
579
|
-
function JsOnVectorListenerInt(output_stream_name, out_data,
|
|
580
|
-
Module.
|
|
574
|
+
function JsOnVectorListenerInt(output_stream_name, out_data, timestamp) {
|
|
575
|
+
Module._wrapSimpleListenerOutput(output_stream_name, out_data, false, timestamp);
|
|
581
576
|
}
|
|
582
577
|
|
|
583
578
|
function JsOnSimpleListenerDouble(output_stream_name, out_data, timestamp) {
|
|
584
579
|
Module._wrapSimpleListenerOutput(output_stream_name, out_data, timestamp);
|
|
585
580
|
}
|
|
586
581
|
|
|
587
|
-
function JsOnVectorListenerDouble(output_stream_name, out_data,
|
|
588
|
-
Module.
|
|
582
|
+
function JsOnVectorListenerDouble(output_stream_name, out_data, timestamp) {
|
|
583
|
+
Module._wrapSimpleListenerOutput(output_stream_name, out_data, false, timestamp);
|
|
589
584
|
}
|
|
590
585
|
|
|
591
586
|
function JsOnSimpleListenerFloat(output_stream_name, out_data, timestamp) {
|
|
592
587
|
Module._wrapSimpleListenerOutput(output_stream_name, out_data, timestamp);
|
|
593
588
|
}
|
|
594
589
|
|
|
595
|
-
function JsOnVectorListenerFloat(output_stream_name, out_data,
|
|
596
|
-
Module.
|
|
590
|
+
function JsOnVectorListenerFloat(output_stream_name, out_data, timestamp) {
|
|
591
|
+
Module._wrapSimpleListenerOutput(output_stream_name, out_data, false, timestamp);
|
|
597
592
|
}
|
|
598
593
|
|
|
599
594
|
function JsOnSimpleListenerString(output_stream_name, out_data, timestamp) {
|
|
600
595
|
Module._wrapSimpleListenerOutput(output_stream_name, UTF8ToString(out_data), timestamp);
|
|
601
596
|
}
|
|
602
597
|
|
|
603
|
-
function JsOnVectorListenerString(output_stream_name, out_data,
|
|
604
|
-
Module.
|
|
598
|
+
function JsOnVectorListenerString(output_stream_name, out_data, timestamp) {
|
|
599
|
+
Module._wrapSimpleListenerOutput(output_stream_name, UTF8ToString(out_data), false, timestamp);
|
|
605
600
|
}
|
|
606
601
|
|
|
607
|
-
function JsOnVectorListenerProto(output_stream_name, proto_ptr, proto_size, make_deep_copy,
|
|
602
|
+
function JsOnVectorListenerProto(output_stream_name, proto_ptr, proto_size, make_deep_copy, timestamp) {
|
|
608
603
|
const newProtoArray = make_deep_copy ? Module.HEAPU8.slice(proto_ptr, proto_ptr + proto_size) : new Uint8Array(Module.HEAPU8.buffer, proto_ptr, proto_size);
|
|
609
|
-
Module.
|
|
604
|
+
Module._wrapSimpleListenerOutput(output_stream_name, newProtoArray, false, timestamp);
|
|
610
605
|
}
|
|
611
606
|
|
|
612
607
|
function JsWrapSimpleListeners() {
|
|
613
608
|
if (!Module._wrapSimpleListenerOutput) {
|
|
614
|
-
Module._wrapSimpleListenerOutput = (outputStreamName,
|
|
609
|
+
Module._wrapSimpleListenerOutput = (outputStreamName, ...args) => {
|
|
615
610
|
if (Module.simpleListeners) {
|
|
616
611
|
const streamName = UTF8ToString(outputStreamName);
|
|
617
612
|
if (Module.simpleListeners[streamName]) {
|
|
618
|
-
Module.simpleListeners[streamName](
|
|
613
|
+
Module.simpleListeners[streamName](...args);
|
|
614
|
+
}
|
|
615
|
+
}
|
|
616
|
+
};
|
|
617
|
+
}
|
|
618
|
+
if (!Module._wrapEmptyPacketListenerOutput) {
|
|
619
|
+
Module._wrapEmptyPacketListenerOutput = (outputStreamName, timestamp) => {
|
|
620
|
+
if (Module.emptyPacketListeners) {
|
|
621
|
+
const streamName = UTF8ToString(outputStreamName);
|
|
622
|
+
if (Module.emptyPacketListeners[streamName]) {
|
|
623
|
+
Module.emptyPacketListeners[streamName](timestamp);
|
|
619
624
|
}
|
|
620
625
|
}
|
|
621
626
|
};
|
|
@@ -5738,6 +5743,10 @@ var WebGPU = {
|
|
|
5738
5743
|
}
|
|
5739
5744
|
return constants;
|
|
5740
5745
|
},
|
|
5746
|
+
makePipelineLayout: function(layoutPtr) {
|
|
5747
|
+
if (!layoutPtr) return "auto";
|
|
5748
|
+
return WebGPU.mgrPipelineLayout.get(layoutPtr);
|
|
5749
|
+
},
|
|
5741
5750
|
makeProgrammableStageDescriptor: function(ptr) {
|
|
5742
5751
|
if (!ptr) return undefined;
|
|
5743
5752
|
return {
|
|
@@ -5959,308 +5968,317 @@ var GLctx;
|
|
|
5959
5968
|
WebGPU.initManagers();
|
|
5960
5969
|
|
|
5961
5970
|
var asmLibraryArg = {
|
|
5962
|
-
"
|
|
5963
|
-
"
|
|
5964
|
-
"
|
|
5965
|
-
"
|
|
5966
|
-
"
|
|
5967
|
-
"
|
|
5968
|
-
"
|
|
5969
|
-
"
|
|
5970
|
-
"
|
|
5971
|
-
"
|
|
5972
|
-
"
|
|
5973
|
-
"
|
|
5974
|
-
"
|
|
5975
|
-
"
|
|
5976
|
-
"
|
|
5977
|
-
"
|
|
5971
|
+
"Ta": HaveOffsetConverter,
|
|
5972
|
+
"Sa": JsOnEmptyPacketListener,
|
|
5973
|
+
"L": JsOnSimpleListenerBinaryArray,
|
|
5974
|
+
"Ra": JsOnSimpleListenerBool,
|
|
5975
|
+
"Qa": JsOnSimpleListenerDouble,
|
|
5976
|
+
"Pa": JsOnSimpleListenerFloat,
|
|
5977
|
+
"Oa": JsOnSimpleListenerInt,
|
|
5978
|
+
"Na": JsOnSimpleListenerString,
|
|
5979
|
+
"h": JsOnVectorFinishedListener,
|
|
5980
|
+
"Ma": JsOnVectorListenerBool,
|
|
5981
|
+
"La": JsOnVectorListenerDouble,
|
|
5982
|
+
"Ka": JsOnVectorListenerFloat,
|
|
5983
|
+
"Ja": JsOnVectorListenerInt,
|
|
5984
|
+
"Ia": JsOnVectorListenerProto,
|
|
5985
|
+
"Ha": JsOnVectorListenerString,
|
|
5986
|
+
"f": JsWrapErrorListener,
|
|
5987
|
+
"b": JsWrapSimpleListeners,
|
|
5978
5988
|
"K": ___syscall_fcntl64,
|
|
5979
|
-
"
|
|
5989
|
+
"Ga": ___syscall_ioctl,
|
|
5980
5990
|
"J": ___syscall_openat,
|
|
5981
|
-
"
|
|
5982
|
-
"
|
|
5983
|
-
"
|
|
5984
|
-
"
|
|
5985
|
-
"
|
|
5986
|
-
"
|
|
5987
|
-
"
|
|
5988
|
-
"
|
|
5989
|
-
"
|
|
5990
|
-
"
|
|
5991
|
-
"
|
|
5991
|
+
"Fa": ___syscall_stat64,
|
|
5992
|
+
"Aa": __dlinit,
|
|
5993
|
+
"za": __dlopen_js,
|
|
5994
|
+
"ya": __dlsym_js,
|
|
5995
|
+
"xa": __emscripten_get_now_is_monotonic,
|
|
5996
|
+
"wa": __gmtime_js,
|
|
5997
|
+
"va": __localtime_js,
|
|
5998
|
+
"ua": __mktime_js,
|
|
5999
|
+
"ta": __mmap_js,
|
|
6000
|
+
"sa": __munmap_js,
|
|
6001
|
+
"ra": __tzset_js,
|
|
5992
6002
|
"a": _abort,
|
|
5993
6003
|
"I": _emscripten_asm_const_int,
|
|
5994
|
-
"
|
|
5995
|
-
"
|
|
5996
|
-
"
|
|
5997
|
-
"
|
|
5998
|
-
"
|
|
5999
|
-
"
|
|
6000
|
-
"
|
|
6001
|
-
"
|
|
6002
|
-
"
|
|
6003
|
-
"
|
|
6004
|
-
"
|
|
6004
|
+
"qa": _emscripten_date_now,
|
|
6005
|
+
"pa": _emscripten_get_heap_max,
|
|
6006
|
+
"e": _emscripten_get_now,
|
|
6007
|
+
"oa": _emscripten_memcpy_big,
|
|
6008
|
+
"na": _emscripten_pc_get_function,
|
|
6009
|
+
"ma": _emscripten_resize_heap,
|
|
6010
|
+
"la": _emscripten_stack_snapshot,
|
|
6011
|
+
"ka": _emscripten_stack_unwind_buffer,
|
|
6012
|
+
"ja": _emscripten_webgl_create_context,
|
|
6013
|
+
"ia": _emscripten_webgl_destroy_context,
|
|
6014
|
+
"ha": _emscripten_webgl_get_context_attributes,
|
|
6005
6015
|
"H": _emscripten_webgl_get_current_context,
|
|
6006
|
-
"
|
|
6007
|
-
"
|
|
6008
|
-
"
|
|
6009
|
-
"
|
|
6016
|
+
"ga": _emscripten_webgl_init_context_attributes,
|
|
6017
|
+
"fa": _emscripten_webgl_make_context_current,
|
|
6018
|
+
"Ea": _environ_get,
|
|
6019
|
+
"Da": _environ_sizes_get,
|
|
6010
6020
|
"G": _exit,
|
|
6011
6021
|
"s": _fd_close,
|
|
6012
|
-
"
|
|
6013
|
-
"
|
|
6022
|
+
"Ca": _fd_read,
|
|
6023
|
+
"Q": _fd_seek,
|
|
6014
6024
|
"r": _fd_write,
|
|
6015
|
-
"
|
|
6025
|
+
"ea": _getentropy,
|
|
6016
6026
|
"q": _glActiveTexture,
|
|
6017
6027
|
"F": _glAttachShader,
|
|
6018
|
-
"
|
|
6019
|
-
"
|
|
6028
|
+
"da": _glBindAttribLocation,
|
|
6029
|
+
"g": _glBindBuffer,
|
|
6020
6030
|
"m": _glBindFramebuffer,
|
|
6021
|
-
"
|
|
6031
|
+
"d": _glBindTexture,
|
|
6022
6032
|
"E": _glBufferData,
|
|
6023
|
-
"
|
|
6024
|
-
"
|
|
6025
|
-
"
|
|
6026
|
-
"
|
|
6033
|
+
"P": _glClientWaitSync,
|
|
6034
|
+
"ca": _glCompileShader,
|
|
6035
|
+
"ba": _glCreateProgram,
|
|
6036
|
+
"aa": _glCreateShader,
|
|
6027
6037
|
"D": _glDeleteFramebuffers,
|
|
6028
|
-
"
|
|
6038
|
+
"$": _glDeleteProgram,
|
|
6029
6039
|
"C": _glDeleteShader,
|
|
6030
6040
|
"i": _glDeleteSync,
|
|
6031
6041
|
"B": _glDeleteTextures,
|
|
6032
6042
|
"A": _glDisableVertexAttribArray,
|
|
6033
|
-
"
|
|
6043
|
+
"_": _glDrawArrays,
|
|
6034
6044
|
"z": _glEnableVertexAttribArray,
|
|
6035
6045
|
"y": _glFenceSync,
|
|
6036
6046
|
"l": _glFinish,
|
|
6037
6047
|
"p": _glFramebufferTexture2D,
|
|
6038
6048
|
"x": _glGenBuffers,
|
|
6039
|
-
"
|
|
6049
|
+
"Z": _glGenFramebuffers,
|
|
6040
6050
|
"o": _glGenTextures,
|
|
6041
6051
|
"k": _glGetError,
|
|
6042
6052
|
"w": _glGetIntegerv,
|
|
6043
6053
|
"v": _glGetString,
|
|
6044
|
-
"
|
|
6045
|
-
"
|
|
6054
|
+
"Y": _glGetUniformLocation,
|
|
6055
|
+
"X": _glLinkProgram,
|
|
6046
6056
|
"n": _glPixelStorei,
|
|
6047
6057
|
"u": _glReadPixels,
|
|
6048
|
-
"
|
|
6049
|
-
"
|
|
6050
|
-
"
|
|
6051
|
-
"
|
|
6052
|
-
"
|
|
6053
|
-
"
|
|
6058
|
+
"W": _glShaderSource,
|
|
6059
|
+
"V": _glTexImage2D,
|
|
6060
|
+
"c": _glTexParameteri,
|
|
6061
|
+
"U": _glTexStorage2D,
|
|
6062
|
+
"T": _glUniform1i,
|
|
6063
|
+
"S": _glUseProgram,
|
|
6054
6064
|
"t": _glVertexAttribPointer,
|
|
6055
|
-
"
|
|
6056
|
-
"
|
|
6065
|
+
"R": _glViewport,
|
|
6066
|
+
"Ba": _proc_exit,
|
|
6057
6067
|
"j": _strftime,
|
|
6058
|
-
"
|
|
6059
|
-
"
|
|
6060
|
-
"
|
|
6068
|
+
"O": _strftime_l,
|
|
6069
|
+
"N": _wgpuTextureDestroy,
|
|
6070
|
+
"M": _wgpuTextureRelease
|
|
6061
6071
|
};
|
|
6062
6072
|
|
|
6063
6073
|
var asm = createWasm();
|
|
6064
6074
|
|
|
6065
6075
|
var ___wasm_call_ctors = Module["___wasm_call_ctors"] = function() {
|
|
6066
|
-
return (___wasm_call_ctors = Module["___wasm_call_ctors"] = Module["asm"]["
|
|
6076
|
+
return (___wasm_call_ctors = Module["___wasm_call_ctors"] = Module["asm"]["Va"]).apply(null, arguments);
|
|
6067
6077
|
};
|
|
6068
6078
|
|
|
6069
6079
|
var _free = Module["_free"] = function() {
|
|
6070
|
-
return (_free = Module["_free"] = Module["asm"]["
|
|
6080
|
+
return (_free = Module["_free"] = Module["asm"]["Xa"]).apply(null, arguments);
|
|
6071
6081
|
};
|
|
6072
6082
|
|
|
6073
6083
|
var _malloc = Module["_malloc"] = function() {
|
|
6074
|
-
return (_malloc = Module["_malloc"] = Module["asm"]["
|
|
6084
|
+
return (_malloc = Module["_malloc"] = Module["asm"]["Ya"]).apply(null, arguments);
|
|
6075
6085
|
};
|
|
6076
6086
|
|
|
6077
6087
|
var _configureAudio = Module["_configureAudio"] = function() {
|
|
6078
|
-
return (_configureAudio = Module["_configureAudio"] = Module["asm"]["
|
|
6088
|
+
return (_configureAudio = Module["_configureAudio"] = Module["asm"]["Za"]).apply(null, arguments);
|
|
6079
6089
|
};
|
|
6080
6090
|
|
|
6081
6091
|
var _addAudioToInputStream = Module["_addAudioToInputStream"] = function() {
|
|
6082
|
-
return (_addAudioToInputStream = Module["_addAudioToInputStream"] = Module["asm"]["
|
|
6092
|
+
return (_addAudioToInputStream = Module["_addAudioToInputStream"] = Module["asm"]["_a"]).apply(null, arguments);
|
|
6083
6093
|
};
|
|
6084
6094
|
|
|
6085
6095
|
var _registerModelResourcesGraphService = Module["_registerModelResourcesGraphService"] = function() {
|
|
6086
|
-
return (_registerModelResourcesGraphService = Module["_registerModelResourcesGraphService"] = Module["asm"]["
|
|
6096
|
+
return (_registerModelResourcesGraphService = Module["_registerModelResourcesGraphService"] = Module["asm"]["$a"]).apply(null, arguments);
|
|
6087
6097
|
};
|
|
6088
6098
|
|
|
6089
6099
|
var ___errno_location = Module["___errno_location"] = function() {
|
|
6090
|
-
return (___errno_location = Module["___errno_location"] = Module["asm"]["
|
|
6100
|
+
return (___errno_location = Module["___errno_location"] = Module["asm"]["ab"]).apply(null, arguments);
|
|
6091
6101
|
};
|
|
6092
6102
|
|
|
6093
6103
|
var _bindTextureToStream = Module["_bindTextureToStream"] = function() {
|
|
6094
|
-
return (_bindTextureToStream = Module["_bindTextureToStream"] = Module["asm"]["
|
|
6104
|
+
return (_bindTextureToStream = Module["_bindTextureToStream"] = Module["asm"]["bb"]).apply(null, arguments);
|
|
6095
6105
|
};
|
|
6096
6106
|
|
|
6097
6107
|
var _addBoundTextureToStream = Module["_addBoundTextureToStream"] = function() {
|
|
6098
|
-
return (_addBoundTextureToStream = Module["_addBoundTextureToStream"] = Module["asm"]["
|
|
6108
|
+
return (_addBoundTextureToStream = Module["_addBoundTextureToStream"] = Module["asm"]["cb"]).apply(null, arguments);
|
|
6099
6109
|
};
|
|
6100
6110
|
|
|
6101
6111
|
var _addDoubleToInputStream = Module["_addDoubleToInputStream"] = function() {
|
|
6102
|
-
return (_addDoubleToInputStream = Module["_addDoubleToInputStream"] = Module["asm"]["
|
|
6112
|
+
return (_addDoubleToInputStream = Module["_addDoubleToInputStream"] = Module["asm"]["db"]).apply(null, arguments);
|
|
6103
6113
|
};
|
|
6104
6114
|
|
|
6105
6115
|
var _addFloatToInputStream = Module["_addFloatToInputStream"] = function() {
|
|
6106
|
-
return (_addFloatToInputStream = Module["_addFloatToInputStream"] = Module["asm"]["
|
|
6116
|
+
return (_addFloatToInputStream = Module["_addFloatToInputStream"] = Module["asm"]["eb"]).apply(null, arguments);
|
|
6107
6117
|
};
|
|
6108
6118
|
|
|
6109
6119
|
var _addBoolToInputStream = Module["_addBoolToInputStream"] = function() {
|
|
6110
|
-
return (_addBoolToInputStream = Module["_addBoolToInputStream"] = Module["asm"]["
|
|
6120
|
+
return (_addBoolToInputStream = Module["_addBoolToInputStream"] = Module["asm"]["fb"]).apply(null, arguments);
|
|
6111
6121
|
};
|
|
6112
6122
|
|
|
6113
6123
|
var _addIntToInputStream = Module["_addIntToInputStream"] = function() {
|
|
6114
|
-
return (_addIntToInputStream = Module["_addIntToInputStream"] = Module["asm"]["
|
|
6124
|
+
return (_addIntToInputStream = Module["_addIntToInputStream"] = Module["asm"]["gb"]).apply(null, arguments);
|
|
6115
6125
|
};
|
|
6116
6126
|
|
|
6117
6127
|
var _addStringToInputStream = Module["_addStringToInputStream"] = function() {
|
|
6118
|
-
return (_addStringToInputStream = Module["_addStringToInputStream"] = Module["asm"]["
|
|
6128
|
+
return (_addStringToInputStream = Module["_addStringToInputStream"] = Module["asm"]["hb"]).apply(null, arguments);
|
|
6119
6129
|
};
|
|
6120
6130
|
|
|
6121
6131
|
var _addFlatHashMapToInputStream = Module["_addFlatHashMapToInputStream"] = function() {
|
|
6122
|
-
return (_addFlatHashMapToInputStream = Module["_addFlatHashMapToInputStream"] = Module["asm"]["
|
|
6132
|
+
return (_addFlatHashMapToInputStream = Module["_addFlatHashMapToInputStream"] = Module["asm"]["ib"]).apply(null, arguments);
|
|
6123
6133
|
};
|
|
6124
6134
|
|
|
6125
6135
|
var _addProtoToInputStream = Module["_addProtoToInputStream"] = function() {
|
|
6126
|
-
return (_addProtoToInputStream = Module["_addProtoToInputStream"] = Module["asm"]["
|
|
6136
|
+
return (_addProtoToInputStream = Module["_addProtoToInputStream"] = Module["asm"]["jb"]).apply(null, arguments);
|
|
6137
|
+
};
|
|
6138
|
+
|
|
6139
|
+
var _addEmptyPacketToInputStream = Module["_addEmptyPacketToInputStream"] = function() {
|
|
6140
|
+
return (_addEmptyPacketToInputStream = Module["_addEmptyPacketToInputStream"] = Module["asm"]["kb"]).apply(null, arguments);
|
|
6127
6141
|
};
|
|
6128
6142
|
|
|
6129
6143
|
var _addBoolToInputSidePacket = Module["_addBoolToInputSidePacket"] = function() {
|
|
6130
|
-
return (_addBoolToInputSidePacket = Module["_addBoolToInputSidePacket"] = Module["asm"]["
|
|
6144
|
+
return (_addBoolToInputSidePacket = Module["_addBoolToInputSidePacket"] = Module["asm"]["lb"]).apply(null, arguments);
|
|
6131
6145
|
};
|
|
6132
6146
|
|
|
6133
6147
|
var _addDoubleToInputSidePacket = Module["_addDoubleToInputSidePacket"] = function() {
|
|
6134
|
-
return (_addDoubleToInputSidePacket = Module["_addDoubleToInputSidePacket"] = Module["asm"]["
|
|
6148
|
+
return (_addDoubleToInputSidePacket = Module["_addDoubleToInputSidePacket"] = Module["asm"]["mb"]).apply(null, arguments);
|
|
6135
6149
|
};
|
|
6136
6150
|
|
|
6137
6151
|
var _addFloatToInputSidePacket = Module["_addFloatToInputSidePacket"] = function() {
|
|
6138
|
-
return (_addFloatToInputSidePacket = Module["_addFloatToInputSidePacket"] = Module["asm"]["
|
|
6152
|
+
return (_addFloatToInputSidePacket = Module["_addFloatToInputSidePacket"] = Module["asm"]["nb"]).apply(null, arguments);
|
|
6139
6153
|
};
|
|
6140
6154
|
|
|
6141
6155
|
var _addIntToInputSidePacket = Module["_addIntToInputSidePacket"] = function() {
|
|
6142
|
-
return (_addIntToInputSidePacket = Module["_addIntToInputSidePacket"] = Module["asm"]["
|
|
6156
|
+
return (_addIntToInputSidePacket = Module["_addIntToInputSidePacket"] = Module["asm"]["ob"]).apply(null, arguments);
|
|
6143
6157
|
};
|
|
6144
6158
|
|
|
6145
6159
|
var _addStringToInputSidePacket = Module["_addStringToInputSidePacket"] = function() {
|
|
6146
|
-
return (_addStringToInputSidePacket = Module["_addStringToInputSidePacket"] = Module["asm"]["
|
|
6160
|
+
return (_addStringToInputSidePacket = Module["_addStringToInputSidePacket"] = Module["asm"]["pb"]).apply(null, arguments);
|
|
6147
6161
|
};
|
|
6148
6162
|
|
|
6149
6163
|
var _addProtoToInputSidePacket = Module["_addProtoToInputSidePacket"] = function() {
|
|
6150
|
-
return (_addProtoToInputSidePacket = Module["_addProtoToInputSidePacket"] = Module["asm"]["
|
|
6164
|
+
return (_addProtoToInputSidePacket = Module["_addProtoToInputSidePacket"] = Module["asm"]["qb"]).apply(null, arguments);
|
|
6151
6165
|
};
|
|
6152
6166
|
|
|
6153
6167
|
var _attachBoolListener = Module["_attachBoolListener"] = function() {
|
|
6154
|
-
return (_attachBoolListener = Module["_attachBoolListener"] = Module["asm"]["
|
|
6168
|
+
return (_attachBoolListener = Module["_attachBoolListener"] = Module["asm"]["rb"]).apply(null, arguments);
|
|
6155
6169
|
};
|
|
6156
6170
|
|
|
6157
6171
|
var _attachBoolVectorListener = Module["_attachBoolVectorListener"] = function() {
|
|
6158
|
-
return (_attachBoolVectorListener = Module["_attachBoolVectorListener"] = Module["asm"]["
|
|
6172
|
+
return (_attachBoolVectorListener = Module["_attachBoolVectorListener"] = Module["asm"]["sb"]).apply(null, arguments);
|
|
6159
6173
|
};
|
|
6160
6174
|
|
|
6161
6175
|
var _attachDoubleListener = Module["_attachDoubleListener"] = function() {
|
|
6162
|
-
return (_attachDoubleListener = Module["_attachDoubleListener"] = Module["asm"]["
|
|
6176
|
+
return (_attachDoubleListener = Module["_attachDoubleListener"] = Module["asm"]["tb"]).apply(null, arguments);
|
|
6163
6177
|
};
|
|
6164
6178
|
|
|
6165
6179
|
var _attachDoubleVectorListener = Module["_attachDoubleVectorListener"] = function() {
|
|
6166
|
-
return (_attachDoubleVectorListener = Module["_attachDoubleVectorListener"] = Module["asm"]["
|
|
6180
|
+
return (_attachDoubleVectorListener = Module["_attachDoubleVectorListener"] = Module["asm"]["ub"]).apply(null, arguments);
|
|
6167
6181
|
};
|
|
6168
6182
|
|
|
6169
6183
|
var _attachFloatListener = Module["_attachFloatListener"] = function() {
|
|
6170
|
-
return (_attachFloatListener = Module["_attachFloatListener"] = Module["asm"]["
|
|
6184
|
+
return (_attachFloatListener = Module["_attachFloatListener"] = Module["asm"]["vb"]).apply(null, arguments);
|
|
6171
6185
|
};
|
|
6172
6186
|
|
|
6173
6187
|
var _attachFloatVectorListener = Module["_attachFloatVectorListener"] = function() {
|
|
6174
|
-
return (_attachFloatVectorListener = Module["_attachFloatVectorListener"] = Module["asm"]["
|
|
6188
|
+
return (_attachFloatVectorListener = Module["_attachFloatVectorListener"] = Module["asm"]["wb"]).apply(null, arguments);
|
|
6175
6189
|
};
|
|
6176
6190
|
|
|
6177
6191
|
var _attachIntListener = Module["_attachIntListener"] = function() {
|
|
6178
|
-
return (_attachIntListener = Module["_attachIntListener"] = Module["asm"]["
|
|
6192
|
+
return (_attachIntListener = Module["_attachIntListener"] = Module["asm"]["xb"]).apply(null, arguments);
|
|
6179
6193
|
};
|
|
6180
6194
|
|
|
6181
6195
|
var _attachIntVectorListener = Module["_attachIntVectorListener"] = function() {
|
|
6182
|
-
return (_attachIntVectorListener = Module["_attachIntVectorListener"] = Module["asm"]["
|
|
6196
|
+
return (_attachIntVectorListener = Module["_attachIntVectorListener"] = Module["asm"]["yb"]).apply(null, arguments);
|
|
6183
6197
|
};
|
|
6184
6198
|
|
|
6185
6199
|
var _attachStringListener = Module["_attachStringListener"] = function() {
|
|
6186
|
-
return (_attachStringListener = Module["_attachStringListener"] = Module["asm"]["
|
|
6200
|
+
return (_attachStringListener = Module["_attachStringListener"] = Module["asm"]["zb"]).apply(null, arguments);
|
|
6187
6201
|
};
|
|
6188
6202
|
|
|
6189
6203
|
var _attachStringVectorListener = Module["_attachStringVectorListener"] = function() {
|
|
6190
|
-
return (_attachStringVectorListener = Module["_attachStringVectorListener"] = Module["asm"]["
|
|
6204
|
+
return (_attachStringVectorListener = Module["_attachStringVectorListener"] = Module["asm"]["Ab"]).apply(null, arguments);
|
|
6191
6205
|
};
|
|
6192
6206
|
|
|
6193
6207
|
var _attachProtoListener = Module["_attachProtoListener"] = function() {
|
|
6194
|
-
return (_attachProtoListener = Module["_attachProtoListener"] = Module["asm"]["
|
|
6208
|
+
return (_attachProtoListener = Module["_attachProtoListener"] = Module["asm"]["Bb"]).apply(null, arguments);
|
|
6195
6209
|
};
|
|
6196
6210
|
|
|
6197
6211
|
var _attachProtoVectorListener = Module["_attachProtoVectorListener"] = function() {
|
|
6198
|
-
return (_attachProtoVectorListener = Module["_attachProtoVectorListener"] = Module["asm"]["
|
|
6212
|
+
return (_attachProtoVectorListener = Module["_attachProtoVectorListener"] = Module["asm"]["Cb"]).apply(null, arguments);
|
|
6213
|
+
};
|
|
6214
|
+
|
|
6215
|
+
var _getGraphConfig = Module["_getGraphConfig"] = function() {
|
|
6216
|
+
return (_getGraphConfig = Module["_getGraphConfig"] = Module["asm"]["Db"]).apply(null, arguments);
|
|
6199
6217
|
};
|
|
6200
6218
|
|
|
6201
6219
|
var _clearSubgraphs = Module["_clearSubgraphs"] = function() {
|
|
6202
|
-
return (_clearSubgraphs = Module["_clearSubgraphs"] = Module["asm"]["
|
|
6220
|
+
return (_clearSubgraphs = Module["_clearSubgraphs"] = Module["asm"]["Eb"]).apply(null, arguments);
|
|
6203
6221
|
};
|
|
6204
6222
|
|
|
6205
6223
|
var _pushBinarySubgraph = Module["_pushBinarySubgraph"] = function() {
|
|
6206
|
-
return (_pushBinarySubgraph = Module["_pushBinarySubgraph"] = Module["asm"]["
|
|
6224
|
+
return (_pushBinarySubgraph = Module["_pushBinarySubgraph"] = Module["asm"]["Fb"]).apply(null, arguments);
|
|
6207
6225
|
};
|
|
6208
6226
|
|
|
6209
6227
|
var _pushTextSubgraph = Module["_pushTextSubgraph"] = function() {
|
|
6210
|
-
return (_pushTextSubgraph = Module["_pushTextSubgraph"] = Module["asm"]["
|
|
6228
|
+
return (_pushTextSubgraph = Module["_pushTextSubgraph"] = Module["asm"]["Gb"]).apply(null, arguments);
|
|
6211
6229
|
};
|
|
6212
6230
|
|
|
6213
6231
|
var _changeBinaryGraph = Module["_changeBinaryGraph"] = function() {
|
|
6214
|
-
return (_changeBinaryGraph = Module["_changeBinaryGraph"] = Module["asm"]["
|
|
6232
|
+
return (_changeBinaryGraph = Module["_changeBinaryGraph"] = Module["asm"]["Hb"]).apply(null, arguments);
|
|
6215
6233
|
};
|
|
6216
6234
|
|
|
6217
6235
|
var _changeTextGraph = Module["_changeTextGraph"] = function() {
|
|
6218
|
-
return (_changeTextGraph = Module["_changeTextGraph"] = Module["asm"]["
|
|
6236
|
+
return (_changeTextGraph = Module["_changeTextGraph"] = Module["asm"]["Ib"]).apply(null, arguments);
|
|
6219
6237
|
};
|
|
6220
6238
|
|
|
6221
6239
|
var _processGl = Module["_processGl"] = function() {
|
|
6222
|
-
return (_processGl = Module["_processGl"] = Module["asm"]["
|
|
6240
|
+
return (_processGl = Module["_processGl"] = Module["asm"]["Jb"]).apply(null, arguments);
|
|
6223
6241
|
};
|
|
6224
6242
|
|
|
6225
6243
|
var _process = Module["_process"] = function() {
|
|
6226
|
-
return (_process = Module["_process"] = Module["asm"]["
|
|
6244
|
+
return (_process = Module["_process"] = Module["asm"]["Kb"]).apply(null, arguments);
|
|
6227
6245
|
};
|
|
6228
6246
|
|
|
6229
6247
|
var _bindTextureToCanvas = Module["_bindTextureToCanvas"] = function() {
|
|
6230
|
-
return (_bindTextureToCanvas = Module["_bindTextureToCanvas"] = Module["asm"]["
|
|
6248
|
+
return (_bindTextureToCanvas = Module["_bindTextureToCanvas"] = Module["asm"]["Lb"]).apply(null, arguments);
|
|
6231
6249
|
};
|
|
6232
6250
|
|
|
6233
6251
|
var _requestShaderRefreshOnGraphChange = Module["_requestShaderRefreshOnGraphChange"] = function() {
|
|
6234
|
-
return (_requestShaderRefreshOnGraphChange = Module["_requestShaderRefreshOnGraphChange"] = Module["asm"]["
|
|
6252
|
+
return (_requestShaderRefreshOnGraphChange = Module["_requestShaderRefreshOnGraphChange"] = Module["asm"]["Mb"]).apply(null, arguments);
|
|
6235
6253
|
};
|
|
6236
6254
|
|
|
6237
6255
|
var _waitUntilIdle = Module["_waitUntilIdle"] = function() {
|
|
6238
|
-
return (_waitUntilIdle = Module["_waitUntilIdle"] = Module["asm"]["
|
|
6256
|
+
return (_waitUntilIdle = Module["_waitUntilIdle"] = Module["asm"]["Nb"]).apply(null, arguments);
|
|
6239
6257
|
};
|
|
6240
6258
|
|
|
6241
6259
|
var _setAutoRenderToScreen = Module["_setAutoRenderToScreen"] = function() {
|
|
6242
|
-
return (_setAutoRenderToScreen = Module["_setAutoRenderToScreen"] = Module["asm"]["
|
|
6260
|
+
return (_setAutoRenderToScreen = Module["_setAutoRenderToScreen"] = Module["asm"]["Ob"]).apply(null, arguments);
|
|
6243
6261
|
};
|
|
6244
6262
|
|
|
6245
6263
|
var _emscripten_builtin_memalign = Module["_emscripten_builtin_memalign"] = function() {
|
|
6246
|
-
return (_emscripten_builtin_memalign = Module["_emscripten_builtin_memalign"] = Module["asm"]["
|
|
6264
|
+
return (_emscripten_builtin_memalign = Module["_emscripten_builtin_memalign"] = Module["asm"]["Pb"]).apply(null, arguments);
|
|
6247
6265
|
};
|
|
6248
6266
|
|
|
6249
6267
|
var stackSave = Module["stackSave"] = function() {
|
|
6250
|
-
return (stackSave = Module["stackSave"] = Module["asm"]["
|
|
6268
|
+
return (stackSave = Module["stackSave"] = Module["asm"]["Qb"]).apply(null, arguments);
|
|
6251
6269
|
};
|
|
6252
6270
|
|
|
6253
6271
|
var stackRestore = Module["stackRestore"] = function() {
|
|
6254
|
-
return (stackRestore = Module["stackRestore"] = Module["asm"]["
|
|
6272
|
+
return (stackRestore = Module["stackRestore"] = Module["asm"]["Rb"]).apply(null, arguments);
|
|
6255
6273
|
};
|
|
6256
6274
|
|
|
6257
6275
|
var stackAlloc = Module["stackAlloc"] = function() {
|
|
6258
|
-
return (stackAlloc = Module["stackAlloc"] = Module["asm"]["
|
|
6276
|
+
return (stackAlloc = Module["stackAlloc"] = Module["asm"]["Sb"]).apply(null, arguments);
|
|
6259
6277
|
};
|
|
6260
6278
|
|
|
6261
|
-
var ___start_em_js = Module["___start_em_js"] =
|
|
6279
|
+
var ___start_em_js = Module["___start_em_js"] = 545196;
|
|
6262
6280
|
|
|
6263
|
-
var ___stop_em_js = Module["___stop_em_js"] =
|
|
6281
|
+
var ___stop_em_js = Module["___stop_em_js"] = 548626;
|
|
6264
6282
|
|
|
6265
6283
|
Module["addRunDependency"] = addRunDependency;
|
|
6266
6284
|
|
|
Binary file
|