GPUCompilationMessage: message 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.
Themessage read-only property of theGPUCompilationMessage interface is a string representing human-readable message text.
In this article
Value
A string.
Examples
js
const shaderModule = device.createShaderModule({ code: shaders,});const shaderInfo = await shaderModule.getCompilationInfo();const firstMessage = shaderInfo.messages[0];console.log(firstMessage.message);See the mainGPUCompilationInfo page for a more detailed example.
Specifications
| Specification |
|---|
| WebGPU> # dom-gpucompilationmessage-message> |
Browser compatibility
See also
- TheWebGPU API