GPUTexture:height 属性
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 的浏览器中加载。