scichart
Version:
Fast WebGL JavaScript Charting Library and Framework
27 lines (26 loc) • 1.04 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EUseWasmSimd = void 0;
/**
* Defines how WebAssembly SIMD should be used by SciChart
* See {@link SciChartDefaults.useWasmSimd} for usage
*/
var EUseWasmSimd;
(function (EUseWasmSimd) {
/**
* Always use SIMD-enabled WebAssembly binaries.
* You must serve scichart2d.wasm, scichart3d.wasm (if using 3D charts).
*/
EUseWasmSimd["Always"] = "Always";
/**
* Automatically detect SIMD support and choose the appropriate binary.
* You must serve both scichart2d.wasm and scichart2d-nosimd.wasm,
* scichart3d.wasm and scichart3d-nosimd.wasm (if using 3D charts).
*/
EUseWasmSimd["Auto"] = "Auto";
/**
* Never use SIMD, always use fallback WebAssembly binaries.
* You must serve scichart2d-nosimd.wasm, scichart3d-nosimd.wasm (if using 3D charts).
*/
EUseWasmSimd["Never"] = "Never";
})(EUseWasmSimd = exports.EUseWasmSimd || (exports.EUseWasmSimd = {}));