@cesium/engine
Version:
CesiumJS is a JavaScript library for creating 3D globes and 2D maps in a web browser without a plugin.
19 lines (16 loc) • 602 B
JavaScript
import Frozen from "../Core/Frozen.js";
/**
* Image formats supported by the browser.
*
* @param {object} [options] Object with the following properties:
* @param {boolean} [options.webp=false] Whether the browser supports WebP images.
* @param {boolean} [options.basis=false] Whether the browser supports compressed textures required to view KTX2 + Basis Universal images.
*
* @private
*/
function SupportedImageFormats(options) {
options = options ?? Frozen.EMPTY_OBJECT;
this.webp = options.webp ?? false;
this.basis = options.basis ?? false;
}
export default SupportedImageFormats;