Back to Content

GPUTexture: format property

files/en-us/web/api/gputexture/format/index.md

latest1009 B
Original Source

{{APIRef("WebGPU API")}}{{SecureContext_Header}}{{AvailableInWorkers}}

The format read-only property of the {{domxref("GPUTexture")}} interface represents the format of the GPUTexture.

This is set via the format property in the descriptor object passed into the originating {{domxref("GPUDevice.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

js
// …

const depthTexture = device.createTexture({
  size: [canvas.width, canvas.height],
  format: "depth24plus",
  usage: GPUTextureUsage.RENDER_ATTACHMENT,
});

console.log(depthTexture.format); // "depth24plus"

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also