@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.
@@ -1,4 +1,4 @@
1
- // Build 507782677
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"]["Yc"];
469
+ wasmMemory = Module["asm"]["fd"];
470
470
  updateGlobalBufferAndViews(wasmMemory.buffer);
471
- wasmTable = Module["asm"]["_c"];
472
- addOnInit(Module["asm"]["Zc"]);
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
- 917927: $0 => {
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
- 918062: ($0, $1, $2, $3, $4) => {
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
- 918313: ($0, $1, $2, $3) => {
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
- 918661: ($0, $1) => {
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
- 918885: ($0, $1) => {
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
- 919089: ($0, $1) => {
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
- 919225: () => {
577
+ 935470: () => {
578
578
  return !!Module["preinitializedWebGPUDevice"];
579
579
  },
580
- 919276: () => {
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
- 920061: () => {
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 JsOnUint8ImageListener(output_stream_name, binary_ptr, binary_size, width, height, make_deep_copy, timestamp_ms) {
625
- const image = Module._imageConverter(binary_ptr, binary_size, width, height, make_deep_copy, Uint8Array);
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 JsOnFloat32ImageListener(output_stream_name, binary_ptr, binary_size, width, height, make_deep_copy, timestamp_ms) {
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 JsOnUint8ImageVectorListener(output_stream_name, binary_ptr, binary_size, width, height, make_deep_copy, index, length, timestamp_ms) {
635
- const image = Module._imageConverter(binary_ptr, binary_size, width, height, make_deep_copy, Uint8Array);
636
- Module._wrapSimpleListenerOutput(output_stream_name, image, index, length, timestamp_ms);
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 JsOnFloat32ImageVectorListener(output_stream_name, binary_ptr, binary_size, width, height, make_deep_copy, index, length, timestamp_ms) {
640
- const image = Module._imageConverter(binary_ptr, binary_size, width, height, make_deep_copy, Float32Array);
641
- Module._wrapSimpleListenerOutput(output_stream_name, image, index, length, timestamp_ms);
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, index, length, timestamp) {
653
- Module._wrapSimpleListenerOutput(output_stream_name, out_data, index, length, timestamp);
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, index, length, timestamp) {
661
- Module._wrapSimpleListenerOutput(output_stream_name, out_data, index, length, timestamp);
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, index, length, timestamp) {
669
- Module._wrapSimpleListenerOutput(output_stream_name, out_data, index, length, timestamp);
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, index, length, timestamp) {
677
- Module._wrapSimpleListenerOutput(output_stream_name, out_data, index, length, timestamp);
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, index, length, timestamp) {
685
- Module._wrapSimpleListenerOutput(output_stream_name, UTF8ToString(out_data), index, length, timestamp);
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, index, length, timestamp) {
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, index, length, timestamp);
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
- const canvas = document.createElement("canvas");
732
- canvas.style.display = "none";
733
- canvas.id = "canvas_2d";
734
- document.body.appendChild(canvas);
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.mgrPipelineLayout.get(HEAPU32[descriptor + 8 >> 2]),
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.mgrPipelineLayout.get(HEAPU32[descriptor + 8 >> 2]),
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
- "Xc": HaveOffsetConverter,
7888
- "Wc": JsOnEmptyPacketListener,
7889
- "Vc": JsOnFloat32ImageListener,
7890
- "Uc": JsOnFloat32ImageVectorListener,
7891
- "Tc": JsOnSimpleListenerBinaryArray,
7892
- "Sc": JsOnSimpleListenerBool,
7893
- "Rc": JsOnSimpleListenerDouble,
7894
- "Qc": JsOnSimpleListenerFloat,
7895
- "Pc": JsOnSimpleListenerInt,
7896
- "Oc": JsOnSimpleListenerString,
7897
- "Nc": JsOnUint8ImageListener,
7898
- "Mc": JsOnUint8ImageVectorListener,
7899
- "Lc": JsOnVectorListenerBool,
7900
- "Kc": JsOnVectorListenerDouble,
7901
- "Jc": JsOnVectorListenerFloat,
7902
- "Ic": JsOnVectorListenerInt,
7903
- "Hc": JsOnVectorListenerProto,
7904
- "Gc": JsOnVectorListenerString,
7905
- "s": JsWrapErrorListener,
7906
- "za": JsWrapImageConverter,
7907
- "l": JsWrapSimpleListeners,
7908
- "e": ___cxa_allocate_exception,
7909
- "d": ___cxa_throw,
7910
- "ya": ___syscall_fcntl64,
7911
- "Fc": ___syscall_fstat64,
7912
- "Ec": ___syscall_ioctl,
7913
- "Dc": ___syscall_lstat64,
7914
- "Cc": ___syscall_newfstatat,
7915
- "xa": ___syscall_openat,
7916
- "Bc": ___syscall_stat64,
7917
- "xc": __dlinit,
7918
- "wc": __dlopen_js,
7919
- "vc": __dlsym_js,
7920
- "Fb": __embind_register_bigint,
7921
- "uc": __embind_register_bool,
7922
- "tc": __embind_register_emval,
7923
- "va": __embind_register_float,
7924
- "o": __embind_register_integer,
7925
- "g": __embind_register_memory_view,
7926
- "ua": __embind_register_std_string,
7927
- "Z": __embind_register_std_wstring,
7928
- "sc": __embind_register_void,
7929
- "rc": __emscripten_get_now_is_monotonic,
7930
- "Y": __emval_as,
7931
- "f": __emval_decref,
7932
- "X": __emval_get_global,
7933
- "ta": __emval_get_property,
7934
- "sa": __emval_incref,
7935
- "W": __emval_instanceof,
7936
- "S": __emval_new_cstring,
7937
- "V": __emval_run_destructors,
7938
- "ra": __emval_set_property,
7939
- "R": __emval_take_value,
7940
- "qc": __emval_typeof,
7941
- "pc": __gmtime_js,
7942
- "oc": __localtime_js,
7943
- "nc": __mktime_js,
7944
- "mc": __mmap_js,
7945
- "lc": __munmap_js,
7946
- "kc": __tzset_js,
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
- "r": _emscripten_asm_const_int,
7949
- "jc": _emscripten_date_now,
7950
- "ic": _emscripten_get_heap_max,
7951
- "q": _emscripten_get_now,
7952
- "hc": _emscripten_memcpy_big,
7953
- "gc": _emscripten_pc_get_function,
7954
- "fc": _emscripten_resize_heap,
7955
- "ec": _emscripten_stack_snapshot,
7956
- "dc": _emscripten_stack_unwind_buffer,
7957
- "cc": _emscripten_webgl_create_context,
7958
- "bc": _emscripten_webgl_destroy_context,
7959
- "ac": _emscripten_webgl_get_context_attributes,
7960
- "qa": _emscripten_webgl_get_current_context,
7961
- "$b": _emscripten_webgl_init_context_attributes,
7962
- "_b": _emscripten_webgl_make_context_current,
7963
- "Zb": _emscripten_webgpu_export_bind_group_layout,
7964
- "pa": _emscripten_webgpu_export_device,
7965
- "Yb": _emscripten_webgpu_export_sampler,
7966
- "Xb": _emscripten_webgpu_export_texture,
7967
- "A": _emscripten_webgpu_get_device,
7968
- "Wb": _emscripten_webgpu_import_bind_group,
7969
- "Vb": _emscripten_webgpu_import_texture,
7970
- "G": _emscripten_webgpu_release_js_handle,
7971
- "Ac": _environ_get,
7972
- "zc": _environ_sizes_get,
7973
- "oa": _exit,
7974
- "$": _fd_close,
7975
- "wa": _fd_read,
7976
- "Gb": _fd_seek,
7977
- "_": _fd_write,
7978
- "Ub": _getentropy,
7979
- "i": _glActiveTexture,
7980
- "Q": _glAttachShader,
7981
- "Tb": _glBindAttribLocation,
7982
- "h": _glBindBuffer,
7983
- "Sb": _glBindBufferBase,
7984
- "n": _glBindFramebuffer,
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
- "na": _glBindVertexArray,
7987
- "F": _glBufferData,
7988
- "Eb": _glClientWaitSync,
7989
- "ma": _glCompileShader,
7990
- "la": _glCreateProgram,
7991
- "ka": _glCreateShader,
7992
- "ja": _glDeleteBuffers,
7993
- "E": _glDeleteFramebuffers,
7994
- "P": _glDeleteProgram,
7995
- "D": _glDeleteShader,
7996
- "C": _glDeleteSync,
7997
- "m": _glDeleteTextures,
7998
- "Rb": _glDeleteVertexArrays,
7999
- "ia": _glDisable,
8000
- "O": _glDisableVertexAttribArray,
8001
- "N": _glDrawArrays,
8002
- "ha": _glDrawBuffers,
8003
- "z": _glEnableVertexAttribArray,
8004
- "ga": _glFenceSync,
8005
- "M": _glFinish,
8006
- "y": _glFramebufferTexture2D,
8007
- "fa": _glFramebufferTextureLayer,
8008
- "L": _glGenBuffers,
8009
- "B": _glGenFramebuffers,
8010
- "x": _glGenTextures,
8011
- "Qb": _glGenVertexArrays,
8012
- "ea": _glGetAttribLocation,
8013
- "K": _glGetError,
8014
- "j": _glGetIntegerv,
8015
- "w": _glGetString,
8016
- "Pb": _glGetUniformBlockIndex,
8017
- "k": _glGetUniformLocation,
8018
- "da": _glLinkProgram,
8019
- "J": _glPixelStorei,
8020
- "ca": _glReadPixels,
8021
- "ba": _glShaderSource,
8022
- "v": _glTexImage2D,
8023
- "Ob": _glTexParameterfv,
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
- "U": _glTexStorage2D,
8026
- "Nb": _glTexStorage3D,
8027
- "T": _glTexSubImage2D,
8028
- "Mb": _glTexSubImage3D,
8029
- "aa": _glUniform1f,
8030
- "u": _glUniform1i,
8031
- "Lb": _glUniform2fv,
8032
- "Kb": _glUniform4fv,
8033
- "Jb": _glUniform4iv,
8034
- "Ib": _glUniformBlockBinding,
8035
- "Hb": _glUniformMatrix4fv,
8036
- "p": _glUseProgram,
8037
- "t": _glVertexAttribPointer,
8038
- "I": _glViewport,
8039
- "Cb": mediapipe_create_utility_canvas2d,
8040
- "Bb": _mediapipe_find_canvas_event_target,
8041
- "Ab": mediapipe_import_external_texture,
8042
- "zb": _mediapipe_webgl_tex_image_drawable,
8043
- "yc": _proc_exit,
8044
- "H": _strftime,
8045
- "yb": _strftime_l,
8046
- "xb": _wgpuBindGroupLayoutRelease,
8047
- "wb": _wgpuBindGroupRelease,
8048
- "vb": _wgpuBufferGetMappedRange,
8049
- "ub": _wgpuBufferReference,
8050
- "tb": _wgpuBufferRelease,
8051
- "sb": _wgpuBufferUnmap,
8052
- "rb": _wgpuCommandBufferRelease,
8053
- "qb": _wgpuCommandEncoderBeginComputePass,
8054
- "pb": _wgpuCommandEncoderBeginRenderPass,
8055
- "ob": _wgpuCommandEncoderCopyBufferToTexture,
8056
- "nb": _wgpuCommandEncoderCopyTextureToTexture,
8057
- "mb": _wgpuCommandEncoderFinish,
8058
- "lb": _wgpuCommandEncoderRelease,
8059
- "kb": _wgpuComputePassEncoderDispatchWorkgroups,
8060
- "jb": _wgpuComputePassEncoderEnd,
8061
- "ib": _wgpuComputePassEncoderRelease,
8062
- "hb": _wgpuComputePassEncoderSetBindGroup,
8063
- "gb": _wgpuComputePassEncoderSetPipeline,
8064
- "fb": _wgpuComputePipelineGetBindGroupLayout,
8065
- "eb": _wgpuComputePipelineRelease,
8066
- "db": _wgpuDeviceCreateBindGroup,
8067
- "cb": _wgpuDeviceCreateBuffer,
8068
- "bb": _wgpuDeviceCreateCommandEncoder,
8069
- "ab": _wgpuDeviceCreateComputePipeline,
8070
- "$a": _wgpuDeviceCreateRenderPipeline,
8071
- "_a": _wgpuDeviceCreateSampler,
8072
- "Za": _wgpuDeviceCreateShaderModule,
8073
- "Ya": _wgpuDeviceCreateTexture,
8074
- "Xa": _wgpuDeviceGetQueue,
8075
- "Wa": _wgpuDeviceReference,
8076
- "Va": _wgpuDeviceRelease,
8077
- "Ua": _wgpuPipelineLayoutRelease,
8078
- "Ta": _wgpuQuerySetRelease,
8079
- "Sa": _wgpuQueueRelease,
8080
- "Ra": _wgpuQueueSubmit,
8081
- "Db": _wgpuQueueWriteBuffer,
8082
- "Qa": _wgpuRenderPassEncoderDraw,
8083
- "Pa": _wgpuRenderPassEncoderEnd,
8084
- "Oa": _wgpuRenderPassEncoderRelease,
8085
- "Na": _wgpuRenderPassEncoderSetBindGroup,
8086
- "Ma": _wgpuRenderPassEncoderSetPipeline,
8087
- "La": _wgpuRenderPipelineGetBindGroupLayout,
8088
- "Ka": _wgpuRenderPipelineRelease,
8089
- "Ja": _wgpuSamplerReference,
8090
- "Ia": _wgpuSamplerRelease,
8091
- "Ha": _wgpuShaderModuleReference,
8092
- "Ga": _wgpuShaderModuleRelease,
8093
- "Fa": _wgpuTextureCreateView,
8094
- "Ea": _wgpuTextureDestroy,
8095
- "Da": _wgpuTextureReference,
8096
- "Ca": _wgpuTextureRelease,
8097
- "Ba": _wgpuTextureViewReference,
8098
- "Aa": _wgpuTextureViewRelease
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"]["Zc"]).apply(null, arguments);
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"]["$c"]).apply(null, arguments);
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"]["ad"]).apply(null, arguments);
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"]["bd"]).apply(null, arguments);
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"]["cd"]).apply(null, arguments);
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"]["dd"]).apply(null, arguments);
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"]["ed"]).apply(null, arguments);
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"]["fd"]).apply(null, arguments);
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"]["gd"]).apply(null, arguments);
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"]["hd"]).apply(null, arguments);
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"]["id"]).apply(null, arguments);
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"]["jd"]).apply(null, arguments);
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"]["kd"]).apply(null, arguments);
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"]["ld"]).apply(null, arguments);
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"]["md"]).apply(null, arguments);
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"]["nd"]).apply(null, arguments);
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"]["od"]).apply(null, arguments);
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"]["pd"]).apply(null, arguments);
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"]["qd"]).apply(null, arguments);
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"]["rd"]).apply(null, arguments);
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"]["sd"]).apply(null, arguments);
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"]["td"]).apply(null, arguments);
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"]["ud"]).apply(null, arguments);
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"]["vd"]).apply(null, arguments);
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"]["wd"]).apply(null, arguments);
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"]["xd"]).apply(null, arguments);
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"]["yd"]).apply(null, arguments);
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"]["zd"]).apply(null, arguments);
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"]["Ad"]).apply(null, arguments);
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"]["Bd"]).apply(null, arguments);
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"]["Cd"]).apply(null, arguments);
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"]["Dd"]).apply(null, arguments);
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"]["Ed"]).apply(null, arguments);
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"]["Fd"]).apply(null, arguments);
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"]["Gd"]).apply(null, arguments);
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"]["Hd"]).apply(null, arguments);
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"]["Id"]).apply(null, arguments);
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"]["Jd"]).apply(null, arguments);
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"]["Kd"]).apply(null, arguments);
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"]["Ld"]).apply(null, arguments);
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"]["Md"]).apply(null, arguments);
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"]["Nd"]).apply(null, arguments);
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"]["Od"]).apply(null, arguments);
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"]["Pd"]).apply(null, arguments);
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"]["Qd"]).apply(null, arguments);
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"]["Rd"]).apply(null, arguments);
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"]["Sd"]).apply(null, arguments);
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"]["Td"]).apply(null, arguments);
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"]["Ud"]).apply(null, arguments);
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"]["Vd"]).apply(null, arguments);
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"]["Wd"]).apply(null, arguments);
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"]["Xd"]).apply(null, arguments);
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"]["Yd"]).apply(null, arguments);
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"] = 912044;
8439
+ var ___start_em_js = Module["___start_em_js"] = 927596;
8316
8440
 
8317
- var ___stop_em_js = Module["___stop_em_js"] = 917927;
8441
+ var ___stop_em_js = Module["___stop_em_js"] = 934172;
8318
8442
 
8319
8443
  Module["addRunDependency"] = addRunDependency;
8320
8444