GPUCompilationMessage: type property
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
Secure context: This feature is available only insecure contexts (HTTPS), in some or allsupporting browsers.
Note: This feature is available inWeb Workers.
Thetype read-only property of theGPUCompilationMessage interface is an enumerated value representing the type of the message. Each type represents a different severity level.
In this article
Value
An enumerated value. Possible values are:
Examples
js
const shaderModule = device.createShaderModule({ code: shaders,});const shaderInfo = await shaderModule.getCompilationInfo();const firstMessage = shaderInfo.messages[0];console.log(firstMessage.type);See the mainGPUCompilationInfo page for a more detailed example.
Specifications
| Specification |
|---|
| WebGPU> # dom-gpucompilationmessage-type> |
Browser compatibility
See also
- TheWebGPU API