scichart
Version:
Fast WebGL JavaScript Charting Library and Framework
23 lines (22 loc) • 795 B
TypeScript
/**
* Defines how WebAssembly SIMD should be used by SciChart
* See {@link SciChartDefaults.useWasmSimd} for usage
*/
export declare enum EUseWasmSimd {
/**
* Always use SIMD-enabled WebAssembly binaries.
* You must serve scichart2d.wasm, scichart3d.wasm (if using 3D charts).
*/
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).
*/
Auto = "Auto",
/**
* Never use SIMD, always use fallback WebAssembly binaries.
* You must serve scichart2d-nosimd.wasm, scichart3d-nosimd.wasm (if using 3D charts).
*/
Never = "Never"
}