@loaders.gl/textures
Version:
Framework-independent loaders for compressed and super compressed (basis) textures
9 lines (8 loc) • 345 B
JavaScript
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Polyfills increases the bundle size significantly. Use it for NodeJS worker only
import '@loaders.gl/polyfills';
import { createLoaderWorker } from '@loaders.gl/loader-utils';
import { BasisLoader } from "../basis-loader.js";
createLoaderWorker(BasisLoader);