@mediapipe/tasks-vision 0.1.0-alpha-4 → 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/README.md +56 -23
- package/package.json +1 -1
- package/vision.d.ts +339 -8
- package/vision_bundle.js +1 -1
- package/wasm/vision_wasm_internal.js +441 -307
- package/wasm/vision_wasm_internal.wasm +0 -0
- package/wasm/vision_wasm_nosimd_internal.js +431 -307
- package/wasm/vision_wasm_nosimd_internal.wasm +0 -0
|
@@ -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"]["fd"];
|
|
470
470
|
updateGlobalBufferAndViews(wasmMemory.buffer);
|
|
471
|
-
wasmTable = Module["asm"]["
|
|
472
|
-
addOnInit(Module["asm"]["
|
|
471
|
+
wasmTable = Module["asm"]["hd"];
|
|
472
|
+
addOnInit(Module["asm"]["gd"]);
|
|
473
473
|
removeRunDependency("wasm-instantiate");
|
|
474
474
|
}
|
|
475
475
|
addRunDependency("wasm-instantiate");
|
|
@@ -520,12 +520,12 @@ var tempDouble;
|
|
|
520
520
|
var tempI64;
|
|
521
521
|
|
|
522
522
|
var ASM_CONSTS = {
|
|
523
|
-
|
|
523
|
+
934172: $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
|
+
934307: ($0, $1, $2, $3, $4) => {
|
|
529
529
|
const drawable = Emval.toValue($0);
|
|
530
530
|
const device = JsValStore.get($1);
|
|
531
531
|
const texture = JsValStore.get($2);
|
|
@@ -537,7 +537,7 @@ var ASM_CONSTS = {
|
|
|
537
537
|
texture: texture
|
|
538
538
|
}, [ width, height ]);
|
|
539
539
|
},
|
|
540
|
-
|
|
540
|
+
934558: ($0, $1, $2, $3) => {
|
|
541
541
|
const sourceExtTex = Emval.toValue($0);
|
|
542
542
|
const device = JsValStore.get($1);
|
|
543
543
|
const sampler = JsValStore.get($2);
|
|
@@ -554,30 +554,30 @@ var ASM_CONSTS = {
|
|
|
554
554
|
});
|
|
555
555
|
return JsValStore.add(bindGroup);
|
|
556
556
|
},
|
|
557
|
-
|
|
557
|
+
934906: ($0, $1) => {
|
|
558
558
|
const inputArray = Emval.toValue($0);
|
|
559
559
|
const output = Emval.toValue($1);
|
|
560
560
|
const ctx = output.getContext("2d");
|
|
561
561
|
const image_data = new ImageData(inputArray, output.width, output.height);
|
|
562
562
|
ctx.putImageData(image_data, 0, 0);
|
|
563
563
|
},
|
|
564
|
-
|
|
564
|
+
935130: ($0, $1) => {
|
|
565
565
|
const input = Emval.toValue($0);
|
|
566
566
|
const outputArray = Emval.toValue($1);
|
|
567
567
|
const ctx = input.getContext("2d");
|
|
568
568
|
const data = ctx.getImageData(0, 0, input.width, input.height);
|
|
569
569
|
outputArray.set(data.data);
|
|
570
570
|
},
|
|
571
|
-
|
|
571
|
+
935334: ($0, $1) => {
|
|
572
572
|
const input = Emval.toValue($0);
|
|
573
573
|
const output = Emval.toValue($1);
|
|
574
574
|
const ctx = output.getContext("2d");
|
|
575
575
|
ctx.drawImage(input, 0, 0);
|
|
576
576
|
},
|
|
577
|
-
|
|
577
|
+
935470: () => {
|
|
578
578
|
return !!Module["preinitializedWebGPUDevice"];
|
|
579
579
|
},
|
|
580
|
-
|
|
580
|
+
935521: () => {
|
|
581
581
|
let init_once = true;
|
|
582
582
|
if (init_once) {
|
|
583
583
|
const cachedFindCanvasEventTarget = findCanvasEventTarget;
|
|
@@ -603,15 +603,15 @@ var ASM_CONSTS = {
|
|
|
603
603
|
init_once = false;
|
|
604
604
|
}
|
|
605
605
|
},
|
|
606
|
-
|
|
606
|
+
936306: () => {
|
|
607
607
|
return typeof wasmOffsetConverter !== "undefined";
|
|
608
608
|
}
|
|
609
609
|
};
|
|
610
610
|
|
|
611
611
|
function JsWrapImageConverter() {
|
|
612
612
|
if (!Module._imageConverter) {
|
|
613
|
-
Module._imageConverter = (binaryPtr, binarySize, width, height, makeDeepCopy, outputType) => {
|
|
614
|
-
const imageData = new outputType(makeDeepCopy ? Module.HEAPU8.slice(binaryPtr, binaryPtr + binarySize).buffer : Module.HEAPU8.buffer, binaryPtr, width * height);
|
|
613
|
+
Module._imageConverter = (binaryPtr, binarySize, width, height, numChannels, makeDeepCopy, outputType) => {
|
|
614
|
+
const imageData = new outputType(makeDeepCopy ? Module.HEAPU8.slice(binaryPtr, binaryPtr + binarySize).buffer : Module.HEAPU8.buffer, binaryPtr, width * height * numChannels);
|
|
615
615
|
return {
|
|
616
616
|
data: imageData,
|
|
617
617
|
width: width,
|
|
@@ -621,73 +621,93 @@ function JsWrapImageConverter() {
|
|
|
621
621
|
}
|
|
622
622
|
}
|
|
623
623
|
|
|
624
|
-
function
|
|
625
|
-
const image = Module._imageConverter(binary_ptr, binary_size, width, height, make_deep_copy,
|
|
624
|
+
function JsOnUint8ClampedArrayImageListener(output_stream_name, binary_ptr, binary_size, width, height, num_channels, make_deep_copy, timestamp_ms) {
|
|
625
|
+
const image = Module._imageConverter(binary_ptr, binary_size, width, height, num_channels, make_deep_copy, Uint8ClampedArray);
|
|
626
626
|
Module._wrapSimpleListenerOutput(output_stream_name, image, timestamp_ms);
|
|
627
627
|
}
|
|
628
628
|
|
|
629
|
-
function
|
|
630
|
-
const image = Module._imageConverter(binary_ptr, binary_size, width, height, make_deep_copy, Float32Array);
|
|
629
|
+
function JsOnFloat32ArrayImageListener(output_stream_name, binary_ptr, binary_size, width, height, num_channels, make_deep_copy, timestamp_ms) {
|
|
630
|
+
const image = Module._imageConverter(binary_ptr, binary_size, width, height, num_channels, make_deep_copy, Float32Array);
|
|
631
631
|
Module._wrapSimpleListenerOutput(output_stream_name, image, timestamp_ms);
|
|
632
632
|
}
|
|
633
633
|
|
|
634
|
-
function
|
|
635
|
-
|
|
636
|
-
Module.
|
|
634
|
+
function JsOnWebGLTextureListener(output_stream_name, name, width, height, timestamp_ms) {
|
|
635
|
+
Module._wrapSimpleListenerOutput(output_stream_name, {
|
|
636
|
+
data: Module.GL.textures[name],
|
|
637
|
+
width: width,
|
|
638
|
+
height: height
|
|
639
|
+
}, timestamp_ms);
|
|
637
640
|
}
|
|
638
641
|
|
|
639
|
-
function
|
|
640
|
-
const image = Module._imageConverter(binary_ptr, binary_size, width, height, make_deep_copy,
|
|
641
|
-
Module._wrapSimpleListenerOutput(output_stream_name, image,
|
|
642
|
+
function JsOnUint8ClampedArrayImageVectorListener(output_stream_name, binary_ptr, binary_size, width, height, num_channels, make_deep_copy, timestamp_ms) {
|
|
643
|
+
const image = Module._imageConverter(binary_ptr, binary_size, width, height, num_channels, make_deep_copy, Uint8ClampedArray);
|
|
644
|
+
Module._wrapSimpleListenerOutput(output_stream_name, image, false, timestamp_ms);
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
function JsOnFloat32ArrayImageVectorListener(output_stream_name, binary_ptr, binary_size, width, height, num_channels, make_deep_copy, timestamp_ms) {
|
|
648
|
+
const image = Module._imageConverter(binary_ptr, binary_size, width, height, num_channels, make_deep_copy, Float32Array);
|
|
649
|
+
Module._wrapSimpleListenerOutput(output_stream_name, image, false, timestamp_ms);
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
function JsOnWebGLTextureVectorListener(output_stream_name, name, width, height, timestamp_ms) {
|
|
653
|
+
Module._wrapSimpleListenerOutput(output_stream_name, {
|
|
654
|
+
data: Module.GL.textures[name],
|
|
655
|
+
width: width,
|
|
656
|
+
height: height
|
|
657
|
+
}, false, timestamp_ms);
|
|
642
658
|
}
|
|
643
659
|
|
|
644
660
|
function JsOnEmptyPacketListener(output_stream_name, timestamp) {
|
|
645
661
|
Module._wrapEmptyPacketListenerOutput(output_stream_name, timestamp);
|
|
646
662
|
}
|
|
647
663
|
|
|
664
|
+
function JsOnVectorFinishedListener(output_stream_name, timestamp) {
|
|
665
|
+
Module._wrapSimpleListenerOutput(output_stream_name, undefined, true, timestamp);
|
|
666
|
+
}
|
|
667
|
+
|
|
648
668
|
function JsOnSimpleListenerBool(output_stream_name, out_data, timestamp) {
|
|
649
669
|
Module._wrapSimpleListenerOutput(output_stream_name, out_data, timestamp);
|
|
650
670
|
}
|
|
651
671
|
|
|
652
|
-
function JsOnVectorListenerBool(output_stream_name, out_data,
|
|
653
|
-
Module._wrapSimpleListenerOutput(output_stream_name, out_data,
|
|
672
|
+
function JsOnVectorListenerBool(output_stream_name, out_data, timestamp) {
|
|
673
|
+
Module._wrapSimpleListenerOutput(output_stream_name, out_data, false, timestamp);
|
|
654
674
|
}
|
|
655
675
|
|
|
656
676
|
function JsOnSimpleListenerInt(output_stream_name, out_data, timestamp) {
|
|
657
677
|
Module._wrapSimpleListenerOutput(output_stream_name, out_data, timestamp);
|
|
658
678
|
}
|
|
659
679
|
|
|
660
|
-
function JsOnVectorListenerInt(output_stream_name, out_data,
|
|
661
|
-
Module._wrapSimpleListenerOutput(output_stream_name, out_data,
|
|
680
|
+
function JsOnVectorListenerInt(output_stream_name, out_data, timestamp) {
|
|
681
|
+
Module._wrapSimpleListenerOutput(output_stream_name, out_data, false, timestamp);
|
|
662
682
|
}
|
|
663
683
|
|
|
664
684
|
function JsOnSimpleListenerDouble(output_stream_name, out_data, timestamp) {
|
|
665
685
|
Module._wrapSimpleListenerOutput(output_stream_name, out_data, timestamp);
|
|
666
686
|
}
|
|
667
687
|
|
|
668
|
-
function JsOnVectorListenerDouble(output_stream_name, out_data,
|
|
669
|
-
Module._wrapSimpleListenerOutput(output_stream_name, out_data,
|
|
688
|
+
function JsOnVectorListenerDouble(output_stream_name, out_data, timestamp) {
|
|
689
|
+
Module._wrapSimpleListenerOutput(output_stream_name, out_data, false, timestamp);
|
|
670
690
|
}
|
|
671
691
|
|
|
672
692
|
function JsOnSimpleListenerFloat(output_stream_name, out_data, timestamp) {
|
|
673
693
|
Module._wrapSimpleListenerOutput(output_stream_name, out_data, timestamp);
|
|
674
694
|
}
|
|
675
695
|
|
|
676
|
-
function JsOnVectorListenerFloat(output_stream_name, out_data,
|
|
677
|
-
Module._wrapSimpleListenerOutput(output_stream_name, out_data,
|
|
696
|
+
function JsOnVectorListenerFloat(output_stream_name, out_data, timestamp) {
|
|
697
|
+
Module._wrapSimpleListenerOutput(output_stream_name, out_data, false, timestamp);
|
|
678
698
|
}
|
|
679
699
|
|
|
680
700
|
function JsOnSimpleListenerString(output_stream_name, out_data, timestamp) {
|
|
681
701
|
Module._wrapSimpleListenerOutput(output_stream_name, UTF8ToString(out_data), timestamp);
|
|
682
702
|
}
|
|
683
703
|
|
|
684
|
-
function JsOnVectorListenerString(output_stream_name, out_data,
|
|
685
|
-
Module._wrapSimpleListenerOutput(output_stream_name, UTF8ToString(out_data),
|
|
704
|
+
function JsOnVectorListenerString(output_stream_name, out_data, timestamp) {
|
|
705
|
+
Module._wrapSimpleListenerOutput(output_stream_name, UTF8ToString(out_data), false, timestamp);
|
|
686
706
|
}
|
|
687
707
|
|
|
688
|
-
function JsOnVectorListenerProto(output_stream_name, proto_ptr, proto_size, make_deep_copy,
|
|
708
|
+
function JsOnVectorListenerProto(output_stream_name, proto_ptr, proto_size, make_deep_copy, timestamp) {
|
|
689
709
|
const newProtoArray = make_deep_copy ? Module.HEAPU8.slice(proto_ptr, proto_ptr + proto_size) : new Uint8Array(Module.HEAPU8.buffer, proto_ptr, proto_size);
|
|
690
|
-
Module._wrapSimpleListenerOutput(output_stream_name, newProtoArray,
|
|
710
|
+
Module._wrapSimpleListenerOutput(output_stream_name, newProtoArray, false, timestamp);
|
|
691
711
|
}
|
|
692
712
|
|
|
693
713
|
function JsWrapSimpleListeners() {
|
|
@@ -728,10 +748,15 @@ function mediapipe_import_external_texture(device_handle, source_handle) {
|
|
|
728
748
|
}
|
|
729
749
|
|
|
730
750
|
function mediapipe_create_utility_canvas2d() {
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
751
|
+
let canvas;
|
|
752
|
+
if (typeof OffscreenCanvas !== "undefined") {
|
|
753
|
+
canvas = new OffscreenCanvas(0, 0);
|
|
754
|
+
} else {
|
|
755
|
+
canvas = document.createElement("canvas");
|
|
756
|
+
canvas.style.display = "none";
|
|
757
|
+
canvas.id = "canvas_2d";
|
|
758
|
+
document.body.appendChild(canvas);
|
|
759
|
+
}
|
|
735
760
|
return Emval.toHandle(canvas);
|
|
736
761
|
}
|
|
737
762
|
|
|
@@ -5650,6 +5675,10 @@ var WebGPU = {
|
|
|
5650
5675
|
}
|
|
5651
5676
|
return constants;
|
|
5652
5677
|
},
|
|
5678
|
+
makePipelineLayout: function(layoutPtr) {
|
|
5679
|
+
if (!layoutPtr) return "auto";
|
|
5680
|
+
return WebGPU.mgrPipelineLayout.get(layoutPtr);
|
|
5681
|
+
},
|
|
5653
5682
|
makeProgrammableStageDescriptor: function(ptr) {
|
|
5654
5683
|
if (!ptr) return undefined;
|
|
5655
5684
|
return {
|
|
@@ -5977,6 +6006,10 @@ function _glBufferData(target, size, data, usage) {
|
|
|
5977
6006
|
}
|
|
5978
6007
|
}
|
|
5979
6008
|
|
|
6009
|
+
function _glClear(x0) {
|
|
6010
|
+
GLctx["clear"](x0);
|
|
6011
|
+
}
|
|
6012
|
+
|
|
5980
6013
|
function convertI32PairToI53(lo, hi) {
|
|
5981
6014
|
return (lo >>> 0) + hi * 4294967296;
|
|
5982
6015
|
}
|
|
@@ -6132,6 +6165,10 @@ function _glFinish() {
|
|
|
6132
6165
|
GLctx["finish"]();
|
|
6133
6166
|
}
|
|
6134
6167
|
|
|
6168
|
+
function _glFlush() {
|
|
6169
|
+
GLctx["flush"]();
|
|
6170
|
+
}
|
|
6171
|
+
|
|
6135
6172
|
function _glFramebufferTexture2D(target, attachment, textarget, texture, level) {
|
|
6136
6173
|
GLctx.framebufferTexture2D(target, attachment, textarget, GL.textures[texture], level);
|
|
6137
6174
|
}
|
|
@@ -6335,6 +6372,72 @@ function _glGetIntegerv(name_, p) {
|
|
|
6335
6372
|
emscriptenWebGLGet(name_, p, 0);
|
|
6336
6373
|
}
|
|
6337
6374
|
|
|
6375
|
+
function _glGetProgramiv(program, pname, p) {
|
|
6376
|
+
if (!p) {
|
|
6377
|
+
GL.recordError(1281);
|
|
6378
|
+
return;
|
|
6379
|
+
}
|
|
6380
|
+
if (program >= GL.counter) {
|
|
6381
|
+
GL.recordError(1281);
|
|
6382
|
+
return;
|
|
6383
|
+
}
|
|
6384
|
+
program = GL.programs[program];
|
|
6385
|
+
if (pname == 35716) {
|
|
6386
|
+
var log = GLctx.getProgramInfoLog(program);
|
|
6387
|
+
if (log === null) log = "(unknown error)";
|
|
6388
|
+
HEAP32[p >> 2] = log.length + 1;
|
|
6389
|
+
} else if (pname == 35719) {
|
|
6390
|
+
if (!program.maxUniformLength) {
|
|
6391
|
+
for (var i = 0; i < GLctx.getProgramParameter(program, 35718); ++i) {
|
|
6392
|
+
program.maxUniformLength = Math.max(program.maxUniformLength, GLctx.getActiveUniform(program, i).name.length + 1);
|
|
6393
|
+
}
|
|
6394
|
+
}
|
|
6395
|
+
HEAP32[p >> 2] = program.maxUniformLength;
|
|
6396
|
+
} else if (pname == 35722) {
|
|
6397
|
+
if (!program.maxAttributeLength) {
|
|
6398
|
+
for (var i = 0; i < GLctx.getProgramParameter(program, 35721); ++i) {
|
|
6399
|
+
program.maxAttributeLength = Math.max(program.maxAttributeLength, GLctx.getActiveAttrib(program, i).name.length + 1);
|
|
6400
|
+
}
|
|
6401
|
+
}
|
|
6402
|
+
HEAP32[p >> 2] = program.maxAttributeLength;
|
|
6403
|
+
} else if (pname == 35381) {
|
|
6404
|
+
if (!program.maxUniformBlockNameLength) {
|
|
6405
|
+
for (var i = 0; i < GLctx.getProgramParameter(program, 35382); ++i) {
|
|
6406
|
+
program.maxUniformBlockNameLength = Math.max(program.maxUniformBlockNameLength, GLctx.getActiveUniformBlockName(program, i).length + 1);
|
|
6407
|
+
}
|
|
6408
|
+
}
|
|
6409
|
+
HEAP32[p >> 2] = program.maxUniformBlockNameLength;
|
|
6410
|
+
} else {
|
|
6411
|
+
HEAP32[p >> 2] = GLctx.getProgramParameter(program, pname);
|
|
6412
|
+
}
|
|
6413
|
+
}
|
|
6414
|
+
|
|
6415
|
+
function _glGetShaderInfoLog(shader, maxLength, length, infoLog) {
|
|
6416
|
+
var log = GLctx.getShaderInfoLog(GL.shaders[shader]);
|
|
6417
|
+
if (log === null) log = "(unknown error)";
|
|
6418
|
+
var numBytesWrittenExclNull = maxLength > 0 && infoLog ? stringToUTF8(log, infoLog, maxLength) : 0;
|
|
6419
|
+
if (length) HEAP32[length >> 2] = numBytesWrittenExclNull;
|
|
6420
|
+
}
|
|
6421
|
+
|
|
6422
|
+
function _glGetShaderiv(shader, pname, p) {
|
|
6423
|
+
if (!p) {
|
|
6424
|
+
GL.recordError(1281);
|
|
6425
|
+
return;
|
|
6426
|
+
}
|
|
6427
|
+
if (pname == 35716) {
|
|
6428
|
+
var log = GLctx.getShaderInfoLog(GL.shaders[shader]);
|
|
6429
|
+
if (log === null) log = "(unknown error)";
|
|
6430
|
+
var logLength = log ? log.length + 1 : 0;
|
|
6431
|
+
HEAP32[p >> 2] = logLength;
|
|
6432
|
+
} else if (pname == 35720) {
|
|
6433
|
+
var source = GLctx.getShaderSource(GL.shaders[shader]);
|
|
6434
|
+
var sourceLength = source ? source.length + 1 : 0;
|
|
6435
|
+
HEAP32[p >> 2] = sourceLength;
|
|
6436
|
+
} else {
|
|
6437
|
+
HEAP32[p >> 2] = GLctx.getShaderParameter(GL.shaders[shader], pname);
|
|
6438
|
+
}
|
|
6439
|
+
}
|
|
6440
|
+
|
|
6338
6441
|
function stringToNewUTF8(jsString) {
|
|
6339
6442
|
var length = lengthBytesUTF8(jsString) + 1;
|
|
6340
6443
|
var cString = _malloc(length);
|
|
@@ -6617,6 +6720,10 @@ function _glUniform1i(location, v0) {
|
|
|
6617
6720
|
GLctx.uniform1i(webglGetUniformLocation(location), v0);
|
|
6618
6721
|
}
|
|
6619
6722
|
|
|
6723
|
+
function _glUniform2f(location, v0, v1) {
|
|
6724
|
+
GLctx.uniform2f(webglGetUniformLocation(location), v0, v1);
|
|
6725
|
+
}
|
|
6726
|
+
|
|
6620
6727
|
var miniTempWebGLFloatBuffers = [];
|
|
6621
6728
|
|
|
6622
6729
|
function _glUniform2fv(location, count, value) {
|
|
@@ -7350,7 +7457,7 @@ function _wgpuDeviceCreateCommandEncoder(deviceId, descriptor) {
|
|
|
7350
7457
|
function _wgpuDeviceCreateComputePipeline(deviceId, descriptor) {
|
|
7351
7458
|
var desc = {
|
|
7352
7459
|
"label": undefined,
|
|
7353
|
-
"layout": WebGPU.
|
|
7460
|
+
"layout": WebGPU.makePipelineLayout(HEAPU32[descriptor + 8 >> 2]),
|
|
7354
7461
|
"compute": WebGPU.makeProgrammableStageDescriptor(descriptor + 12)
|
|
7355
7462
|
};
|
|
7356
7463
|
var labelPtr = HEAPU32[descriptor + 4 >> 2];
|
|
@@ -7481,7 +7588,7 @@ function _wgpuDeviceCreateRenderPipeline(deviceId, descriptor) {
|
|
|
7481
7588
|
}
|
|
7482
7589
|
var desc = {
|
|
7483
7590
|
"label": undefined,
|
|
7484
|
-
"layout": WebGPU.
|
|
7591
|
+
"layout": WebGPU.makePipelineLayout(HEAPU32[descriptor + 8 >> 2]),
|
|
7485
7592
|
"vertex": makeVertexState(descriptor + 12),
|
|
7486
7593
|
"primitive": makePrimitiveState(descriptor + 40),
|
|
7487
7594
|
"depthStencil": makeDepthStencilState(HEAPU32[descriptor + 60 >> 2]),
|
|
@@ -7884,437 +7991,454 @@ for (var i = 0; i < 288; ++i) {
|
|
|
7884
7991
|
}
|
|
7885
7992
|
|
|
7886
7993
|
var asmLibraryArg = {
|
|
7887
|
-
"
|
|
7888
|
-
"
|
|
7889
|
-
"
|
|
7890
|
-
"
|
|
7891
|
-
"
|
|
7892
|
-
"
|
|
7893
|
-
"
|
|
7894
|
-
"
|
|
7895
|
-
"
|
|
7896
|
-
"
|
|
7897
|
-
"
|
|
7898
|
-
"
|
|
7899
|
-
"
|
|
7900
|
-
"
|
|
7901
|
-
"
|
|
7902
|
-
"
|
|
7903
|
-
"
|
|
7904
|
-
"
|
|
7905
|
-
"
|
|
7906
|
-
"
|
|
7907
|
-
"
|
|
7908
|
-
"
|
|
7909
|
-
"
|
|
7910
|
-
"
|
|
7911
|
-
"
|
|
7912
|
-
"
|
|
7913
|
-
"
|
|
7914
|
-
"
|
|
7915
|
-
"
|
|
7916
|
-
"
|
|
7917
|
-
"
|
|
7918
|
-
"
|
|
7919
|
-
"
|
|
7920
|
-
"
|
|
7921
|
-
"
|
|
7922
|
-
"
|
|
7923
|
-
"
|
|
7924
|
-
"
|
|
7925
|
-
"
|
|
7926
|
-
"
|
|
7927
|
-
"
|
|
7928
|
-
"
|
|
7929
|
-
"
|
|
7930
|
-
"
|
|
7931
|
-
"
|
|
7932
|
-
"
|
|
7933
|
-
"
|
|
7934
|
-
"
|
|
7935
|
-
"
|
|
7936
|
-
"
|
|
7937
|
-
"
|
|
7938
|
-
"
|
|
7939
|
-
"
|
|
7940
|
-
"
|
|
7941
|
-
"
|
|
7942
|
-
"
|
|
7943
|
-
"
|
|
7944
|
-
"
|
|
7945
|
-
"
|
|
7946
|
-
"
|
|
7994
|
+
"ed": HaveOffsetConverter,
|
|
7995
|
+
"dd": JsOnEmptyPacketListener,
|
|
7996
|
+
"cd": JsOnFloat32ArrayImageListener,
|
|
7997
|
+
"bd": JsOnFloat32ArrayImageVectorListener,
|
|
7998
|
+
"Ia": JsOnSimpleListenerBinaryArray,
|
|
7999
|
+
"ad": JsOnSimpleListenerBool,
|
|
8000
|
+
"$c": JsOnSimpleListenerDouble,
|
|
8001
|
+
"_c": JsOnSimpleListenerFloat,
|
|
8002
|
+
"Zc": JsOnSimpleListenerInt,
|
|
8003
|
+
"Yc": JsOnSimpleListenerString,
|
|
8004
|
+
"Xc": JsOnUint8ClampedArrayImageListener,
|
|
8005
|
+
"Wc": JsOnUint8ClampedArrayImageVectorListener,
|
|
8006
|
+
"I": JsOnVectorFinishedListener,
|
|
8007
|
+
"Vc": JsOnVectorListenerBool,
|
|
8008
|
+
"Uc": JsOnVectorListenerDouble,
|
|
8009
|
+
"Tc": JsOnVectorListenerFloat,
|
|
8010
|
+
"Sc": JsOnVectorListenerInt,
|
|
8011
|
+
"Rc": JsOnVectorListenerProto,
|
|
8012
|
+
"Qc": JsOnVectorListenerString,
|
|
8013
|
+
"Pc": JsOnWebGLTextureListener,
|
|
8014
|
+
"Oc": JsOnWebGLTextureVectorListener,
|
|
8015
|
+
"C": JsWrapErrorListener,
|
|
8016
|
+
"Ha": JsWrapImageConverter,
|
|
8017
|
+
"p": JsWrapSimpleListeners,
|
|
8018
|
+
"j": ___cxa_allocate_exception,
|
|
8019
|
+
"i": ___cxa_throw,
|
|
8020
|
+
"Ga": ___syscall_fcntl64,
|
|
8021
|
+
"Nc": ___syscall_fstat64,
|
|
8022
|
+
"Mc": ___syscall_ioctl,
|
|
8023
|
+
"Lc": ___syscall_lstat64,
|
|
8024
|
+
"Kc": ___syscall_newfstatat,
|
|
8025
|
+
"Fa": ___syscall_openat,
|
|
8026
|
+
"Jc": ___syscall_stat64,
|
|
8027
|
+
"Fc": __dlinit,
|
|
8028
|
+
"Ec": __dlopen_js,
|
|
8029
|
+
"Dc": __dlsym_js,
|
|
8030
|
+
"Ob": __embind_register_bigint,
|
|
8031
|
+
"Cc": __embind_register_bool,
|
|
8032
|
+
"Bc": __embind_register_emval,
|
|
8033
|
+
"Da": __embind_register_float,
|
|
8034
|
+
"y": __embind_register_integer,
|
|
8035
|
+
"l": __embind_register_memory_view,
|
|
8036
|
+
"Ca": __embind_register_std_string,
|
|
8037
|
+
"fa": __embind_register_std_wstring,
|
|
8038
|
+
"Ac": __embind_register_void,
|
|
8039
|
+
"zc": __emscripten_get_now_is_monotonic,
|
|
8040
|
+
"ea": __emval_as,
|
|
8041
|
+
"h": __emval_decref,
|
|
8042
|
+
"da": __emval_get_global,
|
|
8043
|
+
"Ba": __emval_get_property,
|
|
8044
|
+
"Aa": __emval_incref,
|
|
8045
|
+
"ca": __emval_instanceof,
|
|
8046
|
+
"Z": __emval_new_cstring,
|
|
8047
|
+
"ba": __emval_run_destructors,
|
|
8048
|
+
"za": __emval_set_property,
|
|
8049
|
+
"Y": __emval_take_value,
|
|
8050
|
+
"yc": __emval_typeof,
|
|
8051
|
+
"xc": __gmtime_js,
|
|
8052
|
+
"wc": __localtime_js,
|
|
8053
|
+
"vc": __mktime_js,
|
|
8054
|
+
"uc": __mmap_js,
|
|
8055
|
+
"tc": __munmap_js,
|
|
8056
|
+
"sc": __tzset_js,
|
|
7947
8057
|
"a": _abort,
|
|
7948
|
-
"
|
|
7949
|
-
"
|
|
7950
|
-
"
|
|
7951
|
-
"
|
|
7952
|
-
"
|
|
7953
|
-
"
|
|
7954
|
-
"
|
|
7955
|
-
"
|
|
7956
|
-
"
|
|
7957
|
-
"
|
|
7958
|
-
"
|
|
7959
|
-
"
|
|
7960
|
-
"
|
|
7961
|
-
"
|
|
7962
|
-
"
|
|
7963
|
-
"
|
|
7964
|
-
"
|
|
7965
|
-
"
|
|
7966
|
-
"
|
|
7967
|
-
"
|
|
7968
|
-
"
|
|
7969
|
-
"
|
|
7970
|
-
"
|
|
7971
|
-
"
|
|
7972
|
-
"
|
|
7973
|
-
"
|
|
7974
|
-
"
|
|
7975
|
-
"
|
|
7976
|
-
"
|
|
7977
|
-
"
|
|
7978
|
-
"
|
|
7979
|
-
"
|
|
7980
|
-
"
|
|
7981
|
-
"
|
|
7982
|
-
"
|
|
7983
|
-
"
|
|
7984
|
-
"
|
|
8058
|
+
"B": _emscripten_asm_const_int,
|
|
8059
|
+
"rc": _emscripten_date_now,
|
|
8060
|
+
"qc": _emscripten_get_heap_max,
|
|
8061
|
+
"A": _emscripten_get_now,
|
|
8062
|
+
"pc": _emscripten_memcpy_big,
|
|
8063
|
+
"oc": _emscripten_pc_get_function,
|
|
8064
|
+
"nc": _emscripten_resize_heap,
|
|
8065
|
+
"mc": _emscripten_stack_snapshot,
|
|
8066
|
+
"lc": _emscripten_stack_unwind_buffer,
|
|
8067
|
+
"kc": _emscripten_webgl_create_context,
|
|
8068
|
+
"jc": _emscripten_webgl_destroy_context,
|
|
8069
|
+
"ic": _emscripten_webgl_get_context_attributes,
|
|
8070
|
+
"ya": _emscripten_webgl_get_current_context,
|
|
8071
|
+
"hc": _emscripten_webgl_init_context_attributes,
|
|
8072
|
+
"gc": _emscripten_webgl_make_context_current,
|
|
8073
|
+
"fc": _emscripten_webgpu_export_bind_group_layout,
|
|
8074
|
+
"xa": _emscripten_webgpu_export_device,
|
|
8075
|
+
"ec": _emscripten_webgpu_export_sampler,
|
|
8076
|
+
"dc": _emscripten_webgpu_export_texture,
|
|
8077
|
+
"H": _emscripten_webgpu_get_device,
|
|
8078
|
+
"cc": _emscripten_webgpu_import_bind_group,
|
|
8079
|
+
"bc": _emscripten_webgpu_import_texture,
|
|
8080
|
+
"Q": _emscripten_webgpu_release_js_handle,
|
|
8081
|
+
"Ic": _environ_get,
|
|
8082
|
+
"Hc": _environ_sizes_get,
|
|
8083
|
+
"wa": _exit,
|
|
8084
|
+
"ha": _fd_close,
|
|
8085
|
+
"Ea": _fd_read,
|
|
8086
|
+
"Pb": _fd_seek,
|
|
8087
|
+
"ga": _fd_write,
|
|
8088
|
+
"ac": _getentropy,
|
|
8089
|
+
"e": _glActiveTexture,
|
|
8090
|
+
"X": _glAttachShader,
|
|
8091
|
+
"$b": _glBindAttribLocation,
|
|
8092
|
+
"d": _glBindBuffer,
|
|
8093
|
+
"_b": _glBindBufferBase,
|
|
8094
|
+
"s": _glBindFramebuffer,
|
|
7985
8095
|
"b": _glBindTexture,
|
|
7986
|
-
"
|
|
7987
|
-
"
|
|
7988
|
-
"
|
|
7989
|
-
"
|
|
7990
|
-
"
|
|
7991
|
-
"
|
|
7992
|
-
"
|
|
7993
|
-
"
|
|
7994
|
-
"
|
|
7995
|
-
"
|
|
7996
|
-
"
|
|
7997
|
-
"
|
|
7998
|
-
"
|
|
7999
|
-
"
|
|
8000
|
-
"
|
|
8001
|
-
"
|
|
8002
|
-
"
|
|
8003
|
-
"
|
|
8004
|
-
"
|
|
8005
|
-
"
|
|
8006
|
-
"
|
|
8007
|
-
"
|
|
8008
|
-
"
|
|
8009
|
-
"
|
|
8010
|
-
"
|
|
8011
|
-
"
|
|
8012
|
-
"
|
|
8013
|
-
"
|
|
8014
|
-
"
|
|
8015
|
-
"
|
|
8016
|
-
"
|
|
8017
|
-
"
|
|
8018
|
-
"
|
|
8019
|
-
"
|
|
8020
|
-
"
|
|
8021
|
-
"
|
|
8022
|
-
"
|
|
8023
|
-
"
|
|
8096
|
+
"z": _glBindVertexArray,
|
|
8097
|
+
"r": _glBufferData,
|
|
8098
|
+
"P": _glClear,
|
|
8099
|
+
"Nb": _glClientWaitSync,
|
|
8100
|
+
"va": _glCompileShader,
|
|
8101
|
+
"ua": _glCreateProgram,
|
|
8102
|
+
"ta": _glCreateShader,
|
|
8103
|
+
"G": _glDeleteBuffers,
|
|
8104
|
+
"M": _glDeleteFramebuffers,
|
|
8105
|
+
"q": _glDeleteProgram,
|
|
8106
|
+
"O": _glDeleteShader,
|
|
8107
|
+
"N": _glDeleteSync,
|
|
8108
|
+
"v": _glDeleteTextures,
|
|
8109
|
+
"W": _glDeleteVertexArrays,
|
|
8110
|
+
"L": _glDisable,
|
|
8111
|
+
"u": _glDisableVertexAttribArray,
|
|
8112
|
+
"t": _glDrawArrays,
|
|
8113
|
+
"sa": _glDrawBuffers,
|
|
8114
|
+
"o": _glEnableVertexAttribArray,
|
|
8115
|
+
"ra": _glFenceSync,
|
|
8116
|
+
"V": _glFinish,
|
|
8117
|
+
"qa": _glFlush,
|
|
8118
|
+
"x": _glFramebufferTexture2D,
|
|
8119
|
+
"pa": _glFramebufferTextureLayer,
|
|
8120
|
+
"w": _glGenBuffers,
|
|
8121
|
+
"K": _glGenFramebuffers,
|
|
8122
|
+
"F": _glGenTextures,
|
|
8123
|
+
"U": _glGenVertexArrays,
|
|
8124
|
+
"oa": _glGetAttribLocation,
|
|
8125
|
+
"T": _glGetError,
|
|
8126
|
+
"n": _glGetIntegerv,
|
|
8127
|
+
"Zb": _glGetProgramiv,
|
|
8128
|
+
"Yb": _glGetShaderInfoLog,
|
|
8129
|
+
"Xb": _glGetShaderiv,
|
|
8130
|
+
"E": _glGetString,
|
|
8131
|
+
"Wb": _glGetUniformBlockIndex,
|
|
8132
|
+
"f": _glGetUniformLocation,
|
|
8133
|
+
"na": _glLinkProgram,
|
|
8134
|
+
"S": _glPixelStorei,
|
|
8135
|
+
"ma": _glReadPixels,
|
|
8136
|
+
"la": _glShaderSource,
|
|
8137
|
+
"D": _glTexImage2D,
|
|
8138
|
+
"ka": _glTexParameterfv,
|
|
8024
8139
|
"c": _glTexParameteri,
|
|
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
|
-
"
|
|
8080
|
-
"
|
|
8081
|
-
"
|
|
8082
|
-
"
|
|
8083
|
-
"
|
|
8084
|
-
"
|
|
8085
|
-
"
|
|
8086
|
-
"
|
|
8087
|
-
"
|
|
8088
|
-
"
|
|
8089
|
-
"
|
|
8090
|
-
"
|
|
8091
|
-
"
|
|
8092
|
-
"
|
|
8093
|
-
"
|
|
8094
|
-
"
|
|
8095
|
-
"
|
|
8096
|
-
"
|
|
8097
|
-
"
|
|
8098
|
-
"
|
|
8140
|
+
"aa": _glTexStorage2D,
|
|
8141
|
+
"Vb": _glTexStorage3D,
|
|
8142
|
+
"$": _glTexSubImage2D,
|
|
8143
|
+
"Ub": _glTexSubImage3D,
|
|
8144
|
+
"_": _glUniform1f,
|
|
8145
|
+
"g": _glUniform1i,
|
|
8146
|
+
"Tb": _glUniform2f,
|
|
8147
|
+
"Sb": _glUniform2fv,
|
|
8148
|
+
"ja": _glUniform4fv,
|
|
8149
|
+
"Rb": _glUniform4iv,
|
|
8150
|
+
"Qb": _glUniformBlockBinding,
|
|
8151
|
+
"ia": _glUniformMatrix4fv,
|
|
8152
|
+
"k": _glUseProgram,
|
|
8153
|
+
"m": _glVertexAttribPointer,
|
|
8154
|
+
"J": _glViewport,
|
|
8155
|
+
"Lb": mediapipe_create_utility_canvas2d,
|
|
8156
|
+
"Kb": _mediapipe_find_canvas_event_target,
|
|
8157
|
+
"Jb": mediapipe_import_external_texture,
|
|
8158
|
+
"Ib": _mediapipe_webgl_tex_image_drawable,
|
|
8159
|
+
"Gc": _proc_exit,
|
|
8160
|
+
"R": _strftime,
|
|
8161
|
+
"Hb": _strftime_l,
|
|
8162
|
+
"Gb": _wgpuBindGroupLayoutRelease,
|
|
8163
|
+
"Fb": _wgpuBindGroupRelease,
|
|
8164
|
+
"Eb": _wgpuBufferGetMappedRange,
|
|
8165
|
+
"Db": _wgpuBufferReference,
|
|
8166
|
+
"Cb": _wgpuBufferRelease,
|
|
8167
|
+
"Bb": _wgpuBufferUnmap,
|
|
8168
|
+
"Ab": _wgpuCommandBufferRelease,
|
|
8169
|
+
"zb": _wgpuCommandEncoderBeginComputePass,
|
|
8170
|
+
"yb": _wgpuCommandEncoderBeginRenderPass,
|
|
8171
|
+
"xb": _wgpuCommandEncoderCopyBufferToTexture,
|
|
8172
|
+
"wb": _wgpuCommandEncoderCopyTextureToTexture,
|
|
8173
|
+
"vb": _wgpuCommandEncoderFinish,
|
|
8174
|
+
"ub": _wgpuCommandEncoderRelease,
|
|
8175
|
+
"tb": _wgpuComputePassEncoderDispatchWorkgroups,
|
|
8176
|
+
"sb": _wgpuComputePassEncoderEnd,
|
|
8177
|
+
"rb": _wgpuComputePassEncoderRelease,
|
|
8178
|
+
"qb": _wgpuComputePassEncoderSetBindGroup,
|
|
8179
|
+
"pb": _wgpuComputePassEncoderSetPipeline,
|
|
8180
|
+
"ob": _wgpuComputePipelineGetBindGroupLayout,
|
|
8181
|
+
"nb": _wgpuComputePipelineRelease,
|
|
8182
|
+
"mb": _wgpuDeviceCreateBindGroup,
|
|
8183
|
+
"lb": _wgpuDeviceCreateBuffer,
|
|
8184
|
+
"kb": _wgpuDeviceCreateCommandEncoder,
|
|
8185
|
+
"jb": _wgpuDeviceCreateComputePipeline,
|
|
8186
|
+
"ib": _wgpuDeviceCreateRenderPipeline,
|
|
8187
|
+
"hb": _wgpuDeviceCreateSampler,
|
|
8188
|
+
"gb": _wgpuDeviceCreateShaderModule,
|
|
8189
|
+
"fb": _wgpuDeviceCreateTexture,
|
|
8190
|
+
"eb": _wgpuDeviceGetQueue,
|
|
8191
|
+
"db": _wgpuDeviceReference,
|
|
8192
|
+
"cb": _wgpuDeviceRelease,
|
|
8193
|
+
"bb": _wgpuPipelineLayoutRelease,
|
|
8194
|
+
"ab": _wgpuQuerySetRelease,
|
|
8195
|
+
"$a": _wgpuQueueRelease,
|
|
8196
|
+
"_a": _wgpuQueueSubmit,
|
|
8197
|
+
"Mb": _wgpuQueueWriteBuffer,
|
|
8198
|
+
"Za": _wgpuRenderPassEncoderDraw,
|
|
8199
|
+
"Ya": _wgpuRenderPassEncoderEnd,
|
|
8200
|
+
"Xa": _wgpuRenderPassEncoderRelease,
|
|
8201
|
+
"Wa": _wgpuRenderPassEncoderSetBindGroup,
|
|
8202
|
+
"Va": _wgpuRenderPassEncoderSetPipeline,
|
|
8203
|
+
"Ua": _wgpuRenderPipelineGetBindGroupLayout,
|
|
8204
|
+
"Ta": _wgpuRenderPipelineRelease,
|
|
8205
|
+
"Sa": _wgpuSamplerReference,
|
|
8206
|
+
"Ra": _wgpuSamplerRelease,
|
|
8207
|
+
"Qa": _wgpuShaderModuleReference,
|
|
8208
|
+
"Pa": _wgpuShaderModuleRelease,
|
|
8209
|
+
"Oa": _wgpuTextureCreateView,
|
|
8210
|
+
"Na": _wgpuTextureDestroy,
|
|
8211
|
+
"Ma": _wgpuTextureReference,
|
|
8212
|
+
"La": _wgpuTextureRelease,
|
|
8213
|
+
"Ka": _wgpuTextureViewReference,
|
|
8214
|
+
"Ja": _wgpuTextureViewRelease
|
|
8099
8215
|
};
|
|
8100
8216
|
|
|
8101
8217
|
var asm = createWasm();
|
|
8102
8218
|
|
|
8103
8219
|
var ___wasm_call_ctors = Module["___wasm_call_ctors"] = function() {
|
|
8104
|
-
return (___wasm_call_ctors = Module["___wasm_call_ctors"] = Module["asm"]["
|
|
8220
|
+
return (___wasm_call_ctors = Module["___wasm_call_ctors"] = Module["asm"]["gd"]).apply(null, arguments);
|
|
8105
8221
|
};
|
|
8106
8222
|
|
|
8107
8223
|
var _free = Module["_free"] = function() {
|
|
8108
|
-
return (_free = Module["_free"] = Module["asm"]["
|
|
8224
|
+
return (_free = Module["_free"] = Module["asm"]["id"]).apply(null, arguments);
|
|
8109
8225
|
};
|
|
8110
8226
|
|
|
8111
8227
|
var _malloc = Module["_malloc"] = function() {
|
|
8112
|
-
return (_malloc = Module["_malloc"] = Module["asm"]["
|
|
8228
|
+
return (_malloc = Module["_malloc"] = Module["asm"]["jd"]).apply(null, arguments);
|
|
8113
8229
|
};
|
|
8114
8230
|
|
|
8115
8231
|
var _addBoundTextureAsImageToStream = Module["_addBoundTextureAsImageToStream"] = function() {
|
|
8116
|
-
return (_addBoundTextureAsImageToStream = Module["_addBoundTextureAsImageToStream"] = Module["asm"]["
|
|
8232
|
+
return (_addBoundTextureAsImageToStream = Module["_addBoundTextureAsImageToStream"] = Module["asm"]["kd"]).apply(null, arguments);
|
|
8117
8233
|
};
|
|
8118
8234
|
|
|
8119
8235
|
var _attachImageListener = Module["_attachImageListener"] = function() {
|
|
8120
|
-
return (_attachImageListener = Module["_attachImageListener"] = Module["asm"]["
|
|
8236
|
+
return (_attachImageListener = Module["_attachImageListener"] = Module["asm"]["ld"]).apply(null, arguments);
|
|
8121
8237
|
};
|
|
8122
8238
|
|
|
8123
8239
|
var _attachImageVectorListener = Module["_attachImageVectorListener"] = function() {
|
|
8124
|
-
return (_attachImageVectorListener = Module["_attachImageVectorListener"] = Module["asm"]["
|
|
8240
|
+
return (_attachImageVectorListener = Module["_attachImageVectorListener"] = Module["asm"]["md"]).apply(null, arguments);
|
|
8125
8241
|
};
|
|
8126
8242
|
|
|
8127
8243
|
var _registerModelResourcesGraphService = Module["_registerModelResourcesGraphService"] = function() {
|
|
8128
|
-
return (_registerModelResourcesGraphService = Module["_registerModelResourcesGraphService"] = Module["asm"]["
|
|
8244
|
+
return (_registerModelResourcesGraphService = Module["_registerModelResourcesGraphService"] = Module["asm"]["nd"]).apply(null, arguments);
|
|
8129
8245
|
};
|
|
8130
8246
|
|
|
8131
8247
|
var _bindTextureToStream = Module["_bindTextureToStream"] = function() {
|
|
8132
|
-
return (_bindTextureToStream = Module["_bindTextureToStream"] = Module["asm"]["
|
|
8248
|
+
return (_bindTextureToStream = Module["_bindTextureToStream"] = Module["asm"]["od"]).apply(null, arguments);
|
|
8133
8249
|
};
|
|
8134
8250
|
|
|
8135
8251
|
var _addBoundTextureToStream = Module["_addBoundTextureToStream"] = function() {
|
|
8136
|
-
return (_addBoundTextureToStream = Module["_addBoundTextureToStream"] = Module["asm"]["
|
|
8252
|
+
return (_addBoundTextureToStream = Module["_addBoundTextureToStream"] = Module["asm"]["pd"]).apply(null, arguments);
|
|
8137
8253
|
};
|
|
8138
8254
|
|
|
8139
8255
|
var _addDoubleToInputStream = Module["_addDoubleToInputStream"] = function() {
|
|
8140
|
-
return (_addDoubleToInputStream = Module["_addDoubleToInputStream"] = Module["asm"]["
|
|
8256
|
+
return (_addDoubleToInputStream = Module["_addDoubleToInputStream"] = Module["asm"]["qd"]).apply(null, arguments);
|
|
8141
8257
|
};
|
|
8142
8258
|
|
|
8143
8259
|
var _addFloatToInputStream = Module["_addFloatToInputStream"] = function() {
|
|
8144
|
-
return (_addFloatToInputStream = Module["_addFloatToInputStream"] = Module["asm"]["
|
|
8260
|
+
return (_addFloatToInputStream = Module["_addFloatToInputStream"] = Module["asm"]["rd"]).apply(null, arguments);
|
|
8145
8261
|
};
|
|
8146
8262
|
|
|
8147
8263
|
var _addBoolToInputStream = Module["_addBoolToInputStream"] = function() {
|
|
8148
|
-
return (_addBoolToInputStream = Module["_addBoolToInputStream"] = Module["asm"]["
|
|
8264
|
+
return (_addBoolToInputStream = Module["_addBoolToInputStream"] = Module["asm"]["sd"]).apply(null, arguments);
|
|
8149
8265
|
};
|
|
8150
8266
|
|
|
8151
8267
|
var _addIntToInputStream = Module["_addIntToInputStream"] = function() {
|
|
8152
|
-
return (_addIntToInputStream = Module["_addIntToInputStream"] = Module["asm"]["
|
|
8268
|
+
return (_addIntToInputStream = Module["_addIntToInputStream"] = Module["asm"]["td"]).apply(null, arguments);
|
|
8153
8269
|
};
|
|
8154
8270
|
|
|
8155
8271
|
var _addStringToInputStream = Module["_addStringToInputStream"] = function() {
|
|
8156
|
-
return (_addStringToInputStream = Module["_addStringToInputStream"] = Module["asm"]["
|
|
8272
|
+
return (_addStringToInputStream = Module["_addStringToInputStream"] = Module["asm"]["ud"]).apply(null, arguments);
|
|
8157
8273
|
};
|
|
8158
8274
|
|
|
8159
8275
|
var _addFlatHashMapToInputStream = Module["_addFlatHashMapToInputStream"] = function() {
|
|
8160
|
-
return (_addFlatHashMapToInputStream = Module["_addFlatHashMapToInputStream"] = Module["asm"]["
|
|
8276
|
+
return (_addFlatHashMapToInputStream = Module["_addFlatHashMapToInputStream"] = Module["asm"]["vd"]).apply(null, arguments);
|
|
8161
8277
|
};
|
|
8162
8278
|
|
|
8163
8279
|
var _addProtoToInputStream = Module["_addProtoToInputStream"] = function() {
|
|
8164
|
-
return (_addProtoToInputStream = Module["_addProtoToInputStream"] = Module["asm"]["
|
|
8280
|
+
return (_addProtoToInputStream = Module["_addProtoToInputStream"] = Module["asm"]["wd"]).apply(null, arguments);
|
|
8281
|
+
};
|
|
8282
|
+
|
|
8283
|
+
var _addEmptyPacketToInputStream = Module["_addEmptyPacketToInputStream"] = function() {
|
|
8284
|
+
return (_addEmptyPacketToInputStream = Module["_addEmptyPacketToInputStream"] = Module["asm"]["xd"]).apply(null, arguments);
|
|
8165
8285
|
};
|
|
8166
8286
|
|
|
8167
8287
|
var _addBoolToInputSidePacket = Module["_addBoolToInputSidePacket"] = function() {
|
|
8168
|
-
return (_addBoolToInputSidePacket = Module["_addBoolToInputSidePacket"] = Module["asm"]["
|
|
8288
|
+
return (_addBoolToInputSidePacket = Module["_addBoolToInputSidePacket"] = Module["asm"]["yd"]).apply(null, arguments);
|
|
8169
8289
|
};
|
|
8170
8290
|
|
|
8171
8291
|
var _addDoubleToInputSidePacket = Module["_addDoubleToInputSidePacket"] = function() {
|
|
8172
|
-
return (_addDoubleToInputSidePacket = Module["_addDoubleToInputSidePacket"] = Module["asm"]["
|
|
8292
|
+
return (_addDoubleToInputSidePacket = Module["_addDoubleToInputSidePacket"] = Module["asm"]["zd"]).apply(null, arguments);
|
|
8173
8293
|
};
|
|
8174
8294
|
|
|
8175
8295
|
var _addFloatToInputSidePacket = Module["_addFloatToInputSidePacket"] = function() {
|
|
8176
|
-
return (_addFloatToInputSidePacket = Module["_addFloatToInputSidePacket"] = Module["asm"]["
|
|
8296
|
+
return (_addFloatToInputSidePacket = Module["_addFloatToInputSidePacket"] = Module["asm"]["Ad"]).apply(null, arguments);
|
|
8177
8297
|
};
|
|
8178
8298
|
|
|
8179
8299
|
var _addIntToInputSidePacket = Module["_addIntToInputSidePacket"] = function() {
|
|
8180
|
-
return (_addIntToInputSidePacket = Module["_addIntToInputSidePacket"] = Module["asm"]["
|
|
8300
|
+
return (_addIntToInputSidePacket = Module["_addIntToInputSidePacket"] = Module["asm"]["Bd"]).apply(null, arguments);
|
|
8181
8301
|
};
|
|
8182
8302
|
|
|
8183
8303
|
var _addStringToInputSidePacket = Module["_addStringToInputSidePacket"] = function() {
|
|
8184
|
-
return (_addStringToInputSidePacket = Module["_addStringToInputSidePacket"] = Module["asm"]["
|
|
8304
|
+
return (_addStringToInputSidePacket = Module["_addStringToInputSidePacket"] = Module["asm"]["Cd"]).apply(null, arguments);
|
|
8185
8305
|
};
|
|
8186
8306
|
|
|
8187
8307
|
var _addProtoToInputSidePacket = Module["_addProtoToInputSidePacket"] = function() {
|
|
8188
|
-
return (_addProtoToInputSidePacket = Module["_addProtoToInputSidePacket"] = Module["asm"]["
|
|
8308
|
+
return (_addProtoToInputSidePacket = Module["_addProtoToInputSidePacket"] = Module["asm"]["Dd"]).apply(null, arguments);
|
|
8189
8309
|
};
|
|
8190
8310
|
|
|
8191
8311
|
var _attachBoolListener = Module["_attachBoolListener"] = function() {
|
|
8192
|
-
return (_attachBoolListener = Module["_attachBoolListener"] = Module["asm"]["
|
|
8312
|
+
return (_attachBoolListener = Module["_attachBoolListener"] = Module["asm"]["Ed"]).apply(null, arguments);
|
|
8193
8313
|
};
|
|
8194
8314
|
|
|
8195
8315
|
var _attachBoolVectorListener = Module["_attachBoolVectorListener"] = function() {
|
|
8196
|
-
return (_attachBoolVectorListener = Module["_attachBoolVectorListener"] = Module["asm"]["
|
|
8316
|
+
return (_attachBoolVectorListener = Module["_attachBoolVectorListener"] = Module["asm"]["Fd"]).apply(null, arguments);
|
|
8197
8317
|
};
|
|
8198
8318
|
|
|
8199
8319
|
var _attachDoubleListener = Module["_attachDoubleListener"] = function() {
|
|
8200
|
-
return (_attachDoubleListener = Module["_attachDoubleListener"] = Module["asm"]["
|
|
8320
|
+
return (_attachDoubleListener = Module["_attachDoubleListener"] = Module["asm"]["Gd"]).apply(null, arguments);
|
|
8201
8321
|
};
|
|
8202
8322
|
|
|
8203
8323
|
var _attachDoubleVectorListener = Module["_attachDoubleVectorListener"] = function() {
|
|
8204
|
-
return (_attachDoubleVectorListener = Module["_attachDoubleVectorListener"] = Module["asm"]["
|
|
8324
|
+
return (_attachDoubleVectorListener = Module["_attachDoubleVectorListener"] = Module["asm"]["Hd"]).apply(null, arguments);
|
|
8205
8325
|
};
|
|
8206
8326
|
|
|
8207
8327
|
var _attachFloatListener = Module["_attachFloatListener"] = function() {
|
|
8208
|
-
return (_attachFloatListener = Module["_attachFloatListener"] = Module["asm"]["
|
|
8328
|
+
return (_attachFloatListener = Module["_attachFloatListener"] = Module["asm"]["Id"]).apply(null, arguments);
|
|
8209
8329
|
};
|
|
8210
8330
|
|
|
8211
8331
|
var _attachFloatVectorListener = Module["_attachFloatVectorListener"] = function() {
|
|
8212
|
-
return (_attachFloatVectorListener = Module["_attachFloatVectorListener"] = Module["asm"]["
|
|
8332
|
+
return (_attachFloatVectorListener = Module["_attachFloatVectorListener"] = Module["asm"]["Jd"]).apply(null, arguments);
|
|
8213
8333
|
};
|
|
8214
8334
|
|
|
8215
8335
|
var _attachIntListener = Module["_attachIntListener"] = function() {
|
|
8216
|
-
return (_attachIntListener = Module["_attachIntListener"] = Module["asm"]["
|
|
8336
|
+
return (_attachIntListener = Module["_attachIntListener"] = Module["asm"]["Kd"]).apply(null, arguments);
|
|
8217
8337
|
};
|
|
8218
8338
|
|
|
8219
8339
|
var _attachIntVectorListener = Module["_attachIntVectorListener"] = function() {
|
|
8220
|
-
return (_attachIntVectorListener = Module["_attachIntVectorListener"] = Module["asm"]["
|
|
8340
|
+
return (_attachIntVectorListener = Module["_attachIntVectorListener"] = Module["asm"]["Ld"]).apply(null, arguments);
|
|
8221
8341
|
};
|
|
8222
8342
|
|
|
8223
8343
|
var _attachStringListener = Module["_attachStringListener"] = function() {
|
|
8224
|
-
return (_attachStringListener = Module["_attachStringListener"] = Module["asm"]["
|
|
8344
|
+
return (_attachStringListener = Module["_attachStringListener"] = Module["asm"]["Md"]).apply(null, arguments);
|
|
8225
8345
|
};
|
|
8226
8346
|
|
|
8227
8347
|
var _attachStringVectorListener = Module["_attachStringVectorListener"] = function() {
|
|
8228
|
-
return (_attachStringVectorListener = Module["_attachStringVectorListener"] = Module["asm"]["
|
|
8348
|
+
return (_attachStringVectorListener = Module["_attachStringVectorListener"] = Module["asm"]["Nd"]).apply(null, arguments);
|
|
8229
8349
|
};
|
|
8230
8350
|
|
|
8231
8351
|
var _attachProtoListener = Module["_attachProtoListener"] = function() {
|
|
8232
|
-
return (_attachProtoListener = Module["_attachProtoListener"] = Module["asm"]["
|
|
8352
|
+
return (_attachProtoListener = Module["_attachProtoListener"] = Module["asm"]["Od"]).apply(null, arguments);
|
|
8233
8353
|
};
|
|
8234
8354
|
|
|
8235
8355
|
var _attachProtoVectorListener = Module["_attachProtoVectorListener"] = function() {
|
|
8236
|
-
return (_attachProtoVectorListener = Module["_attachProtoVectorListener"] = Module["asm"]["
|
|
8356
|
+
return (_attachProtoVectorListener = Module["_attachProtoVectorListener"] = Module["asm"]["Pd"]).apply(null, arguments);
|
|
8357
|
+
};
|
|
8358
|
+
|
|
8359
|
+
var _getGraphConfig = Module["_getGraphConfig"] = function() {
|
|
8360
|
+
return (_getGraphConfig = Module["_getGraphConfig"] = Module["asm"]["Qd"]).apply(null, arguments);
|
|
8237
8361
|
};
|
|
8238
8362
|
|
|
8239
8363
|
var ___errno_location = Module["___errno_location"] = function() {
|
|
8240
|
-
return (___errno_location = Module["___errno_location"] = Module["asm"]["
|
|
8364
|
+
return (___errno_location = Module["___errno_location"] = Module["asm"]["Rd"]).apply(null, arguments);
|
|
8241
8365
|
};
|
|
8242
8366
|
|
|
8243
8367
|
var _clearSubgraphs = Module["_clearSubgraphs"] = function() {
|
|
8244
|
-
return (_clearSubgraphs = Module["_clearSubgraphs"] = Module["asm"]["
|
|
8368
|
+
return (_clearSubgraphs = Module["_clearSubgraphs"] = Module["asm"]["Sd"]).apply(null, arguments);
|
|
8245
8369
|
};
|
|
8246
8370
|
|
|
8247
8371
|
var _pushBinarySubgraph = Module["_pushBinarySubgraph"] = function() {
|
|
8248
|
-
return (_pushBinarySubgraph = Module["_pushBinarySubgraph"] = Module["asm"]["
|
|
8372
|
+
return (_pushBinarySubgraph = Module["_pushBinarySubgraph"] = Module["asm"]["Td"]).apply(null, arguments);
|
|
8249
8373
|
};
|
|
8250
8374
|
|
|
8251
8375
|
var _pushTextSubgraph = Module["_pushTextSubgraph"] = function() {
|
|
8252
|
-
return (_pushTextSubgraph = Module["_pushTextSubgraph"] = Module["asm"]["
|
|
8376
|
+
return (_pushTextSubgraph = Module["_pushTextSubgraph"] = Module["asm"]["Ud"]).apply(null, arguments);
|
|
8253
8377
|
};
|
|
8254
8378
|
|
|
8255
8379
|
var _changeBinaryGraph = Module["_changeBinaryGraph"] = function() {
|
|
8256
|
-
return (_changeBinaryGraph = Module["_changeBinaryGraph"] = Module["asm"]["
|
|
8380
|
+
return (_changeBinaryGraph = Module["_changeBinaryGraph"] = Module["asm"]["Vd"]).apply(null, arguments);
|
|
8257
8381
|
};
|
|
8258
8382
|
|
|
8259
8383
|
var _changeTextGraph = Module["_changeTextGraph"] = function() {
|
|
8260
|
-
return (_changeTextGraph = Module["_changeTextGraph"] = Module["asm"]["
|
|
8384
|
+
return (_changeTextGraph = Module["_changeTextGraph"] = Module["asm"]["Wd"]).apply(null, arguments);
|
|
8261
8385
|
};
|
|
8262
8386
|
|
|
8263
8387
|
var _processGl = Module["_processGl"] = function() {
|
|
8264
|
-
return (_processGl = Module["_processGl"] = Module["asm"]["
|
|
8388
|
+
return (_processGl = Module["_processGl"] = Module["asm"]["Xd"]).apply(null, arguments);
|
|
8265
8389
|
};
|
|
8266
8390
|
|
|
8267
8391
|
var _process = Module["_process"] = function() {
|
|
8268
|
-
return (_process = Module["_process"] = Module["asm"]["
|
|
8392
|
+
return (_process = Module["_process"] = Module["asm"]["Yd"]).apply(null, arguments);
|
|
8269
8393
|
};
|
|
8270
8394
|
|
|
8271
8395
|
var _bindTextureToCanvas = Module["_bindTextureToCanvas"] = function() {
|
|
8272
|
-
return (_bindTextureToCanvas = Module["_bindTextureToCanvas"] = Module["asm"]["
|
|
8396
|
+
return (_bindTextureToCanvas = Module["_bindTextureToCanvas"] = Module["asm"]["Zd"]).apply(null, arguments);
|
|
8273
8397
|
};
|
|
8274
8398
|
|
|
8275
8399
|
var _requestShaderRefreshOnGraphChange = Module["_requestShaderRefreshOnGraphChange"] = function() {
|
|
8276
|
-
return (_requestShaderRefreshOnGraphChange = Module["_requestShaderRefreshOnGraphChange"] = Module["asm"]["
|
|
8400
|
+
return (_requestShaderRefreshOnGraphChange = Module["_requestShaderRefreshOnGraphChange"] = Module["asm"]["_d"]).apply(null, arguments);
|
|
8277
8401
|
};
|
|
8278
8402
|
|
|
8279
8403
|
var _waitUntilIdle = Module["_waitUntilIdle"] = function() {
|
|
8280
|
-
return (_waitUntilIdle = Module["_waitUntilIdle"] = Module["asm"]["
|
|
8404
|
+
return (_waitUntilIdle = Module["_waitUntilIdle"] = Module["asm"]["$d"]).apply(null, arguments);
|
|
8281
8405
|
};
|
|
8282
8406
|
|
|
8283
8407
|
var _setAutoRenderToScreen = Module["_setAutoRenderToScreen"] = function() {
|
|
8284
|
-
return (_setAutoRenderToScreen = Module["_setAutoRenderToScreen"] = Module["asm"]["
|
|
8408
|
+
return (_setAutoRenderToScreen = Module["_setAutoRenderToScreen"] = Module["asm"]["ae"]).apply(null, arguments);
|
|
8285
8409
|
};
|
|
8286
8410
|
|
|
8287
8411
|
var ___getTypeName = Module["___getTypeName"] = function() {
|
|
8288
|
-
return (___getTypeName = Module["___getTypeName"] = Module["asm"]["
|
|
8412
|
+
return (___getTypeName = Module["___getTypeName"] = Module["asm"]["be"]).apply(null, arguments);
|
|
8289
8413
|
};
|
|
8290
8414
|
|
|
8291
8415
|
var __embind_initialize_bindings = Module["__embind_initialize_bindings"] = function() {
|
|
8292
|
-
return (__embind_initialize_bindings = Module["__embind_initialize_bindings"] = Module["asm"]["
|
|
8416
|
+
return (__embind_initialize_bindings = Module["__embind_initialize_bindings"] = Module["asm"]["ce"]).apply(null, arguments);
|
|
8293
8417
|
};
|
|
8294
8418
|
|
|
8295
8419
|
var _emscripten_builtin_memalign = Module["_emscripten_builtin_memalign"] = function() {
|
|
8296
|
-
return (_emscripten_builtin_memalign = Module["_emscripten_builtin_memalign"] = Module["asm"]["
|
|
8420
|
+
return (_emscripten_builtin_memalign = Module["_emscripten_builtin_memalign"] = Module["asm"]["de"]).apply(null, arguments);
|
|
8297
8421
|
};
|
|
8298
8422
|
|
|
8299
8423
|
var stackSave = Module["stackSave"] = function() {
|
|
8300
|
-
return (stackSave = Module["stackSave"] = Module["asm"]["
|
|
8424
|
+
return (stackSave = Module["stackSave"] = Module["asm"]["ee"]).apply(null, arguments);
|
|
8301
8425
|
};
|
|
8302
8426
|
|
|
8303
8427
|
var stackRestore = Module["stackRestore"] = function() {
|
|
8304
|
-
return (stackRestore = Module["stackRestore"] = Module["asm"]["
|
|
8428
|
+
return (stackRestore = Module["stackRestore"] = Module["asm"]["fe"]).apply(null, arguments);
|
|
8305
8429
|
};
|
|
8306
8430
|
|
|
8307
8431
|
var stackAlloc = Module["stackAlloc"] = function() {
|
|
8308
|
-
return (stackAlloc = Module["stackAlloc"] = Module["asm"]["
|
|
8432
|
+
return (stackAlloc = Module["stackAlloc"] = Module["asm"]["ge"]).apply(null, arguments);
|
|
8309
8433
|
};
|
|
8310
8434
|
|
|
8311
8435
|
var ___cxa_is_pointer_type = Module["___cxa_is_pointer_type"] = function() {
|
|
8312
|
-
return (___cxa_is_pointer_type = Module["___cxa_is_pointer_type"] = Module["asm"]["
|
|
8436
|
+
return (___cxa_is_pointer_type = Module["___cxa_is_pointer_type"] = Module["asm"]["he"]).apply(null, arguments);
|
|
8313
8437
|
};
|
|
8314
8438
|
|
|
8315
|
-
var ___start_em_js = Module["___start_em_js"] =
|
|
8439
|
+
var ___start_em_js = Module["___start_em_js"] = 927596;
|
|
8316
8440
|
|
|
8317
|
-
var ___stop_em_js = Module["___stop_em_js"] =
|
|
8441
|
+
var ___stop_em_js = Module["___stop_em_js"] = 934172;
|
|
8318
8442
|
|
|
8319
8443
|
Module["addRunDependency"] = addRunDependency;
|
|
8320
8444
|
|