pixi.js
Version:
<p align="center"> <a href="https://pixijs.com" target="_blank" rel="noopener noreferrer"> <img height="150" src="https://files.pixijs.download/branding/pixijs-logo-transparent-dark.svg?v=1" alt="PixiJS logo"> </a> </p> <br/> <p align="center">
73 lines (69 loc) • 1.59 kB
JavaScript
;
var getSupportedCompressedTextureFormats = require('./getSupportedCompressedTextureFormats.js');
;
const nonCompressedFormats = [
// 8-bit formats
"r8unorm",
"r8snorm",
"r8uint",
"r8sint",
// 16-bit formats
"r16uint",
"r16sint",
"r16float",
"rg8unorm",
"rg8snorm",
"rg8uint",
"rg8sint",
// 32-bit formats
"r32uint",
"r32sint",
"r32float",
"rg16uint",
"rg16sint",
"rg16float",
"rgba8unorm",
"rgba8unorm-srgb",
"rgba8snorm",
"rgba8uint",
"rgba8sint",
"bgra8unorm",
"bgra8unorm-srgb",
// Packed 32-bit formats
"rgb9e5ufloat",
"rgb10a2unorm",
"rg11b10ufloat",
// 64-bit formats
"rg32uint",
"rg32sint",
"rg32float",
"rgba16uint",
"rgba16sint",
"rgba16float",
// 128-bit formats
"rgba32uint",
"rgba32sint",
"rgba32float",
// Depth/stencil formats
"stencil8",
"depth16unorm",
"depth24plus",
"depth24plus-stencil8",
"depth32float",
// "depth32float-stencil8" feature
"depth32float-stencil8"
];
let supportedTextureFormats;
async function getSupportedTextureFormats() {
if (supportedTextureFormats !== void 0)
return supportedTextureFormats;
const compressedTextureFormats = await getSupportedCompressedTextureFormats.getSupportedCompressedTextureFormats();
supportedTextureFormats = [
...nonCompressedFormats,
...compressedTextureFormats
];
return supportedTextureFormats;
}
exports.getSupportedTextureFormats = getSupportedTextureFormats;
exports.nonCompressedFormats = nonCompressedFormats;
//# sourceMappingURL=getSupportedTextureFormats.js.map