@mediapipe/tasks-text 0.10.35 → 0.10.36-rc.20260514
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 +0 -0
- package/package.json +1 -1
- package/text.d.ts +50 -3
- package/text_bundle.cjs +1 -1
- package/text_bundle.cjs.map +1 -1
- package/text_bundle.mjs +1 -1
- package/text_bundle.mjs.map +1 -1
- package/wasm/text_wasm_internal.js +89 -83
- package/wasm/text_wasm_internal.wasm +0 -0
- package/wasm/text_wasm_module_internal.js +89 -83
- package/wasm/text_wasm_module_internal.wasm +0 -0
- package/wasm/text_wasm_nosimd_internal.js +89 -83
- package/wasm/text_wasm_nosimd_internal.wasm +0 -0
|
@@ -800,13 +800,8 @@ var Browser = {
|
|
|
800
800
|
// in the coordinates.
|
|
801
801
|
var canvas = Browser.getCanvas();
|
|
802
802
|
var rect = canvas.getBoundingClientRect();
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
// (see: http://www.w3.org/TR/2013/WD-cssom-view-20131217/)
|
|
806
|
-
var scrollX = ((typeof window.scrollX != "undefined") ? window.scrollX : window.pageXOffset);
|
|
807
|
-
var scrollY = ((typeof window.scrollY != "undefined") ? window.scrollY : window.pageYOffset);
|
|
808
|
-
var adjustedX = pageX - (scrollX + rect.left);
|
|
809
|
-
var adjustedY = pageY - (scrollY + rect.top);
|
|
803
|
+
var adjustedX = pageX - (window.scrollX + rect.left);
|
|
804
|
+
var adjustedY = pageY - (window.scrollY + rect.top);
|
|
810
805
|
// the canvas might be CSS-scaled compared to its backbuffer;
|
|
811
806
|
// SDL-using content will want mouse coordinates in terms
|
|
812
807
|
// of backbuffer units.
|
|
@@ -1883,7 +1878,7 @@ var FS = {
|
|
|
1883
1878
|
if (!PATH.isAbs(path)) {
|
|
1884
1879
|
path = FS.cwd() + "/" + path;
|
|
1885
1880
|
}
|
|
1886
|
-
// limit max consecutive symlinks to
|
|
1881
|
+
// limit max consecutive symlinks to SYMLOOP_MAX.
|
|
1887
1882
|
linkloop: for (var nlinks = 0; nlinks < 40; nlinks++) {
|
|
1888
1883
|
// split the absolute path
|
|
1889
1884
|
var parts = path.split("/").filter(p => !!p);
|
|
@@ -2166,7 +2161,14 @@ var FS = {
|
|
|
2166
2161
|
var arg = setattr ? stream : node;
|
|
2167
2162
|
setattr ??= node.node_ops.setattr;
|
|
2168
2163
|
FS.checkOpExists(setattr, 63);
|
|
2169
|
-
|
|
2164
|
+
try {
|
|
2165
|
+
setattr(arg, attr);
|
|
2166
|
+
} catch (e) {
|
|
2167
|
+
if (e instanceof RangeError) {
|
|
2168
|
+
throw new FS.ErrnoError(22);
|
|
2169
|
+
}
|
|
2170
|
+
throw e;
|
|
2171
|
+
}
|
|
2170
2172
|
},
|
|
2171
2173
|
chrdev_stream_ops: {
|
|
2172
2174
|
open(stream) {
|
|
@@ -2897,8 +2899,8 @@ var FS = {
|
|
|
2897
2899
|
return stream.stream_ops.ioctl(stream, cmd, arg);
|
|
2898
2900
|
},
|
|
2899
2901
|
readFile(path, opts = {}) {
|
|
2900
|
-
opts.flags = opts.flags
|
|
2901
|
-
opts.encoding = opts.encoding
|
|
2902
|
+
opts.flags = opts.flags ?? 0;
|
|
2903
|
+
opts.encoding = opts.encoding ?? "binary";
|
|
2902
2904
|
if (opts.encoding !== "utf8" && opts.encoding !== "binary") {
|
|
2903
2905
|
abort(`Invalid encoding type "${opts.encoding}"`);
|
|
2904
2906
|
}
|
|
@@ -2914,7 +2916,7 @@ var FS = {
|
|
|
2914
2916
|
return buf;
|
|
2915
2917
|
},
|
|
2916
2918
|
writeFile(path, data, opts = {}) {
|
|
2917
|
-
opts.flags = opts.flags
|
|
2919
|
+
opts.flags = opts.flags ?? 577;
|
|
2918
2920
|
var stream = FS.open(path, opts.flags, opts.mode);
|
|
2919
2921
|
data = FS_fileDataToTypedArray(data);
|
|
2920
2922
|
FS.write(stream, data, 0, data.byteLength, undefined, opts.canOwn);
|
|
@@ -3256,8 +3258,8 @@ var FS = {
|
|
|
3256
3258
|
if (!hasByteServing) chunkSize = datalength;
|
|
3257
3259
|
// Function to get a range from the remote URL.
|
|
3258
3260
|
var doXHR = (from, to) => {
|
|
3259
|
-
if (from > to) abort(
|
|
3260
|
-
if (to > datalength - 1) abort(
|
|
3261
|
+
if (from > to) abort(`invalid range (${from}, ${to}) or no bytes requested!`);
|
|
3262
|
+
if (to > datalength - 1) abort(`only ${datalength} bytes available! programmer error!`);
|
|
3261
3263
|
// TODO: Use mozResponseArrayBuffer, responseStream, etc. if available.
|
|
3262
3264
|
var xhr = new XMLHttpRequest;
|
|
3263
3265
|
xhr.open("GET", url, false);
|
|
@@ -3272,7 +3274,7 @@ var FS = {
|
|
|
3272
3274
|
if (xhr.response !== undefined) {
|
|
3273
3275
|
return new Uint8Array(/** @type{Array<number>} */ (xhr.response || []));
|
|
3274
3276
|
}
|
|
3275
|
-
return intArrayFromString(xhr.responseText
|
|
3277
|
+
return intArrayFromString(xhr.responseText ?? "", true);
|
|
3276
3278
|
};
|
|
3277
3279
|
var lazyArray = this;
|
|
3278
3280
|
lazyArray.setDataGetter(chunkNum => {
|
|
@@ -3410,6 +3412,7 @@ var FS = {
|
|
|
3410
3412
|
};
|
|
3411
3413
|
|
|
3412
3414
|
var SYSCALLS = {
|
|
3415
|
+
currentUmask: 18,
|
|
3413
3416
|
calculateAt(dirfd, path, allowEmpty) {
|
|
3414
3417
|
if (PATH.isAbs(path)) {
|
|
3415
3418
|
return path;
|
|
@@ -3578,7 +3581,8 @@ function ___syscall_fcntl64(fd, cmd, varargs) {
|
|
|
3578
3581
|
case 4:
|
|
3579
3582
|
{
|
|
3580
3583
|
var arg = syscallGetVarargI();
|
|
3581
|
-
|
|
3584
|
+
var mask = 289792;
|
|
3585
|
+
stream.flags = (stream.flags & ~mask) | (arg & mask);
|
|
3582
3586
|
return 0;
|
|
3583
3587
|
}
|
|
3584
3588
|
|
|
@@ -3620,7 +3624,7 @@ var convertI32PairToI53Checked = (lo, hi) => ((hi + 2097152) >>> 0 < 4194305 - !
|
|
|
3620
3624
|
function ___syscall_ftruncate64(fd, length_low, length_high) {
|
|
3621
3625
|
var length = convertI32PairToI53Checked(length_low, length_high);
|
|
3622
3626
|
try {
|
|
3623
|
-
if (isNaN(length)) return -
|
|
3627
|
+
if (isNaN(length)) return -22;
|
|
3624
3628
|
FS.ftruncate(fd, length);
|
|
3625
3629
|
return 0;
|
|
3626
3630
|
} catch (e) {
|
|
@@ -3781,6 +3785,9 @@ function ___syscall_openat(dirfd, path, flags, varargs) {
|
|
|
3781
3785
|
path = SYSCALLS.getStr(path);
|
|
3782
3786
|
path = SYSCALLS.calculateAt(dirfd, path);
|
|
3783
3787
|
var mode = varargs ? syscallGetVarargI() : 0;
|
|
3788
|
+
if (flags & 64) {
|
|
3789
|
+
mode &= ~SYSCALLS.currentUmask;
|
|
3790
|
+
}
|
|
3784
3791
|
return FS.open(path, flags, mode).fd;
|
|
3785
3792
|
} catch (e) {
|
|
3786
3793
|
if (typeof FS == "undefined" || !(e.name === "ErrnoError")) throw e;
|
|
@@ -3855,6 +3862,9 @@ var setTempRet0 = val => __emscripten_tempret_set(val);
|
|
|
3855
3862
|
var __mktime_js = function(tmPtr) {
|
|
3856
3863
|
var ret = (() => {
|
|
3857
3864
|
var date = new Date(HEAP32[(((tmPtr) + (20)) >> 2)] + 1900, HEAP32[(((tmPtr) + (16)) >> 2)], HEAP32[(((tmPtr) + (12)) >> 2)], HEAP32[(((tmPtr) + (8)) >> 2)], HEAP32[(((tmPtr) + (4)) >> 2)], HEAP32[((tmPtr) >> 2)], 0);
|
|
3865
|
+
if (isNaN(date.getTime())) {
|
|
3866
|
+
return -1;
|
|
3867
|
+
}
|
|
3858
3868
|
// There's an ambiguous hour when the time goes back; the tm_isdst field is
|
|
3859
3869
|
// used to disambiguate it. Date() basically guesses, so we fix it up if it
|
|
3860
3870
|
// guessed wrong, or fill in tm_isdst with the guess if it's -1.
|
|
@@ -3884,12 +3894,8 @@ var __mktime_js = function(tmPtr) {
|
|
|
3884
3894
|
HEAP32[(((tmPtr) + (12)) >> 2)] = date.getDate();
|
|
3885
3895
|
HEAP32[(((tmPtr) + (16)) >> 2)] = date.getMonth();
|
|
3886
3896
|
HEAP32[(((tmPtr) + (20)) >> 2)] = date.getYear();
|
|
3887
|
-
|
|
3888
|
-
|
|
3889
|
-
return -1;
|
|
3890
|
-
}
|
|
3891
|
-
// Return time in microseconds
|
|
3892
|
-
return timeMs / 1e3;
|
|
3897
|
+
// Return time in seconds
|
|
3898
|
+
return date.getTime() / 1e3;
|
|
3893
3899
|
})();
|
|
3894
3900
|
return (setTempRet0((tempDouble = ret, (+(Math.abs(tempDouble))) >= 1 ? (tempDouble > 0 ? (+(Math.floor((tempDouble) / 4294967296))) >>> 0 : (~~((+(Math.ceil((tempDouble - +(((~~(tempDouble))) >>> 0)) / 4294967296))))) >>> 0) : 0)),
|
|
3895
3901
|
ret >>> 0);
|
|
@@ -4247,7 +4253,7 @@ var getEmscriptenSupportedExtensions = ctx => {
|
|
|
4247
4253
|
"EXT_color_buffer_float", "EXT_conservative_depth", "EXT_disjoint_timer_query_webgl2", "EXT_texture_norm16", "NV_shader_noperspective_interpolation", "WEBGL_clip_cull_distance", // WebGL 1 and WebGL 2 extensions
|
|
4248
4254
|
"EXT_clip_control", "EXT_color_buffer_half_float", "EXT_depth_clamp", "EXT_float_blend", "EXT_polygon_offset_clamp", "EXT_texture_compression_bptc", "EXT_texture_compression_rgtc", "EXT_texture_filter_anisotropic", "KHR_parallel_shader_compile", "OES_texture_float_linear", "WEBGL_blend_func_extended", "WEBGL_compressed_texture_astc", "WEBGL_compressed_texture_etc", "WEBGL_compressed_texture_etc1", "WEBGL_compressed_texture_s3tc", "WEBGL_compressed_texture_s3tc_srgb", "WEBGL_debug_renderer_info", "WEBGL_debug_shaders", "WEBGL_lose_context", "WEBGL_multi_draw", "WEBGL_polygon_mode" ];
|
|
4249
4255
|
// .getSupportedExtensions() can return null if context is lost, so coerce to empty array.
|
|
4250
|
-
return
|
|
4256
|
+
return ctx.getSupportedExtensions()?.filter(ext => supportedExtensions.includes(ext)) ?? [];
|
|
4251
4257
|
};
|
|
4252
4258
|
|
|
4253
4259
|
var registerPreMainLoop = f => {
|
|
@@ -5262,12 +5268,11 @@ var _emwgpuDeviceDestroy = devicePtr => {
|
|
|
5262
5268
|
|
|
5263
5269
|
var ENV = {};
|
|
5264
5270
|
|
|
5265
|
-
var getExecutableName = () => thisProgram
|
|
5271
|
+
var getExecutableName = () => thisProgram ?? "./this.program";
|
|
5266
5272
|
|
|
5267
5273
|
var getEnvStrings = () => {
|
|
5268
5274
|
if (!getEnvStrings.strings) {
|
|
5269
5275
|
// Default values.
|
|
5270
|
-
// Browser language detection #8751
|
|
5271
5276
|
var lang = (globalThis.navigator?.language ?? "C").replace("-", "_") + ".UTF-8";
|
|
5272
5277
|
var env = {
|
|
5273
5278
|
"USER": "web_user",
|
|
@@ -5361,7 +5366,7 @@ function _fd_read(fd, iov, iovcnt, pnum) {
|
|
|
5361
5366
|
function _fd_seek(fd, offset_low, offset_high, whence, newOffset) {
|
|
5362
5367
|
var offset = convertI32PairToI53Checked(offset_low, offset_high);
|
|
5363
5368
|
try {
|
|
5364
|
-
if (isNaN(offset)) return
|
|
5369
|
+
if (isNaN(offset)) return 22;
|
|
5365
5370
|
var stream = SYSCALLS.getStreamFromFD(fd);
|
|
5366
5371
|
FS.llseek(stream, offset, whence);
|
|
5367
5372
|
(tempI64 = [ stream.position >>> 0, (tempDouble = stream.position, (+(Math.abs(tempDouble))) >= 1 ? (tempDouble > 0 ? (+(Math.floor((tempDouble) / 4294967296))) >>> 0 : (~~((+(Math.ceil((tempDouble - +(((~~(tempDouble))) >>> 0)) / 4294967296))))) >>> 0) : 0) ],
|
|
@@ -6395,7 +6400,7 @@ Module["FS_createLazyFile"] = FS_createLazyFile;
|
|
|
6395
6400
|
// End JS library exports
|
|
6396
6401
|
// end include: postlibrary.js
|
|
6397
6402
|
var ASM_CONSTS = {
|
|
6398
|
-
|
|
6403
|
+
728655: () => {
|
|
6399
6404
|
specialHTMLTargets["#canvas"] = Module.canvas;
|
|
6400
6405
|
}
|
|
6401
6406
|
};
|
|
@@ -6536,7 +6541,7 @@ function custom_emscripten_dbgn(str, len) {
|
|
|
6536
6541
|
}
|
|
6537
6542
|
|
|
6538
6543
|
// Imports from the Wasm binary.
|
|
6539
|
-
var _free, _malloc, _registerModelResourcesGraphService, _bindTextureToStream, _addBoundTextureToStream, _addDoubleToInputStream, _addFloatToInputStream, _addBoolToInputStream, _addIntToInputStream, _addUintToInputStream, _addStringToInputStream, _addRawDataSpanToInputStream, _allocateBoolVector, _allocateFloatVector, _allocateDoubleVector, _allocateIntVector, _allocateUintVector, _allocateStringVector, _addBoolVectorEntry, _addFloatVectorEntry, _addDoubleVectorEntry, _addIntVectorEntry, _addUintVectorEntry, _addStringVectorEntry, _addBoolVectorToInputStream, _addFloatVectorToInputStream, _addDoubleVectorToInputStream, _addIntVectorToInputStream, _addUintVectorToInputStream, _addStringVectorToInputStream, _addFlatHashMapToInputStream, _addProtoToInputStream, _addEmptyPacketToInputStream, _addBoolToInputSidePacket, _addDoubleToInputSidePacket, _addFloatToInputSidePacket, _addIntToInputSidePacket, _addUintToInputSidePacket, _addStringToInputSidePacket, _addRawDataSpanToInputSidePacket, _addProtoToInputSidePacket, _addBoolVectorToInputSidePacket, _addDoubleVectorToInputSidePacket, _addFloatVectorToInputSidePacket, _addIntVectorToInputSidePacket, _addUintVectorToInputSidePacket, _addStringVectorToInputSidePacket, _attachBoolListener, _attachBoolVectorListener, _attachDoubleListener, _attachDoubleVectorListener, _attachFloatListener, _attachFloatVectorListener, _attachIntListener, _attachIntVectorListener, _attachUintListener, _attachUintVectorListener, _attachStringListener, _attachStringVectorListener, _attachProtoListener, _attachProtoVectorListener, _getGraphConfig, _emwgpuCreateBindGroup, _emwgpuCreateBindGroupLayout, _emwgpuCreateCommandBuffer, _emwgpuCreateCommandEncoder, _emwgpuCreateComputePassEncoder, _emwgpuCreateComputePipeline, _emwgpuCreateExternalTexture, _emwgpuCreatePipelineLayout, _emwgpuCreateQuerySet, _emwgpuCreateRenderBundle, _emwgpuCreateRenderBundleEncoder, _emwgpuCreateRenderPassEncoder, _emwgpuCreateRenderPipeline, _emwgpuCreateSampler, _emwgpuCreateSurface, _emwgpuCreateTexture, _emwgpuCreateTextureView, _emwgpuCreateAdapter, _emwgpuImportBuffer, _emwgpuCreateDevice, _emwgpuCreateQueue, _emwgpuCreateShaderModule, _clearSubgraphs, _pushBinarySubgraph, _pushTextSubgraph, _changeBinaryGraph, _changeTextGraph, _processGl, _process, _bindTextureToCanvas, _requestShaderRefreshOnGraphChange, _waitUntilIdle, _closeGraph, _setAutoRenderToScreen, _emscripten_builtin_memalign, __emscripten_tempret_set, __emscripten_stack_restore, __emscripten_stack_alloc, _emscripten_stack_get_current, dynCall_jii, dynCall_ji, dynCall_iiiijij, dynCall_viji, dynCall_viijii, dynCall_jjj, dynCall_iiiijj, dynCall_viijj, dynCall_viiijjj, dynCall_iiiji, dynCall_vij, dynCall_viiiji, dynCall_viiji, dynCall_vijjj, dynCall_vj, dynCall_viij, dynCall_jiji, dynCall_iiiiij, dynCall_iiiiijj, dynCall_iiiiiijj, memory, _kVersionStampBuildChangelistStr, _kVersionStampCitcSnapshotStr, _kVersionStampCitcWorkspaceIdStr, _kVersionStampSourceUriStr, _kVersionStampBuildClientStr, _kVersionStampBuildClientMintStatusStr, _kVersionStampBuildCompilerStr, _kVersionStampBuildDateTimePstStr, _kVersionStampBuildDepotPathStr, _kVersionStampBuildIdStr, _kVersionStampBuildInfoStr, _kVersionStampBuildLabelStr, _kVersionStampBuildTargetStr, _kVersionStampBuildTimestampStr, _kVersionStampBuildToolStr, _kVersionStampG3BuildTargetStr, _kVersionStampVerifiableStr, _kVersionStampBuildFdoTypeStr, _kVersionStampBuildBaselineChangelistStr, _kVersionStampBuildLtoTypeStr, _kVersionStampBuildPropellerTypeStr, _kVersionStampBuildPghoTypeStr, _kVersionStampBuildUsernameStr, _kVersionStampBuildHostnameStr, _kVersionStampBuildDirectoryStr, _kVersionStampBuildChangelistInt, _kVersionStampCitcSnapshotInt, _kVersionStampBuildClientMintStatusInt, _kVersionStampBuildTimestampInt, _kVersionStampVerifiableInt, _kVersionStampBuildCoverageEnabledInt, _kVersionStampBuildBaselineChangelistInt, _kVersionStampPrecookedTimestampStr, _kVersionStampPrecookedClientInfoStr, __indirect_function_table, wasmMemory, wasmTable;
|
|
6544
|
+
var _free, _malloc, _registerModelResourcesGraphService, _bindTextureToStream, _addBoundTextureToStream, _addDoubleToInputStream, _addFloatToInputStream, _addBoolToInputStream, _addIntToInputStream, _addUintToInputStream, _addStringToInputStream, _addRawDataSpanToInputStream, _allocateBoolVector, _allocateFloatVector, _allocateDoubleVector, _allocateIntVector, _allocateUintVector, _allocateStringVector, _addBoolVectorEntry, _addFloatVectorEntry, _addDoubleVectorEntry, _addIntVectorEntry, _addUintVectorEntry, _addStringVectorEntry, _addBoolVectorToInputStream, _addFloatVectorToInputStream, _addDoubleVectorToInputStream, _addIntVectorToInputStream, _addUintVectorToInputStream, _addStringVectorToInputStream, _addFlatHashMapToInputStream, _addProtoToInputStream, _addEmptyPacketToInputStream, _addBoolToInputSidePacket, _addDoubleToInputSidePacket, _addFloatToInputSidePacket, _addIntToInputSidePacket, _addUintToInputSidePacket, _addStringToInputSidePacket, _addRawDataSpanToInputSidePacket, _addProtoToInputSidePacket, _addBoolVectorToInputSidePacket, _addDoubleVectorToInputSidePacket, _addFloatVectorToInputSidePacket, _addIntVectorToInputSidePacket, _addUintVectorToInputSidePacket, _addStringVectorToInputSidePacket, _attachBoolListener, _attachBoolVectorListener, _attachDoubleListener, _attachDoubleVectorListener, _attachFloatListener, _attachFloatVectorListener, _attachIntListener, _attachIntVectorListener, _attachUintListener, _attachUintVectorListener, _attachStringListener, _attachStringVectorListener, _attachProtoListener, _attachProtoVectorListener, _getGraphConfig, _emwgpuCreateBindGroup, _emwgpuCreateBindGroupLayout, _emwgpuCreateCommandBuffer, _emwgpuCreateCommandEncoder, _emwgpuCreateComputePassEncoder, _emwgpuCreateComputePipeline, _emwgpuCreateExternalTexture, _emwgpuCreatePipelineLayout, _emwgpuCreateQuerySet, _emwgpuCreateRenderBundle, _emwgpuCreateRenderBundleEncoder, _emwgpuCreateRenderPassEncoder, _emwgpuCreateRenderPipeline, _emwgpuCreateSampler, _emwgpuCreateSurface, _emwgpuCreateTexture, _emwgpuCreateTextureView, _emwgpuCreateAdapter, _emwgpuImportBuffer, _emwgpuCreateDevice, _emwgpuCreateQueue, _emwgpuCreateShaderModule, _clearSubgraphs, _pushBinarySubgraph, _pushTextSubgraph, _changeBinaryGraph, _changeTextGraph, _processGl, _process, _bindTextureToCanvas, _requestShaderRefreshOnGraphChange, _waitUntilIdle, _closeGraph, _setAutoRenderToScreen, _emscripten_builtin_memalign, __emscripten_tempret_set, __emscripten_stack_restore, __emscripten_stack_alloc, _emscripten_stack_get_current, dynCall_jii, dynCall_ji, dynCall_iiiijij, dynCall_viji, dynCall_viijii, dynCall_jjj, dynCall_iiiijj, dynCall_viijj, dynCall_viiijjj, dynCall_iiiji, dynCall_vij, dynCall_viiiji, dynCall_viiji, dynCall_vijjj, dynCall_vj, dynCall_viij, dynCall_jiji, dynCall_iiiiij, dynCall_iiiiijj, dynCall_iiiiiijj, memory, _kVersionStampBuildChangelistStr, _kVersionStampCitcSnapshotStr, _kVersionStampCitcWorkspaceIdStr, _kVersionStampSourceUriStr, _kVersionStampBuildClientStr, _kVersionStampBuildClientMintStatusStr, _kVersionStampBuildCompilerStr, _kVersionStampBuildDateTimePstStr, _kVersionStampBuildDepotPathStr, _kVersionStampBuildIdStr, _kVersionStampBuildInfoStr, _kVersionStampBuildLabelStr, _kVersionStampBuildTargetStr, _kVersionStampBuildTimestampStr, _kVersionStampBuildToolStr, _kVersionStampG3BuildTargetStr, _kVersionStampVerifiableStr, _kVersionStampBuildFdoTypeStr, _kVersionStampBuildBaselineChangelistStr, _kVersionStampBuildLtoTypeStr, _kVersionStampBuildPropellerTypeStr, _kVersionStampBuildPghoTypeStr, _kVersionStampBuildUsernameStr, _kVersionStampBuildHostnameStr, _kVersionStampBuildDirectoryStr, _kVersionStampBuildChangelistInt, _kVersionStampCitcSnapshotInt, _kVersionStampBuildClientMintStatusInt, _kVersionStampBuildTimestampInt, _kVersionStampVerifiableInt, _kVersionStampBuildCoverageEnabledInt, _kVersionStampBuildBaselineChangelistInt, _kVersionStampPrecookedTimestampStr, _kVersionStampPrecookedClientInfoStr, __indirect_function_table, _kVersionStampBuildHasHardeningProtobuf, wasmMemory, wasmTable;
|
|
6540
6545
|
|
|
6541
6546
|
function assignWasmExports(wasmExports) {
|
|
6542
6547
|
_free = Module["_free"] = wasmExports["Sb"];
|
|
@@ -6635,11 +6640,11 @@ function assignWasmExports(wasmExports) {
|
|
|
6635
6640
|
_waitUntilIdle = Module["_waitUntilIdle"] = wasmExports["Dd"];
|
|
6636
6641
|
_closeGraph = Module["_closeGraph"] = wasmExports["Ed"];
|
|
6637
6642
|
_setAutoRenderToScreen = Module["_setAutoRenderToScreen"] = wasmExports["Fd"];
|
|
6638
|
-
_emscripten_builtin_memalign = wasmExports["
|
|
6639
|
-
__emscripten_tempret_set = wasmExports["
|
|
6640
|
-
__emscripten_stack_restore = wasmExports["
|
|
6641
|
-
__emscripten_stack_alloc = wasmExports["
|
|
6642
|
-
_emscripten_stack_get_current = wasmExports["
|
|
6643
|
+
_emscripten_builtin_memalign = wasmExports["Hd"];
|
|
6644
|
+
__emscripten_tempret_set = wasmExports["Id"];
|
|
6645
|
+
__emscripten_stack_restore = wasmExports["Jd"];
|
|
6646
|
+
__emscripten_stack_alloc = wasmExports["Kd"];
|
|
6647
|
+
_emscripten_stack_get_current = wasmExports["Ld"];
|
|
6643
6648
|
dynCall_jii = wasmExports["dynCall_jii"];
|
|
6644
6649
|
dynCall_ji = wasmExports["dynCall_ji"];
|
|
6645
6650
|
dynCall_iiiijij = wasmExports["dynCall_iiiijij"];
|
|
@@ -6696,11 +6701,12 @@ function assignWasmExports(wasmExports) {
|
|
|
6696
6701
|
_kVersionStampPrecookedTimestampStr = Module["_kVersionStampPrecookedTimestampStr"] = wasmExports["Pb"].value;
|
|
6697
6702
|
_kVersionStampPrecookedClientInfoStr = Module["_kVersionStampPrecookedClientInfoStr"] = wasmExports["Qb"].value;
|
|
6698
6703
|
__indirect_function_table = wasmTable = wasmExports["Rb"];
|
|
6704
|
+
_kVersionStampBuildHasHardeningProtobuf = Module["_kVersionStampBuildHasHardeningProtobuf"] = wasmExports["Gd"].value;
|
|
6699
6705
|
}
|
|
6700
6706
|
|
|
6701
6707
|
var wasmImports = {
|
|
6702
6708
|
/** @export */ gb: JsOnEmptyPacketListener,
|
|
6703
|
-
/** @export */
|
|
6709
|
+
/** @export */ R: JsOnSimpleListenerBinaryArray,
|
|
6704
6710
|
/** @export */ fb: JsOnSimpleListenerBool,
|
|
6705
6711
|
/** @export */ eb: JsOnSimpleListenerDouble,
|
|
6706
6712
|
/** @export */ db: JsOnSimpleListenerFloat,
|
|
@@ -6717,103 +6723,103 @@ var wasmImports = {
|
|
|
6717
6723
|
/** @export */ Va: JsOnVectorListenerUint,
|
|
6718
6724
|
/** @export */ x: JsWrapErrorListener,
|
|
6719
6725
|
/** @export */ a: JsWrapSimpleListeners,
|
|
6720
|
-
/** @export */
|
|
6721
|
-
/** @export */
|
|
6726
|
+
/** @export */ Q: UseBottomLeftGpuOrigin,
|
|
6727
|
+
/** @export */ Y: __asyncjs__mediapipe_map_buffer_jspi,
|
|
6722
6728
|
/** @export */ Ua: ___syscall_dup,
|
|
6723
6729
|
/** @export */ Ta: ___syscall_faccessat,
|
|
6724
|
-
/** @export */
|
|
6730
|
+
/** @export */ P: ___syscall_fcntl64,
|
|
6725
6731
|
/** @export */ Sa: ___syscall_fstat64,
|
|
6726
|
-
/** @export */
|
|
6732
|
+
/** @export */ ea: ___syscall_ftruncate64,
|
|
6727
6733
|
/** @export */ Ra: ___syscall_ioctl,
|
|
6728
6734
|
/** @export */ Qa: ___syscall_lstat64,
|
|
6729
6735
|
/** @export */ Pa: ___syscall_newfstatat,
|
|
6730
|
-
/** @export */
|
|
6736
|
+
/** @export */ O: ___syscall_openat,
|
|
6731
6737
|
/** @export */ Oa: ___syscall_stat64,
|
|
6732
6738
|
/** @export */ Ja: __abort_js,
|
|
6733
|
-
/** @export */
|
|
6734
|
-
/** @export */
|
|
6735
|
-
/** @export */
|
|
6736
|
-
/** @export */
|
|
6737
|
-
/** @export */
|
|
6739
|
+
/** @export */ ba: __gmtime_js,
|
|
6740
|
+
/** @export */ aa: __localtime_js,
|
|
6741
|
+
/** @export */ $: __mktime_js,
|
|
6742
|
+
/** @export */ _: __mmap_js,
|
|
6743
|
+
/** @export */ Z: __munmap_js,
|
|
6738
6744
|
/** @export */ Ia: __tzset_js,
|
|
6739
|
-
/** @export */
|
|
6745
|
+
/** @export */ da: _clock_time_get,
|
|
6740
6746
|
/** @export */ Ha: custom_emscripten_dbgn,
|
|
6741
6747
|
/** @export */ Ga: _emscripten_asm_const_int,
|
|
6742
6748
|
/** @export */ u: _emscripten_errn,
|
|
6743
6749
|
/** @export */ Fa: _emscripten_get_heap_max,
|
|
6744
6750
|
/** @export */ b: _emscripten_get_now,
|
|
6745
|
-
/** @export */
|
|
6746
|
-
/** @export */
|
|
6747
|
-
/** @export */
|
|
6748
|
-
/** @export */
|
|
6751
|
+
/** @export */ Ea: _emscripten_has_asyncify,
|
|
6752
|
+
/** @export */ Da: _emscripten_outn,
|
|
6753
|
+
/** @export */ Ca: _emscripten_pc_get_function,
|
|
6754
|
+
/** @export */ Ba: _emscripten_resize_heap,
|
|
6749
6755
|
/** @export */ M: _emscripten_stack_snapshot,
|
|
6750
|
-
/** @export */
|
|
6751
|
-
/** @export */
|
|
6752
|
-
/** @export */
|
|
6753
|
-
/** @export */
|
|
6756
|
+
/** @export */ Aa: _emscripten_stack_unwind_buffer,
|
|
6757
|
+
/** @export */ za: _emscripten_webgl_create_context,
|
|
6758
|
+
/** @export */ ya: _emscripten_webgl_destroy_context,
|
|
6759
|
+
/** @export */ xa: _emscripten_webgl_get_context_attributes,
|
|
6754
6760
|
/** @export */ i: _emscripten_webgl_get_current_context,
|
|
6755
|
-
/** @export */
|
|
6756
|
-
/** @export */
|
|
6757
|
-
/** @export */
|
|
6758
|
-
/** @export */
|
|
6759
|
-
/** @export */
|
|
6761
|
+
/** @export */ wa: _emscripten_webgl_make_context_current,
|
|
6762
|
+
/** @export */ va: _emwgpuBufferDestroy,
|
|
6763
|
+
/** @export */ e: _emwgpuDelete,
|
|
6764
|
+
/** @export */ ua: _emwgpuDeviceCreateBuffer,
|
|
6765
|
+
/** @export */ ta: _emwgpuDeviceDestroy,
|
|
6760
6766
|
/** @export */ Na: _environ_get,
|
|
6761
6767
|
/** @export */ Ma: _environ_sizes_get,
|
|
6762
6768
|
/** @export */ L: _exit,
|
|
6763
6769
|
/** @export */ w: _fd_close,
|
|
6764
|
-
/** @export */
|
|
6765
|
-
/** @export */
|
|
6770
|
+
/** @export */ N: _fd_read,
|
|
6771
|
+
/** @export */ ca: _fd_seek,
|
|
6766
6772
|
/** @export */ v: _fd_write,
|
|
6767
6773
|
/** @export */ t: _glActiveTexture,
|
|
6768
6774
|
/** @export */ K: _glAttachShader,
|
|
6769
|
-
/** @export */
|
|
6775
|
+
/** @export */ sa: _glBindAttribLocation,
|
|
6770
6776
|
/** @export */ f: _glBindBuffer,
|
|
6771
6777
|
/** @export */ m: _glBindFramebuffer,
|
|
6772
|
-
/** @export */
|
|
6778
|
+
/** @export */ d: _glBindTexture,
|
|
6773
6779
|
/** @export */ s: _glBufferData,
|
|
6774
6780
|
/** @export */ h: _glClientWaitSync,
|
|
6775
|
-
/** @export */
|
|
6776
|
-
/** @export */
|
|
6777
|
-
/** @export */
|
|
6781
|
+
/** @export */ ra: _glCompileShader,
|
|
6782
|
+
/** @export */ qa: _glCreateProgram,
|
|
6783
|
+
/** @export */ pa: _glCreateShader,
|
|
6778
6784
|
/** @export */ J: _glDeleteFramebuffers,
|
|
6779
|
-
/** @export */
|
|
6785
|
+
/** @export */ oa: _glDeleteProgram,
|
|
6780
6786
|
/** @export */ I: _glDeleteShader,
|
|
6781
6787
|
/** @export */ l: _glDeleteSync,
|
|
6782
6788
|
/** @export */ H: _glDeleteTextures,
|
|
6783
6789
|
/** @export */ G: _glDetachShader,
|
|
6784
6790
|
/** @export */ F: _glDisableVertexAttribArray,
|
|
6785
|
-
/** @export */
|
|
6791
|
+
/** @export */ na: _glDrawArrays,
|
|
6786
6792
|
/** @export */ E: _glEnableVertexAttribArray,
|
|
6787
6793
|
/** @export */ D: _glFenceSync,
|
|
6788
6794
|
/** @export */ k: _glFinish,
|
|
6789
6795
|
/** @export */ r: _glFramebufferTexture2D,
|
|
6790
6796
|
/** @export */ C: _glGenBuffers,
|
|
6791
|
-
/** @export */
|
|
6797
|
+
/** @export */ ma: _glGenFramebuffers,
|
|
6792
6798
|
/** @export */ q: _glGenTextures,
|
|
6793
6799
|
/** @export */ j: _glGetError,
|
|
6794
6800
|
/** @export */ B: _glGetIntegerv,
|
|
6795
6801
|
/** @export */ p: _glGetString,
|
|
6796
|
-
/** @export */
|
|
6797
|
-
/** @export */
|
|
6802
|
+
/** @export */ la: _glGetUniformLocation,
|
|
6803
|
+
/** @export */ ka: _glLinkProgram,
|
|
6798
6804
|
/** @export */ o: _glPixelStorei,
|
|
6799
6805
|
/** @export */ A: _glReadPixels,
|
|
6800
|
-
/** @export */
|
|
6801
|
-
/** @export */
|
|
6802
|
-
/** @export */
|
|
6806
|
+
/** @export */ ja: _glShaderSource,
|
|
6807
|
+
/** @export */ ia: _glTexImage2D,
|
|
6808
|
+
/** @export */ c: _glTexParameteri,
|
|
6803
6809
|
/** @export */ z: _glTexStorage2D,
|
|
6804
|
-
/** @export */
|
|
6805
|
-
/** @export */
|
|
6810
|
+
/** @export */ ha: _glUniform1i,
|
|
6811
|
+
/** @export */ ga: _glUseProgram,
|
|
6806
6812
|
/** @export */ y: _glVertexAttribPointer,
|
|
6807
|
-
/** @export */
|
|
6813
|
+
/** @export */ fa: _glViewport,
|
|
6808
6814
|
/** @export */ n: hardware_concurrency,
|
|
6809
6815
|
/** @export */ La: _proc_exit,
|
|
6810
6816
|
/** @export */ Ka: _random_get,
|
|
6811
|
-
/** @export */
|
|
6812
|
-
/** @export */
|
|
6813
|
-
/** @export */
|
|
6814
|
-
/** @export */
|
|
6815
|
-
/** @export */
|
|
6816
|
-
/** @export */
|
|
6817
|
+
/** @export */ X: _wgpuCommandEncoderCopyTextureToBuffer,
|
|
6818
|
+
/** @export */ W: _wgpuCommandEncoderFinish,
|
|
6819
|
+
/** @export */ V: _wgpuDeviceCreateCommandEncoder,
|
|
6820
|
+
/** @export */ U: _wgpuQueueSubmit,
|
|
6821
|
+
/** @export */ T: _wgpuTextureDestroy,
|
|
6822
|
+
/** @export */ S: _wgpuTextureGetFormat
|
|
6817
6823
|
};
|
|
6818
6824
|
|
|
6819
6825
|
// include: postamble.js
|
|
Binary file
|