GPUTexture:height 属性

实验性: 这是一个 实验性技术
在生产环境中使用之前,请仔细查看 浏览器兼容性表

安全上下文:此功能仅在 安全上下文(HTTPS)中可用,在某些或所有 支持的浏览器 中。

GPUTexture 接口的 height 只读属性表示 GPUTexture 的高度。

这是根据传递到源自 GPUDevice.createTexture() 调用的描述符对象中 size 属性的值设置的。

一个数字。

示例

js
// ...

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

console.log(depthTexture.height); // 480

规范

规范
WebGPU
# dom-gputexture-height

浏览器兼容性

BCD 表格仅在启用 JavaScript 的浏览器中加载。

另请参阅