@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
|
@@ -797,13 +797,8 @@ var Browser = {
|
|
|
797
797
|
// in the coordinates.
|
|
798
798
|
var canvas = Browser.getCanvas();
|
|
799
799
|
var rect = canvas.getBoundingClientRect();
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
// (see: http://www.w3.org/TR/2013/WD-cssom-view-20131217/)
|
|
803
|
-
var scrollX = ((typeof window.scrollX != "undefined") ? window.scrollX : window.pageXOffset);
|
|
804
|
-
var scrollY = ((typeof window.scrollY != "undefined") ? window.scrollY : window.pageYOffset);
|
|
805
|
-
var adjustedX = pageX - (scrollX + rect.left);
|
|
806
|
-
var adjustedY = pageY - (scrollY + rect.top);
|
|
800
|
+
var adjustedX = pageX - (window.scrollX + rect.left);
|
|
801
|
+
var adjustedY = pageY - (window.scrollY + rect.top);
|
|
807
802
|
// the canvas might be CSS-scaled compared to its backbuffer;
|
|
808
803
|
// SDL-using content will want mouse coordinates in terms
|
|
809
804
|
// of backbuffer units.
|
|
@@ -1880,7 +1875,7 @@ var FS = {
|
|
|
1880
1875
|
if (!PATH.isAbs(path)) {
|
|
1881
1876
|
path = FS.cwd() + "/" + path;
|
|
1882
1877
|
}
|
|
1883
|
-
// limit max consecutive symlinks to
|
|
1878
|
+
// limit max consecutive symlinks to SYMLOOP_MAX.
|
|
1884
1879
|
linkloop: for (var nlinks = 0; nlinks < 40; nlinks++) {
|
|
1885
1880
|
// split the absolute path
|
|
1886
1881
|
var parts = path.split("/").filter(p => !!p);
|
|
@@ -2163,7 +2158,14 @@ var FS = {
|
|
|
2163
2158
|
var arg = setattr ? stream : node;
|
|
2164
2159
|
setattr ??= node.node_ops.setattr;
|
|
2165
2160
|
FS.checkOpExists(setattr, 63);
|
|
2166
|
-
|
|
2161
|
+
try {
|
|
2162
|
+
setattr(arg, attr);
|
|
2163
|
+
} catch (e) {
|
|
2164
|
+
if (e instanceof RangeError) {
|
|
2165
|
+
throw new FS.ErrnoError(22);
|
|
2166
|
+
}
|
|
2167
|
+
throw e;
|
|
2168
|
+
}
|
|
2167
2169
|
},
|
|
2168
2170
|
chrdev_stream_ops: {
|
|
2169
2171
|
open(stream) {
|
|
@@ -2894,8 +2896,8 @@ var FS = {
|
|
|
2894
2896
|
return stream.stream_ops.ioctl(stream, cmd, arg);
|
|
2895
2897
|
},
|
|
2896
2898
|
readFile(path, opts = {}) {
|
|
2897
|
-
opts.flags = opts.flags
|
|
2898
|
-
opts.encoding = opts.encoding
|
|
2899
|
+
opts.flags = opts.flags ?? 0;
|
|
2900
|
+
opts.encoding = opts.encoding ?? "binary";
|
|
2899
2901
|
if (opts.encoding !== "utf8" && opts.encoding !== "binary") {
|
|
2900
2902
|
abort(`Invalid encoding type "${opts.encoding}"`);
|
|
2901
2903
|
}
|
|
@@ -2911,7 +2913,7 @@ var FS = {
|
|
|
2911
2913
|
return buf;
|
|
2912
2914
|
},
|
|
2913
2915
|
writeFile(path, data, opts = {}) {
|
|
2914
|
-
opts.flags = opts.flags
|
|
2916
|
+
opts.flags = opts.flags ?? 577;
|
|
2915
2917
|
var stream = FS.open(path, opts.flags, opts.mode);
|
|
2916
2918
|
data = FS_fileDataToTypedArray(data);
|
|
2917
2919
|
FS.write(stream, data, 0, data.byteLength, undefined, opts.canOwn);
|
|
@@ -3253,8 +3255,8 @@ var FS = {
|
|
|
3253
3255
|
if (!hasByteServing) chunkSize = datalength;
|
|
3254
3256
|
// Function to get a range from the remote URL.
|
|
3255
3257
|
var doXHR = (from, to) => {
|
|
3256
|
-
if (from > to) abort(
|
|
3257
|
-
if (to > datalength - 1) abort(
|
|
3258
|
+
if (from > to) abort(`invalid range (${from}, ${to}) or no bytes requested!`);
|
|
3259
|
+
if (to > datalength - 1) abort(`only ${datalength} bytes available! programmer error!`);
|
|
3258
3260
|
// TODO: Use mozResponseArrayBuffer, responseStream, etc. if available.
|
|
3259
3261
|
var xhr = new XMLHttpRequest;
|
|
3260
3262
|
xhr.open("GET", url, false);
|
|
@@ -3269,7 +3271,7 @@ var FS = {
|
|
|
3269
3271
|
if (xhr.response !== undefined) {
|
|
3270
3272
|
return new Uint8Array(/** @type{Array<number>} */ (xhr.response || []));
|
|
3271
3273
|
}
|
|
3272
|
-
return intArrayFromString(xhr.responseText
|
|
3274
|
+
return intArrayFromString(xhr.responseText ?? "", true);
|
|
3273
3275
|
};
|
|
3274
3276
|
var lazyArray = this;
|
|
3275
3277
|
lazyArray.setDataGetter(chunkNum => {
|
|
@@ -3407,6 +3409,7 @@ var FS = {
|
|
|
3407
3409
|
};
|
|
3408
3410
|
|
|
3409
3411
|
var SYSCALLS = {
|
|
3412
|
+
currentUmask: 18,
|
|
3410
3413
|
calculateAt(dirfd, path, allowEmpty) {
|
|
3411
3414
|
if (PATH.isAbs(path)) {
|
|
3412
3415
|
return path;
|
|
@@ -3575,7 +3578,8 @@ function ___syscall_fcntl64(fd, cmd, varargs) {
|
|
|
3575
3578
|
case 4:
|
|
3576
3579
|
{
|
|
3577
3580
|
var arg = syscallGetVarargI();
|
|
3578
|
-
|
|
3581
|
+
var mask = 289792;
|
|
3582
|
+
stream.flags = (stream.flags & ~mask) | (arg & mask);
|
|
3579
3583
|
return 0;
|
|
3580
3584
|
}
|
|
3581
3585
|
|
|
@@ -3617,7 +3621,7 @@ var convertI32PairToI53Checked = (lo, hi) => ((hi + 2097152) >>> 0 < 4194305 - !
|
|
|
3617
3621
|
function ___syscall_ftruncate64(fd, length_low, length_high) {
|
|
3618
3622
|
var length = convertI32PairToI53Checked(length_low, length_high);
|
|
3619
3623
|
try {
|
|
3620
|
-
if (isNaN(length)) return -
|
|
3624
|
+
if (isNaN(length)) return -22;
|
|
3621
3625
|
FS.ftruncate(fd, length);
|
|
3622
3626
|
return 0;
|
|
3623
3627
|
} catch (e) {
|
|
@@ -3778,6 +3782,9 @@ function ___syscall_openat(dirfd, path, flags, varargs) {
|
|
|
3778
3782
|
path = SYSCALLS.getStr(path);
|
|
3779
3783
|
path = SYSCALLS.calculateAt(dirfd, path);
|
|
3780
3784
|
var mode = varargs ? syscallGetVarargI() : 0;
|
|
3785
|
+
if (flags & 64) {
|
|
3786
|
+
mode &= ~SYSCALLS.currentUmask;
|
|
3787
|
+
}
|
|
3781
3788
|
return FS.open(path, flags, mode).fd;
|
|
3782
3789
|
} catch (e) {
|
|
3783
3790
|
if (typeof FS == "undefined" || !(e.name === "ErrnoError")) throw e;
|
|
@@ -3852,6 +3859,9 @@ var setTempRet0 = val => __emscripten_tempret_set(val);
|
|
|
3852
3859
|
var __mktime_js = function(tmPtr) {
|
|
3853
3860
|
var ret = (() => {
|
|
3854
3861
|
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);
|
|
3862
|
+
if (isNaN(date.getTime())) {
|
|
3863
|
+
return -1;
|
|
3864
|
+
}
|
|
3855
3865
|
// There's an ambiguous hour when the time goes back; the tm_isdst field is
|
|
3856
3866
|
// used to disambiguate it. Date() basically guesses, so we fix it up if it
|
|
3857
3867
|
// guessed wrong, or fill in tm_isdst with the guess if it's -1.
|
|
@@ -3881,12 +3891,8 @@ var __mktime_js = function(tmPtr) {
|
|
|
3881
3891
|
HEAP32[(((tmPtr) + (12)) >> 2)] = date.getDate();
|
|
3882
3892
|
HEAP32[(((tmPtr) + (16)) >> 2)] = date.getMonth();
|
|
3883
3893
|
HEAP32[(((tmPtr) + (20)) >> 2)] = date.getYear();
|
|
3884
|
-
|
|
3885
|
-
|
|
3886
|
-
return -1;
|
|
3887
|
-
}
|
|
3888
|
-
// Return time in microseconds
|
|
3889
|
-
return timeMs / 1e3;
|
|
3894
|
+
// Return time in seconds
|
|
3895
|
+
return date.getTime() / 1e3;
|
|
3890
3896
|
})();
|
|
3891
3897
|
return (setTempRet0((tempDouble = ret, (+(Math.abs(tempDouble))) >= 1 ? (tempDouble > 0 ? (+(Math.floor((tempDouble) / 4294967296))) >>> 0 : (~~((+(Math.ceil((tempDouble - +(((~~(tempDouble))) >>> 0)) / 4294967296))))) >>> 0) : 0)),
|
|
3892
3898
|
ret >>> 0);
|
|
@@ -4244,7 +4250,7 @@ var getEmscriptenSupportedExtensions = ctx => {
|
|
|
4244
4250
|
"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
|
|
4245
4251
|
"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" ];
|
|
4246
4252
|
// .getSupportedExtensions() can return null if context is lost, so coerce to empty array.
|
|
4247
|
-
return
|
|
4253
|
+
return ctx.getSupportedExtensions()?.filter(ext => supportedExtensions.includes(ext)) ?? [];
|
|
4248
4254
|
};
|
|
4249
4255
|
|
|
4250
4256
|
var registerPreMainLoop = f => {
|
|
@@ -5259,12 +5265,11 @@ var _emwgpuDeviceDestroy = devicePtr => {
|
|
|
5259
5265
|
|
|
5260
5266
|
var ENV = {};
|
|
5261
5267
|
|
|
5262
|
-
var getExecutableName = () => thisProgram
|
|
5268
|
+
var getExecutableName = () => thisProgram ?? "./this.program";
|
|
5263
5269
|
|
|
5264
5270
|
var getEnvStrings = () => {
|
|
5265
5271
|
if (!getEnvStrings.strings) {
|
|
5266
5272
|
// Default values.
|
|
5267
|
-
// Browser language detection #8751
|
|
5268
5273
|
var lang = (globalThis.navigator?.language ?? "C").replace("-", "_") + ".UTF-8";
|
|
5269
5274
|
var env = {
|
|
5270
5275
|
"USER": "web_user",
|
|
@@ -5358,7 +5363,7 @@ function _fd_read(fd, iov, iovcnt, pnum) {
|
|
|
5358
5363
|
function _fd_seek(fd, offset_low, offset_high, whence, newOffset) {
|
|
5359
5364
|
var offset = convertI32PairToI53Checked(offset_low, offset_high);
|
|
5360
5365
|
try {
|
|
5361
|
-
if (isNaN(offset)) return
|
|
5366
|
+
if (isNaN(offset)) return 22;
|
|
5362
5367
|
var stream = SYSCALLS.getStreamFromFD(fd);
|
|
5363
5368
|
FS.llseek(stream, offset, whence);
|
|
5364
5369
|
(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) ],
|
|
@@ -6392,7 +6397,7 @@ Module["FS_createLazyFile"] = FS_createLazyFile;
|
|
|
6392
6397
|
// End JS library exports
|
|
6393
6398
|
// end include: postlibrary.js
|
|
6394
6399
|
var ASM_CONSTS = {
|
|
6395
|
-
|
|
6400
|
+
728655: () => {
|
|
6396
6401
|
specialHTMLTargets["#canvas"] = Module.canvas;
|
|
6397
6402
|
}
|
|
6398
6403
|
};
|
|
@@ -6533,7 +6538,7 @@ function custom_emscripten_dbgn(str, len) {
|
|
|
6533
6538
|
}
|
|
6534
6539
|
|
|
6535
6540
|
// Imports from the Wasm binary.
|
|
6536
|
-
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;
|
|
6541
|
+
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;
|
|
6537
6542
|
|
|
6538
6543
|
function assignWasmExports(wasmExports) {
|
|
6539
6544
|
_free = Module["_free"] = wasmExports["Sb"];
|
|
@@ -6632,11 +6637,11 @@ function assignWasmExports(wasmExports) {
|
|
|
6632
6637
|
_waitUntilIdle = Module["_waitUntilIdle"] = wasmExports["Dd"];
|
|
6633
6638
|
_closeGraph = Module["_closeGraph"] = wasmExports["Ed"];
|
|
6634
6639
|
_setAutoRenderToScreen = Module["_setAutoRenderToScreen"] = wasmExports["Fd"];
|
|
6635
|
-
_emscripten_builtin_memalign = wasmExports["
|
|
6636
|
-
__emscripten_tempret_set = wasmExports["
|
|
6637
|
-
__emscripten_stack_restore = wasmExports["
|
|
6638
|
-
__emscripten_stack_alloc = wasmExports["
|
|
6639
|
-
_emscripten_stack_get_current = wasmExports["
|
|
6640
|
+
_emscripten_builtin_memalign = wasmExports["Hd"];
|
|
6641
|
+
__emscripten_tempret_set = wasmExports["Id"];
|
|
6642
|
+
__emscripten_stack_restore = wasmExports["Jd"];
|
|
6643
|
+
__emscripten_stack_alloc = wasmExports["Kd"];
|
|
6644
|
+
_emscripten_stack_get_current = wasmExports["Ld"];
|
|
6640
6645
|
dynCall_jii = wasmExports["dynCall_jii"];
|
|
6641
6646
|
dynCall_ji = wasmExports["dynCall_ji"];
|
|
6642
6647
|
dynCall_iiiijij = wasmExports["dynCall_iiiijij"];
|
|
@@ -6693,11 +6698,12 @@ function assignWasmExports(wasmExports) {
|
|
|
6693
6698
|
_kVersionStampPrecookedTimestampStr = Module["_kVersionStampPrecookedTimestampStr"] = wasmExports["Pb"].value;
|
|
6694
6699
|
_kVersionStampPrecookedClientInfoStr = Module["_kVersionStampPrecookedClientInfoStr"] = wasmExports["Qb"].value;
|
|
6695
6700
|
__indirect_function_table = wasmTable = wasmExports["Rb"];
|
|
6701
|
+
_kVersionStampBuildHasHardeningProtobuf = Module["_kVersionStampBuildHasHardeningProtobuf"] = wasmExports["Gd"].value;
|
|
6696
6702
|
}
|
|
6697
6703
|
|
|
6698
6704
|
var wasmImports = {
|
|
6699
6705
|
/** @export */ gb: JsOnEmptyPacketListener,
|
|
6700
|
-
/** @export */
|
|
6706
|
+
/** @export */ R: JsOnSimpleListenerBinaryArray,
|
|
6701
6707
|
/** @export */ fb: JsOnSimpleListenerBool,
|
|
6702
6708
|
/** @export */ eb: JsOnSimpleListenerDouble,
|
|
6703
6709
|
/** @export */ db: JsOnSimpleListenerFloat,
|
|
@@ -6714,103 +6720,103 @@ var wasmImports = {
|
|
|
6714
6720
|
/** @export */ Va: JsOnVectorListenerUint,
|
|
6715
6721
|
/** @export */ x: JsWrapErrorListener,
|
|
6716
6722
|
/** @export */ a: JsWrapSimpleListeners,
|
|
6717
|
-
/** @export */
|
|
6718
|
-
/** @export */
|
|
6723
|
+
/** @export */ Q: UseBottomLeftGpuOrigin,
|
|
6724
|
+
/** @export */ Y: __asyncjs__mediapipe_map_buffer_jspi,
|
|
6719
6725
|
/** @export */ Ua: ___syscall_dup,
|
|
6720
6726
|
/** @export */ Ta: ___syscall_faccessat,
|
|
6721
|
-
/** @export */
|
|
6727
|
+
/** @export */ P: ___syscall_fcntl64,
|
|
6722
6728
|
/** @export */ Sa: ___syscall_fstat64,
|
|
6723
|
-
/** @export */
|
|
6729
|
+
/** @export */ ea: ___syscall_ftruncate64,
|
|
6724
6730
|
/** @export */ Ra: ___syscall_ioctl,
|
|
6725
6731
|
/** @export */ Qa: ___syscall_lstat64,
|
|
6726
6732
|
/** @export */ Pa: ___syscall_newfstatat,
|
|
6727
|
-
/** @export */
|
|
6733
|
+
/** @export */ O: ___syscall_openat,
|
|
6728
6734
|
/** @export */ Oa: ___syscall_stat64,
|
|
6729
6735
|
/** @export */ Ja: __abort_js,
|
|
6730
|
-
/** @export */
|
|
6731
|
-
/** @export */
|
|
6732
|
-
/** @export */
|
|
6733
|
-
/** @export */
|
|
6734
|
-
/** @export */
|
|
6736
|
+
/** @export */ ba: __gmtime_js,
|
|
6737
|
+
/** @export */ aa: __localtime_js,
|
|
6738
|
+
/** @export */ $: __mktime_js,
|
|
6739
|
+
/** @export */ _: __mmap_js,
|
|
6740
|
+
/** @export */ Z: __munmap_js,
|
|
6735
6741
|
/** @export */ Ia: __tzset_js,
|
|
6736
|
-
/** @export */
|
|
6742
|
+
/** @export */ da: _clock_time_get,
|
|
6737
6743
|
/** @export */ Ha: custom_emscripten_dbgn,
|
|
6738
6744
|
/** @export */ Ga: _emscripten_asm_const_int,
|
|
6739
6745
|
/** @export */ u: _emscripten_errn,
|
|
6740
6746
|
/** @export */ Fa: _emscripten_get_heap_max,
|
|
6741
6747
|
/** @export */ b: _emscripten_get_now,
|
|
6742
|
-
/** @export */
|
|
6743
|
-
/** @export */
|
|
6744
|
-
/** @export */
|
|
6745
|
-
/** @export */
|
|
6748
|
+
/** @export */ Ea: _emscripten_has_asyncify,
|
|
6749
|
+
/** @export */ Da: _emscripten_outn,
|
|
6750
|
+
/** @export */ Ca: _emscripten_pc_get_function,
|
|
6751
|
+
/** @export */ Ba: _emscripten_resize_heap,
|
|
6746
6752
|
/** @export */ M: _emscripten_stack_snapshot,
|
|
6747
|
-
/** @export */
|
|
6748
|
-
/** @export */
|
|
6749
|
-
/** @export */
|
|
6750
|
-
/** @export */
|
|
6753
|
+
/** @export */ Aa: _emscripten_stack_unwind_buffer,
|
|
6754
|
+
/** @export */ za: _emscripten_webgl_create_context,
|
|
6755
|
+
/** @export */ ya: _emscripten_webgl_destroy_context,
|
|
6756
|
+
/** @export */ xa: _emscripten_webgl_get_context_attributes,
|
|
6751
6757
|
/** @export */ i: _emscripten_webgl_get_current_context,
|
|
6752
|
-
/** @export */
|
|
6753
|
-
/** @export */
|
|
6754
|
-
/** @export */
|
|
6755
|
-
/** @export */
|
|
6756
|
-
/** @export */
|
|
6758
|
+
/** @export */ wa: _emscripten_webgl_make_context_current,
|
|
6759
|
+
/** @export */ va: _emwgpuBufferDestroy,
|
|
6760
|
+
/** @export */ e: _emwgpuDelete,
|
|
6761
|
+
/** @export */ ua: _emwgpuDeviceCreateBuffer,
|
|
6762
|
+
/** @export */ ta: _emwgpuDeviceDestroy,
|
|
6757
6763
|
/** @export */ Na: _environ_get,
|
|
6758
6764
|
/** @export */ Ma: _environ_sizes_get,
|
|
6759
6765
|
/** @export */ L: _exit,
|
|
6760
6766
|
/** @export */ w: _fd_close,
|
|
6761
|
-
/** @export */
|
|
6762
|
-
/** @export */
|
|
6767
|
+
/** @export */ N: _fd_read,
|
|
6768
|
+
/** @export */ ca: _fd_seek,
|
|
6763
6769
|
/** @export */ v: _fd_write,
|
|
6764
6770
|
/** @export */ t: _glActiveTexture,
|
|
6765
6771
|
/** @export */ K: _glAttachShader,
|
|
6766
|
-
/** @export */
|
|
6772
|
+
/** @export */ sa: _glBindAttribLocation,
|
|
6767
6773
|
/** @export */ f: _glBindBuffer,
|
|
6768
6774
|
/** @export */ m: _glBindFramebuffer,
|
|
6769
|
-
/** @export */
|
|
6775
|
+
/** @export */ d: _glBindTexture,
|
|
6770
6776
|
/** @export */ s: _glBufferData,
|
|
6771
6777
|
/** @export */ h: _glClientWaitSync,
|
|
6772
|
-
/** @export */
|
|
6773
|
-
/** @export */
|
|
6774
|
-
/** @export */
|
|
6778
|
+
/** @export */ ra: _glCompileShader,
|
|
6779
|
+
/** @export */ qa: _glCreateProgram,
|
|
6780
|
+
/** @export */ pa: _glCreateShader,
|
|
6775
6781
|
/** @export */ J: _glDeleteFramebuffers,
|
|
6776
|
-
/** @export */
|
|
6782
|
+
/** @export */ oa: _glDeleteProgram,
|
|
6777
6783
|
/** @export */ I: _glDeleteShader,
|
|
6778
6784
|
/** @export */ l: _glDeleteSync,
|
|
6779
6785
|
/** @export */ H: _glDeleteTextures,
|
|
6780
6786
|
/** @export */ G: _glDetachShader,
|
|
6781
6787
|
/** @export */ F: _glDisableVertexAttribArray,
|
|
6782
|
-
/** @export */
|
|
6788
|
+
/** @export */ na: _glDrawArrays,
|
|
6783
6789
|
/** @export */ E: _glEnableVertexAttribArray,
|
|
6784
6790
|
/** @export */ D: _glFenceSync,
|
|
6785
6791
|
/** @export */ k: _glFinish,
|
|
6786
6792
|
/** @export */ r: _glFramebufferTexture2D,
|
|
6787
6793
|
/** @export */ C: _glGenBuffers,
|
|
6788
|
-
/** @export */
|
|
6794
|
+
/** @export */ ma: _glGenFramebuffers,
|
|
6789
6795
|
/** @export */ q: _glGenTextures,
|
|
6790
6796
|
/** @export */ j: _glGetError,
|
|
6791
6797
|
/** @export */ B: _glGetIntegerv,
|
|
6792
6798
|
/** @export */ p: _glGetString,
|
|
6793
|
-
/** @export */
|
|
6794
|
-
/** @export */
|
|
6799
|
+
/** @export */ la: _glGetUniformLocation,
|
|
6800
|
+
/** @export */ ka: _glLinkProgram,
|
|
6795
6801
|
/** @export */ o: _glPixelStorei,
|
|
6796
6802
|
/** @export */ A: _glReadPixels,
|
|
6797
|
-
/** @export */
|
|
6798
|
-
/** @export */
|
|
6799
|
-
/** @export */
|
|
6803
|
+
/** @export */ ja: _glShaderSource,
|
|
6804
|
+
/** @export */ ia: _glTexImage2D,
|
|
6805
|
+
/** @export */ c: _glTexParameteri,
|
|
6800
6806
|
/** @export */ z: _glTexStorage2D,
|
|
6801
|
-
/** @export */
|
|
6802
|
-
/** @export */
|
|
6807
|
+
/** @export */ ha: _glUniform1i,
|
|
6808
|
+
/** @export */ ga: _glUseProgram,
|
|
6803
6809
|
/** @export */ y: _glVertexAttribPointer,
|
|
6804
|
-
/** @export */
|
|
6810
|
+
/** @export */ fa: _glViewport,
|
|
6805
6811
|
/** @export */ n: hardware_concurrency,
|
|
6806
6812
|
/** @export */ La: _proc_exit,
|
|
6807
6813
|
/** @export */ Ka: _random_get,
|
|
6808
|
-
/** @export */
|
|
6809
|
-
/** @export */
|
|
6810
|
-
/** @export */
|
|
6811
|
-
/** @export */
|
|
6812
|
-
/** @export */
|
|
6813
|
-
/** @export */
|
|
6814
|
+
/** @export */ X: _wgpuCommandEncoderCopyTextureToBuffer,
|
|
6815
|
+
/** @export */ W: _wgpuCommandEncoderFinish,
|
|
6816
|
+
/** @export */ V: _wgpuDeviceCreateCommandEncoder,
|
|
6817
|
+
/** @export */ U: _wgpuQueueSubmit,
|
|
6818
|
+
/** @export */ T: _wgpuTextureDestroy,
|
|
6819
|
+
/** @export */ S: _wgpuTextureGetFormat
|
|
6814
6820
|
};
|
|
6815
6821
|
|
|
6816
6822
|
// include: postamble.js
|
|
Binary file
|