@mediapipe/tasks-audio 0.1.0-alpha-3 → 0.1.0-alpha-4
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/package.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Build
|
|
1
|
+
// Build 507782677
|
|
2
2
|
|
|
3
3
|
var ModuleFactory = (() => {
|
|
4
4
|
var _scriptDir = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : undefined;
|
|
@@ -520,7 +520,7 @@ var tempDouble;
|
|
|
520
520
|
var tempI64;
|
|
521
521
|
|
|
522
522
|
var ASM_CONSTS = {
|
|
523
|
-
|
|
523
|
+
541827: () => {
|
|
524
524
|
let init_once = true;
|
|
525
525
|
if (init_once) {
|
|
526
526
|
const cachedFindCanvasEventTarget = findCanvasEventTarget;
|
|
@@ -546,22 +546,13 @@ var ASM_CONSTS = {
|
|
|
546
546
|
init_once = false;
|
|
547
547
|
}
|
|
548
548
|
},
|
|
549
|
-
|
|
549
|
+
542612: () => {
|
|
550
550
|
return typeof wasmOffsetConverter !== "undefined";
|
|
551
551
|
}
|
|
552
552
|
};
|
|
553
553
|
|
|
554
|
-
function
|
|
555
|
-
|
|
556
|
-
Module._wrapVectorListenerOutput = (outputStreamName, outData, index, length, timestamp) => {
|
|
557
|
-
if (Module.vectorListeners) {
|
|
558
|
-
const streamName = UTF8ToString(outputStreamName);
|
|
559
|
-
if (Module.vectorListeners[streamName]) {
|
|
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);
|
|
565
556
|
}
|
|
566
557
|
|
|
567
558
|
function JsOnSimpleListenerBool(output_stream_name, out_data, timestamp) {
|
|
@@ -569,7 +560,7 @@ function JsOnSimpleListenerBool(output_stream_name, out_data, timestamp) {
|
|
|
569
560
|
}
|
|
570
561
|
|
|
571
562
|
function JsOnVectorListenerBool(output_stream_name, out_data, index, length, timestamp) {
|
|
572
|
-
Module.
|
|
563
|
+
Module._wrapSimpleListenerOutput(output_stream_name, out_data, index, length, timestamp);
|
|
573
564
|
}
|
|
574
565
|
|
|
575
566
|
function JsOnSimpleListenerInt(output_stream_name, out_data, timestamp) {
|
|
@@ -577,7 +568,7 @@ function JsOnSimpleListenerInt(output_stream_name, out_data, timestamp) {
|
|
|
577
568
|
}
|
|
578
569
|
|
|
579
570
|
function JsOnVectorListenerInt(output_stream_name, out_data, index, length, timestamp) {
|
|
580
|
-
Module.
|
|
571
|
+
Module._wrapSimpleListenerOutput(output_stream_name, out_data, index, length, timestamp);
|
|
581
572
|
}
|
|
582
573
|
|
|
583
574
|
function JsOnSimpleListenerDouble(output_stream_name, out_data, timestamp) {
|
|
@@ -585,7 +576,7 @@ function JsOnSimpleListenerDouble(output_stream_name, out_data, timestamp) {
|
|
|
585
576
|
}
|
|
586
577
|
|
|
587
578
|
function JsOnVectorListenerDouble(output_stream_name, out_data, index, length, timestamp) {
|
|
588
|
-
Module.
|
|
579
|
+
Module._wrapSimpleListenerOutput(output_stream_name, out_data, index, length, timestamp);
|
|
589
580
|
}
|
|
590
581
|
|
|
591
582
|
function JsOnSimpleListenerFloat(output_stream_name, out_data, timestamp) {
|
|
@@ -593,7 +584,7 @@ function JsOnSimpleListenerFloat(output_stream_name, out_data, timestamp) {
|
|
|
593
584
|
}
|
|
594
585
|
|
|
595
586
|
function JsOnVectorListenerFloat(output_stream_name, out_data, index, length, timestamp) {
|
|
596
|
-
Module.
|
|
587
|
+
Module._wrapSimpleListenerOutput(output_stream_name, out_data, index, length, timestamp);
|
|
597
588
|
}
|
|
598
589
|
|
|
599
590
|
function JsOnSimpleListenerString(output_stream_name, out_data, timestamp) {
|
|
@@ -601,21 +592,31 @@ function JsOnSimpleListenerString(output_stream_name, out_data, timestamp) {
|
|
|
601
592
|
}
|
|
602
593
|
|
|
603
594
|
function JsOnVectorListenerString(output_stream_name, out_data, index, length, timestamp) {
|
|
604
|
-
Module.
|
|
595
|
+
Module._wrapSimpleListenerOutput(output_stream_name, UTF8ToString(out_data), index, length, timestamp);
|
|
605
596
|
}
|
|
606
597
|
|
|
607
598
|
function JsOnVectorListenerProto(output_stream_name, proto_ptr, proto_size, make_deep_copy, index, length, timestamp) {
|
|
608
599
|
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.
|
|
600
|
+
Module._wrapSimpleListenerOutput(output_stream_name, newProtoArray, index, length, timestamp);
|
|
610
601
|
}
|
|
611
602
|
|
|
612
603
|
function JsWrapSimpleListeners() {
|
|
613
604
|
if (!Module._wrapSimpleListenerOutput) {
|
|
614
|
-
Module._wrapSimpleListenerOutput = (outputStreamName,
|
|
605
|
+
Module._wrapSimpleListenerOutput = (outputStreamName, ...args) => {
|
|
615
606
|
if (Module.simpleListeners) {
|
|
616
607
|
const streamName = UTF8ToString(outputStreamName);
|
|
617
608
|
if (Module.simpleListeners[streamName]) {
|
|
618
|
-
Module.simpleListeners[streamName](
|
|
609
|
+
Module.simpleListeners[streamName](...args);
|
|
610
|
+
}
|
|
611
|
+
}
|
|
612
|
+
};
|
|
613
|
+
}
|
|
614
|
+
if (!Module._wrapEmptyPacketListenerOutput) {
|
|
615
|
+
Module._wrapEmptyPacketListenerOutput = (outputStreamName, timestamp) => {
|
|
616
|
+
if (Module.emptyPacketListeners) {
|
|
617
|
+
const streamName = UTF8ToString(outputStreamName);
|
|
618
|
+
if (Module.emptyPacketListeners[streamName]) {
|
|
619
|
+
Module.emptyPacketListeners[streamName](timestamp);
|
|
619
620
|
}
|
|
620
621
|
}
|
|
621
622
|
};
|
|
@@ -5960,104 +5961,104 @@ WebGPU.initManagers();
|
|
|
5960
5961
|
|
|
5961
5962
|
var asmLibraryArg = {
|
|
5962
5963
|
"Sa": HaveOffsetConverter,
|
|
5963
|
-
"Ra":
|
|
5964
|
-
"Qa":
|
|
5965
|
-
"Pa":
|
|
5966
|
-
"Oa":
|
|
5967
|
-
"Na":
|
|
5968
|
-
"Ma":
|
|
5969
|
-
"La":
|
|
5970
|
-
"Ka":
|
|
5971
|
-
"Ja":
|
|
5972
|
-
"Ia":
|
|
5973
|
-
"Ha":
|
|
5974
|
-
"Ga":
|
|
5975
|
-
"
|
|
5976
|
-
"
|
|
5977
|
-
"
|
|
5978
|
-
"
|
|
5979
|
-
"
|
|
5980
|
-
"
|
|
5981
|
-
"
|
|
5982
|
-
"
|
|
5983
|
-
"
|
|
5984
|
-
"
|
|
5985
|
-
"
|
|
5986
|
-
"
|
|
5987
|
-
"
|
|
5988
|
-
"
|
|
5989
|
-
"
|
|
5990
|
-
"
|
|
5991
|
-
"
|
|
5964
|
+
"Ra": JsOnEmptyPacketListener,
|
|
5965
|
+
"Qa": JsOnSimpleListenerBinaryArray,
|
|
5966
|
+
"Pa": JsOnSimpleListenerBool,
|
|
5967
|
+
"Oa": JsOnSimpleListenerDouble,
|
|
5968
|
+
"Na": JsOnSimpleListenerFloat,
|
|
5969
|
+
"Ma": JsOnSimpleListenerInt,
|
|
5970
|
+
"La": JsOnSimpleListenerString,
|
|
5971
|
+
"Ka": JsOnVectorListenerBool,
|
|
5972
|
+
"Ja": JsOnVectorListenerDouble,
|
|
5973
|
+
"Ia": JsOnVectorListenerFloat,
|
|
5974
|
+
"Ha": JsOnVectorListenerInt,
|
|
5975
|
+
"Ga": JsOnVectorListenerProto,
|
|
5976
|
+
"Fa": JsOnVectorListenerString,
|
|
5977
|
+
"f": JsWrapErrorListener,
|
|
5978
|
+
"b": JsWrapSimpleListeners,
|
|
5979
|
+
"J": ___syscall_fcntl64,
|
|
5980
|
+
"Ea": ___syscall_ioctl,
|
|
5981
|
+
"I": ___syscall_openat,
|
|
5982
|
+
"Da": ___syscall_stat64,
|
|
5983
|
+
"ya": __dlinit,
|
|
5984
|
+
"xa": __dlopen_js,
|
|
5985
|
+
"wa": __dlsym_js,
|
|
5986
|
+
"va": __emscripten_get_now_is_monotonic,
|
|
5987
|
+
"ua": __gmtime_js,
|
|
5988
|
+
"ta": __localtime_js,
|
|
5989
|
+
"sa": __mktime_js,
|
|
5990
|
+
"ra": __mmap_js,
|
|
5991
|
+
"qa": __munmap_js,
|
|
5992
|
+
"pa": __tzset_js,
|
|
5992
5993
|
"a": _abort,
|
|
5993
|
-
"
|
|
5994
|
-
"
|
|
5995
|
-
"
|
|
5996
|
-
"
|
|
5997
|
-
"
|
|
5998
|
-
"
|
|
5999
|
-
"
|
|
6000
|
-
"
|
|
6001
|
-
"
|
|
6002
|
-
"
|
|
6003
|
-
"
|
|
6004
|
-
"
|
|
6005
|
-
"
|
|
6006
|
-
"
|
|
6007
|
-
"
|
|
6008
|
-
"
|
|
6009
|
-
"
|
|
6010
|
-
"
|
|
6011
|
-
"
|
|
6012
|
-
"
|
|
6013
|
-
"
|
|
6014
|
-
"
|
|
6015
|
-
"
|
|
6016
|
-
"
|
|
6017
|
-
"
|
|
6018
|
-
"
|
|
6019
|
-
"
|
|
6020
|
-
"
|
|
6021
|
-
"
|
|
6022
|
-
"
|
|
6023
|
-
"
|
|
6024
|
-
"
|
|
6025
|
-
"
|
|
6026
|
-
"
|
|
6027
|
-
"
|
|
6028
|
-
"
|
|
6029
|
-
"
|
|
6030
|
-
"
|
|
6031
|
-
"
|
|
6032
|
-
"
|
|
6033
|
-
"
|
|
6034
|
-
"
|
|
6035
|
-
"
|
|
6036
|
-
"
|
|
6037
|
-
"
|
|
6038
|
-
"
|
|
6039
|
-
"
|
|
6040
|
-
"
|
|
6041
|
-
"
|
|
6042
|
-
"
|
|
6043
|
-
"
|
|
6044
|
-
"
|
|
6045
|
-
"
|
|
6046
|
-
"
|
|
6047
|
-
"
|
|
6048
|
-
"
|
|
6049
|
-
"
|
|
6050
|
-
"
|
|
6051
|
-
"
|
|
6052
|
-
"
|
|
6053
|
-
"
|
|
6054
|
-
"
|
|
6055
|
-
"
|
|
6056
|
-
"
|
|
6057
|
-
"
|
|
6058
|
-
"
|
|
6059
|
-
"
|
|
6060
|
-
"
|
|
5994
|
+
"H": _emscripten_asm_const_int,
|
|
5995
|
+
"oa": _emscripten_date_now,
|
|
5996
|
+
"na": _emscripten_get_heap_max,
|
|
5997
|
+
"e": _emscripten_get_now,
|
|
5998
|
+
"ma": _emscripten_memcpy_big,
|
|
5999
|
+
"la": _emscripten_pc_get_function,
|
|
6000
|
+
"ka": _emscripten_resize_heap,
|
|
6001
|
+
"ja": _emscripten_stack_snapshot,
|
|
6002
|
+
"ia": _emscripten_stack_unwind_buffer,
|
|
6003
|
+
"ha": _emscripten_webgl_create_context,
|
|
6004
|
+
"ga": _emscripten_webgl_destroy_context,
|
|
6005
|
+
"fa": _emscripten_webgl_get_context_attributes,
|
|
6006
|
+
"G": _emscripten_webgl_get_current_context,
|
|
6007
|
+
"ea": _emscripten_webgl_init_context_attributes,
|
|
6008
|
+
"da": _emscripten_webgl_make_context_current,
|
|
6009
|
+
"Ca": _environ_get,
|
|
6010
|
+
"Ba": _environ_sizes_get,
|
|
6011
|
+
"F": _exit,
|
|
6012
|
+
"r": _fd_close,
|
|
6013
|
+
"Aa": _fd_read,
|
|
6014
|
+
"O": _fd_seek,
|
|
6015
|
+
"q": _fd_write,
|
|
6016
|
+
"ca": _getentropy,
|
|
6017
|
+
"p": _glActiveTexture,
|
|
6018
|
+
"E": _glAttachShader,
|
|
6019
|
+
"ba": _glBindAttribLocation,
|
|
6020
|
+
"g": _glBindBuffer,
|
|
6021
|
+
"l": _glBindFramebuffer,
|
|
6022
|
+
"d": _glBindTexture,
|
|
6023
|
+
"D": _glBufferData,
|
|
6024
|
+
"N": _glClientWaitSync,
|
|
6025
|
+
"aa": _glCompileShader,
|
|
6026
|
+
"$": _glCreateProgram,
|
|
6027
|
+
"_": _glCreateShader,
|
|
6028
|
+
"C": _glDeleteFramebuffers,
|
|
6029
|
+
"Z": _glDeleteProgram,
|
|
6030
|
+
"B": _glDeleteShader,
|
|
6031
|
+
"h": _glDeleteSync,
|
|
6032
|
+
"A": _glDeleteTextures,
|
|
6033
|
+
"z": _glDisableVertexAttribArray,
|
|
6034
|
+
"Y": _glDrawArrays,
|
|
6035
|
+
"y": _glEnableVertexAttribArray,
|
|
6036
|
+
"x": _glFenceSync,
|
|
6037
|
+
"k": _glFinish,
|
|
6038
|
+
"o": _glFramebufferTexture2D,
|
|
6039
|
+
"w": _glGenBuffers,
|
|
6040
|
+
"X": _glGenFramebuffers,
|
|
6041
|
+
"n": _glGenTextures,
|
|
6042
|
+
"j": _glGetError,
|
|
6043
|
+
"v": _glGetIntegerv,
|
|
6044
|
+
"u": _glGetString,
|
|
6045
|
+
"W": _glGetUniformLocation,
|
|
6046
|
+
"V": _glLinkProgram,
|
|
6047
|
+
"m": _glPixelStorei,
|
|
6048
|
+
"t": _glReadPixels,
|
|
6049
|
+
"U": _glShaderSource,
|
|
6050
|
+
"T": _glTexImage2D,
|
|
6051
|
+
"c": _glTexParameteri,
|
|
6052
|
+
"S": _glTexStorage2D,
|
|
6053
|
+
"R": _glUniform1i,
|
|
6054
|
+
"Q": _glUseProgram,
|
|
6055
|
+
"s": _glVertexAttribPointer,
|
|
6056
|
+
"P": _glViewport,
|
|
6057
|
+
"za": _proc_exit,
|
|
6058
|
+
"i": _strftime,
|
|
6059
|
+
"M": _strftime_l,
|
|
6060
|
+
"L": _wgpuTextureDestroy,
|
|
6061
|
+
"K": _wgpuTextureRelease
|
|
6061
6062
|
};
|
|
6062
6063
|
|
|
6063
6064
|
var asm = createWasm();
|
|
@@ -6258,9 +6259,9 @@ var stackAlloc = Module["stackAlloc"] = function() {
|
|
|
6258
6259
|
return (stackAlloc = Module["stackAlloc"] = Module["asm"]["Pb"]).apply(null, arguments);
|
|
6259
6260
|
};
|
|
6260
6261
|
|
|
6261
|
-
var ___start_em_js = Module["___start_em_js"] =
|
|
6262
|
+
var ___start_em_js = Module["___start_em_js"] = 538348;
|
|
6262
6263
|
|
|
6263
|
-
var ___stop_em_js = Module["___stop_em_js"] =
|
|
6264
|
+
var ___stop_em_js = Module["___stop_em_js"] = 541827;
|
|
6264
6265
|
|
|
6265
6266
|
Module["addRunDependency"] = addRunDependency;
|
|
6266
6267
|
|
|
Binary file
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Build
|
|
1
|
+
// Build 507782677
|
|
2
2
|
|
|
3
3
|
var ModuleFactory = (() => {
|
|
4
4
|
var _scriptDir = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : undefined;
|
|
@@ -520,7 +520,7 @@ var tempDouble;
|
|
|
520
520
|
var tempI64;
|
|
521
521
|
|
|
522
522
|
var ASM_CONSTS = {
|
|
523
|
-
|
|
523
|
+
542147: () => {
|
|
524
524
|
let init_once = true;
|
|
525
525
|
if (init_once) {
|
|
526
526
|
const cachedFindCanvasEventTarget = findCanvasEventTarget;
|
|
@@ -546,22 +546,13 @@ var ASM_CONSTS = {
|
|
|
546
546
|
init_once = false;
|
|
547
547
|
}
|
|
548
548
|
},
|
|
549
|
-
|
|
549
|
+
542932: () => {
|
|
550
550
|
return typeof wasmOffsetConverter !== "undefined";
|
|
551
551
|
}
|
|
552
552
|
};
|
|
553
553
|
|
|
554
|
-
function
|
|
555
|
-
|
|
556
|
-
Module._wrapVectorListenerOutput = (outputStreamName, outData, index, length, timestamp) => {
|
|
557
|
-
if (Module.vectorListeners) {
|
|
558
|
-
const streamName = UTF8ToString(outputStreamName);
|
|
559
|
-
if (Module.vectorListeners[streamName]) {
|
|
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);
|
|
565
556
|
}
|
|
566
557
|
|
|
567
558
|
function JsOnSimpleListenerBool(output_stream_name, out_data, timestamp) {
|
|
@@ -569,7 +560,7 @@ function JsOnSimpleListenerBool(output_stream_name, out_data, timestamp) {
|
|
|
569
560
|
}
|
|
570
561
|
|
|
571
562
|
function JsOnVectorListenerBool(output_stream_name, out_data, index, length, timestamp) {
|
|
572
|
-
Module.
|
|
563
|
+
Module._wrapSimpleListenerOutput(output_stream_name, out_data, index, length, timestamp);
|
|
573
564
|
}
|
|
574
565
|
|
|
575
566
|
function JsOnSimpleListenerInt(output_stream_name, out_data, timestamp) {
|
|
@@ -577,7 +568,7 @@ function JsOnSimpleListenerInt(output_stream_name, out_data, timestamp) {
|
|
|
577
568
|
}
|
|
578
569
|
|
|
579
570
|
function JsOnVectorListenerInt(output_stream_name, out_data, index, length, timestamp) {
|
|
580
|
-
Module.
|
|
571
|
+
Module._wrapSimpleListenerOutput(output_stream_name, out_data, index, length, timestamp);
|
|
581
572
|
}
|
|
582
573
|
|
|
583
574
|
function JsOnSimpleListenerDouble(output_stream_name, out_data, timestamp) {
|
|
@@ -585,7 +576,7 @@ function JsOnSimpleListenerDouble(output_stream_name, out_data, timestamp) {
|
|
|
585
576
|
}
|
|
586
577
|
|
|
587
578
|
function JsOnVectorListenerDouble(output_stream_name, out_data, index, length, timestamp) {
|
|
588
|
-
Module.
|
|
579
|
+
Module._wrapSimpleListenerOutput(output_stream_name, out_data, index, length, timestamp);
|
|
589
580
|
}
|
|
590
581
|
|
|
591
582
|
function JsOnSimpleListenerFloat(output_stream_name, out_data, timestamp) {
|
|
@@ -593,7 +584,7 @@ function JsOnSimpleListenerFloat(output_stream_name, out_data, timestamp) {
|
|
|
593
584
|
}
|
|
594
585
|
|
|
595
586
|
function JsOnVectorListenerFloat(output_stream_name, out_data, index, length, timestamp) {
|
|
596
|
-
Module.
|
|
587
|
+
Module._wrapSimpleListenerOutput(output_stream_name, out_data, index, length, timestamp);
|
|
597
588
|
}
|
|
598
589
|
|
|
599
590
|
function JsOnSimpleListenerString(output_stream_name, out_data, timestamp) {
|
|
@@ -601,21 +592,31 @@ function JsOnSimpleListenerString(output_stream_name, out_data, timestamp) {
|
|
|
601
592
|
}
|
|
602
593
|
|
|
603
594
|
function JsOnVectorListenerString(output_stream_name, out_data, index, length, timestamp) {
|
|
604
|
-
Module.
|
|
595
|
+
Module._wrapSimpleListenerOutput(output_stream_name, UTF8ToString(out_data), index, length, timestamp);
|
|
605
596
|
}
|
|
606
597
|
|
|
607
598
|
function JsOnVectorListenerProto(output_stream_name, proto_ptr, proto_size, make_deep_copy, index, length, timestamp) {
|
|
608
599
|
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.
|
|
600
|
+
Module._wrapSimpleListenerOutput(output_stream_name, newProtoArray, index, length, timestamp);
|
|
610
601
|
}
|
|
611
602
|
|
|
612
603
|
function JsWrapSimpleListeners() {
|
|
613
604
|
if (!Module._wrapSimpleListenerOutput) {
|
|
614
|
-
Module._wrapSimpleListenerOutput = (outputStreamName,
|
|
605
|
+
Module._wrapSimpleListenerOutput = (outputStreamName, ...args) => {
|
|
615
606
|
if (Module.simpleListeners) {
|
|
616
607
|
const streamName = UTF8ToString(outputStreamName);
|
|
617
608
|
if (Module.simpleListeners[streamName]) {
|
|
618
|
-
Module.simpleListeners[streamName](
|
|
609
|
+
Module.simpleListeners[streamName](...args);
|
|
610
|
+
}
|
|
611
|
+
}
|
|
612
|
+
};
|
|
613
|
+
}
|
|
614
|
+
if (!Module._wrapEmptyPacketListenerOutput) {
|
|
615
|
+
Module._wrapEmptyPacketListenerOutput = (outputStreamName, timestamp) => {
|
|
616
|
+
if (Module.emptyPacketListeners) {
|
|
617
|
+
const streamName = UTF8ToString(outputStreamName);
|
|
618
|
+
if (Module.emptyPacketListeners[streamName]) {
|
|
619
|
+
Module.emptyPacketListeners[streamName](timestamp);
|
|
619
620
|
}
|
|
620
621
|
}
|
|
621
622
|
};
|
|
@@ -5960,104 +5961,104 @@ WebGPU.initManagers();
|
|
|
5960
5961
|
|
|
5961
5962
|
var asmLibraryArg = {
|
|
5962
5963
|
"Sa": HaveOffsetConverter,
|
|
5963
|
-
"Ra":
|
|
5964
|
-
"Qa":
|
|
5965
|
-
"Pa":
|
|
5966
|
-
"Oa":
|
|
5967
|
-
"Na":
|
|
5968
|
-
"Ma":
|
|
5969
|
-
"La":
|
|
5970
|
-
"Ka":
|
|
5971
|
-
"Ja":
|
|
5972
|
-
"Ia":
|
|
5973
|
-
"Ha":
|
|
5974
|
-
"Ga":
|
|
5975
|
-
"
|
|
5976
|
-
"
|
|
5977
|
-
"
|
|
5978
|
-
"
|
|
5979
|
-
"
|
|
5980
|
-
"
|
|
5981
|
-
"
|
|
5982
|
-
"
|
|
5983
|
-
"
|
|
5984
|
-
"
|
|
5985
|
-
"
|
|
5986
|
-
"
|
|
5987
|
-
"
|
|
5988
|
-
"
|
|
5989
|
-
"
|
|
5990
|
-
"
|
|
5991
|
-
"
|
|
5964
|
+
"Ra": JsOnEmptyPacketListener,
|
|
5965
|
+
"Qa": JsOnSimpleListenerBinaryArray,
|
|
5966
|
+
"Pa": JsOnSimpleListenerBool,
|
|
5967
|
+
"Oa": JsOnSimpleListenerDouble,
|
|
5968
|
+
"Na": JsOnSimpleListenerFloat,
|
|
5969
|
+
"Ma": JsOnSimpleListenerInt,
|
|
5970
|
+
"La": JsOnSimpleListenerString,
|
|
5971
|
+
"Ka": JsOnVectorListenerBool,
|
|
5972
|
+
"Ja": JsOnVectorListenerDouble,
|
|
5973
|
+
"Ia": JsOnVectorListenerFloat,
|
|
5974
|
+
"Ha": JsOnVectorListenerInt,
|
|
5975
|
+
"Ga": JsOnVectorListenerProto,
|
|
5976
|
+
"Fa": JsOnVectorListenerString,
|
|
5977
|
+
"f": JsWrapErrorListener,
|
|
5978
|
+
"b": JsWrapSimpleListeners,
|
|
5979
|
+
"J": ___syscall_fcntl64,
|
|
5980
|
+
"Ea": ___syscall_ioctl,
|
|
5981
|
+
"I": ___syscall_openat,
|
|
5982
|
+
"Da": ___syscall_stat64,
|
|
5983
|
+
"ya": __dlinit,
|
|
5984
|
+
"xa": __dlopen_js,
|
|
5985
|
+
"wa": __dlsym_js,
|
|
5986
|
+
"va": __emscripten_get_now_is_monotonic,
|
|
5987
|
+
"ua": __gmtime_js,
|
|
5988
|
+
"ta": __localtime_js,
|
|
5989
|
+
"sa": __mktime_js,
|
|
5990
|
+
"ra": __mmap_js,
|
|
5991
|
+
"qa": __munmap_js,
|
|
5992
|
+
"pa": __tzset_js,
|
|
5992
5993
|
"a": _abort,
|
|
5993
|
-
"
|
|
5994
|
-
"
|
|
5995
|
-
"
|
|
5996
|
-
"
|
|
5997
|
-
"
|
|
5998
|
-
"
|
|
5999
|
-
"
|
|
6000
|
-
"
|
|
6001
|
-
"
|
|
6002
|
-
"
|
|
6003
|
-
"
|
|
6004
|
-
"
|
|
6005
|
-
"
|
|
6006
|
-
"
|
|
6007
|
-
"
|
|
6008
|
-
"
|
|
6009
|
-
"
|
|
6010
|
-
"
|
|
6011
|
-
"
|
|
6012
|
-
"
|
|
6013
|
-
"
|
|
6014
|
-
"
|
|
6015
|
-
"
|
|
6016
|
-
"
|
|
6017
|
-
"
|
|
6018
|
-
"
|
|
6019
|
-
"
|
|
6020
|
-
"
|
|
6021
|
-
"
|
|
6022
|
-
"
|
|
6023
|
-
"
|
|
6024
|
-
"
|
|
6025
|
-
"
|
|
6026
|
-
"
|
|
6027
|
-
"
|
|
6028
|
-
"
|
|
6029
|
-
"
|
|
6030
|
-
"
|
|
6031
|
-
"
|
|
6032
|
-
"
|
|
6033
|
-
"
|
|
6034
|
-
"
|
|
6035
|
-
"
|
|
6036
|
-
"
|
|
6037
|
-
"
|
|
6038
|
-
"
|
|
6039
|
-
"
|
|
6040
|
-
"
|
|
6041
|
-
"
|
|
6042
|
-
"
|
|
6043
|
-
"
|
|
6044
|
-
"
|
|
6045
|
-
"
|
|
6046
|
-
"
|
|
6047
|
-
"
|
|
6048
|
-
"
|
|
6049
|
-
"
|
|
6050
|
-
"
|
|
6051
|
-
"
|
|
6052
|
-
"
|
|
6053
|
-
"
|
|
6054
|
-
"
|
|
6055
|
-
"
|
|
6056
|
-
"
|
|
6057
|
-
"
|
|
6058
|
-
"
|
|
6059
|
-
"
|
|
6060
|
-
"
|
|
5994
|
+
"H": _emscripten_asm_const_int,
|
|
5995
|
+
"oa": _emscripten_date_now,
|
|
5996
|
+
"na": _emscripten_get_heap_max,
|
|
5997
|
+
"e": _emscripten_get_now,
|
|
5998
|
+
"ma": _emscripten_memcpy_big,
|
|
5999
|
+
"la": _emscripten_pc_get_function,
|
|
6000
|
+
"ka": _emscripten_resize_heap,
|
|
6001
|
+
"ja": _emscripten_stack_snapshot,
|
|
6002
|
+
"ia": _emscripten_stack_unwind_buffer,
|
|
6003
|
+
"ha": _emscripten_webgl_create_context,
|
|
6004
|
+
"ga": _emscripten_webgl_destroy_context,
|
|
6005
|
+
"fa": _emscripten_webgl_get_context_attributes,
|
|
6006
|
+
"G": _emscripten_webgl_get_current_context,
|
|
6007
|
+
"ea": _emscripten_webgl_init_context_attributes,
|
|
6008
|
+
"da": _emscripten_webgl_make_context_current,
|
|
6009
|
+
"Ca": _environ_get,
|
|
6010
|
+
"Ba": _environ_sizes_get,
|
|
6011
|
+
"F": _exit,
|
|
6012
|
+
"r": _fd_close,
|
|
6013
|
+
"Aa": _fd_read,
|
|
6014
|
+
"O": _fd_seek,
|
|
6015
|
+
"q": _fd_write,
|
|
6016
|
+
"ca": _getentropy,
|
|
6017
|
+
"p": _glActiveTexture,
|
|
6018
|
+
"E": _glAttachShader,
|
|
6019
|
+
"ba": _glBindAttribLocation,
|
|
6020
|
+
"g": _glBindBuffer,
|
|
6021
|
+
"l": _glBindFramebuffer,
|
|
6022
|
+
"d": _glBindTexture,
|
|
6023
|
+
"D": _glBufferData,
|
|
6024
|
+
"N": _glClientWaitSync,
|
|
6025
|
+
"aa": _glCompileShader,
|
|
6026
|
+
"$": _glCreateProgram,
|
|
6027
|
+
"_": _glCreateShader,
|
|
6028
|
+
"C": _glDeleteFramebuffers,
|
|
6029
|
+
"Z": _glDeleteProgram,
|
|
6030
|
+
"B": _glDeleteShader,
|
|
6031
|
+
"h": _glDeleteSync,
|
|
6032
|
+
"A": _glDeleteTextures,
|
|
6033
|
+
"z": _glDisableVertexAttribArray,
|
|
6034
|
+
"Y": _glDrawArrays,
|
|
6035
|
+
"y": _glEnableVertexAttribArray,
|
|
6036
|
+
"x": _glFenceSync,
|
|
6037
|
+
"k": _glFinish,
|
|
6038
|
+
"o": _glFramebufferTexture2D,
|
|
6039
|
+
"w": _glGenBuffers,
|
|
6040
|
+
"X": _glGenFramebuffers,
|
|
6041
|
+
"n": _glGenTextures,
|
|
6042
|
+
"j": _glGetError,
|
|
6043
|
+
"v": _glGetIntegerv,
|
|
6044
|
+
"u": _glGetString,
|
|
6045
|
+
"W": _glGetUniformLocation,
|
|
6046
|
+
"V": _glLinkProgram,
|
|
6047
|
+
"m": _glPixelStorei,
|
|
6048
|
+
"t": _glReadPixels,
|
|
6049
|
+
"U": _glShaderSource,
|
|
6050
|
+
"T": _glTexImage2D,
|
|
6051
|
+
"c": _glTexParameteri,
|
|
6052
|
+
"S": _glTexStorage2D,
|
|
6053
|
+
"R": _glUniform1i,
|
|
6054
|
+
"Q": _glUseProgram,
|
|
6055
|
+
"s": _glVertexAttribPointer,
|
|
6056
|
+
"P": _glViewport,
|
|
6057
|
+
"za": _proc_exit,
|
|
6058
|
+
"i": _strftime,
|
|
6059
|
+
"M": _strftime_l,
|
|
6060
|
+
"L": _wgpuTextureDestroy,
|
|
6061
|
+
"K": _wgpuTextureRelease
|
|
6061
6062
|
};
|
|
6062
6063
|
|
|
6063
6064
|
var asm = createWasm();
|
|
@@ -6258,9 +6259,9 @@ var stackAlloc = Module["stackAlloc"] = function() {
|
|
|
6258
6259
|
return (stackAlloc = Module["stackAlloc"] = Module["asm"]["Pb"]).apply(null, arguments);
|
|
6259
6260
|
};
|
|
6260
6261
|
|
|
6261
|
-
var ___start_em_js = Module["___start_em_js"] =
|
|
6262
|
+
var ___start_em_js = Module["___start_em_js"] = 538668;
|
|
6262
6263
|
|
|
6263
|
-
var ___stop_em_js = Module["___stop_em_js"] =
|
|
6264
|
+
var ___stop_em_js = Module["___stop_em_js"] = 542147;
|
|
6264
6265
|
|
|
6265
6266
|
Module["addRunDependency"] = addRunDependency;
|
|
6266
6267
|
|
|
Binary file
|