Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. GPUCompilationMessage
  4. type

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.

Value

An enumerated value. Possible values are:

"error"

A shader-creation error, which stops successful compilation.

"info"

A purely informative message, which is low severity.

"warning"

A warning about an issue that will not stop successful compilation, but merits attention by the developer. An example is usage of deprecated functions or syntax.

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

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp