GPUCompilationMessage
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.
TheGPUCompilationMessage interface of theWebGPU API represents a single informational, warning, or error message generated by the GPU shader module compiler.
An array ofGPUCompilationMessage objects is available in themessages property of theGPUCompilationInfo object accessed viaGPUShaderModule.getCompilationInfo().
In this article
Instance properties
lengthRead onlyA number representing the length of the substring that the message corresponds to.
lineNumRead onlyA number representing the line number in the shader code that the message corresponds to.
linePosRead onlyA number representing the position in the code line that the message corresponds to. This could be an exact point, or the start of the relevant substring.
messageRead onlyA string representing human-readable message text.
offsetRead onlyA number representing the offset from the start of the shader code to the exact point, or the start of the relevant substring, that the message corresponds to.
typeRead onlyAn enumerated value representing the type of the message —
"error","info", or"warning".
Examples
See the mainGPUCompilationInfo page for an example.
Specifications
| Specification |
|---|
| WebGPU> # gpucompilationmessage> |
Browser compatibility
See also
- TheWebGPU API