GPUCompilationMessage:type 属性
type
属性是 GPUCompilationMessage
接口的只读属性,它是一个枚举值,表示消息的类型。每种类型都表示不同的严重级别。
值
示例
js
// ...
const shaderModule = device.createShaderModule({
code: shaders,
});
const shaderInfo = await shaderModule.getCompilationInfo();
const firstMessage = shaderInfo.messages[0];
console.log(firstMessage.type);
// ...
}
有关更详细的示例,请参阅主要 GPUCompilationInfo
页面。
规范
规范 |
---|
WebGPU # dom-gpucompilationmessage-type |
浏览器兼容性
BCD 表仅在启用 JavaScript 的浏览器中加载。
另请参阅
- The WebGPU API