@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
|
+
728529: () => {
|
|
6396
6401
|
specialHTMLTargets["#canvas"] = Module.canvas;
|
|
6397
6402
|
}
|
|
6398
6403
|
};
|
|
@@ -6525,7 +6530,7 @@ function custom_emscripten_dbgn(str, len) {
|
|
|
6525
6530
|
}
|
|
6526
6531
|
|
|
6527
6532
|
// Imports from the Wasm binary.
|
|
6528
|
-
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;
|
|
6533
|
+
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;
|
|
6529
6534
|
|
|
6530
6535
|
function assignWasmExports(wasmExports) {
|
|
6531
6536
|
_free = Module["_free"] = wasmExports["Rb"];
|
|
@@ -6624,11 +6629,11 @@ function assignWasmExports(wasmExports) {
|
|
|
6624
6629
|
_waitUntilIdle = Module["_waitUntilIdle"] = wasmExports["Cd"];
|
|
6625
6630
|
_closeGraph = Module["_closeGraph"] = wasmExports["Dd"];
|
|
6626
6631
|
_setAutoRenderToScreen = Module["_setAutoRenderToScreen"] = wasmExports["Ed"];
|
|
6627
|
-
_emscripten_builtin_memalign = wasmExports["
|
|
6628
|
-
__emscripten_tempret_set = wasmExports["
|
|
6629
|
-
__emscripten_stack_restore = wasmExports["
|
|
6630
|
-
__emscripten_stack_alloc = wasmExports["
|
|
6631
|
-
_emscripten_stack_get_current = wasmExports["
|
|
6632
|
+
_emscripten_builtin_memalign = wasmExports["Gd"];
|
|
6633
|
+
__emscripten_tempret_set = wasmExports["Hd"];
|
|
6634
|
+
__emscripten_stack_restore = wasmExports["Id"];
|
|
6635
|
+
__emscripten_stack_alloc = wasmExports["Jd"];
|
|
6636
|
+
_emscripten_stack_get_current = wasmExports["Kd"];
|
|
6632
6637
|
dynCall_jii = wasmExports["dynCall_jii"];
|
|
6633
6638
|
dynCall_ji = wasmExports["dynCall_ji"];
|
|
6634
6639
|
dynCall_iiiijij = wasmExports["dynCall_iiiijij"];
|
|
@@ -6685,11 +6690,12 @@ function assignWasmExports(wasmExports) {
|
|
|
6685
6690
|
_kVersionStampPrecookedTimestampStr = Module["_kVersionStampPrecookedTimestampStr"] = wasmExports["Ob"].value;
|
|
6686
6691
|
_kVersionStampPrecookedClientInfoStr = Module["_kVersionStampPrecookedClientInfoStr"] = wasmExports["Pb"].value;
|
|
6687
6692
|
__indirect_function_table = wasmTable = wasmExports["Qb"];
|
|
6693
|
+
_kVersionStampBuildHasHardeningProtobuf = Module["_kVersionStampBuildHasHardeningProtobuf"] = wasmExports["Fd"].value;
|
|
6688
6694
|
}
|
|
6689
6695
|
|
|
6690
6696
|
var wasmImports = {
|
|
6691
6697
|
/** @export */ fb: JsOnEmptyPacketListener,
|
|
6692
|
-
/** @export */
|
|
6698
|
+
/** @export */ Q: JsOnSimpleListenerBinaryArray,
|
|
6693
6699
|
/** @export */ eb: JsOnSimpleListenerBool,
|
|
6694
6700
|
/** @export */ db: JsOnSimpleListenerDouble,
|
|
6695
6701
|
/** @export */ cb: JsOnSimpleListenerFloat,
|
|
@@ -6706,102 +6712,102 @@ var wasmImports = {
|
|
|
6706
6712
|
/** @export */ Ua: JsOnVectorListenerUint,
|
|
6707
6713
|
/** @export */ w: JsWrapErrorListener,
|
|
6708
6714
|
/** @export */ a: JsWrapSimpleListeners,
|
|
6709
|
-
/** @export */
|
|
6710
|
-
/** @export */
|
|
6715
|
+
/** @export */ P: UseBottomLeftGpuOrigin,
|
|
6716
|
+
/** @export */ X: __asyncjs__mediapipe_map_buffer_jspi,
|
|
6711
6717
|
/** @export */ Ta: ___syscall_dup,
|
|
6712
6718
|
/** @export */ Sa: ___syscall_faccessat,
|
|
6713
|
-
/** @export */
|
|
6719
|
+
/** @export */ O: ___syscall_fcntl64,
|
|
6714
6720
|
/** @export */ Ra: ___syscall_fstat64,
|
|
6715
|
-
/** @export */
|
|
6721
|
+
/** @export */ da: ___syscall_ftruncate64,
|
|
6716
6722
|
/** @export */ Qa: ___syscall_ioctl,
|
|
6717
6723
|
/** @export */ Pa: ___syscall_lstat64,
|
|
6718
6724
|
/** @export */ Oa: ___syscall_newfstatat,
|
|
6719
|
-
/** @export */
|
|
6725
|
+
/** @export */ N: ___syscall_openat,
|
|
6720
6726
|
/** @export */ Na: ___syscall_stat64,
|
|
6721
6727
|
/** @export */ Ia: __abort_js,
|
|
6722
|
-
/** @export */
|
|
6723
|
-
/** @export */
|
|
6724
|
-
/** @export */
|
|
6725
|
-
/** @export */
|
|
6726
|
-
/** @export */
|
|
6728
|
+
/** @export */ aa: __gmtime_js,
|
|
6729
|
+
/** @export */ $: __localtime_js,
|
|
6730
|
+
/** @export */ _: __mktime_js,
|
|
6731
|
+
/** @export */ Z: __mmap_js,
|
|
6732
|
+
/** @export */ Y: __munmap_js,
|
|
6727
6733
|
/** @export */ Ha: __tzset_js,
|
|
6728
|
-
/** @export */
|
|
6734
|
+
/** @export */ ca: _clock_time_get,
|
|
6729
6735
|
/** @export */ Ga: custom_emscripten_dbgn,
|
|
6730
6736
|
/** @export */ Fa: _emscripten_asm_const_int,
|
|
6731
6737
|
/** @export */ t: _emscripten_errn,
|
|
6732
6738
|
/** @export */ Ea: _emscripten_get_heap_max,
|
|
6733
6739
|
/** @export */ b: _emscripten_get_now,
|
|
6734
|
-
/** @export */
|
|
6735
|
-
/** @export */
|
|
6736
|
-
/** @export */
|
|
6737
|
-
/** @export */
|
|
6740
|
+
/** @export */ Da: _emscripten_has_asyncify,
|
|
6741
|
+
/** @export */ Ca: _emscripten_outn,
|
|
6742
|
+
/** @export */ Ba: _emscripten_pc_get_function,
|
|
6743
|
+
/** @export */ Aa: _emscripten_resize_heap,
|
|
6738
6744
|
/** @export */ L: _emscripten_stack_snapshot,
|
|
6739
|
-
/** @export */
|
|
6740
|
-
/** @export */
|
|
6741
|
-
/** @export */
|
|
6742
|
-
/** @export */
|
|
6745
|
+
/** @export */ za: _emscripten_stack_unwind_buffer,
|
|
6746
|
+
/** @export */ ya: _emscripten_webgl_create_context,
|
|
6747
|
+
/** @export */ xa: _emscripten_webgl_destroy_context,
|
|
6748
|
+
/** @export */ wa: _emscripten_webgl_get_context_attributes,
|
|
6743
6749
|
/** @export */ i: _emscripten_webgl_get_current_context,
|
|
6744
|
-
/** @export */
|
|
6745
|
-
/** @export */
|
|
6746
|
-
/** @export */
|
|
6747
|
-
/** @export */
|
|
6748
|
-
/** @export */
|
|
6750
|
+
/** @export */ va: _emscripten_webgl_make_context_current,
|
|
6751
|
+
/** @export */ ua: _emwgpuBufferDestroy,
|
|
6752
|
+
/** @export */ e: _emwgpuDelete,
|
|
6753
|
+
/** @export */ ta: _emwgpuDeviceCreateBuffer,
|
|
6754
|
+
/** @export */ sa: _emwgpuDeviceDestroy,
|
|
6749
6755
|
/** @export */ Ma: _environ_get,
|
|
6750
6756
|
/** @export */ La: _environ_sizes_get,
|
|
6751
6757
|
/** @export */ K: _exit,
|
|
6752
6758
|
/** @export */ v: _fd_close,
|
|
6753
|
-
/** @export */
|
|
6754
|
-
/** @export */
|
|
6759
|
+
/** @export */ M: _fd_read,
|
|
6760
|
+
/** @export */ ba: _fd_seek,
|
|
6755
6761
|
/** @export */ u: _fd_write,
|
|
6756
6762
|
/** @export */ s: _glActiveTexture,
|
|
6757
6763
|
/** @export */ J: _glAttachShader,
|
|
6758
|
-
/** @export */
|
|
6764
|
+
/** @export */ ra: _glBindAttribLocation,
|
|
6759
6765
|
/** @export */ f: _glBindBuffer,
|
|
6760
6766
|
/** @export */ m: _glBindFramebuffer,
|
|
6761
|
-
/** @export */
|
|
6767
|
+
/** @export */ d: _glBindTexture,
|
|
6762
6768
|
/** @export */ r: _glBufferData,
|
|
6763
6769
|
/** @export */ h: _glClientWaitSync,
|
|
6764
|
-
/** @export */
|
|
6765
|
-
/** @export */
|
|
6766
|
-
/** @export */
|
|
6770
|
+
/** @export */ qa: _glCompileShader,
|
|
6771
|
+
/** @export */ pa: _glCreateProgram,
|
|
6772
|
+
/** @export */ oa: _glCreateShader,
|
|
6767
6773
|
/** @export */ I: _glDeleteFramebuffers,
|
|
6768
|
-
/** @export */
|
|
6774
|
+
/** @export */ na: _glDeleteProgram,
|
|
6769
6775
|
/** @export */ H: _glDeleteShader,
|
|
6770
6776
|
/** @export */ l: _glDeleteSync,
|
|
6771
6777
|
/** @export */ G: _glDeleteTextures,
|
|
6772
6778
|
/** @export */ F: _glDetachShader,
|
|
6773
6779
|
/** @export */ E: _glDisableVertexAttribArray,
|
|
6774
|
-
/** @export */
|
|
6780
|
+
/** @export */ ma: _glDrawArrays,
|
|
6775
6781
|
/** @export */ D: _glEnableVertexAttribArray,
|
|
6776
6782
|
/** @export */ C: _glFenceSync,
|
|
6777
6783
|
/** @export */ k: _glFinish,
|
|
6778
6784
|
/** @export */ q: _glFramebufferTexture2D,
|
|
6779
6785
|
/** @export */ B: _glGenBuffers,
|
|
6780
|
-
/** @export */
|
|
6786
|
+
/** @export */ la: _glGenFramebuffers,
|
|
6781
6787
|
/** @export */ p: _glGenTextures,
|
|
6782
6788
|
/** @export */ j: _glGetError,
|
|
6783
6789
|
/** @export */ A: _glGetIntegerv,
|
|
6784
6790
|
/** @export */ o: _glGetString,
|
|
6785
|
-
/** @export */
|
|
6786
|
-
/** @export */
|
|
6791
|
+
/** @export */ ka: _glGetUniformLocation,
|
|
6792
|
+
/** @export */ ja: _glLinkProgram,
|
|
6787
6793
|
/** @export */ n: _glPixelStorei,
|
|
6788
6794
|
/** @export */ z: _glReadPixels,
|
|
6789
|
-
/** @export */
|
|
6790
|
-
/** @export */
|
|
6791
|
-
/** @export */
|
|
6795
|
+
/** @export */ ia: _glShaderSource,
|
|
6796
|
+
/** @export */ ha: _glTexImage2D,
|
|
6797
|
+
/** @export */ c: _glTexParameteri,
|
|
6792
6798
|
/** @export */ y: _glTexStorage2D,
|
|
6793
|
-
/** @export */
|
|
6794
|
-
/** @export */
|
|
6799
|
+
/** @export */ ga: _glUniform1i,
|
|
6800
|
+
/** @export */ fa: _glUseProgram,
|
|
6795
6801
|
/** @export */ x: _glVertexAttribPointer,
|
|
6796
|
-
/** @export */
|
|
6802
|
+
/** @export */ ea: _glViewport,
|
|
6797
6803
|
/** @export */ Ka: _proc_exit,
|
|
6798
6804
|
/** @export */ Ja: _random_get,
|
|
6799
|
-
/** @export */
|
|
6800
|
-
/** @export */
|
|
6801
|
-
/** @export */
|
|
6802
|
-
/** @export */
|
|
6803
|
-
/** @export */
|
|
6804
|
-
/** @export */
|
|
6805
|
+
/** @export */ W: _wgpuCommandEncoderCopyTextureToBuffer,
|
|
6806
|
+
/** @export */ V: _wgpuCommandEncoderFinish,
|
|
6807
|
+
/** @export */ U: _wgpuDeviceCreateCommandEncoder,
|
|
6808
|
+
/** @export */ T: _wgpuQueueSubmit,
|
|
6809
|
+
/** @export */ S: _wgpuTextureDestroy,
|
|
6810
|
+
/** @export */ R: _wgpuTextureGetFormat
|
|
6805
6811
|
};
|
|
6806
6812
|
|
|
6807
6813
|
// include: postamble.js
|
|
Binary file
|