web api instance property
GPUTexture: format property
Secure contextAvailable in workers
The format read-only property of the
GPUTexture interface represents the format of the GPUTexture.
This is set via the format property in the descriptor object passed into the originating createTexture() call.
Value
An enumerated value. See the specification’s Texture formats section for all the possible values. Also see Tier 1 and Tier 2 texture formats.
Examples
// …
const depthTexture = device.createTexture({
size: [canvas.width, canvas.height],
format: "depth24plus",
usage: GPUTextureUsage.RENDER_ATTACHMENT,
});
console.log(depthTexture.format); // "depth24plus"
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.
See also
- The WebGPU API